From b4f03538c6e4f9d92ea0e9c4a5251478df900ddd Mon Sep 17 00:00:00 2001 From: tan Date: Tue, 19 Oct 2021 07:45:11 +0530 Subject: [PATCH] add support for watch APIs This adds support for `watch` APIs. Kubernetes provides efficient change notifications on resources via "watches". Certain entities have the special `watch` APIs defined for them and that can be invoked with the `watch` verb. The `watch` API accepts a `Channel` through which it streams events. ```julia watch(ctx::KuberContext, T::Symbol, outstream::Channel, args...; kwargs...) ``` In addition, verbs like `get` and `list` also support watches, and those can be invoked as: ```julia watch(ctx, verb, args...; kwargs...) do stream for event in stream # process event end end ``` E.g.: ```julia watch(ctx, list, :Pod; resourceVersion=19451) do stream for event in stream @info("got event", event) end end ``` --- Project.toml | 2 +- README.md | 32 +- gen/genapialiases.jl | 7 +- gen/generate.sh | 1 + ...oK8sApimachineryPkgApisMetaV1WatchEvent.jl | 32 + src/Kuber.jl | 2 +- src/api/api_AdmissionregistrationApi.jl | 12 +- src/api/api_AdmissionregistrationV1Api.jl | 228 +- .../api_AdmissionregistrationV1beta1Api.jl | 228 +- src/api/api_ApiextensionsApi.jl | 12 +- src/api/api_ApiextensionsV1Api.jl | 156 +- src/api/api_ApiextensionsV1beta1Api.jl | 156 +- src/api/api_ApiregistrationApi.jl | 12 +- src/api/api_ApiregistrationV1Api.jl | 156 +- src/api/api_ApiregistrationV1beta1Api.jl | 156 +- src/api/api_ApisApi.jl | 12 +- src/api/api_AppsApi.jl | 12 +- src/api/api_AppsV1Api.jl | 924 +++++- src/api/api_AppsV1beta1Api.jl | 564 +++- src/api/api_AppsV1beta2Api.jl | 924 +++++- src/api/api_AuditregistrationApi.jl | 12 +- src/api/api_AuditregistrationV1alpha1Api.jl | 120 +- src/api/api_AuthenticationApi.jl | 12 +- src/api/api_AuthenticationV1Api.jl | 24 +- src/api/api_AuthenticationV1beta1Api.jl | 24 +- src/api/api_AuthorizationApi.jl | 12 +- src/api/api_AuthorizationV1Api.jl | 60 +- src/api/api_AuthorizationV1beta1Api.jl | 60 +- src/api/api_AutoscalingApi.jl | 12 +- src/api/api_AutoscalingV1Api.jl | 180 +- src/api/api_AutoscalingV2beta1Api.jl | 180 +- src/api/api_AutoscalingV2beta2Api.jl | 180 +- src/api/api_BatchApi.jl | 12 +- src/api/api_BatchV1Api.jl | 180 +- src/api/api_BatchV1beta1Api.jl | 180 +- src/api/api_BatchV2alpha1Api.jl | 180 +- src/api/api_CertificatesApi.jl | 12 +- src/api/api_CertificatesV1beta1Api.jl | 168 +- src/api/api_CoordinationApi.jl | 12 +- src/api/api_CoordinationV1Api.jl | 144 +- src/api/api_CoordinationV1beta1Api.jl | 144 +- src/api/api_CoreApi.jl | 12 +- src/api/api_CoreV1Api.jl | 2892 +++++++++++++++-- src/api/api_CustomMetricsV1beta1Api.jl | 24 +- src/api/api_DiscoveryApi.jl | 12 +- src/api/api_DiscoveryV1beta1Api.jl | 144 +- src/api/api_EventsApi.jl | 12 +- src/api/api_EventsV1beta1Api.jl | 144 +- src/api/api_ExtensionsApi.jl | 12 +- src/api/api_ExtensionsV1beta1Api.jl | 1044 +++++- src/api/api_FlowcontrolApiserverApi.jl | 12 +- .../api_FlowcontrolApiserverV1alpha1Api.jl | 300 +- src/api/api_LogsApi.jl | 24 +- src/api/api_MetricsV1beta1Api.jl | 48 +- src/api/api_NetworkingApi.jl | 12 +- src/api/api_NetworkingV1Api.jl | 144 +- src/api/api_NetworkingV1beta1Api.jl | 180 +- src/api/api_NodeApi.jl | 12 +- src/api/api_NodeV1alpha1Api.jl | 120 +- src/api/api_NodeV1beta1Api.jl | 120 +- src/api/api_PolicyApi.jl | 12 +- src/api/api_PolicyV1beta1Api.jl | 288 +- src/api/api_RbacAuthorizationApi.jl | 12 +- src/api/api_RbacAuthorizationV1Api.jl | 492 ++- src/api/api_RbacAuthorizationV1alpha1Api.jl | 492 ++- src/api/api_RbacAuthorizationV1beta1Api.jl | 492 ++- src/api/api_SchedulingApi.jl | 12 +- src/api/api_SchedulingV1Api.jl | 120 +- src/api/api_SchedulingV1alpha1Api.jl | 120 +- src/api/api_SchedulingV1beta1Api.jl | 120 +- src/api/api_SettingsApi.jl | 12 +- src/api/api_SettingsV1alpha1Api.jl | 144 +- src/api/api_StorageApi.jl | 12 +- src/api/api_StorageV1Api.jl | 372 ++- src/api/api_StorageV1alpha1Api.jl | 120 +- src/api/api_StorageV1beta1Api.jl | 444 ++- src/api/api_VersionApi.jl | 12 +- ...oK8sApimachineryPkgApisMetaV1WatchEvent.jl | 2 +- src/apialiases.jl | 1164 +++++++ src/helpers.jl | 28 +- src/simpleapi.jl | 214 +- test/runtests.jl | 27 + 82 files changed, 14305 insertions(+), 1210 deletions(-) create mode 100644 gen/model_IoK8sApimachineryPkgApisMetaV1WatchEvent.jl diff --git a/Project.toml b/Project.toml index 314bab04..ff20573c 100644 --- a/Project.toml +++ b/Project.toml @@ -4,7 +4,7 @@ authors = ["Tanmay Mohapatra "] keywords = ["kubernetes", "client"] license = "MIT" desc = "Julia Kubernetes Client" -version = "0.4.2" +version = "0.4.3" [deps] Dates = "ade2ca70-3891-5945-98fb-dc099432e06a" diff --git a/README.md b/README.md index ae1e71e5..8046004c 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,37 @@ Kubernetes APIs are mapped to these easy to use verbs, familiar to Julia users. - `delete!`: delete existing entities - `sel`: creates a label selector to use with other verbs -All verbs have the signature: `verb(ctx::KuberContext, T::Symbol, args...; kwargs...)`. +All verbs have the signature: + +```julia +verb(ctx::KuberContext, T::Symbol, args...; kwargs...) +``` + +Kubernetes also provides efficient change notifications on resources via "watches". Certain entities have the special `watch` APIs defined for them and that can be invoked with the `watch` verb. The `watch` API accepts a `Channel` through which it streams events. + +```julia +watch(ctx::KuberContext, T::Symbol, outstream::Channel, args...; kwargs...) +``` + +In addition, verbs like `get` and `list` also support watches, and those can be invoked as: + +```julia +watch(ctx, verb, args...; kwargs...) do stream + for event in stream + # process event + end +end +``` + +E.g.: + +```julia +watch(ctx, list, :Pod; resourceVersion=19451) do stream + for event in stream + @info("got event", event) + end +end +``` ### Helper methods: diff --git a/gen/genapialiases.jl b/gen/genapialiases.jl index 8fe1dc68..6e5026f7 100644 --- a/gen/genapialiases.jl +++ b/gen/genapialiases.jl @@ -69,8 +69,11 @@ function kuberapi(file::String) # because of the Julia restriction of type being defined before use fn_expr = ((x.typ === CSTParser.MacroCall) && CSTParser.defines_function(x.args[3])) ? x.args[3] : CSTParser.defines_function(x) ? x : nothing if fn_expr !== nothing - alias = emit_alias(fn_expr, api_decoration) - (alias === nothing) || push!(aliases, alias) + fn_name = CSTParser.str_value(CSTParser.get_name(fn_expr)) + if !startswith(fn_name, "_swaggerinternal_") + alias = emit_alias(fn_expr, api_decoration) + (alias === nothing) || push!(aliases, alias) + end end end x, ps = CSTParser.parse(ps) diff --git a/gen/generate.sh b/gen/generate.sh index 929ba0eb..27d93bd9 100755 --- a/gen/generate.sh +++ b/gen/generate.sh @@ -53,3 +53,4 @@ ${JULIA} ${DIR}/gentypealiases.jl # the following models are not generated correctly by Swagger, hand code them for now cp ${DIR}/model_IoK8sApimachineryPkgApisMetaV1Time.jl ${GENDIR}/src/api/ cp ${DIR}/model_IoK8sApimachineryPkgUtilIntstrIntOrString.jl ${GENDIR}/src/api/ +cp ${DIR}/model_IoK8sApimachineryPkgApisMetaV1WatchEvent.jl ${GENDIR}/src/api/ diff --git a/gen/model_IoK8sApimachineryPkgApisMetaV1WatchEvent.jl b/gen/model_IoK8sApimachineryPkgApisMetaV1WatchEvent.jl new file mode 100644 index 00000000..f952a87a --- /dev/null +++ b/gen/model_IoK8sApimachineryPkgApisMetaV1WatchEvent.jl @@ -0,0 +1,32 @@ +# This file was generated by the Julia Swagger Code Generator +# Do not modify this file directly. Modify the swagger specification instead. + + +mutable struct IoK8sApimachineryPkgApisMetaV1WatchEvent <: SwaggerModel + object::Any # spec type: Union{ Nothing, IoK8sApimachineryPkgRuntimeRawExtension } # spec name: object + type::Any # spec type: Union{ Nothing, String } # spec name: type + + function IoK8sApimachineryPkgApisMetaV1WatchEvent(;object=nothing, type=nothing) + o = new() + validate_property(IoK8sApimachineryPkgApisMetaV1WatchEvent, Symbol("object"), object) + setfield!(o, Symbol("object"), object) + validate_property(IoK8sApimachineryPkgApisMetaV1WatchEvent, Symbol("type"), type) + setfield!(o, Symbol("type"), type) + o + end +end # type IoK8sApimachineryPkgApisMetaV1WatchEvent + +const _property_map_IoK8sApimachineryPkgApisMetaV1WatchEvent = Dict{Symbol,Symbol}(Symbol("object")=>Symbol("object"), Symbol("type")=>Symbol("type")) +const _property_types_IoK8sApimachineryPkgApisMetaV1WatchEvent = Dict{Symbol,String}(Symbol("object")=>"Dict{String,Any}", Symbol("type")=>"String") +Base.propertynames(::Type{ IoK8sApimachineryPkgApisMetaV1WatchEvent }) = collect(keys(_property_map_IoK8sApimachineryPkgApisMetaV1WatchEvent)) +Swagger.property_type(::Type{ IoK8sApimachineryPkgApisMetaV1WatchEvent }, name::Symbol) = Union{Nothing,eval(Base.Meta.parse(_property_types_IoK8sApimachineryPkgApisMetaV1WatchEvent[name]))} +Swagger.field_name(::Type{ IoK8sApimachineryPkgApisMetaV1WatchEvent }, property_name::Symbol) = _property_map_IoK8sApimachineryPkgApisMetaV1WatchEvent[property_name] + +function check_required(o::IoK8sApimachineryPkgApisMetaV1WatchEvent) + (getproperty(o, Symbol("object")) === nothing) && (return false) + (getproperty(o, Symbol("type")) === nothing) && (return false) + true +end + +function validate_property(::Type{ IoK8sApimachineryPkgApisMetaV1WatchEvent }, name::Symbol, val) +end diff --git a/src/Kuber.jl b/src/Kuber.jl index ef8aace2..017f5402 100644 --- a/src/Kuber.jl +++ b/src/Kuber.jl @@ -18,6 +18,6 @@ include("helpers.jl") include("simpleapi.jl") export KuberContext, set_server, set_ns, get_server, get_ns, kuber_type, kuber_obj, @K_str -export get, list, put!, update!, delete!, sel, get_logs, list_namespaced_custom_metrics, list_custom_metrics +export get, list, watch, put!, update!, delete!, sel, get_logs, list_namespaced_custom_metrics, list_custom_metrics end # module diff --git a/src/api/api_AdmissionregistrationApi.jl b/src/api/api_AdmissionregistrationApi.jl index b1c3cc9e..d1fd8df3 100644 --- a/src/api/api_AdmissionregistrationApi.jl +++ b/src/api/api_AdmissionregistrationApi.jl @@ -10,11 +10,21 @@ end get information of a group Return: IoK8sApimachineryPkgApisMetaV1APIGroup """ -function getAdmissionregistrationAPIGroup(_api::AdmissionregistrationApi; _mediaType=nothing) +function _swaggerinternal_getAdmissionregistrationAPIGroup(_api::AdmissionregistrationApi; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIGroup, "/apis/admissionregistration.k8s.io/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getAdmissionregistrationAPIGroup(_api::AdmissionregistrationApi; _mediaType=nothing) + _ctx = _swaggerinternal_getAdmissionregistrationAPIGroup(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getAdmissionregistrationAPIGroup(_api::AdmissionregistrationApi, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getAdmissionregistrationAPIGroup(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export getAdmissionregistrationAPIGroup diff --git a/src/api/api_AdmissionregistrationV1Api.jl b/src/api/api_AdmissionregistrationV1Api.jl index 54f708d2..ef457809 100644 --- a/src/api/api_AdmissionregistrationV1Api.jl +++ b/src/api/api_AdmissionregistrationV1Api.jl @@ -14,16 +14,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAdmissionregistrationV1MutatingWebhookConfiguration """ -function createAdmissionregistrationV1MutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createAdmissionregistrationV1MutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAdmissionregistrationV1MutatingWebhookConfiguration, "/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAdmissionregistrationV1MutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAdmissionregistrationV1MutatingWebhookConfiguration(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAdmissionregistrationV1MutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAdmissionregistrationV1MutatingWebhookConfiguration(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a ValidatingWebhookConfiguration @@ -33,16 +43,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAdmissionregistrationV1ValidatingWebhookConfiguration """ -function createAdmissionregistrationV1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createAdmissionregistrationV1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAdmissionregistrationV1ValidatingWebhookConfiguration, "/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAdmissionregistrationV1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAdmissionregistrationV1ValidatingWebhookConfiguration(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAdmissionregistrationV1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAdmissionregistrationV1ValidatingWebhookConfiguration(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of MutatingWebhookConfiguration @@ -62,7 +82,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration(_api::AdmissionregistrationV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration(_api::AdmissionregistrationV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -79,9 +99,19 @@ function deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration(_ap Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration(_api::AdmissionregistrationV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of ValidatingWebhookConfiguration @@ -101,7 +131,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -118,9 +148,19 @@ function deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration(_ Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a MutatingWebhookConfiguration @@ -133,7 +173,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAdmissionregistrationV1MutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAdmissionregistrationV1MutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -143,9 +183,19 @@ function deleteAdmissionregistrationV1MutatingWebhookConfiguration(_api::Admissi Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAdmissionregistrationV1MutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAdmissionregistrationV1MutatingWebhookConfiguration(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAdmissionregistrationV1MutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAdmissionregistrationV1MutatingWebhookConfiguration(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a ValidatingWebhookConfiguration @@ -158,7 +208,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAdmissionregistrationV1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAdmissionregistrationV1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -168,21 +218,41 @@ function deleteAdmissionregistrationV1ValidatingWebhookConfiguration(_api::Admis Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAdmissionregistrationV1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAdmissionregistrationV1ValidatingWebhookConfiguration(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAdmissionregistrationV1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAdmissionregistrationV1ValidatingWebhookConfiguration(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getAdmissionregistrationV1APIResources(_api::AdmissionregistrationV1Api; _mediaType=nothing) +function _swaggerinternal_getAdmissionregistrationV1APIResources(_api::AdmissionregistrationV1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/admissionregistration.k8s.io/v1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getAdmissionregistrationV1APIResources(_api::AdmissionregistrationV1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getAdmissionregistrationV1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getAdmissionregistrationV1APIResources(_api::AdmissionregistrationV1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getAdmissionregistrationV1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind MutatingWebhookConfiguration @@ -197,7 +267,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAdmissionregistrationV1MutatingWebhookConfigurationList """ -function listAdmissionregistrationV1MutatingWebhookConfiguration(_api::AdmissionregistrationV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAdmissionregistrationV1MutatingWebhookConfiguration(_api::AdmissionregistrationV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAdmissionregistrationV1MutatingWebhookConfigurationList, "/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -210,9 +280,19 @@ function listAdmissionregistrationV1MutatingWebhookConfiguration(_api::Admission Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAdmissionregistrationV1MutatingWebhookConfiguration(_api::AdmissionregistrationV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAdmissionregistrationV1MutatingWebhookConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAdmissionregistrationV1MutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAdmissionregistrationV1MutatingWebhookConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind ValidatingWebhookConfiguration @@ -227,7 +307,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAdmissionregistrationV1ValidatingWebhookConfigurationList """ -function listAdmissionregistrationV1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAdmissionregistrationV1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAdmissionregistrationV1ValidatingWebhookConfigurationList, "/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -240,9 +320,19 @@ function listAdmissionregistrationV1ValidatingWebhookConfiguration(_api::Admissi Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAdmissionregistrationV1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAdmissionregistrationV1ValidatingWebhookConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAdmissionregistrationV1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAdmissionregistrationV1ValidatingWebhookConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified MutatingWebhookConfiguration @@ -254,7 +344,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAdmissionregistrationV1MutatingWebhookConfiguration """ -function patchAdmissionregistrationV1MutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAdmissionregistrationV1MutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAdmissionregistrationV1MutatingWebhookConfiguration, "/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -263,9 +353,19 @@ function patchAdmissionregistrationV1MutatingWebhookConfiguration(_api::Admissio Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAdmissionregistrationV1MutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAdmissionregistrationV1MutatingWebhookConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAdmissionregistrationV1MutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAdmissionregistrationV1MutatingWebhookConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified ValidatingWebhookConfiguration @@ -277,7 +377,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAdmissionregistrationV1ValidatingWebhookConfiguration """ -function patchAdmissionregistrationV1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAdmissionregistrationV1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAdmissionregistrationV1ValidatingWebhookConfiguration, "/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -286,9 +386,19 @@ function patchAdmissionregistrationV1ValidatingWebhookConfiguration(_api::Admiss Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAdmissionregistrationV1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAdmissionregistrationV1ValidatingWebhookConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAdmissionregistrationV1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAdmissionregistrationV1ValidatingWebhookConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified MutatingWebhookConfiguration @@ -298,7 +408,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiAdmissionregistrationV1MutatingWebhookConfiguration """ -function readAdmissionregistrationV1MutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readAdmissionregistrationV1MutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAdmissionregistrationV1MutatingWebhookConfiguration, "/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -306,9 +416,19 @@ function readAdmissionregistrationV1MutatingWebhookConfiguration(_api::Admission Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAdmissionregistrationV1MutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAdmissionregistrationV1MutatingWebhookConfiguration(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAdmissionregistrationV1MutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAdmissionregistrationV1MutatingWebhookConfiguration(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified ValidatingWebhookConfiguration @@ -318,7 +438,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiAdmissionregistrationV1ValidatingWebhookConfiguration """ -function readAdmissionregistrationV1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readAdmissionregistrationV1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAdmissionregistrationV1ValidatingWebhookConfiguration, "/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -326,9 +446,19 @@ function readAdmissionregistrationV1ValidatingWebhookConfiguration(_api::Admissi Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAdmissionregistrationV1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAdmissionregistrationV1ValidatingWebhookConfiguration(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAdmissionregistrationV1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAdmissionregistrationV1ValidatingWebhookConfiguration(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified MutatingWebhookConfiguration @@ -339,7 +469,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAdmissionregistrationV1MutatingWebhookConfiguration """ -function replaceAdmissionregistrationV1MutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAdmissionregistrationV1MutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAdmissionregistrationV1MutatingWebhookConfiguration, "/apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -347,9 +477,19 @@ function replaceAdmissionregistrationV1MutatingWebhookConfiguration(_api::Admiss Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAdmissionregistrationV1MutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAdmissionregistrationV1MutatingWebhookConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAdmissionregistrationV1MutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAdmissionregistrationV1MutatingWebhookConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified ValidatingWebhookConfiguration @@ -360,7 +500,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAdmissionregistrationV1ValidatingWebhookConfiguration """ -function replaceAdmissionregistrationV1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAdmissionregistrationV1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAdmissionregistrationV1ValidatingWebhookConfiguration, "/apis/admissionregistration.k8s.io/v1/validatingwebhookconfigurations/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -368,9 +508,19 @@ function replaceAdmissionregistrationV1ValidatingWebhookConfiguration(_api::Admi Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAdmissionregistrationV1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAdmissionregistrationV1ValidatingWebhookConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAdmissionregistrationV1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAdmissionregistrationV1ValidatingWebhookConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -386,7 +536,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAdmissionregistrationV1MutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAdmissionregistrationV1MutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/admissionregistration.k8s.io/v1/watch/mutatingwebhookconfigurations/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -400,9 +550,19 @@ function watchAdmissionregistrationV1MutatingWebhookConfiguration(_api::Admissio Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAdmissionregistrationV1MutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAdmissionregistrationV1MutatingWebhookConfiguration(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAdmissionregistrationV1MutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAdmissionregistrationV1MutatingWebhookConfiguration(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of MutatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead. @@ -417,7 +577,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAdmissionregistrationV1MutatingWebhookConfigurationList(_api::AdmissionregistrationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAdmissionregistrationV1MutatingWebhookConfigurationList(_api::AdmissionregistrationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/admissionregistration.k8s.io/v1/watch/mutatingwebhookconfigurations", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -430,9 +590,19 @@ function watchAdmissionregistrationV1MutatingWebhookConfigurationList(_api::Admi Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAdmissionregistrationV1MutatingWebhookConfigurationList(_api::AdmissionregistrationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAdmissionregistrationV1MutatingWebhookConfigurationList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAdmissionregistrationV1MutatingWebhookConfigurationList(_api::AdmissionregistrationV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAdmissionregistrationV1MutatingWebhookConfigurationList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -448,7 +618,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAdmissionregistrationV1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAdmissionregistrationV1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/admissionregistration.k8s.io/v1/watch/validatingwebhookconfigurations/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -462,9 +632,19 @@ function watchAdmissionregistrationV1ValidatingWebhookConfiguration(_api::Admiss Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAdmissionregistrationV1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAdmissionregistrationV1ValidatingWebhookConfiguration(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAdmissionregistrationV1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAdmissionregistrationV1ValidatingWebhookConfiguration(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of ValidatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead. @@ -479,7 +659,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAdmissionregistrationV1ValidatingWebhookConfigurationList(_api::AdmissionregistrationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAdmissionregistrationV1ValidatingWebhookConfigurationList(_api::AdmissionregistrationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/admissionregistration.k8s.io/v1/watch/validatingwebhookconfigurations", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -492,7 +672,17 @@ function watchAdmissionregistrationV1ValidatingWebhookConfigurationList(_api::Ad Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAdmissionregistrationV1ValidatingWebhookConfigurationList(_api::AdmissionregistrationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAdmissionregistrationV1ValidatingWebhookConfigurationList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAdmissionregistrationV1ValidatingWebhookConfigurationList(_api::AdmissionregistrationV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAdmissionregistrationV1ValidatingWebhookConfigurationList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createAdmissionregistrationV1MutatingWebhookConfiguration, createAdmissionregistrationV1ValidatingWebhookConfiguration, deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration, deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration, deleteAdmissionregistrationV1MutatingWebhookConfiguration, deleteAdmissionregistrationV1ValidatingWebhookConfiguration, getAdmissionregistrationV1APIResources, listAdmissionregistrationV1MutatingWebhookConfiguration, listAdmissionregistrationV1ValidatingWebhookConfiguration, patchAdmissionregistrationV1MutatingWebhookConfiguration, patchAdmissionregistrationV1ValidatingWebhookConfiguration, readAdmissionregistrationV1MutatingWebhookConfiguration, readAdmissionregistrationV1ValidatingWebhookConfiguration, replaceAdmissionregistrationV1MutatingWebhookConfiguration, replaceAdmissionregistrationV1ValidatingWebhookConfiguration, watchAdmissionregistrationV1MutatingWebhookConfiguration, watchAdmissionregistrationV1MutatingWebhookConfigurationList, watchAdmissionregistrationV1ValidatingWebhookConfiguration, watchAdmissionregistrationV1ValidatingWebhookConfigurationList diff --git a/src/api/api_AdmissionregistrationV1beta1Api.jl b/src/api/api_AdmissionregistrationV1beta1Api.jl index 41649cf2..423ec679 100644 --- a/src/api/api_AdmissionregistrationV1beta1Api.jl +++ b/src/api/api_AdmissionregistrationV1beta1Api.jl @@ -14,16 +14,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAdmissionregistrationV1beta1MutatingWebhookConfiguration """ -function createAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAdmissionregistrationV1beta1MutatingWebhookConfiguration, "/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a ValidatingWebhookConfiguration @@ -33,16 +43,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAdmissionregistrationV1beta1ValidatingWebhookConfiguration """ -function createAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAdmissionregistrationV1beta1ValidatingWebhookConfiguration, "/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of MutatingWebhookConfiguration @@ -62,7 +82,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAdmissionregistrationV1beta1CollectionMutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAdmissionregistrationV1beta1CollectionMutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -79,9 +99,19 @@ function deleteAdmissionregistrationV1beta1CollectionMutatingWebhookConfiguratio Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAdmissionregistrationV1beta1CollectionMutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAdmissionregistrationV1beta1CollectionMutatingWebhookConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAdmissionregistrationV1beta1CollectionMutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAdmissionregistrationV1beta1CollectionMutatingWebhookConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of ValidatingWebhookConfiguration @@ -101,7 +131,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAdmissionregistrationV1beta1CollectionValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAdmissionregistrationV1beta1CollectionValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -118,9 +148,19 @@ function deleteAdmissionregistrationV1beta1CollectionValidatingWebhookConfigurat Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAdmissionregistrationV1beta1CollectionValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAdmissionregistrationV1beta1CollectionValidatingWebhookConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAdmissionregistrationV1beta1CollectionValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAdmissionregistrationV1beta1CollectionValidatingWebhookConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a MutatingWebhookConfiguration @@ -133,7 +173,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -143,9 +183,19 @@ function deleteAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::Ad Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a ValidatingWebhookConfiguration @@ -158,7 +208,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -168,21 +218,41 @@ function deleteAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api:: Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getAdmissionregistrationV1beta1APIResources(_api::AdmissionregistrationV1beta1Api; _mediaType=nothing) +function _swaggerinternal_getAdmissionregistrationV1beta1APIResources(_api::AdmissionregistrationV1beta1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/admissionregistration.k8s.io/v1beta1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getAdmissionregistrationV1beta1APIResources(_api::AdmissionregistrationV1beta1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getAdmissionregistrationV1beta1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getAdmissionregistrationV1beta1APIResources(_api::AdmissionregistrationV1beta1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getAdmissionregistrationV1beta1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind MutatingWebhookConfiguration @@ -197,7 +267,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAdmissionregistrationV1beta1MutatingWebhookConfigurationList """ -function listAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAdmissionregistrationV1beta1MutatingWebhookConfigurationList, "/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -210,9 +280,19 @@ function listAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::Admi Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind ValidatingWebhookConfiguration @@ -227,7 +307,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAdmissionregistrationV1beta1ValidatingWebhookConfigurationList """ -function listAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAdmissionregistrationV1beta1ValidatingWebhookConfigurationList, "/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -240,9 +320,19 @@ function listAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::Ad Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified MutatingWebhookConfiguration @@ -254,7 +344,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAdmissionregistrationV1beta1MutatingWebhookConfiguration """ -function patchAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAdmissionregistrationV1beta1MutatingWebhookConfiguration, "/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -263,9 +353,19 @@ function patchAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::Adm Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified ValidatingWebhookConfiguration @@ -277,7 +377,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAdmissionregistrationV1beta1ValidatingWebhookConfiguration """ -function patchAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAdmissionregistrationV1beta1ValidatingWebhookConfiguration, "/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -286,9 +386,19 @@ function patchAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::A Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified MutatingWebhookConfiguration @@ -298,7 +408,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiAdmissionregistrationV1beta1MutatingWebhookConfiguration """ -function readAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAdmissionregistrationV1beta1MutatingWebhookConfiguration, "/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -306,9 +416,19 @@ function readAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::Admi Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified ValidatingWebhookConfiguration @@ -318,7 +438,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiAdmissionregistrationV1beta1ValidatingWebhookConfiguration """ -function readAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAdmissionregistrationV1beta1ValidatingWebhookConfiguration, "/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -326,9 +446,19 @@ function readAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::Ad Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified MutatingWebhookConfiguration @@ -339,7 +469,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAdmissionregistrationV1beta1MutatingWebhookConfiguration """ -function replaceAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAdmissionregistrationV1beta1MutatingWebhookConfiguration, "/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -347,9 +477,19 @@ function replaceAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::A Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified ValidatingWebhookConfiguration @@ -360,7 +500,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAdmissionregistrationV1beta1ValidatingWebhookConfiguration """ -function replaceAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAdmissionregistrationV1beta1ValidatingWebhookConfiguration, "/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -368,9 +508,19 @@ function replaceAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api: Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -386,7 +536,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/admissionregistration.k8s.io/v1beta1/watch/mutatingwebhookconfigurations/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -400,9 +550,19 @@ function watchAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::Adm Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of MutatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead. @@ -417,7 +577,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAdmissionregistrationV1beta1MutatingWebhookConfigurationList(_api::AdmissionregistrationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAdmissionregistrationV1beta1MutatingWebhookConfigurationList(_api::AdmissionregistrationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/admissionregistration.k8s.io/v1beta1/watch/mutatingwebhookconfigurations", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -430,9 +590,19 @@ function watchAdmissionregistrationV1beta1MutatingWebhookConfigurationList(_api: Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAdmissionregistrationV1beta1MutatingWebhookConfigurationList(_api::AdmissionregistrationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAdmissionregistrationV1beta1MutatingWebhookConfigurationList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAdmissionregistrationV1beta1MutatingWebhookConfigurationList(_api::AdmissionregistrationV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAdmissionregistrationV1beta1MutatingWebhookConfigurationList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -448,7 +618,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/admissionregistration.k8s.io/v1beta1/watch/validatingwebhookconfigurations/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -462,9 +632,19 @@ function watchAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::A Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of ValidatingWebhookConfiguration. deprecated: use the 'watch' parameter with a list operation instead. @@ -479,7 +659,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAdmissionregistrationV1beta1ValidatingWebhookConfigurationList(_api::AdmissionregistrationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAdmissionregistrationV1beta1ValidatingWebhookConfigurationList(_api::AdmissionregistrationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/admissionregistration.k8s.io/v1beta1/watch/validatingwebhookconfigurations", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -492,7 +672,17 @@ function watchAdmissionregistrationV1beta1ValidatingWebhookConfigurationList(_ap Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAdmissionregistrationV1beta1ValidatingWebhookConfigurationList(_api::AdmissionregistrationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAdmissionregistrationV1beta1ValidatingWebhookConfigurationList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAdmissionregistrationV1beta1ValidatingWebhookConfigurationList(_api::AdmissionregistrationV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAdmissionregistrationV1beta1ValidatingWebhookConfigurationList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createAdmissionregistrationV1beta1MutatingWebhookConfiguration, createAdmissionregistrationV1beta1ValidatingWebhookConfiguration, deleteAdmissionregistrationV1beta1CollectionMutatingWebhookConfiguration, deleteAdmissionregistrationV1beta1CollectionValidatingWebhookConfiguration, deleteAdmissionregistrationV1beta1MutatingWebhookConfiguration, deleteAdmissionregistrationV1beta1ValidatingWebhookConfiguration, getAdmissionregistrationV1beta1APIResources, listAdmissionregistrationV1beta1MutatingWebhookConfiguration, listAdmissionregistrationV1beta1ValidatingWebhookConfiguration, patchAdmissionregistrationV1beta1MutatingWebhookConfiguration, patchAdmissionregistrationV1beta1ValidatingWebhookConfiguration, readAdmissionregistrationV1beta1MutatingWebhookConfiguration, readAdmissionregistrationV1beta1ValidatingWebhookConfiguration, replaceAdmissionregistrationV1beta1MutatingWebhookConfiguration, replaceAdmissionregistrationV1beta1ValidatingWebhookConfiguration, watchAdmissionregistrationV1beta1MutatingWebhookConfiguration, watchAdmissionregistrationV1beta1MutatingWebhookConfigurationList, watchAdmissionregistrationV1beta1ValidatingWebhookConfiguration, watchAdmissionregistrationV1beta1ValidatingWebhookConfigurationList diff --git a/src/api/api_ApiextensionsApi.jl b/src/api/api_ApiextensionsApi.jl index 773ecac3..20337321 100644 --- a/src/api/api_ApiextensionsApi.jl +++ b/src/api/api_ApiextensionsApi.jl @@ -10,11 +10,21 @@ end get information of a group Return: IoK8sApimachineryPkgApisMetaV1APIGroup """ -function getApiextensionsAPIGroup(_api::ApiextensionsApi; _mediaType=nothing) +function _swaggerinternal_getApiextensionsAPIGroup(_api::ApiextensionsApi; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIGroup, "/apis/apiextensions.k8s.io/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getApiextensionsAPIGroup(_api::ApiextensionsApi; _mediaType=nothing) + _ctx = _swaggerinternal_getApiextensionsAPIGroup(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getApiextensionsAPIGroup(_api::ApiextensionsApi, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getApiextensionsAPIGroup(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export getApiextensionsAPIGroup diff --git a/src/api/api_ApiextensionsV1Api.jl b/src/api/api_ApiextensionsV1Api.jl index 68622648..9409a09a 100644 --- a/src/api/api_ApiextensionsV1Api.jl +++ b/src/api/api_ApiextensionsV1Api.jl @@ -14,16 +14,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinition """ -function createApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinition, "/apis/apiextensions.k8s.io/v1/customresourcedefinitions", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createApiextensionsV1CustomResourceDefinition(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createApiextensionsV1CustomResourceDefinition(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of CustomResourceDefinition @@ -43,7 +53,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteApiextensionsV1CollectionCustomResourceDefinition(_api::ApiextensionsV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteApiextensionsV1CollectionCustomResourceDefinition(_api::ApiextensionsV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apiextensions.k8s.io/v1/customresourcedefinitions", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -60,9 +70,19 @@ function deleteApiextensionsV1CollectionCustomResourceDefinition(_api::Apiextens Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteApiextensionsV1CollectionCustomResourceDefinition(_api::ApiextensionsV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteApiextensionsV1CollectionCustomResourceDefinition(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteApiextensionsV1CollectionCustomResourceDefinition(_api::ApiextensionsV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteApiextensionsV1CollectionCustomResourceDefinition(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a CustomResourceDefinition @@ -75,7 +95,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -85,21 +105,41 @@ function deleteApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api, Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteApiextensionsV1CustomResourceDefinition(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteApiextensionsV1CustomResourceDefinition(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getApiextensionsV1APIResources(_api::ApiextensionsV1Api; _mediaType=nothing) +function _swaggerinternal_getApiextensionsV1APIResources(_api::ApiextensionsV1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/apiextensions.k8s.io/v1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getApiextensionsV1APIResources(_api::ApiextensionsV1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getApiextensionsV1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getApiextensionsV1APIResources(_api::ApiextensionsV1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getApiextensionsV1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind CustomResourceDefinition @@ -114,7 +154,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinitionList """ -function listApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinitionList, "/apis/apiextensions.k8s.io/v1/customresourcedefinitions", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -127,9 +167,19 @@ function listApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api; p Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listApiextensionsV1CustomResourceDefinition(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listApiextensionsV1CustomResourceDefinition(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified CustomResourceDefinition @@ -141,7 +191,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinition """ -function patchApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinition, "/apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -150,9 +200,19 @@ function patchApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api, Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchApiextensionsV1CustomResourceDefinition(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchApiextensionsV1CustomResourceDefinition(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified CustomResourceDefinition @@ -164,7 +224,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinition """ -function patchApiextensionsV1CustomResourceDefinitionStatus(_api::ApiextensionsV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchApiextensionsV1CustomResourceDefinitionStatus(_api::ApiextensionsV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinition, "/apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -173,9 +233,19 @@ function patchApiextensionsV1CustomResourceDefinitionStatus(_api::ApiextensionsV Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchApiextensionsV1CustomResourceDefinitionStatus(_api::ApiextensionsV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchApiextensionsV1CustomResourceDefinitionStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchApiextensionsV1CustomResourceDefinitionStatus(_api::ApiextensionsV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchApiextensionsV1CustomResourceDefinitionStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified CustomResourceDefinition @@ -185,7 +255,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinition """ -function readApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinition, "/apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -193,9 +263,19 @@ function readApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api, n Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readApiextensionsV1CustomResourceDefinition(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readApiextensionsV1CustomResourceDefinition(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified CustomResourceDefinition @@ -203,15 +283,25 @@ Param: name::String (required) Param: pretty::String Return: IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinition """ -function readApiextensionsV1CustomResourceDefinitionStatus(_api::ApiextensionsV1Api, name::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readApiextensionsV1CustomResourceDefinitionStatus(_api::ApiextensionsV1Api, name::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinition, "/apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readApiextensionsV1CustomResourceDefinitionStatus(_api::ApiextensionsV1Api, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readApiextensionsV1CustomResourceDefinitionStatus(_api, name; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readApiextensionsV1CustomResourceDefinitionStatus(_api::ApiextensionsV1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readApiextensionsV1CustomResourceDefinitionStatus(_api, name; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified CustomResourceDefinition @@ -222,7 +312,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinition """ -function replaceApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinition, "/apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -230,9 +320,19 @@ function replaceApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceApiextensionsV1CustomResourceDefinition(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceApiextensionsV1CustomResourceDefinition(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified CustomResourceDefinition @@ -243,7 +343,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinition """ -function replaceApiextensionsV1CustomResourceDefinitionStatus(_api::ApiextensionsV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceApiextensionsV1CustomResourceDefinitionStatus(_api::ApiextensionsV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinition, "/apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -251,9 +351,19 @@ function replaceApiextensionsV1CustomResourceDefinitionStatus(_api::Apiextension Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceApiextensionsV1CustomResourceDefinitionStatus(_api::ApiextensionsV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceApiextensionsV1CustomResourceDefinitionStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceApiextensionsV1CustomResourceDefinitionStatus(_api::ApiextensionsV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceApiextensionsV1CustomResourceDefinitionStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -269,7 +379,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apiextensions.k8s.io/v1/watch/customresourcedefinitions/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -283,9 +393,19 @@ function watchApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api, Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchApiextensionsV1CustomResourceDefinition(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchApiextensionsV1CustomResourceDefinition(_api::ApiextensionsV1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchApiextensionsV1CustomResourceDefinition(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of CustomResourceDefinition. deprecated: use the 'watch' parameter with a list operation instead. @@ -300,7 +420,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchApiextensionsV1CustomResourceDefinitionList(_api::ApiextensionsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchApiextensionsV1CustomResourceDefinitionList(_api::ApiextensionsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apiextensions.k8s.io/v1/watch/customresourcedefinitions", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -313,7 +433,17 @@ function watchApiextensionsV1CustomResourceDefinitionList(_api::ApiextensionsV1A Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchApiextensionsV1CustomResourceDefinitionList(_api::ApiextensionsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchApiextensionsV1CustomResourceDefinitionList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchApiextensionsV1CustomResourceDefinitionList(_api::ApiextensionsV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchApiextensionsV1CustomResourceDefinitionList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createApiextensionsV1CustomResourceDefinition, deleteApiextensionsV1CollectionCustomResourceDefinition, deleteApiextensionsV1CustomResourceDefinition, getApiextensionsV1APIResources, listApiextensionsV1CustomResourceDefinition, patchApiextensionsV1CustomResourceDefinition, patchApiextensionsV1CustomResourceDefinitionStatus, readApiextensionsV1CustomResourceDefinition, readApiextensionsV1CustomResourceDefinitionStatus, replaceApiextensionsV1CustomResourceDefinition, replaceApiextensionsV1CustomResourceDefinitionStatus, watchApiextensionsV1CustomResourceDefinition, watchApiextensionsV1CustomResourceDefinitionList diff --git a/src/api/api_ApiextensionsV1beta1Api.jl b/src/api/api_ApiextensionsV1beta1Api.jl index 2798441f..40dd914b 100644 --- a/src/api/api_ApiextensionsV1beta1Api.jl +++ b/src/api/api_ApiextensionsV1beta1Api.jl @@ -14,16 +14,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiextensionsApiserverPkgApisApiextensionsV1beta1CustomResourceDefinition """ -function createApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiextensionsApiserverPkgApisApiextensionsV1beta1CustomResourceDefinition, "/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createApiextensionsV1beta1CustomResourceDefinition(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createApiextensionsV1beta1CustomResourceDefinition(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of CustomResourceDefinition @@ -43,7 +53,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteApiextensionsV1beta1CollectionCustomResourceDefinition(_api::ApiextensionsV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteApiextensionsV1beta1CollectionCustomResourceDefinition(_api::ApiextensionsV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -60,9 +70,19 @@ function deleteApiextensionsV1beta1CollectionCustomResourceDefinition(_api::Apie Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteApiextensionsV1beta1CollectionCustomResourceDefinition(_api::ApiextensionsV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteApiextensionsV1beta1CollectionCustomResourceDefinition(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteApiextensionsV1beta1CollectionCustomResourceDefinition(_api::ApiextensionsV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteApiextensionsV1beta1CollectionCustomResourceDefinition(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a CustomResourceDefinition @@ -75,7 +95,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -85,21 +105,41 @@ function deleteApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteApiextensionsV1beta1CustomResourceDefinition(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteApiextensionsV1beta1CustomResourceDefinition(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getApiextensionsV1beta1APIResources(_api::ApiextensionsV1beta1Api; _mediaType=nothing) +function _swaggerinternal_getApiextensionsV1beta1APIResources(_api::ApiextensionsV1beta1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/apiextensions.k8s.io/v1beta1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getApiextensionsV1beta1APIResources(_api::ApiextensionsV1beta1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getApiextensionsV1beta1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getApiextensionsV1beta1APIResources(_api::ApiextensionsV1beta1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getApiextensionsV1beta1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind CustomResourceDefinition @@ -114,7 +154,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiextensionsApiserverPkgApisApiextensionsV1beta1CustomResourceDefinitionList """ -function listApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiextensionsApiserverPkgApisApiextensionsV1beta1CustomResourceDefinitionList, "/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -127,9 +167,19 @@ function listApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1b Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listApiextensionsV1beta1CustomResourceDefinition(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listApiextensionsV1beta1CustomResourceDefinition(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified CustomResourceDefinition @@ -141,7 +191,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiextensionsApiserverPkgApisApiextensionsV1beta1CustomResourceDefinition """ -function patchApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiextensionsApiserverPkgApisApiextensionsV1beta1CustomResourceDefinition, "/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -150,9 +200,19 @@ function patchApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1 Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchApiextensionsV1beta1CustomResourceDefinition(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchApiextensionsV1beta1CustomResourceDefinition(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified CustomResourceDefinition @@ -164,7 +224,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiextensionsApiserverPkgApisApiextensionsV1beta1CustomResourceDefinition """ -function patchApiextensionsV1beta1CustomResourceDefinitionStatus(_api::ApiextensionsV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchApiextensionsV1beta1CustomResourceDefinitionStatus(_api::ApiextensionsV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiextensionsApiserverPkgApisApiextensionsV1beta1CustomResourceDefinition, "/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -173,9 +233,19 @@ function patchApiextensionsV1beta1CustomResourceDefinitionStatus(_api::Apiextens Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchApiextensionsV1beta1CustomResourceDefinitionStatus(_api::ApiextensionsV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchApiextensionsV1beta1CustomResourceDefinitionStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchApiextensionsV1beta1CustomResourceDefinitionStatus(_api::ApiextensionsV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchApiextensionsV1beta1CustomResourceDefinitionStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified CustomResourceDefinition @@ -185,7 +255,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiextensionsApiserverPkgApisApiextensionsV1beta1CustomResourceDefinition """ -function readApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiextensionsApiserverPkgApisApiextensionsV1beta1CustomResourceDefinition, "/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -193,9 +263,19 @@ function readApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1b Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readApiextensionsV1beta1CustomResourceDefinition(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1beta1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readApiextensionsV1beta1CustomResourceDefinition(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified CustomResourceDefinition @@ -203,15 +283,25 @@ Param: name::String (required) Param: pretty::String Return: IoK8sApiextensionsApiserverPkgApisApiextensionsV1beta1CustomResourceDefinition """ -function readApiextensionsV1beta1CustomResourceDefinitionStatus(_api::ApiextensionsV1beta1Api, name::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readApiextensionsV1beta1CustomResourceDefinitionStatus(_api::ApiextensionsV1beta1Api, name::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiextensionsApiserverPkgApisApiextensionsV1beta1CustomResourceDefinition, "/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readApiextensionsV1beta1CustomResourceDefinitionStatus(_api::ApiextensionsV1beta1Api, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readApiextensionsV1beta1CustomResourceDefinitionStatus(_api, name; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readApiextensionsV1beta1CustomResourceDefinitionStatus(_api::ApiextensionsV1beta1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readApiextensionsV1beta1CustomResourceDefinitionStatus(_api, name; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified CustomResourceDefinition @@ -222,7 +312,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiextensionsApiserverPkgApisApiextensionsV1beta1CustomResourceDefinition """ -function replaceApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiextensionsApiserverPkgApisApiextensionsV1beta1CustomResourceDefinition, "/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -230,9 +320,19 @@ function replaceApiextensionsV1beta1CustomResourceDefinition(_api::Apiextensions Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceApiextensionsV1beta1CustomResourceDefinition(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceApiextensionsV1beta1CustomResourceDefinition(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified CustomResourceDefinition @@ -243,7 +343,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiextensionsApiserverPkgApisApiextensionsV1beta1CustomResourceDefinition """ -function replaceApiextensionsV1beta1CustomResourceDefinitionStatus(_api::ApiextensionsV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceApiextensionsV1beta1CustomResourceDefinitionStatus(_api::ApiextensionsV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiextensionsApiserverPkgApisApiextensionsV1beta1CustomResourceDefinition, "/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -251,9 +351,19 @@ function replaceApiextensionsV1beta1CustomResourceDefinitionStatus(_api::Apiexte Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceApiextensionsV1beta1CustomResourceDefinitionStatus(_api::ApiextensionsV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceApiextensionsV1beta1CustomResourceDefinitionStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceApiextensionsV1beta1CustomResourceDefinitionStatus(_api::ApiextensionsV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceApiextensionsV1beta1CustomResourceDefinitionStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -269,7 +379,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apiextensions.k8s.io/v1beta1/watch/customresourcedefinitions/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -283,9 +393,19 @@ function watchApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1 Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchApiextensionsV1beta1CustomResourceDefinition(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchApiextensionsV1beta1CustomResourceDefinition(_api::ApiextensionsV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchApiextensionsV1beta1CustomResourceDefinition(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of CustomResourceDefinition. deprecated: use the 'watch' parameter with a list operation instead. @@ -300,7 +420,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchApiextensionsV1beta1CustomResourceDefinitionList(_api::ApiextensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchApiextensionsV1beta1CustomResourceDefinitionList(_api::ApiextensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apiextensions.k8s.io/v1beta1/watch/customresourcedefinitions", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -313,7 +433,17 @@ function watchApiextensionsV1beta1CustomResourceDefinitionList(_api::Apiextensio Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchApiextensionsV1beta1CustomResourceDefinitionList(_api::ApiextensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchApiextensionsV1beta1CustomResourceDefinitionList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchApiextensionsV1beta1CustomResourceDefinitionList(_api::ApiextensionsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchApiextensionsV1beta1CustomResourceDefinitionList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createApiextensionsV1beta1CustomResourceDefinition, deleteApiextensionsV1beta1CollectionCustomResourceDefinition, deleteApiextensionsV1beta1CustomResourceDefinition, getApiextensionsV1beta1APIResources, listApiextensionsV1beta1CustomResourceDefinition, patchApiextensionsV1beta1CustomResourceDefinition, patchApiextensionsV1beta1CustomResourceDefinitionStatus, readApiextensionsV1beta1CustomResourceDefinition, readApiextensionsV1beta1CustomResourceDefinitionStatus, replaceApiextensionsV1beta1CustomResourceDefinition, replaceApiextensionsV1beta1CustomResourceDefinitionStatus, watchApiextensionsV1beta1CustomResourceDefinition, watchApiextensionsV1beta1CustomResourceDefinitionList diff --git a/src/api/api_ApiregistrationApi.jl b/src/api/api_ApiregistrationApi.jl index 88d81a7c..81b4f46b 100644 --- a/src/api/api_ApiregistrationApi.jl +++ b/src/api/api_ApiregistrationApi.jl @@ -10,11 +10,21 @@ end get information of a group Return: IoK8sApimachineryPkgApisMetaV1APIGroup """ -function getApiregistrationAPIGroup(_api::ApiregistrationApi; _mediaType=nothing) +function _swaggerinternal_getApiregistrationAPIGroup(_api::ApiregistrationApi; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIGroup, "/apis/apiregistration.k8s.io/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getApiregistrationAPIGroup(_api::ApiregistrationApi; _mediaType=nothing) + _ctx = _swaggerinternal_getApiregistrationAPIGroup(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getApiregistrationAPIGroup(_api::ApiregistrationApi, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getApiregistrationAPIGroup(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export getApiregistrationAPIGroup diff --git a/src/api/api_ApiregistrationV1Api.jl b/src/api/api_ApiregistrationV1Api.jl index 01943014..90aa5730 100644 --- a/src/api/api_ApiregistrationV1Api.jl +++ b/src/api/api_ApiregistrationV1Api.jl @@ -14,16 +14,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sKubeAggregatorPkgApisApiregistrationV1APIService """ -function createApiregistrationV1APIService(_api::ApiregistrationV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createApiregistrationV1APIService(_api::ApiregistrationV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sKubeAggregatorPkgApisApiregistrationV1APIService, "/apis/apiregistration.k8s.io/v1/apiservices", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createApiregistrationV1APIService(_api::ApiregistrationV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createApiregistrationV1APIService(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createApiregistrationV1APIService(_api::ApiregistrationV1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createApiregistrationV1APIService(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete an APIService @@ -36,7 +46,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteApiregistrationV1APIService(_api::ApiregistrationV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteApiregistrationV1APIService(_api::ApiregistrationV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apiregistration.k8s.io/v1/apiservices/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -46,9 +56,19 @@ function deleteApiregistrationV1APIService(_api::ApiregistrationV1Api, name::Str Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteApiregistrationV1APIService(_api::ApiregistrationV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteApiregistrationV1APIService(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteApiregistrationV1APIService(_api::ApiregistrationV1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteApiregistrationV1APIService(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of APIService @@ -68,7 +88,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteApiregistrationV1CollectionAPIService(_api::ApiregistrationV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteApiregistrationV1CollectionAPIService(_api::ApiregistrationV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apiregistration.k8s.io/v1/apiservices", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -85,21 +105,41 @@ function deleteApiregistrationV1CollectionAPIService(_api::ApiregistrationV1Api; Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteApiregistrationV1CollectionAPIService(_api::ApiregistrationV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteApiregistrationV1CollectionAPIService(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteApiregistrationV1CollectionAPIService(_api::ApiregistrationV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteApiregistrationV1CollectionAPIService(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getApiregistrationV1APIResources(_api::ApiregistrationV1Api; _mediaType=nothing) +function _swaggerinternal_getApiregistrationV1APIResources(_api::ApiregistrationV1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/apiregistration.k8s.io/v1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getApiregistrationV1APIResources(_api::ApiregistrationV1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getApiregistrationV1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getApiregistrationV1APIResources(_api::ApiregistrationV1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getApiregistrationV1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind APIService @@ -114,7 +154,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceList """ -function listApiregistrationV1APIService(_api::ApiregistrationV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listApiregistrationV1APIService(_api::ApiregistrationV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceList, "/apis/apiregistration.k8s.io/v1/apiservices", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -127,9 +167,19 @@ function listApiregistrationV1APIService(_api::ApiregistrationV1Api; pretty=noth Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listApiregistrationV1APIService(_api::ApiregistrationV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listApiregistrationV1APIService(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listApiregistrationV1APIService(_api::ApiregistrationV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listApiregistrationV1APIService(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified APIService @@ -141,7 +191,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sKubeAggregatorPkgApisApiregistrationV1APIService """ -function patchApiregistrationV1APIService(_api::ApiregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchApiregistrationV1APIService(_api::ApiregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sKubeAggregatorPkgApisApiregistrationV1APIService, "/apis/apiregistration.k8s.io/v1/apiservices/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -150,9 +200,19 @@ function patchApiregistrationV1APIService(_api::ApiregistrationV1Api, name::Stri Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchApiregistrationV1APIService(_api::ApiregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchApiregistrationV1APIService(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchApiregistrationV1APIService(_api::ApiregistrationV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchApiregistrationV1APIService(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified APIService @@ -164,7 +224,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sKubeAggregatorPkgApisApiregistrationV1APIService """ -function patchApiregistrationV1APIServiceStatus(_api::ApiregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchApiregistrationV1APIServiceStatus(_api::ApiregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sKubeAggregatorPkgApisApiregistrationV1APIService, "/apis/apiregistration.k8s.io/v1/apiservices/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -173,9 +233,19 @@ function patchApiregistrationV1APIServiceStatus(_api::ApiregistrationV1Api, name Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchApiregistrationV1APIServiceStatus(_api::ApiregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchApiregistrationV1APIServiceStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchApiregistrationV1APIServiceStatus(_api::ApiregistrationV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchApiregistrationV1APIServiceStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified APIService @@ -185,7 +255,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sKubeAggregatorPkgApisApiregistrationV1APIService """ -function readApiregistrationV1APIService(_api::ApiregistrationV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readApiregistrationV1APIService(_api::ApiregistrationV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sKubeAggregatorPkgApisApiregistrationV1APIService, "/apis/apiregistration.k8s.io/v1/apiservices/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -193,9 +263,19 @@ function readApiregistrationV1APIService(_api::ApiregistrationV1Api, name::Strin Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readApiregistrationV1APIService(_api::ApiregistrationV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readApiregistrationV1APIService(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readApiregistrationV1APIService(_api::ApiregistrationV1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readApiregistrationV1APIService(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified APIService @@ -203,15 +283,25 @@ Param: name::String (required) Param: pretty::String Return: IoK8sKubeAggregatorPkgApisApiregistrationV1APIService """ -function readApiregistrationV1APIServiceStatus(_api::ApiregistrationV1Api, name::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readApiregistrationV1APIServiceStatus(_api::ApiregistrationV1Api, name::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sKubeAggregatorPkgApisApiregistrationV1APIService, "/apis/apiregistration.k8s.io/v1/apiservices/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readApiregistrationV1APIServiceStatus(_api::ApiregistrationV1Api, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readApiregistrationV1APIServiceStatus(_api, name; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readApiregistrationV1APIServiceStatus(_api::ApiregistrationV1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readApiregistrationV1APIServiceStatus(_api, name; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified APIService @@ -222,7 +312,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sKubeAggregatorPkgApisApiregistrationV1APIService """ -function replaceApiregistrationV1APIService(_api::ApiregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceApiregistrationV1APIService(_api::ApiregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sKubeAggregatorPkgApisApiregistrationV1APIService, "/apis/apiregistration.k8s.io/v1/apiservices/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -230,9 +320,19 @@ function replaceApiregistrationV1APIService(_api::ApiregistrationV1Api, name::St Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceApiregistrationV1APIService(_api::ApiregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceApiregistrationV1APIService(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceApiregistrationV1APIService(_api::ApiregistrationV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceApiregistrationV1APIService(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified APIService @@ -243,7 +343,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sKubeAggregatorPkgApisApiregistrationV1APIService """ -function replaceApiregistrationV1APIServiceStatus(_api::ApiregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceApiregistrationV1APIServiceStatus(_api::ApiregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sKubeAggregatorPkgApisApiregistrationV1APIService, "/apis/apiregistration.k8s.io/v1/apiservices/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -251,9 +351,19 @@ function replaceApiregistrationV1APIServiceStatus(_api::ApiregistrationV1Api, na Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceApiregistrationV1APIServiceStatus(_api::ApiregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceApiregistrationV1APIServiceStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceApiregistrationV1APIServiceStatus(_api::ApiregistrationV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceApiregistrationV1APIServiceStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -269,7 +379,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchApiregistrationV1APIService(_api::ApiregistrationV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchApiregistrationV1APIService(_api::ApiregistrationV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apiregistration.k8s.io/v1/watch/apiservices/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -283,9 +393,19 @@ function watchApiregistrationV1APIService(_api::ApiregistrationV1Api, name::Stri Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchApiregistrationV1APIService(_api::ApiregistrationV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchApiregistrationV1APIService(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchApiregistrationV1APIService(_api::ApiregistrationV1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchApiregistrationV1APIService(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of APIService. deprecated: use the 'watch' parameter with a list operation instead. @@ -300,7 +420,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchApiregistrationV1APIServiceList(_api::ApiregistrationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchApiregistrationV1APIServiceList(_api::ApiregistrationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apiregistration.k8s.io/v1/watch/apiservices", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -313,7 +433,17 @@ function watchApiregistrationV1APIServiceList(_api::ApiregistrationV1Api; allowW Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchApiregistrationV1APIServiceList(_api::ApiregistrationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchApiregistrationV1APIServiceList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchApiregistrationV1APIServiceList(_api::ApiregistrationV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchApiregistrationV1APIServiceList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createApiregistrationV1APIService, deleteApiregistrationV1APIService, deleteApiregistrationV1CollectionAPIService, getApiregistrationV1APIResources, listApiregistrationV1APIService, patchApiregistrationV1APIService, patchApiregistrationV1APIServiceStatus, readApiregistrationV1APIService, readApiregistrationV1APIServiceStatus, replaceApiregistrationV1APIService, replaceApiregistrationV1APIServiceStatus, watchApiregistrationV1APIService, watchApiregistrationV1APIServiceList diff --git a/src/api/api_ApiregistrationV1beta1Api.jl b/src/api/api_ApiregistrationV1beta1Api.jl index 2c6fffd6..3592e598 100644 --- a/src/api/api_ApiregistrationV1beta1Api.jl +++ b/src/api/api_ApiregistrationV1beta1Api.jl @@ -14,16 +14,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sKubeAggregatorPkgApisApiregistrationV1beta1APIService """ -function createApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sKubeAggregatorPkgApisApiregistrationV1beta1APIService, "/apis/apiregistration.k8s.io/v1beta1/apiservices", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createApiregistrationV1beta1APIService(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createApiregistrationV1beta1APIService(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete an APIService @@ -36,7 +46,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apiregistration.k8s.io/v1beta1/apiservices/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -46,9 +56,19 @@ function deleteApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api, Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteApiregistrationV1beta1APIService(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteApiregistrationV1beta1APIService(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of APIService @@ -68,7 +88,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteApiregistrationV1beta1CollectionAPIService(_api::ApiregistrationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteApiregistrationV1beta1CollectionAPIService(_api::ApiregistrationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apiregistration.k8s.io/v1beta1/apiservices", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -85,21 +105,41 @@ function deleteApiregistrationV1beta1CollectionAPIService(_api::ApiregistrationV Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteApiregistrationV1beta1CollectionAPIService(_api::ApiregistrationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteApiregistrationV1beta1CollectionAPIService(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteApiregistrationV1beta1CollectionAPIService(_api::ApiregistrationV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteApiregistrationV1beta1CollectionAPIService(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getApiregistrationV1beta1APIResources(_api::ApiregistrationV1beta1Api; _mediaType=nothing) +function _swaggerinternal_getApiregistrationV1beta1APIResources(_api::ApiregistrationV1beta1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/apiregistration.k8s.io/v1beta1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getApiregistrationV1beta1APIResources(_api::ApiregistrationV1beta1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getApiregistrationV1beta1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getApiregistrationV1beta1APIResources(_api::ApiregistrationV1beta1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getApiregistrationV1beta1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind APIService @@ -114,7 +154,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sKubeAggregatorPkgApisApiregistrationV1beta1APIServiceList """ -function listApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sKubeAggregatorPkgApisApiregistrationV1beta1APIServiceList, "/apis/apiregistration.k8s.io/v1beta1/apiservices", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -127,9 +167,19 @@ function listApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api; p Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listApiregistrationV1beta1APIService(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listApiregistrationV1beta1APIService(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified APIService @@ -141,7 +191,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sKubeAggregatorPkgApisApiregistrationV1beta1APIService """ -function patchApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sKubeAggregatorPkgApisApiregistrationV1beta1APIService, "/apis/apiregistration.k8s.io/v1beta1/apiservices/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -150,9 +200,19 @@ function patchApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api, Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchApiregistrationV1beta1APIService(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchApiregistrationV1beta1APIService(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified APIService @@ -164,7 +224,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sKubeAggregatorPkgApisApiregistrationV1beta1APIService """ -function patchApiregistrationV1beta1APIServiceStatus(_api::ApiregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchApiregistrationV1beta1APIServiceStatus(_api::ApiregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sKubeAggregatorPkgApisApiregistrationV1beta1APIService, "/apis/apiregistration.k8s.io/v1beta1/apiservices/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -173,9 +233,19 @@ function patchApiregistrationV1beta1APIServiceStatus(_api::ApiregistrationV1beta Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchApiregistrationV1beta1APIServiceStatus(_api::ApiregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchApiregistrationV1beta1APIServiceStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchApiregistrationV1beta1APIServiceStatus(_api::ApiregistrationV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchApiregistrationV1beta1APIServiceStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified APIService @@ -185,7 +255,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sKubeAggregatorPkgApisApiregistrationV1beta1APIService """ -function readApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sKubeAggregatorPkgApisApiregistrationV1beta1APIService, "/apis/apiregistration.k8s.io/v1beta1/apiservices/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -193,9 +263,19 @@ function readApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api, n Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readApiregistrationV1beta1APIService(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readApiregistrationV1beta1APIService(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified APIService @@ -203,15 +283,25 @@ Param: name::String (required) Param: pretty::String Return: IoK8sKubeAggregatorPkgApisApiregistrationV1beta1APIService """ -function readApiregistrationV1beta1APIServiceStatus(_api::ApiregistrationV1beta1Api, name::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readApiregistrationV1beta1APIServiceStatus(_api::ApiregistrationV1beta1Api, name::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sKubeAggregatorPkgApisApiregistrationV1beta1APIService, "/apis/apiregistration.k8s.io/v1beta1/apiservices/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readApiregistrationV1beta1APIServiceStatus(_api::ApiregistrationV1beta1Api, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readApiregistrationV1beta1APIServiceStatus(_api, name; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readApiregistrationV1beta1APIServiceStatus(_api::ApiregistrationV1beta1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readApiregistrationV1beta1APIServiceStatus(_api, name; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified APIService @@ -222,7 +312,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sKubeAggregatorPkgApisApiregistrationV1beta1APIService """ -function replaceApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sKubeAggregatorPkgApisApiregistrationV1beta1APIService, "/apis/apiregistration.k8s.io/v1beta1/apiservices/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -230,9 +320,19 @@ function replaceApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceApiregistrationV1beta1APIService(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceApiregistrationV1beta1APIService(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified APIService @@ -243,7 +343,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sKubeAggregatorPkgApisApiregistrationV1beta1APIService """ -function replaceApiregistrationV1beta1APIServiceStatus(_api::ApiregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceApiregistrationV1beta1APIServiceStatus(_api::ApiregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sKubeAggregatorPkgApisApiregistrationV1beta1APIService, "/apis/apiregistration.k8s.io/v1beta1/apiservices/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -251,9 +351,19 @@ function replaceApiregistrationV1beta1APIServiceStatus(_api::ApiregistrationV1be Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceApiregistrationV1beta1APIServiceStatus(_api::ApiregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceApiregistrationV1beta1APIServiceStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceApiregistrationV1beta1APIServiceStatus(_api::ApiregistrationV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceApiregistrationV1beta1APIServiceStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -269,7 +379,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apiregistration.k8s.io/v1beta1/watch/apiservices/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -283,9 +393,19 @@ function watchApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api, Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchApiregistrationV1beta1APIService(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchApiregistrationV1beta1APIService(_api::ApiregistrationV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchApiregistrationV1beta1APIService(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of APIService. deprecated: use the 'watch' parameter with a list operation instead. @@ -300,7 +420,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchApiregistrationV1beta1APIServiceList(_api::ApiregistrationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchApiregistrationV1beta1APIServiceList(_api::ApiregistrationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apiregistration.k8s.io/v1beta1/watch/apiservices", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -313,7 +433,17 @@ function watchApiregistrationV1beta1APIServiceList(_api::ApiregistrationV1beta1A Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchApiregistrationV1beta1APIServiceList(_api::ApiregistrationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchApiregistrationV1beta1APIServiceList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchApiregistrationV1beta1APIServiceList(_api::ApiregistrationV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchApiregistrationV1beta1APIServiceList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createApiregistrationV1beta1APIService, deleteApiregistrationV1beta1APIService, deleteApiregistrationV1beta1CollectionAPIService, getApiregistrationV1beta1APIResources, listApiregistrationV1beta1APIService, patchApiregistrationV1beta1APIService, patchApiregistrationV1beta1APIServiceStatus, readApiregistrationV1beta1APIService, readApiregistrationV1beta1APIServiceStatus, replaceApiregistrationV1beta1APIService, replaceApiregistrationV1beta1APIServiceStatus, watchApiregistrationV1beta1APIService, watchApiregistrationV1beta1APIServiceList diff --git a/src/api/api_ApisApi.jl b/src/api/api_ApisApi.jl index cef14fb2..55d766ec 100644 --- a/src/api/api_ApisApi.jl +++ b/src/api/api_ApisApi.jl @@ -10,11 +10,21 @@ end get available API versions Return: IoK8sApimachineryPkgApisMetaV1APIGroupList """ -function getAPIVersions(_api::ApisApi; _mediaType=nothing) +function _swaggerinternal_getAPIVersions(_api::ApisApi; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIGroupList, "/apis/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getAPIVersions(_api::ApisApi; _mediaType=nothing) + _ctx = _swaggerinternal_getAPIVersions(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getAPIVersions(_api::ApisApi, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getAPIVersions(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export getAPIVersions diff --git a/src/api/api_AppsApi.jl b/src/api/api_AppsApi.jl index cf5cf6d7..ad8e83bb 100644 --- a/src/api/api_AppsApi.jl +++ b/src/api/api_AppsApi.jl @@ -10,11 +10,21 @@ end get information of a group Return: IoK8sApimachineryPkgApisMetaV1APIGroup """ -function getAppsAPIGroup(_api::AppsApi; _mediaType=nothing) +function _swaggerinternal_getAppsAPIGroup(_api::AppsApi; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIGroup, "/apis/apps/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getAppsAPIGroup(_api::AppsApi; _mediaType=nothing) + _ctx = _swaggerinternal_getAppsAPIGroup(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getAppsAPIGroup(_api::AppsApi, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getAppsAPIGroup(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export getAppsAPIGroup diff --git a/src/api/api_AppsV1Api.jl b/src/api/api_AppsV1Api.jl index 6c772cef..544736c2 100644 --- a/src/api/api_AppsV1Api.jl +++ b/src/api/api_AppsV1Api.jl @@ -15,7 +15,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1ControllerRevision """ -function createAppsV1NamespacedControllerRevision(_api::AppsV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createAppsV1NamespacedControllerRevision(_api::AppsV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAppsV1ControllerRevision, "/apis/apps/v1/namespaces/{namespace}/controllerrevisions", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -23,9 +23,19 @@ function createAppsV1NamespacedControllerRevision(_api::AppsV1Api, namespace::St Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAppsV1NamespacedControllerRevision(_api::AppsV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAppsV1NamespacedControllerRevision(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAppsV1NamespacedControllerRevision(_api::AppsV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAppsV1NamespacedControllerRevision(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a DaemonSet @@ -36,7 +46,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1DaemonSet """ -function createAppsV1NamespacedDaemonSet(_api::AppsV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createAppsV1NamespacedDaemonSet(_api::AppsV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAppsV1DaemonSet, "/apis/apps/v1/namespaces/{namespace}/daemonsets", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -44,9 +54,19 @@ function createAppsV1NamespacedDaemonSet(_api::AppsV1Api, namespace::String, bod Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAppsV1NamespacedDaemonSet(_api::AppsV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAppsV1NamespacedDaemonSet(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAppsV1NamespacedDaemonSet(_api::AppsV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAppsV1NamespacedDaemonSet(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a Deployment @@ -57,7 +77,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1Deployment """ -function createAppsV1NamespacedDeployment(_api::AppsV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createAppsV1NamespacedDeployment(_api::AppsV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAppsV1Deployment, "/apis/apps/v1/namespaces/{namespace}/deployments", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -65,9 +85,19 @@ function createAppsV1NamespacedDeployment(_api::AppsV1Api, namespace::String, bo Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAppsV1NamespacedDeployment(_api::AppsV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAppsV1NamespacedDeployment(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAppsV1NamespacedDeployment(_api::AppsV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAppsV1NamespacedDeployment(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a ReplicaSet @@ -78,7 +108,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1ReplicaSet """ -function createAppsV1NamespacedReplicaSet(_api::AppsV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createAppsV1NamespacedReplicaSet(_api::AppsV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAppsV1ReplicaSet, "/apis/apps/v1/namespaces/{namespace}/replicasets", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -86,9 +116,19 @@ function createAppsV1NamespacedReplicaSet(_api::AppsV1Api, namespace::String, bo Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAppsV1NamespacedReplicaSet(_api::AppsV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAppsV1NamespacedReplicaSet(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAppsV1NamespacedReplicaSet(_api::AppsV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAppsV1NamespacedReplicaSet(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a StatefulSet @@ -99,7 +139,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1StatefulSet """ -function createAppsV1NamespacedStatefulSet(_api::AppsV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createAppsV1NamespacedStatefulSet(_api::AppsV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAppsV1StatefulSet, "/apis/apps/v1/namespaces/{namespace}/statefulsets", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -107,9 +147,19 @@ function createAppsV1NamespacedStatefulSet(_api::AppsV1Api, namespace::String, b Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAppsV1NamespacedStatefulSet(_api::AppsV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAppsV1NamespacedStatefulSet(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAppsV1NamespacedStatefulSet(_api::AppsV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAppsV1NamespacedStatefulSet(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of ControllerRevision @@ -130,7 +180,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAppsV1CollectionNamespacedControllerRevision(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAppsV1CollectionNamespacedControllerRevision(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apps/v1/namespaces/{namespace}/controllerrevisions", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -148,9 +198,19 @@ function deleteAppsV1CollectionNamespacedControllerRevision(_api::AppsV1Api, nam Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAppsV1CollectionNamespacedControllerRevision(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1CollectionNamespacedControllerRevision(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAppsV1CollectionNamespacedControllerRevision(_api::AppsV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1CollectionNamespacedControllerRevision(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of DaemonSet @@ -171,7 +231,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAppsV1CollectionNamespacedDaemonSet(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAppsV1CollectionNamespacedDaemonSet(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apps/v1/namespaces/{namespace}/daemonsets", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -189,9 +249,19 @@ function deleteAppsV1CollectionNamespacedDaemonSet(_api::AppsV1Api, namespace::S Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAppsV1CollectionNamespacedDaemonSet(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1CollectionNamespacedDaemonSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAppsV1CollectionNamespacedDaemonSet(_api::AppsV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1CollectionNamespacedDaemonSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of Deployment @@ -212,7 +282,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAppsV1CollectionNamespacedDeployment(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAppsV1CollectionNamespacedDeployment(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apps/v1/namespaces/{namespace}/deployments", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -230,9 +300,19 @@ function deleteAppsV1CollectionNamespacedDeployment(_api::AppsV1Api, namespace:: Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAppsV1CollectionNamespacedDeployment(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1CollectionNamespacedDeployment(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAppsV1CollectionNamespacedDeployment(_api::AppsV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1CollectionNamespacedDeployment(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of ReplicaSet @@ -253,7 +333,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAppsV1CollectionNamespacedReplicaSet(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAppsV1CollectionNamespacedReplicaSet(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apps/v1/namespaces/{namespace}/replicasets", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -271,9 +351,19 @@ function deleteAppsV1CollectionNamespacedReplicaSet(_api::AppsV1Api, namespace:: Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAppsV1CollectionNamespacedReplicaSet(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1CollectionNamespacedReplicaSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAppsV1CollectionNamespacedReplicaSet(_api::AppsV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1CollectionNamespacedReplicaSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of StatefulSet @@ -294,7 +384,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAppsV1CollectionNamespacedStatefulSet(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAppsV1CollectionNamespacedStatefulSet(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apps/v1/namespaces/{namespace}/statefulsets", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -312,9 +402,19 @@ function deleteAppsV1CollectionNamespacedStatefulSet(_api::AppsV1Api, namespace: Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAppsV1CollectionNamespacedStatefulSet(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1CollectionNamespacedStatefulSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAppsV1CollectionNamespacedStatefulSet(_api::AppsV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1CollectionNamespacedStatefulSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a ControllerRevision @@ -328,7 +428,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAppsV1NamespacedControllerRevision(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAppsV1NamespacedControllerRevision(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apps/v1/namespaces/{namespace}/controllerrevisions/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -339,9 +439,19 @@ function deleteAppsV1NamespacedControllerRevision(_api::AppsV1Api, name::String, Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAppsV1NamespacedControllerRevision(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1NamespacedControllerRevision(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAppsV1NamespacedControllerRevision(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1NamespacedControllerRevision(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a DaemonSet @@ -355,7 +465,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAppsV1NamespacedDaemonSet(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAppsV1NamespacedDaemonSet(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apps/v1/namespaces/{namespace}/daemonsets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -366,9 +476,19 @@ function deleteAppsV1NamespacedDaemonSet(_api::AppsV1Api, name::String, namespac Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAppsV1NamespacedDaemonSet(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1NamespacedDaemonSet(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAppsV1NamespacedDaemonSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1NamespacedDaemonSet(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a Deployment @@ -382,7 +502,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAppsV1NamespacedDeployment(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAppsV1NamespacedDeployment(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apps/v1/namespaces/{namespace}/deployments/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -393,9 +513,19 @@ function deleteAppsV1NamespacedDeployment(_api::AppsV1Api, name::String, namespa Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAppsV1NamespacedDeployment(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1NamespacedDeployment(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAppsV1NamespacedDeployment(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1NamespacedDeployment(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a ReplicaSet @@ -409,7 +539,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAppsV1NamespacedReplicaSet(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAppsV1NamespacedReplicaSet(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -420,9 +550,19 @@ function deleteAppsV1NamespacedReplicaSet(_api::AppsV1Api, name::String, namespa Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAppsV1NamespacedReplicaSet(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1NamespacedReplicaSet(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAppsV1NamespacedReplicaSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1NamespacedReplicaSet(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a StatefulSet @@ -436,7 +576,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAppsV1NamespacedStatefulSet(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAppsV1NamespacedStatefulSet(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -447,21 +587,41 @@ function deleteAppsV1NamespacedStatefulSet(_api::AppsV1Api, name::String, namesp Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAppsV1NamespacedStatefulSet(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1NamespacedStatefulSet(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAppsV1NamespacedStatefulSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1NamespacedStatefulSet(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getAppsV1APIResources(_api::AppsV1Api; _mediaType=nothing) +function _swaggerinternal_getAppsV1APIResources(_api::AppsV1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/apps/v1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getAppsV1APIResources(_api::AppsV1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getAppsV1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getAppsV1APIResources(_api::AppsV1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getAppsV1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind ControllerRevision @@ -476,7 +636,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAppsV1ControllerRevisionList """ -function listAppsV1ControllerRevisionForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAppsV1ControllerRevisionForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1ControllerRevisionList, "/apis/apps/v1/controllerrevisions", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -489,9 +649,19 @@ function listAppsV1ControllerRevisionForAllNamespaces(_api::AppsV1Api; allowWatc Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAppsV1ControllerRevisionForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1ControllerRevisionForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAppsV1ControllerRevisionForAllNamespaces(_api::AppsV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1ControllerRevisionForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind DaemonSet @@ -506,7 +676,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAppsV1DaemonSetList """ -function listAppsV1DaemonSetForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAppsV1DaemonSetForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1DaemonSetList, "/apis/apps/v1/daemonsets", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -519,9 +689,19 @@ function listAppsV1DaemonSetForAllNamespaces(_api::AppsV1Api; allowWatchBookmark Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAppsV1DaemonSetForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1DaemonSetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAppsV1DaemonSetForAllNamespaces(_api::AppsV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1DaemonSetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Deployment @@ -536,7 +716,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAppsV1DeploymentList """ -function listAppsV1DeploymentForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAppsV1DeploymentForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1DeploymentList, "/apis/apps/v1/deployments", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -549,9 +729,19 @@ function listAppsV1DeploymentForAllNamespaces(_api::AppsV1Api; allowWatchBookmar Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAppsV1DeploymentForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1DeploymentForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAppsV1DeploymentForAllNamespaces(_api::AppsV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1DeploymentForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind ControllerRevision @@ -567,7 +757,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAppsV1ControllerRevisionList """ -function listAppsV1NamespacedControllerRevision(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAppsV1NamespacedControllerRevision(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1ControllerRevisionList, "/apis/apps/v1/namespaces/{namespace}/controllerrevisions", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -581,9 +771,19 @@ function listAppsV1NamespacedControllerRevision(_api::AppsV1Api, namespace::Stri Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAppsV1NamespacedControllerRevision(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1NamespacedControllerRevision(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAppsV1NamespacedControllerRevision(_api::AppsV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1NamespacedControllerRevision(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind DaemonSet @@ -599,7 +799,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAppsV1DaemonSetList """ -function listAppsV1NamespacedDaemonSet(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAppsV1NamespacedDaemonSet(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1DaemonSetList, "/apis/apps/v1/namespaces/{namespace}/daemonsets", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -613,9 +813,19 @@ function listAppsV1NamespacedDaemonSet(_api::AppsV1Api, namespace::String; prett Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAppsV1NamespacedDaemonSet(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1NamespacedDaemonSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAppsV1NamespacedDaemonSet(_api::AppsV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1NamespacedDaemonSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Deployment @@ -631,7 +841,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAppsV1DeploymentList """ -function listAppsV1NamespacedDeployment(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAppsV1NamespacedDeployment(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1DeploymentList, "/apis/apps/v1/namespaces/{namespace}/deployments", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -645,9 +855,19 @@ function listAppsV1NamespacedDeployment(_api::AppsV1Api, namespace::String; pret Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAppsV1NamespacedDeployment(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1NamespacedDeployment(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAppsV1NamespacedDeployment(_api::AppsV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1NamespacedDeployment(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind ReplicaSet @@ -663,7 +883,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAppsV1ReplicaSetList """ -function listAppsV1NamespacedReplicaSet(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAppsV1NamespacedReplicaSet(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1ReplicaSetList, "/apis/apps/v1/namespaces/{namespace}/replicasets", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -677,9 +897,19 @@ function listAppsV1NamespacedReplicaSet(_api::AppsV1Api, namespace::String; pret Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAppsV1NamespacedReplicaSet(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1NamespacedReplicaSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAppsV1NamespacedReplicaSet(_api::AppsV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1NamespacedReplicaSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind StatefulSet @@ -695,7 +925,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAppsV1StatefulSetList """ -function listAppsV1NamespacedStatefulSet(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAppsV1NamespacedStatefulSet(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1StatefulSetList, "/apis/apps/v1/namespaces/{namespace}/statefulsets", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -709,9 +939,19 @@ function listAppsV1NamespacedStatefulSet(_api::AppsV1Api, namespace::String; pre Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAppsV1NamespacedStatefulSet(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1NamespacedStatefulSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAppsV1NamespacedStatefulSet(_api::AppsV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1NamespacedStatefulSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind ReplicaSet @@ -726,7 +966,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAppsV1ReplicaSetList """ -function listAppsV1ReplicaSetForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAppsV1ReplicaSetForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1ReplicaSetList, "/apis/apps/v1/replicasets", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -739,9 +979,19 @@ function listAppsV1ReplicaSetForAllNamespaces(_api::AppsV1Api; allowWatchBookmar Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAppsV1ReplicaSetForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1ReplicaSetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAppsV1ReplicaSetForAllNamespaces(_api::AppsV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1ReplicaSetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind StatefulSet @@ -756,7 +1006,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAppsV1StatefulSetList """ -function listAppsV1StatefulSetForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAppsV1StatefulSetForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1StatefulSetList, "/apis/apps/v1/statefulsets", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -769,9 +1019,19 @@ function listAppsV1StatefulSetForAllNamespaces(_api::AppsV1Api; allowWatchBookma Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAppsV1StatefulSetForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1StatefulSetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAppsV1StatefulSetForAllNamespaces(_api::AppsV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1StatefulSetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified ControllerRevision @@ -784,7 +1044,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAppsV1ControllerRevision """ -function patchAppsV1NamespacedControllerRevision(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1NamespacedControllerRevision(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAppsV1ControllerRevision, "/apis/apps/v1/namespaces/{namespace}/controllerrevisions/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -794,9 +1054,19 @@ function patchAppsV1NamespacedControllerRevision(_api::AppsV1Api, name::String, Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1NamespacedControllerRevision(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1NamespacedControllerRevision(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1NamespacedControllerRevision(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1NamespacedControllerRevision(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified DaemonSet @@ -809,7 +1079,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAppsV1DaemonSet """ -function patchAppsV1NamespacedDaemonSet(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1NamespacedDaemonSet(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAppsV1DaemonSet, "/apis/apps/v1/namespaces/{namespace}/daemonsets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -819,9 +1089,19 @@ function patchAppsV1NamespacedDaemonSet(_api::AppsV1Api, name::String, namespace Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1NamespacedDaemonSet(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1NamespacedDaemonSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1NamespacedDaemonSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1NamespacedDaemonSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified DaemonSet @@ -834,7 +1114,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAppsV1DaemonSet """ -function patchAppsV1NamespacedDaemonSetStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1NamespacedDaemonSetStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAppsV1DaemonSet, "/apis/apps/v1/namespaces/{namespace}/daemonsets/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -844,9 +1124,19 @@ function patchAppsV1NamespacedDaemonSetStatus(_api::AppsV1Api, name::String, nam Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1NamespacedDaemonSetStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1NamespacedDaemonSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1NamespacedDaemonSetStatus(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1NamespacedDaemonSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified Deployment @@ -859,7 +1149,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAppsV1Deployment """ -function patchAppsV1NamespacedDeployment(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1NamespacedDeployment(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAppsV1Deployment, "/apis/apps/v1/namespaces/{namespace}/deployments/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -869,9 +1159,19 @@ function patchAppsV1NamespacedDeployment(_api::AppsV1Api, name::String, namespac Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1NamespacedDeployment(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1NamespacedDeployment(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1NamespacedDeployment(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1NamespacedDeployment(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update scale of the specified Deployment @@ -884,7 +1184,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAutoscalingV1Scale """ -function patchAppsV1NamespacedDeploymentScale(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1NamespacedDeploymentScale(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAutoscalingV1Scale, "/apis/apps/v1/namespaces/{namespace}/deployments/{name}/scale", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -894,9 +1194,19 @@ function patchAppsV1NamespacedDeploymentScale(_api::AppsV1Api, name::String, nam Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1NamespacedDeploymentScale(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1NamespacedDeploymentScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1NamespacedDeploymentScale(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1NamespacedDeploymentScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified Deployment @@ -909,7 +1219,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAppsV1Deployment """ -function patchAppsV1NamespacedDeploymentStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1NamespacedDeploymentStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAppsV1Deployment, "/apis/apps/v1/namespaces/{namespace}/deployments/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -919,9 +1229,19 @@ function patchAppsV1NamespacedDeploymentStatus(_api::AppsV1Api, name::String, na Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1NamespacedDeploymentStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1NamespacedDeploymentStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1NamespacedDeploymentStatus(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1NamespacedDeploymentStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified ReplicaSet @@ -934,7 +1254,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAppsV1ReplicaSet """ -function patchAppsV1NamespacedReplicaSet(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1NamespacedReplicaSet(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAppsV1ReplicaSet, "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -944,9 +1264,19 @@ function patchAppsV1NamespacedReplicaSet(_api::AppsV1Api, name::String, namespac Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1NamespacedReplicaSet(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1NamespacedReplicaSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1NamespacedReplicaSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1NamespacedReplicaSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update scale of the specified ReplicaSet @@ -959,7 +1289,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAutoscalingV1Scale """ -function patchAppsV1NamespacedReplicaSetScale(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1NamespacedReplicaSetScale(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAutoscalingV1Scale, "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}/scale", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -969,9 +1299,19 @@ function patchAppsV1NamespacedReplicaSetScale(_api::AppsV1Api, name::String, nam Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1NamespacedReplicaSetScale(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1NamespacedReplicaSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1NamespacedReplicaSetScale(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1NamespacedReplicaSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified ReplicaSet @@ -984,7 +1324,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAppsV1ReplicaSet """ -function patchAppsV1NamespacedReplicaSetStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1NamespacedReplicaSetStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAppsV1ReplicaSet, "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -994,9 +1334,19 @@ function patchAppsV1NamespacedReplicaSetStatus(_api::AppsV1Api, name::String, na Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1NamespacedReplicaSetStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1NamespacedReplicaSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1NamespacedReplicaSetStatus(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1NamespacedReplicaSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified StatefulSet @@ -1009,7 +1359,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAppsV1StatefulSet """ -function patchAppsV1NamespacedStatefulSet(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1NamespacedStatefulSet(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAppsV1StatefulSet, "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1019,9 +1369,19 @@ function patchAppsV1NamespacedStatefulSet(_api::AppsV1Api, name::String, namespa Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1NamespacedStatefulSet(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1NamespacedStatefulSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1NamespacedStatefulSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1NamespacedStatefulSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update scale of the specified StatefulSet @@ -1034,7 +1394,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAutoscalingV1Scale """ -function patchAppsV1NamespacedStatefulSetScale(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1NamespacedStatefulSetScale(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAutoscalingV1Scale, "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/scale", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1044,9 +1404,19 @@ function patchAppsV1NamespacedStatefulSetScale(_api::AppsV1Api, name::String, na Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1NamespacedStatefulSetScale(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1NamespacedStatefulSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1NamespacedStatefulSetScale(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1NamespacedStatefulSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified StatefulSet @@ -1059,7 +1429,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAppsV1StatefulSet """ -function patchAppsV1NamespacedStatefulSetStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1NamespacedStatefulSetStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAppsV1StatefulSet, "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1069,9 +1439,19 @@ function patchAppsV1NamespacedStatefulSetStatus(_api::AppsV1Api, name::String, n Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1NamespacedStatefulSetStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1NamespacedStatefulSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1NamespacedStatefulSetStatus(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1NamespacedStatefulSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified ControllerRevision @@ -1082,7 +1462,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiAppsV1ControllerRevision """ -function readAppsV1NamespacedControllerRevision(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1NamespacedControllerRevision(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1ControllerRevision, "/apis/apps/v1/namespaces/{namespace}/controllerrevisions/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1091,9 +1471,19 @@ function readAppsV1NamespacedControllerRevision(_api::AppsV1Api, name::String, n Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1NamespacedControllerRevision(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1NamespacedControllerRevision(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1NamespacedControllerRevision(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1NamespacedControllerRevision(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified DaemonSet @@ -1104,7 +1494,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiAppsV1DaemonSet """ -function readAppsV1NamespacedDaemonSet(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1NamespacedDaemonSet(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1DaemonSet, "/apis/apps/v1/namespaces/{namespace}/daemonsets/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1113,9 +1503,19 @@ function readAppsV1NamespacedDaemonSet(_api::AppsV1Api, name::String, namespace: Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1NamespacedDaemonSet(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1NamespacedDaemonSet(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1NamespacedDaemonSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1NamespacedDaemonSet(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified DaemonSet @@ -1124,16 +1524,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiAppsV1DaemonSet """ -function readAppsV1NamespacedDaemonSetStatus(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1NamespacedDaemonSetStatus(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1DaemonSet, "/apis/apps/v1/namespaces/{namespace}/daemonsets/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1NamespacedDaemonSetStatus(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1NamespacedDaemonSetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1NamespacedDaemonSetStatus(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1NamespacedDaemonSetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified Deployment @@ -1144,7 +1554,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiAppsV1Deployment """ -function readAppsV1NamespacedDeployment(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1NamespacedDeployment(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1Deployment, "/apis/apps/v1/namespaces/{namespace}/deployments/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1153,9 +1563,19 @@ function readAppsV1NamespacedDeployment(_api::AppsV1Api, name::String, namespace Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1NamespacedDeployment(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1NamespacedDeployment(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1NamespacedDeployment(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1NamespacedDeployment(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read scale of the specified Deployment @@ -1164,16 +1584,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiAutoscalingV1Scale """ -function readAppsV1NamespacedDeploymentScale(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1NamespacedDeploymentScale(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAutoscalingV1Scale, "/apis/apps/v1/namespaces/{namespace}/deployments/{name}/scale", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1NamespacedDeploymentScale(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1NamespacedDeploymentScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1NamespacedDeploymentScale(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1NamespacedDeploymentScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified Deployment @@ -1182,16 +1612,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiAppsV1Deployment """ -function readAppsV1NamespacedDeploymentStatus(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1NamespacedDeploymentStatus(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1Deployment, "/apis/apps/v1/namespaces/{namespace}/deployments/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1NamespacedDeploymentStatus(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1NamespacedDeploymentStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1NamespacedDeploymentStatus(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1NamespacedDeploymentStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified ReplicaSet @@ -1202,7 +1642,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiAppsV1ReplicaSet """ -function readAppsV1NamespacedReplicaSet(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1NamespacedReplicaSet(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1ReplicaSet, "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1211,9 +1651,19 @@ function readAppsV1NamespacedReplicaSet(_api::AppsV1Api, name::String, namespace Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1NamespacedReplicaSet(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1NamespacedReplicaSet(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1NamespacedReplicaSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1NamespacedReplicaSet(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read scale of the specified ReplicaSet @@ -1222,16 +1672,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiAutoscalingV1Scale """ -function readAppsV1NamespacedReplicaSetScale(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1NamespacedReplicaSetScale(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAutoscalingV1Scale, "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}/scale", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1NamespacedReplicaSetScale(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1NamespacedReplicaSetScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1NamespacedReplicaSetScale(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1NamespacedReplicaSetScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified ReplicaSet @@ -1240,16 +1700,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiAppsV1ReplicaSet """ -function readAppsV1NamespacedReplicaSetStatus(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1NamespacedReplicaSetStatus(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1ReplicaSet, "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1NamespacedReplicaSetStatus(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1NamespacedReplicaSetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1NamespacedReplicaSetStatus(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1NamespacedReplicaSetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified StatefulSet @@ -1260,7 +1730,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiAppsV1StatefulSet """ -function readAppsV1NamespacedStatefulSet(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1NamespacedStatefulSet(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1StatefulSet, "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1269,9 +1739,19 @@ function readAppsV1NamespacedStatefulSet(_api::AppsV1Api, name::String, namespac Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1NamespacedStatefulSet(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1NamespacedStatefulSet(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1NamespacedStatefulSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1NamespacedStatefulSet(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read scale of the specified StatefulSet @@ -1280,16 +1760,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiAutoscalingV1Scale """ -function readAppsV1NamespacedStatefulSetScale(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1NamespacedStatefulSetScale(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAutoscalingV1Scale, "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/scale", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1NamespacedStatefulSetScale(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1NamespacedStatefulSetScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1NamespacedStatefulSetScale(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1NamespacedStatefulSetScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified StatefulSet @@ -1298,16 +1788,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiAppsV1StatefulSet """ -function readAppsV1NamespacedStatefulSetStatus(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1NamespacedStatefulSetStatus(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1StatefulSet, "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1NamespacedStatefulSetStatus(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1NamespacedStatefulSetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1NamespacedStatefulSetStatus(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1NamespacedStatefulSetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified ControllerRevision @@ -1319,7 +1819,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1ControllerRevision """ -function replaceAppsV1NamespacedControllerRevision(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1NamespacedControllerRevision(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAppsV1ControllerRevision, "/apis/apps/v1/namespaces/{namespace}/controllerrevisions/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1328,9 +1828,19 @@ function replaceAppsV1NamespacedControllerRevision(_api::AppsV1Api, name::String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1NamespacedControllerRevision(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1NamespacedControllerRevision(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1NamespacedControllerRevision(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1NamespacedControllerRevision(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified DaemonSet @@ -1342,7 +1852,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1DaemonSet """ -function replaceAppsV1NamespacedDaemonSet(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1NamespacedDaemonSet(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAppsV1DaemonSet, "/apis/apps/v1/namespaces/{namespace}/daemonsets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1351,9 +1861,19 @@ function replaceAppsV1NamespacedDaemonSet(_api::AppsV1Api, name::String, namespa Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1NamespacedDaemonSet(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1NamespacedDaemonSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1NamespacedDaemonSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1NamespacedDaemonSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified DaemonSet @@ -1365,7 +1885,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1DaemonSet """ -function replaceAppsV1NamespacedDaemonSetStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1NamespacedDaemonSetStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAppsV1DaemonSet, "/apis/apps/v1/namespaces/{namespace}/daemonsets/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1374,9 +1894,19 @@ function replaceAppsV1NamespacedDaemonSetStatus(_api::AppsV1Api, name::String, n Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1NamespacedDaemonSetStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1NamespacedDaemonSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1NamespacedDaemonSetStatus(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1NamespacedDaemonSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified Deployment @@ -1388,7 +1918,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1Deployment """ -function replaceAppsV1NamespacedDeployment(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1NamespacedDeployment(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAppsV1Deployment, "/apis/apps/v1/namespaces/{namespace}/deployments/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1397,9 +1927,19 @@ function replaceAppsV1NamespacedDeployment(_api::AppsV1Api, name::String, namesp Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1NamespacedDeployment(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1NamespacedDeployment(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1NamespacedDeployment(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1NamespacedDeployment(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace scale of the specified Deployment @@ -1411,7 +1951,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAutoscalingV1Scale """ -function replaceAppsV1NamespacedDeploymentScale(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1NamespacedDeploymentScale(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAutoscalingV1Scale, "/apis/apps/v1/namespaces/{namespace}/deployments/{name}/scale", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1420,9 +1960,19 @@ function replaceAppsV1NamespacedDeploymentScale(_api::AppsV1Api, name::String, n Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1NamespacedDeploymentScale(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1NamespacedDeploymentScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1NamespacedDeploymentScale(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1NamespacedDeploymentScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified Deployment @@ -1434,7 +1984,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1Deployment """ -function replaceAppsV1NamespacedDeploymentStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1NamespacedDeploymentStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAppsV1Deployment, "/apis/apps/v1/namespaces/{namespace}/deployments/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1443,9 +1993,19 @@ function replaceAppsV1NamespacedDeploymentStatus(_api::AppsV1Api, name::String, Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1NamespacedDeploymentStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1NamespacedDeploymentStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1NamespacedDeploymentStatus(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1NamespacedDeploymentStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified ReplicaSet @@ -1457,7 +2017,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1ReplicaSet """ -function replaceAppsV1NamespacedReplicaSet(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1NamespacedReplicaSet(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAppsV1ReplicaSet, "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1466,9 +2026,19 @@ function replaceAppsV1NamespacedReplicaSet(_api::AppsV1Api, name::String, namesp Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1NamespacedReplicaSet(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1NamespacedReplicaSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1NamespacedReplicaSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1NamespacedReplicaSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace scale of the specified ReplicaSet @@ -1480,7 +2050,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAutoscalingV1Scale """ -function replaceAppsV1NamespacedReplicaSetScale(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1NamespacedReplicaSetScale(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAutoscalingV1Scale, "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}/scale", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1489,9 +2059,19 @@ function replaceAppsV1NamespacedReplicaSetScale(_api::AppsV1Api, name::String, n Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1NamespacedReplicaSetScale(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1NamespacedReplicaSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1NamespacedReplicaSetScale(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1NamespacedReplicaSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified ReplicaSet @@ -1503,7 +2083,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1ReplicaSet """ -function replaceAppsV1NamespacedReplicaSetStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1NamespacedReplicaSetStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAppsV1ReplicaSet, "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1512,9 +2092,19 @@ function replaceAppsV1NamespacedReplicaSetStatus(_api::AppsV1Api, name::String, Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1NamespacedReplicaSetStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1NamespacedReplicaSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1NamespacedReplicaSetStatus(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1NamespacedReplicaSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified StatefulSet @@ -1526,7 +2116,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1StatefulSet """ -function replaceAppsV1NamespacedStatefulSet(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1NamespacedStatefulSet(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAppsV1StatefulSet, "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1535,9 +2125,19 @@ function replaceAppsV1NamespacedStatefulSet(_api::AppsV1Api, name::String, names Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1NamespacedStatefulSet(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1NamespacedStatefulSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1NamespacedStatefulSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1NamespacedStatefulSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace scale of the specified StatefulSet @@ -1549,7 +2149,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAutoscalingV1Scale """ -function replaceAppsV1NamespacedStatefulSetScale(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1NamespacedStatefulSetScale(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAutoscalingV1Scale, "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/scale", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1558,9 +2158,19 @@ function replaceAppsV1NamespacedStatefulSetScale(_api::AppsV1Api, name::String, Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1NamespacedStatefulSetScale(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1NamespacedStatefulSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1NamespacedStatefulSetScale(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1NamespacedStatefulSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified StatefulSet @@ -1572,7 +2182,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1StatefulSet """ -function replaceAppsV1NamespacedStatefulSetStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1NamespacedStatefulSetStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAppsV1StatefulSet, "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1581,9 +2191,19 @@ function replaceAppsV1NamespacedStatefulSetStatus(_api::AppsV1Api, name::String, Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1NamespacedStatefulSetStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1NamespacedStatefulSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1NamespacedStatefulSetStatus(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1NamespacedStatefulSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead. @@ -1598,7 +2218,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1ControllerRevisionListForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1ControllerRevisionListForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1/watch/controllerrevisions", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -1611,9 +2231,19 @@ function watchAppsV1ControllerRevisionListForAllNamespaces(_api::AppsV1Api; allo Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1ControllerRevisionListForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1ControllerRevisionListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1ControllerRevisionListForAllNamespaces(_api::AppsV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1ControllerRevisionListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of DaemonSet. deprecated: use the 'watch' parameter with a list operation instead. @@ -1628,7 +2258,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1DaemonSetListForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1DaemonSetListForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1/watch/daemonsets", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -1641,9 +2271,19 @@ function watchAppsV1DaemonSetListForAllNamespaces(_api::AppsV1Api; allowWatchBoo Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1DaemonSetListForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1DaemonSetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1DaemonSetListForAllNamespaces(_api::AppsV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1DaemonSetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead. @@ -1658,7 +2298,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1DeploymentListForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1DeploymentListForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1/watch/deployments", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -1671,9 +2311,19 @@ function watchAppsV1DeploymentListForAllNamespaces(_api::AppsV1Api; allowWatchBo Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1DeploymentListForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1DeploymentListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1DeploymentListForAllNamespaces(_api::AppsV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1DeploymentListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -1690,7 +2340,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1NamespacedControllerRevision(_api::AppsV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1NamespacedControllerRevision(_api::AppsV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1/watch/namespaces/{namespace}/controllerrevisions/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1705,9 +2355,19 @@ function watchAppsV1NamespacedControllerRevision(_api::AppsV1Api, name::String, Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1NamespacedControllerRevision(_api::AppsV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1NamespacedControllerRevision(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1NamespacedControllerRevision(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1NamespacedControllerRevision(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead. @@ -1723,7 +2383,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1NamespacedControllerRevisionList(_api::AppsV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1NamespacedControllerRevisionList(_api::AppsV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1/watch/namespaces/{namespace}/controllerrevisions", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -1737,9 +2397,19 @@ function watchAppsV1NamespacedControllerRevisionList(_api::AppsV1Api, namespace: Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1NamespacedControllerRevisionList(_api::AppsV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1NamespacedControllerRevisionList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1NamespacedControllerRevisionList(_api::AppsV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1NamespacedControllerRevisionList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -1756,7 +2426,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1NamespacedDaemonSet(_api::AppsV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1NamespacedDaemonSet(_api::AppsV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1/watch/namespaces/{namespace}/daemonsets/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1771,9 +2441,19 @@ function watchAppsV1NamespacedDaemonSet(_api::AppsV1Api, name::String, namespace Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1NamespacedDaemonSet(_api::AppsV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1NamespacedDaemonSet(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1NamespacedDaemonSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1NamespacedDaemonSet(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of DaemonSet. deprecated: use the 'watch' parameter with a list operation instead. @@ -1789,7 +2469,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1NamespacedDaemonSetList(_api::AppsV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1NamespacedDaemonSetList(_api::AppsV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1/watch/namespaces/{namespace}/daemonsets", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -1803,9 +2483,19 @@ function watchAppsV1NamespacedDaemonSetList(_api::AppsV1Api, namespace::String; Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1NamespacedDaemonSetList(_api::AppsV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1NamespacedDaemonSetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1NamespacedDaemonSetList(_api::AppsV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1NamespacedDaemonSetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -1822,7 +2512,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1NamespacedDeployment(_api::AppsV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1NamespacedDeployment(_api::AppsV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1/watch/namespaces/{namespace}/deployments/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1837,9 +2527,19 @@ function watchAppsV1NamespacedDeployment(_api::AppsV1Api, name::String, namespac Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1NamespacedDeployment(_api::AppsV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1NamespacedDeployment(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1NamespacedDeployment(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1NamespacedDeployment(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead. @@ -1855,7 +2555,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1NamespacedDeploymentList(_api::AppsV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1NamespacedDeploymentList(_api::AppsV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1/watch/namespaces/{namespace}/deployments", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -1869,9 +2569,19 @@ function watchAppsV1NamespacedDeploymentList(_api::AppsV1Api, namespace::String; Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1NamespacedDeploymentList(_api::AppsV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1NamespacedDeploymentList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1NamespacedDeploymentList(_api::AppsV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1NamespacedDeploymentList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -1888,7 +2598,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1NamespacedReplicaSet(_api::AppsV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1NamespacedReplicaSet(_api::AppsV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1/watch/namespaces/{namespace}/replicasets/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1903,9 +2613,19 @@ function watchAppsV1NamespacedReplicaSet(_api::AppsV1Api, name::String, namespac Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1NamespacedReplicaSet(_api::AppsV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1NamespacedReplicaSet(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1NamespacedReplicaSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1NamespacedReplicaSet(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead. @@ -1921,7 +2641,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1NamespacedReplicaSetList(_api::AppsV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1NamespacedReplicaSetList(_api::AppsV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1/watch/namespaces/{namespace}/replicasets", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -1935,9 +2655,19 @@ function watchAppsV1NamespacedReplicaSetList(_api::AppsV1Api, namespace::String; Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1NamespacedReplicaSetList(_api::AppsV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1NamespacedReplicaSetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1NamespacedReplicaSetList(_api::AppsV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1NamespacedReplicaSetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -1954,7 +2684,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1NamespacedStatefulSet(_api::AppsV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1NamespacedStatefulSet(_api::AppsV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1/watch/namespaces/{namespace}/statefulsets/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1969,9 +2699,19 @@ function watchAppsV1NamespacedStatefulSet(_api::AppsV1Api, name::String, namespa Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1NamespacedStatefulSet(_api::AppsV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1NamespacedStatefulSet(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1NamespacedStatefulSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1NamespacedStatefulSet(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of StatefulSet. deprecated: use the 'watch' parameter with a list operation instead. @@ -1987,7 +2727,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1NamespacedStatefulSetList(_api::AppsV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1NamespacedStatefulSetList(_api::AppsV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1/watch/namespaces/{namespace}/statefulsets", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -2001,9 +2741,19 @@ function watchAppsV1NamespacedStatefulSetList(_api::AppsV1Api, namespace::String Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1NamespacedStatefulSetList(_api::AppsV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1NamespacedStatefulSetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1NamespacedStatefulSetList(_api::AppsV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1NamespacedStatefulSetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead. @@ -2018,7 +2768,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1ReplicaSetListForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1ReplicaSetListForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1/watch/replicasets", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -2031,9 +2781,19 @@ function watchAppsV1ReplicaSetListForAllNamespaces(_api::AppsV1Api; allowWatchBo Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1ReplicaSetListForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1ReplicaSetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1ReplicaSetListForAllNamespaces(_api::AppsV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1ReplicaSetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of StatefulSet. deprecated: use the 'watch' parameter with a list operation instead. @@ -2048,7 +2808,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1StatefulSetListForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1StatefulSetListForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1/watch/statefulsets", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -2061,7 +2821,17 @@ function watchAppsV1StatefulSetListForAllNamespaces(_api::AppsV1Api; allowWatchB Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1StatefulSetListForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1StatefulSetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1StatefulSetListForAllNamespaces(_api::AppsV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1StatefulSetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createAppsV1NamespacedControllerRevision, createAppsV1NamespacedDaemonSet, createAppsV1NamespacedDeployment, createAppsV1NamespacedReplicaSet, createAppsV1NamespacedStatefulSet, deleteAppsV1CollectionNamespacedControllerRevision, deleteAppsV1CollectionNamespacedDaemonSet, deleteAppsV1CollectionNamespacedDeployment, deleteAppsV1CollectionNamespacedReplicaSet, deleteAppsV1CollectionNamespacedStatefulSet, deleteAppsV1NamespacedControllerRevision, deleteAppsV1NamespacedDaemonSet, deleteAppsV1NamespacedDeployment, deleteAppsV1NamespacedReplicaSet, deleteAppsV1NamespacedStatefulSet, getAppsV1APIResources, listAppsV1ControllerRevisionForAllNamespaces, listAppsV1DaemonSetForAllNamespaces, listAppsV1DeploymentForAllNamespaces, listAppsV1NamespacedControllerRevision, listAppsV1NamespacedDaemonSet, listAppsV1NamespacedDeployment, listAppsV1NamespacedReplicaSet, listAppsV1NamespacedStatefulSet, listAppsV1ReplicaSetForAllNamespaces, listAppsV1StatefulSetForAllNamespaces, patchAppsV1NamespacedControllerRevision, patchAppsV1NamespacedDaemonSet, patchAppsV1NamespacedDaemonSetStatus, patchAppsV1NamespacedDeployment, patchAppsV1NamespacedDeploymentScale, patchAppsV1NamespacedDeploymentStatus, patchAppsV1NamespacedReplicaSet, patchAppsV1NamespacedReplicaSetScale, patchAppsV1NamespacedReplicaSetStatus, patchAppsV1NamespacedStatefulSet, patchAppsV1NamespacedStatefulSetScale, patchAppsV1NamespacedStatefulSetStatus, readAppsV1NamespacedControllerRevision, readAppsV1NamespacedDaemonSet, readAppsV1NamespacedDaemonSetStatus, readAppsV1NamespacedDeployment, readAppsV1NamespacedDeploymentScale, readAppsV1NamespacedDeploymentStatus, readAppsV1NamespacedReplicaSet, readAppsV1NamespacedReplicaSetScale, readAppsV1NamespacedReplicaSetStatus, readAppsV1NamespacedStatefulSet, readAppsV1NamespacedStatefulSetScale, readAppsV1NamespacedStatefulSetStatus, replaceAppsV1NamespacedControllerRevision, replaceAppsV1NamespacedDaemonSet, replaceAppsV1NamespacedDaemonSetStatus, replaceAppsV1NamespacedDeployment, replaceAppsV1NamespacedDeploymentScale, replaceAppsV1NamespacedDeploymentStatus, replaceAppsV1NamespacedReplicaSet, replaceAppsV1NamespacedReplicaSetScale, replaceAppsV1NamespacedReplicaSetStatus, replaceAppsV1NamespacedStatefulSet, replaceAppsV1NamespacedStatefulSetScale, replaceAppsV1NamespacedStatefulSetStatus, watchAppsV1ControllerRevisionListForAllNamespaces, watchAppsV1DaemonSetListForAllNamespaces, watchAppsV1DeploymentListForAllNamespaces, watchAppsV1NamespacedControllerRevision, watchAppsV1NamespacedControllerRevisionList, watchAppsV1NamespacedDaemonSet, watchAppsV1NamespacedDaemonSetList, watchAppsV1NamespacedDeployment, watchAppsV1NamespacedDeploymentList, watchAppsV1NamespacedReplicaSet, watchAppsV1NamespacedReplicaSetList, watchAppsV1NamespacedStatefulSet, watchAppsV1NamespacedStatefulSetList, watchAppsV1ReplicaSetListForAllNamespaces, watchAppsV1StatefulSetListForAllNamespaces diff --git a/src/api/api_AppsV1beta1Api.jl b/src/api/api_AppsV1beta1Api.jl index 65e195cc..6a24ba50 100644 --- a/src/api/api_AppsV1beta1Api.jl +++ b/src/api/api_AppsV1beta1Api.jl @@ -15,7 +15,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1beta1ControllerRevision """ -function createAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAppsV1beta1ControllerRevision, "/apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -23,9 +23,19 @@ function createAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, nam Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAppsV1beta1NamespacedControllerRevision(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAppsV1beta1NamespacedControllerRevision(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a Deployment @@ -36,7 +46,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1beta1Deployment """ -function createAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAppsV1beta1Deployment, "/apis/apps/v1beta1/namespaces/{namespace}/deployments", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -44,9 +54,19 @@ function createAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, namespace:: Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAppsV1beta1NamespacedDeployment(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAppsV1beta1NamespacedDeployment(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create rollback of a Deployment @@ -58,7 +78,7 @@ Param: fieldManager::String Param: pretty::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function createAppsV1beta1NamespacedDeploymentRollback(_api::AppsV1beta1Api, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) +function _swaggerinternal_createAppsV1beta1NamespacedDeploymentRollback(_api::AppsV1beta1Api, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/rollback", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -67,9 +87,19 @@ function createAppsV1beta1NamespacedDeploymentRollback(_api::AppsV1beta1Api, nam Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAppsV1beta1NamespacedDeploymentRollback(_api::AppsV1beta1Api, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAppsV1beta1NamespacedDeploymentRollback(_api, name, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAppsV1beta1NamespacedDeploymentRollback(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAppsV1beta1NamespacedDeploymentRollback(_api, name, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a StatefulSet @@ -80,7 +110,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1beta1StatefulSet """ -function createAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAppsV1beta1StatefulSet, "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -88,9 +118,19 @@ function createAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, namespace: Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAppsV1beta1NamespacedStatefulSet(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAppsV1beta1NamespacedStatefulSet(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of ControllerRevision @@ -111,7 +151,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAppsV1beta1CollectionNamespacedControllerRevision(_api::AppsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAppsV1beta1CollectionNamespacedControllerRevision(_api::AppsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -129,9 +169,19 @@ function deleteAppsV1beta1CollectionNamespacedControllerRevision(_api::AppsV1bet Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAppsV1beta1CollectionNamespacedControllerRevision(_api::AppsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta1CollectionNamespacedControllerRevision(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAppsV1beta1CollectionNamespacedControllerRevision(_api::AppsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta1CollectionNamespacedControllerRevision(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of Deployment @@ -152,7 +202,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAppsV1beta1CollectionNamespacedDeployment(_api::AppsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAppsV1beta1CollectionNamespacedDeployment(_api::AppsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apps/v1beta1/namespaces/{namespace}/deployments", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -170,9 +220,19 @@ function deleteAppsV1beta1CollectionNamespacedDeployment(_api::AppsV1beta1Api, n Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAppsV1beta1CollectionNamespacedDeployment(_api::AppsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta1CollectionNamespacedDeployment(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAppsV1beta1CollectionNamespacedDeployment(_api::AppsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta1CollectionNamespacedDeployment(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of StatefulSet @@ -193,7 +253,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAppsV1beta1CollectionNamespacedStatefulSet(_api::AppsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAppsV1beta1CollectionNamespacedStatefulSet(_api::AppsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -211,9 +271,19 @@ function deleteAppsV1beta1CollectionNamespacedStatefulSet(_api::AppsV1beta1Api, Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAppsV1beta1CollectionNamespacedStatefulSet(_api::AppsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta1CollectionNamespacedStatefulSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAppsV1beta1CollectionNamespacedStatefulSet(_api::AppsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta1CollectionNamespacedStatefulSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a ControllerRevision @@ -227,7 +297,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -238,9 +308,19 @@ function deleteAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, nam Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta1NamespacedControllerRevision(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta1NamespacedControllerRevision(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a Deployment @@ -254,7 +334,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -265,9 +345,19 @@ function deleteAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, name::Strin Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta1NamespacedDeployment(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta1NamespacedDeployment(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a StatefulSet @@ -281,7 +371,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -292,21 +382,41 @@ function deleteAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, name::Stri Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta1NamespacedStatefulSet(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta1NamespacedStatefulSet(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getAppsV1beta1APIResources(_api::AppsV1beta1Api; _mediaType=nothing) +function _swaggerinternal_getAppsV1beta1APIResources(_api::AppsV1beta1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/apps/v1beta1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getAppsV1beta1APIResources(_api::AppsV1beta1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getAppsV1beta1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getAppsV1beta1APIResources(_api::AppsV1beta1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getAppsV1beta1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind ControllerRevision @@ -321,7 +431,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAppsV1beta1ControllerRevisionList """ -function listAppsV1beta1ControllerRevisionForAllNamespaces(_api::AppsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAppsV1beta1ControllerRevisionForAllNamespaces(_api::AppsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta1ControllerRevisionList, "/apis/apps/v1beta1/controllerrevisions", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -334,9 +444,19 @@ function listAppsV1beta1ControllerRevisionForAllNamespaces(_api::AppsV1beta1Api; Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAppsV1beta1ControllerRevisionForAllNamespaces(_api::AppsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta1ControllerRevisionForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAppsV1beta1ControllerRevisionForAllNamespaces(_api::AppsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta1ControllerRevisionForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Deployment @@ -351,7 +471,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAppsV1beta1DeploymentList """ -function listAppsV1beta1DeploymentForAllNamespaces(_api::AppsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAppsV1beta1DeploymentForAllNamespaces(_api::AppsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta1DeploymentList, "/apis/apps/v1beta1/deployments", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -364,9 +484,19 @@ function listAppsV1beta1DeploymentForAllNamespaces(_api::AppsV1beta1Api; allowWa Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAppsV1beta1DeploymentForAllNamespaces(_api::AppsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta1DeploymentForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAppsV1beta1DeploymentForAllNamespaces(_api::AppsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta1DeploymentForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind ControllerRevision @@ -382,7 +512,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAppsV1beta1ControllerRevisionList """ -function listAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta1ControllerRevisionList, "/apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -396,9 +526,19 @@ function listAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, names Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta1NamespacedControllerRevision(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta1NamespacedControllerRevision(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Deployment @@ -414,7 +554,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAppsV1beta1DeploymentList """ -function listAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta1DeploymentList, "/apis/apps/v1beta1/namespaces/{namespace}/deployments", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -428,9 +568,19 @@ function listAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, namespace::St Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta1NamespacedDeployment(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta1NamespacedDeployment(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind StatefulSet @@ -446,7 +596,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAppsV1beta1StatefulSetList """ -function listAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta1StatefulSetList, "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -460,9 +610,19 @@ function listAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, namespace::S Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta1NamespacedStatefulSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta1NamespacedStatefulSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind StatefulSet @@ -477,7 +637,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAppsV1beta1StatefulSetList """ -function listAppsV1beta1StatefulSetForAllNamespaces(_api::AppsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAppsV1beta1StatefulSetForAllNamespaces(_api::AppsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta1StatefulSetList, "/apis/apps/v1beta1/statefulsets", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -490,9 +650,19 @@ function listAppsV1beta1StatefulSetForAllNamespaces(_api::AppsV1beta1Api; allowW Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAppsV1beta1StatefulSetForAllNamespaces(_api::AppsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta1StatefulSetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAppsV1beta1StatefulSetForAllNamespaces(_api::AppsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta1StatefulSetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified ControllerRevision @@ -505,7 +675,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAppsV1beta1ControllerRevision """ -function patchAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAppsV1beta1ControllerRevision, "/apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -515,9 +685,19 @@ function patchAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, name Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta1NamespacedControllerRevision(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta1NamespacedControllerRevision(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified Deployment @@ -530,7 +710,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAppsV1beta1Deployment """ -function patchAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAppsV1beta1Deployment, "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -540,9 +720,19 @@ function patchAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, name::String Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta1NamespacedDeployment(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta1NamespacedDeployment(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update scale of the specified Deployment @@ -555,7 +745,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAppsV1beta1Scale """ -function patchAppsV1beta1NamespacedDeploymentScale(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1beta1NamespacedDeploymentScale(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAppsV1beta1Scale, "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/scale", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -565,9 +755,19 @@ function patchAppsV1beta1NamespacedDeploymentScale(_api::AppsV1beta1Api, name::S Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1beta1NamespacedDeploymentScale(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta1NamespacedDeploymentScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1beta1NamespacedDeploymentScale(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta1NamespacedDeploymentScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified Deployment @@ -580,7 +780,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAppsV1beta1Deployment """ -function patchAppsV1beta1NamespacedDeploymentStatus(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1beta1NamespacedDeploymentStatus(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAppsV1beta1Deployment, "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -590,9 +790,19 @@ function patchAppsV1beta1NamespacedDeploymentStatus(_api::AppsV1beta1Api, name:: Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1beta1NamespacedDeploymentStatus(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta1NamespacedDeploymentStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1beta1NamespacedDeploymentStatus(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta1NamespacedDeploymentStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified StatefulSet @@ -605,7 +815,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAppsV1beta1StatefulSet """ -function patchAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAppsV1beta1StatefulSet, "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -615,9 +825,19 @@ function patchAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, name::Strin Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta1NamespacedStatefulSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta1NamespacedStatefulSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update scale of the specified StatefulSet @@ -630,7 +850,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAppsV1beta1Scale """ -function patchAppsV1beta1NamespacedStatefulSetScale(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1beta1NamespacedStatefulSetScale(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAppsV1beta1Scale, "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/scale", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -640,9 +860,19 @@ function patchAppsV1beta1NamespacedStatefulSetScale(_api::AppsV1beta1Api, name:: Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1beta1NamespacedStatefulSetScale(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta1NamespacedStatefulSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1beta1NamespacedStatefulSetScale(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta1NamespacedStatefulSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified StatefulSet @@ -655,7 +885,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAppsV1beta1StatefulSet """ -function patchAppsV1beta1NamespacedStatefulSetStatus(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1beta1NamespacedStatefulSetStatus(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAppsV1beta1StatefulSet, "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -665,9 +895,19 @@ function patchAppsV1beta1NamespacedStatefulSetStatus(_api::AppsV1beta1Api, name: Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1beta1NamespacedStatefulSetStatus(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta1NamespacedStatefulSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1beta1NamespacedStatefulSetStatus(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta1NamespacedStatefulSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified ControllerRevision @@ -678,7 +918,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiAppsV1beta1ControllerRevision """ -function readAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta1ControllerRevision, "/apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -687,9 +927,19 @@ function readAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, name: Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta1NamespacedControllerRevision(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta1NamespacedControllerRevision(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified Deployment @@ -700,7 +950,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiAppsV1beta1Deployment """ -function readAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta1Deployment, "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -709,9 +959,19 @@ function readAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, name::String, Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta1NamespacedDeployment(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta1NamespacedDeployment(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read scale of the specified Deployment @@ -720,16 +980,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiAppsV1beta1Scale """ -function readAppsV1beta1NamespacedDeploymentScale(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1beta1NamespacedDeploymentScale(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta1Scale, "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/scale", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1beta1NamespacedDeploymentScale(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta1NamespacedDeploymentScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1beta1NamespacedDeploymentScale(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta1NamespacedDeploymentScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified Deployment @@ -738,16 +1008,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiAppsV1beta1Deployment """ -function readAppsV1beta1NamespacedDeploymentStatus(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1beta1NamespacedDeploymentStatus(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta1Deployment, "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1beta1NamespacedDeploymentStatus(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta1NamespacedDeploymentStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1beta1NamespacedDeploymentStatus(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta1NamespacedDeploymentStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified StatefulSet @@ -758,7 +1038,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiAppsV1beta1StatefulSet """ -function readAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta1StatefulSet, "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -767,9 +1047,19 @@ function readAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, name::String Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta1NamespacedStatefulSet(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta1NamespacedStatefulSet(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read scale of the specified StatefulSet @@ -778,16 +1068,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiAppsV1beta1Scale """ -function readAppsV1beta1NamespacedStatefulSetScale(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1beta1NamespacedStatefulSetScale(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta1Scale, "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/scale", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1beta1NamespacedStatefulSetScale(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta1NamespacedStatefulSetScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1beta1NamespacedStatefulSetScale(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta1NamespacedStatefulSetScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified StatefulSet @@ -796,16 +1096,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiAppsV1beta1StatefulSet """ -function readAppsV1beta1NamespacedStatefulSetStatus(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1beta1NamespacedStatefulSetStatus(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta1StatefulSet, "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1beta1NamespacedStatefulSetStatus(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta1NamespacedStatefulSetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1beta1NamespacedStatefulSetStatus(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta1NamespacedStatefulSetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified ControllerRevision @@ -817,7 +1127,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1beta1ControllerRevision """ -function replaceAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAppsV1beta1ControllerRevision, "/apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -826,9 +1136,19 @@ function replaceAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, na Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta1NamespacedControllerRevision(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta1NamespacedControllerRevision(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified Deployment @@ -840,7 +1160,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1beta1Deployment """ -function replaceAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAppsV1beta1Deployment, "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -849,9 +1169,19 @@ function replaceAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, name::Stri Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta1NamespacedDeployment(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta1NamespacedDeployment(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace scale of the specified Deployment @@ -863,7 +1193,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1beta1Scale """ -function replaceAppsV1beta1NamespacedDeploymentScale(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1beta1NamespacedDeploymentScale(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAppsV1beta1Scale, "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/scale", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -872,9 +1202,19 @@ function replaceAppsV1beta1NamespacedDeploymentScale(_api::AppsV1beta1Api, name: Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1beta1NamespacedDeploymentScale(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta1NamespacedDeploymentScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1beta1NamespacedDeploymentScale(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta1NamespacedDeploymentScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified Deployment @@ -886,7 +1226,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1beta1Deployment """ -function replaceAppsV1beta1NamespacedDeploymentStatus(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1beta1NamespacedDeploymentStatus(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAppsV1beta1Deployment, "/apis/apps/v1beta1/namespaces/{namespace}/deployments/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -895,9 +1235,19 @@ function replaceAppsV1beta1NamespacedDeploymentStatus(_api::AppsV1beta1Api, name Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1beta1NamespacedDeploymentStatus(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta1NamespacedDeploymentStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1beta1NamespacedDeploymentStatus(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta1NamespacedDeploymentStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified StatefulSet @@ -909,7 +1259,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1beta1StatefulSet """ -function replaceAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAppsV1beta1StatefulSet, "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -918,9 +1268,19 @@ function replaceAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, name::Str Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta1NamespacedStatefulSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta1NamespacedStatefulSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace scale of the specified StatefulSet @@ -932,7 +1292,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1beta1Scale """ -function replaceAppsV1beta1NamespacedStatefulSetScale(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1beta1NamespacedStatefulSetScale(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAppsV1beta1Scale, "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/scale", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -941,9 +1301,19 @@ function replaceAppsV1beta1NamespacedStatefulSetScale(_api::AppsV1beta1Api, name Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1beta1NamespacedStatefulSetScale(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta1NamespacedStatefulSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1beta1NamespacedStatefulSetScale(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta1NamespacedStatefulSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified StatefulSet @@ -955,7 +1325,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1beta1StatefulSet """ -function replaceAppsV1beta1NamespacedStatefulSetStatus(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1beta1NamespacedStatefulSetStatus(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAppsV1beta1StatefulSet, "/apis/apps/v1beta1/namespaces/{namespace}/statefulsets/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -964,9 +1334,19 @@ function replaceAppsV1beta1NamespacedStatefulSetStatus(_api::AppsV1beta1Api, nam Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1beta1NamespacedStatefulSetStatus(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta1NamespacedStatefulSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1beta1NamespacedStatefulSetStatus(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta1NamespacedStatefulSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead. @@ -981,7 +1361,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1beta1ControllerRevisionListForAllNamespaces(_api::AppsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1beta1ControllerRevisionListForAllNamespaces(_api::AppsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1beta1/watch/controllerrevisions", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -994,9 +1374,19 @@ function watchAppsV1beta1ControllerRevisionListForAllNamespaces(_api::AppsV1beta Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1beta1ControllerRevisionListForAllNamespaces(_api::AppsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta1ControllerRevisionListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1beta1ControllerRevisionListForAllNamespaces(_api::AppsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta1ControllerRevisionListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead. @@ -1011,7 +1401,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1beta1DeploymentListForAllNamespaces(_api::AppsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1beta1DeploymentListForAllNamespaces(_api::AppsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1beta1/watch/deployments", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -1024,9 +1414,19 @@ function watchAppsV1beta1DeploymentListForAllNamespaces(_api::AppsV1beta1Api; al Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1beta1DeploymentListForAllNamespaces(_api::AppsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta1DeploymentListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1beta1DeploymentListForAllNamespaces(_api::AppsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta1DeploymentListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -1043,7 +1443,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1beta1/watch/namespaces/{namespace}/controllerrevisions/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1058,9 +1458,19 @@ function watchAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, name Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta1NamespacedControllerRevision(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1beta1NamespacedControllerRevision(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta1NamespacedControllerRevision(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead. @@ -1076,7 +1486,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1beta1NamespacedControllerRevisionList(_api::AppsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1beta1NamespacedControllerRevisionList(_api::AppsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1beta1/watch/namespaces/{namespace}/controllerrevisions", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -1090,9 +1500,19 @@ function watchAppsV1beta1NamespacedControllerRevisionList(_api::AppsV1beta1Api, Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1beta1NamespacedControllerRevisionList(_api::AppsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta1NamespacedControllerRevisionList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1beta1NamespacedControllerRevisionList(_api::AppsV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta1NamespacedControllerRevisionList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -1109,7 +1529,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1beta1/watch/namespaces/{namespace}/deployments/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1124,9 +1544,19 @@ function watchAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, name::String Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta1NamespacedDeployment(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1beta1NamespacedDeployment(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta1NamespacedDeployment(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead. @@ -1142,7 +1572,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1beta1NamespacedDeploymentList(_api::AppsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1beta1NamespacedDeploymentList(_api::AppsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1beta1/watch/namespaces/{namespace}/deployments", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -1156,9 +1586,19 @@ function watchAppsV1beta1NamespacedDeploymentList(_api::AppsV1beta1Api, namespac Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1beta1NamespacedDeploymentList(_api::AppsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta1NamespacedDeploymentList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1beta1NamespacedDeploymentList(_api::AppsV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta1NamespacedDeploymentList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -1175,7 +1615,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1beta1/watch/namespaces/{namespace}/statefulsets/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1190,9 +1630,19 @@ function watchAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, name::Strin Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta1NamespacedStatefulSet(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1beta1NamespacedStatefulSet(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta1NamespacedStatefulSet(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of StatefulSet. deprecated: use the 'watch' parameter with a list operation instead. @@ -1208,7 +1658,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1beta1NamespacedStatefulSetList(_api::AppsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1beta1NamespacedStatefulSetList(_api::AppsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1beta1/watch/namespaces/{namespace}/statefulsets", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -1222,9 +1672,19 @@ function watchAppsV1beta1NamespacedStatefulSetList(_api::AppsV1beta1Api, namespa Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1beta1NamespacedStatefulSetList(_api::AppsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta1NamespacedStatefulSetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1beta1NamespacedStatefulSetList(_api::AppsV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta1NamespacedStatefulSetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of StatefulSet. deprecated: use the 'watch' parameter with a list operation instead. @@ -1239,7 +1699,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1beta1StatefulSetListForAllNamespaces(_api::AppsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1beta1StatefulSetListForAllNamespaces(_api::AppsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1beta1/watch/statefulsets", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -1252,7 +1712,17 @@ function watchAppsV1beta1StatefulSetListForAllNamespaces(_api::AppsV1beta1Api; a Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1beta1StatefulSetListForAllNamespaces(_api::AppsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta1StatefulSetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1beta1StatefulSetListForAllNamespaces(_api::AppsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta1StatefulSetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createAppsV1beta1NamespacedControllerRevision, createAppsV1beta1NamespacedDeployment, createAppsV1beta1NamespacedDeploymentRollback, createAppsV1beta1NamespacedStatefulSet, deleteAppsV1beta1CollectionNamespacedControllerRevision, deleteAppsV1beta1CollectionNamespacedDeployment, deleteAppsV1beta1CollectionNamespacedStatefulSet, deleteAppsV1beta1NamespacedControllerRevision, deleteAppsV1beta1NamespacedDeployment, deleteAppsV1beta1NamespacedStatefulSet, getAppsV1beta1APIResources, listAppsV1beta1ControllerRevisionForAllNamespaces, listAppsV1beta1DeploymentForAllNamespaces, listAppsV1beta1NamespacedControllerRevision, listAppsV1beta1NamespacedDeployment, listAppsV1beta1NamespacedStatefulSet, listAppsV1beta1StatefulSetForAllNamespaces, patchAppsV1beta1NamespacedControllerRevision, patchAppsV1beta1NamespacedDeployment, patchAppsV1beta1NamespacedDeploymentScale, patchAppsV1beta1NamespacedDeploymentStatus, patchAppsV1beta1NamespacedStatefulSet, patchAppsV1beta1NamespacedStatefulSetScale, patchAppsV1beta1NamespacedStatefulSetStatus, readAppsV1beta1NamespacedControllerRevision, readAppsV1beta1NamespacedDeployment, readAppsV1beta1NamespacedDeploymentScale, readAppsV1beta1NamespacedDeploymentStatus, readAppsV1beta1NamespacedStatefulSet, readAppsV1beta1NamespacedStatefulSetScale, readAppsV1beta1NamespacedStatefulSetStatus, replaceAppsV1beta1NamespacedControllerRevision, replaceAppsV1beta1NamespacedDeployment, replaceAppsV1beta1NamespacedDeploymentScale, replaceAppsV1beta1NamespacedDeploymentStatus, replaceAppsV1beta1NamespacedStatefulSet, replaceAppsV1beta1NamespacedStatefulSetScale, replaceAppsV1beta1NamespacedStatefulSetStatus, watchAppsV1beta1ControllerRevisionListForAllNamespaces, watchAppsV1beta1DeploymentListForAllNamespaces, watchAppsV1beta1NamespacedControllerRevision, watchAppsV1beta1NamespacedControllerRevisionList, watchAppsV1beta1NamespacedDeployment, watchAppsV1beta1NamespacedDeploymentList, watchAppsV1beta1NamespacedStatefulSet, watchAppsV1beta1NamespacedStatefulSetList, watchAppsV1beta1StatefulSetListForAllNamespaces diff --git a/src/api/api_AppsV1beta2Api.jl b/src/api/api_AppsV1beta2Api.jl index aab13fec..e94d1dbe 100644 --- a/src/api/api_AppsV1beta2Api.jl +++ b/src/api/api_AppsV1beta2Api.jl @@ -15,7 +15,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1beta2ControllerRevision """ -function createAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAppsV1beta2ControllerRevision, "/apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -23,9 +23,19 @@ function createAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, nam Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAppsV1beta2NamespacedControllerRevision(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAppsV1beta2NamespacedControllerRevision(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a DaemonSet @@ -36,7 +46,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1beta2DaemonSet """ -function createAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAppsV1beta2DaemonSet, "/apis/apps/v1beta2/namespaces/{namespace}/daemonsets", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -44,9 +54,19 @@ function createAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, namespace::S Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAppsV1beta2NamespacedDaemonSet(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAppsV1beta2NamespacedDaemonSet(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a Deployment @@ -57,7 +77,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1beta2Deployment """ -function createAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAppsV1beta2Deployment, "/apis/apps/v1beta2/namespaces/{namespace}/deployments", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -65,9 +85,19 @@ function createAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, namespace:: Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAppsV1beta2NamespacedDeployment(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAppsV1beta2NamespacedDeployment(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a ReplicaSet @@ -78,7 +108,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1beta2ReplicaSet """ -function createAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAppsV1beta2ReplicaSet, "/apis/apps/v1beta2/namespaces/{namespace}/replicasets", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -86,9 +116,19 @@ function createAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, namespace:: Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAppsV1beta2NamespacedReplicaSet(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAppsV1beta2NamespacedReplicaSet(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a StatefulSet @@ -99,7 +139,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1beta2StatefulSet """ -function createAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAppsV1beta2StatefulSet, "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -107,9 +147,19 @@ function createAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, namespace: Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAppsV1beta2NamespacedStatefulSet(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAppsV1beta2NamespacedStatefulSet(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of ControllerRevision @@ -130,7 +180,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAppsV1beta2CollectionNamespacedControllerRevision(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAppsV1beta2CollectionNamespacedControllerRevision(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -148,9 +198,19 @@ function deleteAppsV1beta2CollectionNamespacedControllerRevision(_api::AppsV1bet Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAppsV1beta2CollectionNamespacedControllerRevision(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta2CollectionNamespacedControllerRevision(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAppsV1beta2CollectionNamespacedControllerRevision(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta2CollectionNamespacedControllerRevision(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of DaemonSet @@ -171,7 +231,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAppsV1beta2CollectionNamespacedDaemonSet(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAppsV1beta2CollectionNamespacedDaemonSet(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apps/v1beta2/namespaces/{namespace}/daemonsets", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -189,9 +249,19 @@ function deleteAppsV1beta2CollectionNamespacedDaemonSet(_api::AppsV1beta2Api, na Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAppsV1beta2CollectionNamespacedDaemonSet(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta2CollectionNamespacedDaemonSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAppsV1beta2CollectionNamespacedDaemonSet(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta2CollectionNamespacedDaemonSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of Deployment @@ -212,7 +282,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAppsV1beta2CollectionNamespacedDeployment(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAppsV1beta2CollectionNamespacedDeployment(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apps/v1beta2/namespaces/{namespace}/deployments", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -230,9 +300,19 @@ function deleteAppsV1beta2CollectionNamespacedDeployment(_api::AppsV1beta2Api, n Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAppsV1beta2CollectionNamespacedDeployment(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta2CollectionNamespacedDeployment(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAppsV1beta2CollectionNamespacedDeployment(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta2CollectionNamespacedDeployment(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of ReplicaSet @@ -253,7 +333,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAppsV1beta2CollectionNamespacedReplicaSet(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAppsV1beta2CollectionNamespacedReplicaSet(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apps/v1beta2/namespaces/{namespace}/replicasets", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -271,9 +351,19 @@ function deleteAppsV1beta2CollectionNamespacedReplicaSet(_api::AppsV1beta2Api, n Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAppsV1beta2CollectionNamespacedReplicaSet(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta2CollectionNamespacedReplicaSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAppsV1beta2CollectionNamespacedReplicaSet(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta2CollectionNamespacedReplicaSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of StatefulSet @@ -294,7 +384,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAppsV1beta2CollectionNamespacedStatefulSet(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAppsV1beta2CollectionNamespacedStatefulSet(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -312,9 +402,19 @@ function deleteAppsV1beta2CollectionNamespacedStatefulSet(_api::AppsV1beta2Api, Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAppsV1beta2CollectionNamespacedStatefulSet(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta2CollectionNamespacedStatefulSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAppsV1beta2CollectionNamespacedStatefulSet(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta2CollectionNamespacedStatefulSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a ControllerRevision @@ -328,7 +428,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -339,9 +439,19 @@ function deleteAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, nam Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta2NamespacedControllerRevision(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta2NamespacedControllerRevision(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a DaemonSet @@ -355,7 +465,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -366,9 +476,19 @@ function deleteAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, name::String Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta2NamespacedDaemonSet(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta2NamespacedDaemonSet(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a Deployment @@ -382,7 +502,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -393,9 +513,19 @@ function deleteAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, name::Strin Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta2NamespacedDeployment(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta2NamespacedDeployment(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a ReplicaSet @@ -409,7 +539,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -420,9 +550,19 @@ function deleteAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, name::Strin Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta2NamespacedReplicaSet(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta2NamespacedReplicaSet(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a StatefulSet @@ -436,7 +576,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -447,21 +587,41 @@ function deleteAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, name::Stri Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta2NamespacedStatefulSet(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAppsV1beta2NamespacedStatefulSet(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getAppsV1beta2APIResources(_api::AppsV1beta2Api; _mediaType=nothing) +function _swaggerinternal_getAppsV1beta2APIResources(_api::AppsV1beta2Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/apps/v1beta2/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getAppsV1beta2APIResources(_api::AppsV1beta2Api; _mediaType=nothing) + _ctx = _swaggerinternal_getAppsV1beta2APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getAppsV1beta2APIResources(_api::AppsV1beta2Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getAppsV1beta2APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind ControllerRevision @@ -476,7 +636,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAppsV1beta2ControllerRevisionList """ -function listAppsV1beta2ControllerRevisionForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAppsV1beta2ControllerRevisionForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta2ControllerRevisionList, "/apis/apps/v1beta2/controllerrevisions", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -489,9 +649,19 @@ function listAppsV1beta2ControllerRevisionForAllNamespaces(_api::AppsV1beta2Api; Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAppsV1beta2ControllerRevisionForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta2ControllerRevisionForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAppsV1beta2ControllerRevisionForAllNamespaces(_api::AppsV1beta2Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta2ControllerRevisionForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind DaemonSet @@ -506,7 +676,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAppsV1beta2DaemonSetList """ -function listAppsV1beta2DaemonSetForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAppsV1beta2DaemonSetForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta2DaemonSetList, "/apis/apps/v1beta2/daemonsets", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -519,9 +689,19 @@ function listAppsV1beta2DaemonSetForAllNamespaces(_api::AppsV1beta2Api; allowWat Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAppsV1beta2DaemonSetForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta2DaemonSetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAppsV1beta2DaemonSetForAllNamespaces(_api::AppsV1beta2Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta2DaemonSetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Deployment @@ -536,7 +716,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAppsV1beta2DeploymentList """ -function listAppsV1beta2DeploymentForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAppsV1beta2DeploymentForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta2DeploymentList, "/apis/apps/v1beta2/deployments", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -549,9 +729,19 @@ function listAppsV1beta2DeploymentForAllNamespaces(_api::AppsV1beta2Api; allowWa Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAppsV1beta2DeploymentForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta2DeploymentForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAppsV1beta2DeploymentForAllNamespaces(_api::AppsV1beta2Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta2DeploymentForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind ControllerRevision @@ -567,7 +757,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAppsV1beta2ControllerRevisionList """ -function listAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta2ControllerRevisionList, "/apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -581,9 +771,19 @@ function listAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, names Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta2NamespacedControllerRevision(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta2NamespacedControllerRevision(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind DaemonSet @@ -599,7 +799,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAppsV1beta2DaemonSetList """ -function listAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta2DaemonSetList, "/apis/apps/v1beta2/namespaces/{namespace}/daemonsets", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -613,9 +813,19 @@ function listAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, namespace::Str Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta2NamespacedDaemonSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta2NamespacedDaemonSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Deployment @@ -631,7 +841,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAppsV1beta2DeploymentList """ -function listAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta2DeploymentList, "/apis/apps/v1beta2/namespaces/{namespace}/deployments", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -645,9 +855,19 @@ function listAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, namespace::St Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta2NamespacedDeployment(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta2NamespacedDeployment(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind ReplicaSet @@ -663,7 +883,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAppsV1beta2ReplicaSetList """ -function listAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta2ReplicaSetList, "/apis/apps/v1beta2/namespaces/{namespace}/replicasets", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -677,9 +897,19 @@ function listAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, namespace::St Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta2NamespacedReplicaSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta2NamespacedReplicaSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind StatefulSet @@ -695,7 +925,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAppsV1beta2StatefulSetList """ -function listAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta2StatefulSetList, "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -709,9 +939,19 @@ function listAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, namespace::S Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta2NamespacedStatefulSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta2NamespacedStatefulSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind ReplicaSet @@ -726,7 +966,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAppsV1beta2ReplicaSetList """ -function listAppsV1beta2ReplicaSetForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAppsV1beta2ReplicaSetForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta2ReplicaSetList, "/apis/apps/v1beta2/replicasets", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -739,9 +979,19 @@ function listAppsV1beta2ReplicaSetForAllNamespaces(_api::AppsV1beta2Api; allowWa Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAppsV1beta2ReplicaSetForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta2ReplicaSetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAppsV1beta2ReplicaSetForAllNamespaces(_api::AppsV1beta2Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta2ReplicaSetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind StatefulSet @@ -756,7 +1006,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAppsV1beta2StatefulSetList """ -function listAppsV1beta2StatefulSetForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAppsV1beta2StatefulSetForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta2StatefulSetList, "/apis/apps/v1beta2/statefulsets", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -769,9 +1019,19 @@ function listAppsV1beta2StatefulSetForAllNamespaces(_api::AppsV1beta2Api; allowW Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAppsV1beta2StatefulSetForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta2StatefulSetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAppsV1beta2StatefulSetForAllNamespaces(_api::AppsV1beta2Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAppsV1beta2StatefulSetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified ControllerRevision @@ -784,7 +1044,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAppsV1beta2ControllerRevision """ -function patchAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAppsV1beta2ControllerRevision, "/apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -794,9 +1054,19 @@ function patchAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, name Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta2NamespacedControllerRevision(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta2NamespacedControllerRevision(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified DaemonSet @@ -809,7 +1079,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAppsV1beta2DaemonSet """ -function patchAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAppsV1beta2DaemonSet, "/apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -819,9 +1089,19 @@ function patchAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, name::String, Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta2NamespacedDaemonSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta2NamespacedDaemonSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified DaemonSet @@ -834,7 +1114,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAppsV1beta2DaemonSet """ -function patchAppsV1beta2NamespacedDaemonSetStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1beta2NamespacedDaemonSetStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAppsV1beta2DaemonSet, "/apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -844,9 +1124,19 @@ function patchAppsV1beta2NamespacedDaemonSetStatus(_api::AppsV1beta2Api, name::S Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1beta2NamespacedDaemonSetStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta2NamespacedDaemonSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1beta2NamespacedDaemonSetStatus(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta2NamespacedDaemonSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified Deployment @@ -859,7 +1149,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAppsV1beta2Deployment """ -function patchAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAppsV1beta2Deployment, "/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -869,9 +1159,19 @@ function patchAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, name::String Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta2NamespacedDeployment(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta2NamespacedDeployment(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update scale of the specified Deployment @@ -884,7 +1184,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAppsV1beta2Scale """ -function patchAppsV1beta2NamespacedDeploymentScale(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1beta2NamespacedDeploymentScale(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAppsV1beta2Scale, "/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/scale", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -894,9 +1194,19 @@ function patchAppsV1beta2NamespacedDeploymentScale(_api::AppsV1beta2Api, name::S Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1beta2NamespacedDeploymentScale(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta2NamespacedDeploymentScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1beta2NamespacedDeploymentScale(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta2NamespacedDeploymentScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified Deployment @@ -909,7 +1219,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAppsV1beta2Deployment """ -function patchAppsV1beta2NamespacedDeploymentStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1beta2NamespacedDeploymentStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAppsV1beta2Deployment, "/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -919,9 +1229,19 @@ function patchAppsV1beta2NamespacedDeploymentStatus(_api::AppsV1beta2Api, name:: Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1beta2NamespacedDeploymentStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta2NamespacedDeploymentStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1beta2NamespacedDeploymentStatus(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta2NamespacedDeploymentStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified ReplicaSet @@ -934,7 +1254,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAppsV1beta2ReplicaSet """ -function patchAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAppsV1beta2ReplicaSet, "/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -944,9 +1264,19 @@ function patchAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, name::String Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta2NamespacedReplicaSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta2NamespacedReplicaSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update scale of the specified ReplicaSet @@ -959,7 +1289,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAppsV1beta2Scale """ -function patchAppsV1beta2NamespacedReplicaSetScale(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1beta2NamespacedReplicaSetScale(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAppsV1beta2Scale, "/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/scale", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -969,9 +1299,19 @@ function patchAppsV1beta2NamespacedReplicaSetScale(_api::AppsV1beta2Api, name::S Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1beta2NamespacedReplicaSetScale(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta2NamespacedReplicaSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1beta2NamespacedReplicaSetScale(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta2NamespacedReplicaSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified ReplicaSet @@ -984,7 +1324,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAppsV1beta2ReplicaSet """ -function patchAppsV1beta2NamespacedReplicaSetStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1beta2NamespacedReplicaSetStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAppsV1beta2ReplicaSet, "/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -994,9 +1334,19 @@ function patchAppsV1beta2NamespacedReplicaSetStatus(_api::AppsV1beta2Api, name:: Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1beta2NamespacedReplicaSetStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta2NamespacedReplicaSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1beta2NamespacedReplicaSetStatus(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta2NamespacedReplicaSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified StatefulSet @@ -1009,7 +1359,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAppsV1beta2StatefulSet """ -function patchAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAppsV1beta2StatefulSet, "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1019,9 +1369,19 @@ function patchAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, name::Strin Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta2NamespacedStatefulSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta2NamespacedStatefulSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update scale of the specified StatefulSet @@ -1034,7 +1394,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAppsV1beta2Scale """ -function patchAppsV1beta2NamespacedStatefulSetScale(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1beta2NamespacedStatefulSetScale(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAppsV1beta2Scale, "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/scale", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1044,9 +1404,19 @@ function patchAppsV1beta2NamespacedStatefulSetScale(_api::AppsV1beta2Api, name:: Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1beta2NamespacedStatefulSetScale(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta2NamespacedStatefulSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1beta2NamespacedStatefulSetScale(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta2NamespacedStatefulSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified StatefulSet @@ -1059,7 +1429,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAppsV1beta2StatefulSet """ -function patchAppsV1beta2NamespacedStatefulSetStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAppsV1beta2NamespacedStatefulSetStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAppsV1beta2StatefulSet, "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1069,9 +1439,19 @@ function patchAppsV1beta2NamespacedStatefulSetStatus(_api::AppsV1beta2Api, name: Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAppsV1beta2NamespacedStatefulSetStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta2NamespacedStatefulSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAppsV1beta2NamespacedStatefulSetStatus(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAppsV1beta2NamespacedStatefulSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified ControllerRevision @@ -1082,7 +1462,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiAppsV1beta2ControllerRevision """ -function readAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta2ControllerRevision, "/apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1091,9 +1471,19 @@ function readAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, name: Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta2NamespacedControllerRevision(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta2NamespacedControllerRevision(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified DaemonSet @@ -1104,7 +1494,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiAppsV1beta2DaemonSet """ -function readAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta2DaemonSet, "/apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1113,9 +1503,19 @@ function readAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, name::String, Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta2NamespacedDaemonSet(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta2NamespacedDaemonSet(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified DaemonSet @@ -1124,16 +1524,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiAppsV1beta2DaemonSet """ -function readAppsV1beta2NamespacedDaemonSetStatus(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1beta2NamespacedDaemonSetStatus(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta2DaemonSet, "/apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1beta2NamespacedDaemonSetStatus(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta2NamespacedDaemonSetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1beta2NamespacedDaemonSetStatus(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta2NamespacedDaemonSetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified Deployment @@ -1144,7 +1554,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiAppsV1beta2Deployment """ -function readAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta2Deployment, "/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1153,9 +1563,19 @@ function readAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, name::String, Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta2NamespacedDeployment(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta2NamespacedDeployment(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read scale of the specified Deployment @@ -1164,16 +1584,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiAppsV1beta2Scale """ -function readAppsV1beta2NamespacedDeploymentScale(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1beta2NamespacedDeploymentScale(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta2Scale, "/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/scale", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1beta2NamespacedDeploymentScale(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta2NamespacedDeploymentScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1beta2NamespacedDeploymentScale(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta2NamespacedDeploymentScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified Deployment @@ -1182,16 +1612,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiAppsV1beta2Deployment """ -function readAppsV1beta2NamespacedDeploymentStatus(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1beta2NamespacedDeploymentStatus(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta2Deployment, "/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1beta2NamespacedDeploymentStatus(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta2NamespacedDeploymentStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1beta2NamespacedDeploymentStatus(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta2NamespacedDeploymentStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified ReplicaSet @@ -1202,7 +1642,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiAppsV1beta2ReplicaSet """ -function readAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta2ReplicaSet, "/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1211,9 +1651,19 @@ function readAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, name::String, Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta2NamespacedReplicaSet(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta2NamespacedReplicaSet(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read scale of the specified ReplicaSet @@ -1222,16 +1672,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiAppsV1beta2Scale """ -function readAppsV1beta2NamespacedReplicaSetScale(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1beta2NamespacedReplicaSetScale(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta2Scale, "/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/scale", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1beta2NamespacedReplicaSetScale(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta2NamespacedReplicaSetScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1beta2NamespacedReplicaSetScale(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta2NamespacedReplicaSetScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified ReplicaSet @@ -1240,16 +1700,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiAppsV1beta2ReplicaSet """ -function readAppsV1beta2NamespacedReplicaSetStatus(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1beta2NamespacedReplicaSetStatus(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta2ReplicaSet, "/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1beta2NamespacedReplicaSetStatus(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta2NamespacedReplicaSetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1beta2NamespacedReplicaSetStatus(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta2NamespacedReplicaSetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified StatefulSet @@ -1260,7 +1730,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiAppsV1beta2StatefulSet """ -function readAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta2StatefulSet, "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1269,9 +1739,19 @@ function readAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, name::String Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta2NamespacedStatefulSet(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta2NamespacedStatefulSet(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read scale of the specified StatefulSet @@ -1280,16 +1760,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiAppsV1beta2Scale """ -function readAppsV1beta2NamespacedStatefulSetScale(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1beta2NamespacedStatefulSetScale(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta2Scale, "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/scale", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1beta2NamespacedStatefulSetScale(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta2NamespacedStatefulSetScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1beta2NamespacedStatefulSetScale(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta2NamespacedStatefulSetScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified StatefulSet @@ -1298,16 +1788,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiAppsV1beta2StatefulSet """ -function readAppsV1beta2NamespacedStatefulSetStatus(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readAppsV1beta2NamespacedStatefulSetStatus(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAppsV1beta2StatefulSet, "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAppsV1beta2NamespacedStatefulSetStatus(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta2NamespacedStatefulSetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAppsV1beta2NamespacedStatefulSetStatus(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAppsV1beta2NamespacedStatefulSetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified ControllerRevision @@ -1319,7 +1819,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1beta2ControllerRevision """ -function replaceAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAppsV1beta2ControllerRevision, "/apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1328,9 +1828,19 @@ function replaceAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, na Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta2NamespacedControllerRevision(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta2NamespacedControllerRevision(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified DaemonSet @@ -1342,7 +1852,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1beta2DaemonSet """ -function replaceAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAppsV1beta2DaemonSet, "/apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1351,9 +1861,19 @@ function replaceAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, name::Strin Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta2NamespacedDaemonSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta2NamespacedDaemonSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified DaemonSet @@ -1365,7 +1885,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1beta2DaemonSet """ -function replaceAppsV1beta2NamespacedDaemonSetStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1beta2NamespacedDaemonSetStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAppsV1beta2DaemonSet, "/apis/apps/v1beta2/namespaces/{namespace}/daemonsets/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1374,9 +1894,19 @@ function replaceAppsV1beta2NamespacedDaemonSetStatus(_api::AppsV1beta2Api, name: Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1beta2NamespacedDaemonSetStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta2NamespacedDaemonSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1beta2NamespacedDaemonSetStatus(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta2NamespacedDaemonSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified Deployment @@ -1388,7 +1918,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1beta2Deployment """ -function replaceAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAppsV1beta2Deployment, "/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1397,9 +1927,19 @@ function replaceAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, name::Stri Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta2NamespacedDeployment(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta2NamespacedDeployment(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace scale of the specified Deployment @@ -1411,7 +1951,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1beta2Scale """ -function replaceAppsV1beta2NamespacedDeploymentScale(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1beta2NamespacedDeploymentScale(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAppsV1beta2Scale, "/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/scale", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1420,9 +1960,19 @@ function replaceAppsV1beta2NamespacedDeploymentScale(_api::AppsV1beta2Api, name: Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1beta2NamespacedDeploymentScale(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta2NamespacedDeploymentScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1beta2NamespacedDeploymentScale(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta2NamespacedDeploymentScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified Deployment @@ -1434,7 +1984,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1beta2Deployment """ -function replaceAppsV1beta2NamespacedDeploymentStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1beta2NamespacedDeploymentStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAppsV1beta2Deployment, "/apis/apps/v1beta2/namespaces/{namespace}/deployments/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1443,9 +1993,19 @@ function replaceAppsV1beta2NamespacedDeploymentStatus(_api::AppsV1beta2Api, name Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1beta2NamespacedDeploymentStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta2NamespacedDeploymentStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1beta2NamespacedDeploymentStatus(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta2NamespacedDeploymentStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified ReplicaSet @@ -1457,7 +2017,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1beta2ReplicaSet """ -function replaceAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAppsV1beta2ReplicaSet, "/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1466,9 +2026,19 @@ function replaceAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, name::Stri Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta2NamespacedReplicaSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta2NamespacedReplicaSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace scale of the specified ReplicaSet @@ -1480,7 +2050,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1beta2Scale """ -function replaceAppsV1beta2NamespacedReplicaSetScale(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1beta2NamespacedReplicaSetScale(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAppsV1beta2Scale, "/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/scale", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1489,9 +2059,19 @@ function replaceAppsV1beta2NamespacedReplicaSetScale(_api::AppsV1beta2Api, name: Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1beta2NamespacedReplicaSetScale(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta2NamespacedReplicaSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1beta2NamespacedReplicaSetScale(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta2NamespacedReplicaSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified ReplicaSet @@ -1503,7 +2083,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1beta2ReplicaSet """ -function replaceAppsV1beta2NamespacedReplicaSetStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1beta2NamespacedReplicaSetStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAppsV1beta2ReplicaSet, "/apis/apps/v1beta2/namespaces/{namespace}/replicasets/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1512,9 +2092,19 @@ function replaceAppsV1beta2NamespacedReplicaSetStatus(_api::AppsV1beta2Api, name Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1beta2NamespacedReplicaSetStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta2NamespacedReplicaSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1beta2NamespacedReplicaSetStatus(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta2NamespacedReplicaSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified StatefulSet @@ -1526,7 +2116,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1beta2StatefulSet """ -function replaceAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAppsV1beta2StatefulSet, "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1535,9 +2125,19 @@ function replaceAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, name::Str Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta2NamespacedStatefulSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta2NamespacedStatefulSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace scale of the specified StatefulSet @@ -1549,7 +2149,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1beta2Scale """ -function replaceAppsV1beta2NamespacedStatefulSetScale(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1beta2NamespacedStatefulSetScale(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAppsV1beta2Scale, "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/scale", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1558,9 +2158,19 @@ function replaceAppsV1beta2NamespacedStatefulSetScale(_api::AppsV1beta2Api, name Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1beta2NamespacedStatefulSetScale(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta2NamespacedStatefulSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1beta2NamespacedStatefulSetScale(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta2NamespacedStatefulSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified StatefulSet @@ -1572,7 +2182,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAppsV1beta2StatefulSet """ -function replaceAppsV1beta2NamespacedStatefulSetStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAppsV1beta2NamespacedStatefulSetStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAppsV1beta2StatefulSet, "/apis/apps/v1beta2/namespaces/{namespace}/statefulsets/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1581,9 +2191,19 @@ function replaceAppsV1beta2NamespacedStatefulSetStatus(_api::AppsV1beta2Api, nam Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAppsV1beta2NamespacedStatefulSetStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta2NamespacedStatefulSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAppsV1beta2NamespacedStatefulSetStatus(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAppsV1beta2NamespacedStatefulSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead. @@ -1598,7 +2218,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1beta2ControllerRevisionListForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1beta2ControllerRevisionListForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1beta2/watch/controllerrevisions", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -1611,9 +2231,19 @@ function watchAppsV1beta2ControllerRevisionListForAllNamespaces(_api::AppsV1beta Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1beta2ControllerRevisionListForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2ControllerRevisionListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1beta2ControllerRevisionListForAllNamespaces(_api::AppsV1beta2Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2ControllerRevisionListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of DaemonSet. deprecated: use the 'watch' parameter with a list operation instead. @@ -1628,7 +2258,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1beta2DaemonSetListForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1beta2DaemonSetListForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1beta2/watch/daemonsets", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -1641,9 +2271,19 @@ function watchAppsV1beta2DaemonSetListForAllNamespaces(_api::AppsV1beta2Api; all Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1beta2DaemonSetListForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2DaemonSetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1beta2DaemonSetListForAllNamespaces(_api::AppsV1beta2Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2DaemonSetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead. @@ -1658,7 +2298,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1beta2DeploymentListForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1beta2DeploymentListForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1beta2/watch/deployments", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -1671,9 +2311,19 @@ function watchAppsV1beta2DeploymentListForAllNamespaces(_api::AppsV1beta2Api; al Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1beta2DeploymentListForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2DeploymentListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1beta2DeploymentListForAllNamespaces(_api::AppsV1beta2Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2DeploymentListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -1690,7 +2340,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1beta2/watch/namespaces/{namespace}/controllerrevisions/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1705,9 +2355,19 @@ function watchAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, name Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2NamespacedControllerRevision(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1beta2NamespacedControllerRevision(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2NamespacedControllerRevision(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead. @@ -1723,7 +2383,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1beta2NamespacedControllerRevisionList(_api::AppsV1beta2Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1beta2NamespacedControllerRevisionList(_api::AppsV1beta2Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1beta2/watch/namespaces/{namespace}/controllerrevisions", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -1737,9 +2397,19 @@ function watchAppsV1beta2NamespacedControllerRevisionList(_api::AppsV1beta2Api, Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1beta2NamespacedControllerRevisionList(_api::AppsV1beta2Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2NamespacedControllerRevisionList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1beta2NamespacedControllerRevisionList(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2NamespacedControllerRevisionList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -1756,7 +2426,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1beta2/watch/namespaces/{namespace}/daemonsets/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1771,9 +2441,19 @@ function watchAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, name::String, Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2NamespacedDaemonSet(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1beta2NamespacedDaemonSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2NamespacedDaemonSet(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of DaemonSet. deprecated: use the 'watch' parameter with a list operation instead. @@ -1789,7 +2469,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1beta2NamespacedDaemonSetList(_api::AppsV1beta2Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1beta2NamespacedDaemonSetList(_api::AppsV1beta2Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1beta2/watch/namespaces/{namespace}/daemonsets", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -1803,9 +2483,19 @@ function watchAppsV1beta2NamespacedDaemonSetList(_api::AppsV1beta2Api, namespace Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1beta2NamespacedDaemonSetList(_api::AppsV1beta2Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2NamespacedDaemonSetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1beta2NamespacedDaemonSetList(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2NamespacedDaemonSetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -1822,7 +2512,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1beta2/watch/namespaces/{namespace}/deployments/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1837,9 +2527,19 @@ function watchAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, name::String Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2NamespacedDeployment(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1beta2NamespacedDeployment(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2NamespacedDeployment(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead. @@ -1855,7 +2555,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1beta2NamespacedDeploymentList(_api::AppsV1beta2Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1beta2NamespacedDeploymentList(_api::AppsV1beta2Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1beta2/watch/namespaces/{namespace}/deployments", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -1869,9 +2569,19 @@ function watchAppsV1beta2NamespacedDeploymentList(_api::AppsV1beta2Api, namespac Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1beta2NamespacedDeploymentList(_api::AppsV1beta2Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2NamespacedDeploymentList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1beta2NamespacedDeploymentList(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2NamespacedDeploymentList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -1888,7 +2598,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1beta2/watch/namespaces/{namespace}/replicasets/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1903,9 +2613,19 @@ function watchAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, name::String Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2NamespacedReplicaSet(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1beta2NamespacedReplicaSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2NamespacedReplicaSet(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead. @@ -1921,7 +2641,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1beta2NamespacedReplicaSetList(_api::AppsV1beta2Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1beta2NamespacedReplicaSetList(_api::AppsV1beta2Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1beta2/watch/namespaces/{namespace}/replicasets", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -1935,9 +2655,19 @@ function watchAppsV1beta2NamespacedReplicaSetList(_api::AppsV1beta2Api, namespac Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1beta2NamespacedReplicaSetList(_api::AppsV1beta2Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2NamespacedReplicaSetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1beta2NamespacedReplicaSetList(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2NamespacedReplicaSetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -1954,7 +2684,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1beta2/watch/namespaces/{namespace}/statefulsets/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1969,9 +2699,19 @@ function watchAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, name::Strin Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2NamespacedStatefulSet(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1beta2NamespacedStatefulSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2NamespacedStatefulSet(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of StatefulSet. deprecated: use the 'watch' parameter with a list operation instead. @@ -1987,7 +2727,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1beta2NamespacedStatefulSetList(_api::AppsV1beta2Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1beta2NamespacedStatefulSetList(_api::AppsV1beta2Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1beta2/watch/namespaces/{namespace}/statefulsets", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -2001,9 +2741,19 @@ function watchAppsV1beta2NamespacedStatefulSetList(_api::AppsV1beta2Api, namespa Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1beta2NamespacedStatefulSetList(_api::AppsV1beta2Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2NamespacedStatefulSetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1beta2NamespacedStatefulSetList(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2NamespacedStatefulSetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead. @@ -2018,7 +2768,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1beta2ReplicaSetListForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1beta2ReplicaSetListForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1beta2/watch/replicasets", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -2031,9 +2781,19 @@ function watchAppsV1beta2ReplicaSetListForAllNamespaces(_api::AppsV1beta2Api; al Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1beta2ReplicaSetListForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2ReplicaSetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1beta2ReplicaSetListForAllNamespaces(_api::AppsV1beta2Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2ReplicaSetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of StatefulSet. deprecated: use the 'watch' parameter with a list operation instead. @@ -2048,7 +2808,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAppsV1beta2StatefulSetListForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAppsV1beta2StatefulSetListForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/apps/v1beta2/watch/statefulsets", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -2061,7 +2821,17 @@ function watchAppsV1beta2StatefulSetListForAllNamespaces(_api::AppsV1beta2Api; a Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAppsV1beta2StatefulSetListForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2StatefulSetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAppsV1beta2StatefulSetListForAllNamespaces(_api::AppsV1beta2Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAppsV1beta2StatefulSetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createAppsV1beta2NamespacedControllerRevision, createAppsV1beta2NamespacedDaemonSet, createAppsV1beta2NamespacedDeployment, createAppsV1beta2NamespacedReplicaSet, createAppsV1beta2NamespacedStatefulSet, deleteAppsV1beta2CollectionNamespacedControllerRevision, deleteAppsV1beta2CollectionNamespacedDaemonSet, deleteAppsV1beta2CollectionNamespacedDeployment, deleteAppsV1beta2CollectionNamespacedReplicaSet, deleteAppsV1beta2CollectionNamespacedStatefulSet, deleteAppsV1beta2NamespacedControllerRevision, deleteAppsV1beta2NamespacedDaemonSet, deleteAppsV1beta2NamespacedDeployment, deleteAppsV1beta2NamespacedReplicaSet, deleteAppsV1beta2NamespacedStatefulSet, getAppsV1beta2APIResources, listAppsV1beta2ControllerRevisionForAllNamespaces, listAppsV1beta2DaemonSetForAllNamespaces, listAppsV1beta2DeploymentForAllNamespaces, listAppsV1beta2NamespacedControllerRevision, listAppsV1beta2NamespacedDaemonSet, listAppsV1beta2NamespacedDeployment, listAppsV1beta2NamespacedReplicaSet, listAppsV1beta2NamespacedStatefulSet, listAppsV1beta2ReplicaSetForAllNamespaces, listAppsV1beta2StatefulSetForAllNamespaces, patchAppsV1beta2NamespacedControllerRevision, patchAppsV1beta2NamespacedDaemonSet, patchAppsV1beta2NamespacedDaemonSetStatus, patchAppsV1beta2NamespacedDeployment, patchAppsV1beta2NamespacedDeploymentScale, patchAppsV1beta2NamespacedDeploymentStatus, patchAppsV1beta2NamespacedReplicaSet, patchAppsV1beta2NamespacedReplicaSetScale, patchAppsV1beta2NamespacedReplicaSetStatus, patchAppsV1beta2NamespacedStatefulSet, patchAppsV1beta2NamespacedStatefulSetScale, patchAppsV1beta2NamespacedStatefulSetStatus, readAppsV1beta2NamespacedControllerRevision, readAppsV1beta2NamespacedDaemonSet, readAppsV1beta2NamespacedDaemonSetStatus, readAppsV1beta2NamespacedDeployment, readAppsV1beta2NamespacedDeploymentScale, readAppsV1beta2NamespacedDeploymentStatus, readAppsV1beta2NamespacedReplicaSet, readAppsV1beta2NamespacedReplicaSetScale, readAppsV1beta2NamespacedReplicaSetStatus, readAppsV1beta2NamespacedStatefulSet, readAppsV1beta2NamespacedStatefulSetScale, readAppsV1beta2NamespacedStatefulSetStatus, replaceAppsV1beta2NamespacedControllerRevision, replaceAppsV1beta2NamespacedDaemonSet, replaceAppsV1beta2NamespacedDaemonSetStatus, replaceAppsV1beta2NamespacedDeployment, replaceAppsV1beta2NamespacedDeploymentScale, replaceAppsV1beta2NamespacedDeploymentStatus, replaceAppsV1beta2NamespacedReplicaSet, replaceAppsV1beta2NamespacedReplicaSetScale, replaceAppsV1beta2NamespacedReplicaSetStatus, replaceAppsV1beta2NamespacedStatefulSet, replaceAppsV1beta2NamespacedStatefulSetScale, replaceAppsV1beta2NamespacedStatefulSetStatus, watchAppsV1beta2ControllerRevisionListForAllNamespaces, watchAppsV1beta2DaemonSetListForAllNamespaces, watchAppsV1beta2DeploymentListForAllNamespaces, watchAppsV1beta2NamespacedControllerRevision, watchAppsV1beta2NamespacedControllerRevisionList, watchAppsV1beta2NamespacedDaemonSet, watchAppsV1beta2NamespacedDaemonSetList, watchAppsV1beta2NamespacedDeployment, watchAppsV1beta2NamespacedDeploymentList, watchAppsV1beta2NamespacedReplicaSet, watchAppsV1beta2NamespacedReplicaSetList, watchAppsV1beta2NamespacedStatefulSet, watchAppsV1beta2NamespacedStatefulSetList, watchAppsV1beta2ReplicaSetListForAllNamespaces, watchAppsV1beta2StatefulSetListForAllNamespaces diff --git a/src/api/api_AuditregistrationApi.jl b/src/api/api_AuditregistrationApi.jl index 2e7a4e88..bf0d4c84 100644 --- a/src/api/api_AuditregistrationApi.jl +++ b/src/api/api_AuditregistrationApi.jl @@ -10,11 +10,21 @@ end get information of a group Return: IoK8sApimachineryPkgApisMetaV1APIGroup """ -function getAuditregistrationAPIGroup(_api::AuditregistrationApi; _mediaType=nothing) +function _swaggerinternal_getAuditregistrationAPIGroup(_api::AuditregistrationApi; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIGroup, "/apis/auditregistration.k8s.io/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getAuditregistrationAPIGroup(_api::AuditregistrationApi; _mediaType=nothing) + _ctx = _swaggerinternal_getAuditregistrationAPIGroup(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getAuditregistrationAPIGroup(_api::AuditregistrationApi, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getAuditregistrationAPIGroup(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export getAuditregistrationAPIGroup diff --git a/src/api/api_AuditregistrationV1alpha1Api.jl b/src/api/api_AuditregistrationV1alpha1Api.jl index 6f0e6bb5..717f628b 100644 --- a/src/api/api_AuditregistrationV1alpha1Api.jl +++ b/src/api/api_AuditregistrationV1alpha1Api.jl @@ -14,16 +14,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAuditregistrationV1alpha1AuditSink """ -function createAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAuditregistrationV1alpha1AuditSink, "/apis/auditregistration.k8s.io/v1alpha1/auditsinks", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAuditregistrationV1alpha1AuditSink(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAuditregistrationV1alpha1AuditSink(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete an AuditSink @@ -36,7 +46,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/auditregistration.k8s.io/v1alpha1/auditsinks/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -46,9 +56,19 @@ function deleteAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAuditregistrationV1alpha1AuditSink(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAuditregistrationV1alpha1AuditSink(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of AuditSink @@ -68,7 +88,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAuditregistrationV1alpha1CollectionAuditSink(_api::AuditregistrationV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAuditregistrationV1alpha1CollectionAuditSink(_api::AuditregistrationV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/auditregistration.k8s.io/v1alpha1/auditsinks", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -85,21 +105,41 @@ function deleteAuditregistrationV1alpha1CollectionAuditSink(_api::Auditregistrat Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAuditregistrationV1alpha1CollectionAuditSink(_api::AuditregistrationV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAuditregistrationV1alpha1CollectionAuditSink(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAuditregistrationV1alpha1CollectionAuditSink(_api::AuditregistrationV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAuditregistrationV1alpha1CollectionAuditSink(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getAuditregistrationV1alpha1APIResources(_api::AuditregistrationV1alpha1Api; _mediaType=nothing) +function _swaggerinternal_getAuditregistrationV1alpha1APIResources(_api::AuditregistrationV1alpha1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/auditregistration.k8s.io/v1alpha1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getAuditregistrationV1alpha1APIResources(_api::AuditregistrationV1alpha1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getAuditregistrationV1alpha1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getAuditregistrationV1alpha1APIResources(_api::AuditregistrationV1alpha1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getAuditregistrationV1alpha1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind AuditSink @@ -114,7 +154,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAuditregistrationV1alpha1AuditSinkList """ -function listAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAuditregistrationV1alpha1AuditSinkList, "/apis/auditregistration.k8s.io/v1alpha1/auditsinks", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -127,9 +167,19 @@ function listAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1A Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAuditregistrationV1alpha1AuditSink(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAuditregistrationV1alpha1AuditSink(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified AuditSink @@ -141,7 +191,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAuditregistrationV1alpha1AuditSink """ -function patchAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAuditregistrationV1alpha1AuditSink, "/apis/auditregistration.k8s.io/v1alpha1/auditsinks/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -150,9 +200,19 @@ function patchAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1 Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAuditregistrationV1alpha1AuditSink(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAuditregistrationV1alpha1AuditSink(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified AuditSink @@ -162,7 +222,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiAuditregistrationV1alpha1AuditSink """ -function readAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAuditregistrationV1alpha1AuditSink, "/apis/auditregistration.k8s.io/v1alpha1/auditsinks/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -170,9 +230,19 @@ function readAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1A Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAuditregistrationV1alpha1AuditSink(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAuditregistrationV1alpha1AuditSink(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified AuditSink @@ -183,7 +253,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAuditregistrationV1alpha1AuditSink """ -function replaceAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAuditregistrationV1alpha1AuditSink, "/apis/auditregistration.k8s.io/v1alpha1/auditsinks/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -191,9 +261,19 @@ function replaceAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alph Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAuditregistrationV1alpha1AuditSink(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAuditregistrationV1alpha1AuditSink(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -209,7 +289,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/auditregistration.k8s.io/v1alpha1/watch/auditsinks/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -223,9 +303,19 @@ function watchAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1 Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAuditregistrationV1alpha1AuditSink(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAuditregistrationV1alpha1AuditSink(_api::AuditregistrationV1alpha1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAuditregistrationV1alpha1AuditSink(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of AuditSink. deprecated: use the 'watch' parameter with a list operation instead. @@ -240,7 +330,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAuditregistrationV1alpha1AuditSinkList(_api::AuditregistrationV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAuditregistrationV1alpha1AuditSinkList(_api::AuditregistrationV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/auditregistration.k8s.io/v1alpha1/watch/auditsinks", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -253,7 +343,17 @@ function watchAuditregistrationV1alpha1AuditSinkList(_api::AuditregistrationV1al Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAuditregistrationV1alpha1AuditSinkList(_api::AuditregistrationV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAuditregistrationV1alpha1AuditSinkList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAuditregistrationV1alpha1AuditSinkList(_api::AuditregistrationV1alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAuditregistrationV1alpha1AuditSinkList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createAuditregistrationV1alpha1AuditSink, deleteAuditregistrationV1alpha1AuditSink, deleteAuditregistrationV1alpha1CollectionAuditSink, getAuditregistrationV1alpha1APIResources, listAuditregistrationV1alpha1AuditSink, patchAuditregistrationV1alpha1AuditSink, readAuditregistrationV1alpha1AuditSink, replaceAuditregistrationV1alpha1AuditSink, watchAuditregistrationV1alpha1AuditSink, watchAuditregistrationV1alpha1AuditSinkList diff --git a/src/api/api_AuthenticationApi.jl b/src/api/api_AuthenticationApi.jl index 62eda4dd..ec01344d 100644 --- a/src/api/api_AuthenticationApi.jl +++ b/src/api/api_AuthenticationApi.jl @@ -10,11 +10,21 @@ end get information of a group Return: IoK8sApimachineryPkgApisMetaV1APIGroup """ -function getAuthenticationAPIGroup(_api::AuthenticationApi; _mediaType=nothing) +function _swaggerinternal_getAuthenticationAPIGroup(_api::AuthenticationApi; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIGroup, "/apis/authentication.k8s.io/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getAuthenticationAPIGroup(_api::AuthenticationApi; _mediaType=nothing) + _ctx = _swaggerinternal_getAuthenticationAPIGroup(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getAuthenticationAPIGroup(_api::AuthenticationApi, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getAuthenticationAPIGroup(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export getAuthenticationAPIGroup diff --git a/src/api/api_AuthenticationV1Api.jl b/src/api/api_AuthenticationV1Api.jl index a9159b56..b1d41bcf 100644 --- a/src/api/api_AuthenticationV1Api.jl +++ b/src/api/api_AuthenticationV1Api.jl @@ -14,26 +14,46 @@ Param: fieldManager::String Param: pretty::String Return: IoK8sApiAuthenticationV1TokenReview """ -function createAuthenticationV1TokenReview(_api::AuthenticationV1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) +function _swaggerinternal_createAuthenticationV1TokenReview(_api::AuthenticationV1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAuthenticationV1TokenReview, "/apis/authentication.k8s.io/v1/tokenreviews", ["BearerToken"], body) Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAuthenticationV1TokenReview(_api::AuthenticationV1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAuthenticationV1TokenReview(_api, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAuthenticationV1TokenReview(_api::AuthenticationV1Api, response_stream::Channel, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAuthenticationV1TokenReview(_api, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getAuthenticationV1APIResources(_api::AuthenticationV1Api; _mediaType=nothing) +function _swaggerinternal_getAuthenticationV1APIResources(_api::AuthenticationV1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/authentication.k8s.io/v1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getAuthenticationV1APIResources(_api::AuthenticationV1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getAuthenticationV1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getAuthenticationV1APIResources(_api::AuthenticationV1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getAuthenticationV1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createAuthenticationV1TokenReview, getAuthenticationV1APIResources diff --git a/src/api/api_AuthenticationV1beta1Api.jl b/src/api/api_AuthenticationV1beta1Api.jl index 43fa6394..40f74b9b 100644 --- a/src/api/api_AuthenticationV1beta1Api.jl +++ b/src/api/api_AuthenticationV1beta1Api.jl @@ -14,26 +14,46 @@ Param: fieldManager::String Param: pretty::String Return: IoK8sApiAuthenticationV1beta1TokenReview """ -function createAuthenticationV1beta1TokenReview(_api::AuthenticationV1beta1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) +function _swaggerinternal_createAuthenticationV1beta1TokenReview(_api::AuthenticationV1beta1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAuthenticationV1beta1TokenReview, "/apis/authentication.k8s.io/v1beta1/tokenreviews", ["BearerToken"], body) Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAuthenticationV1beta1TokenReview(_api::AuthenticationV1beta1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAuthenticationV1beta1TokenReview(_api, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAuthenticationV1beta1TokenReview(_api::AuthenticationV1beta1Api, response_stream::Channel, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAuthenticationV1beta1TokenReview(_api, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getAuthenticationV1beta1APIResources(_api::AuthenticationV1beta1Api; _mediaType=nothing) +function _swaggerinternal_getAuthenticationV1beta1APIResources(_api::AuthenticationV1beta1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/authentication.k8s.io/v1beta1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getAuthenticationV1beta1APIResources(_api::AuthenticationV1beta1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getAuthenticationV1beta1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getAuthenticationV1beta1APIResources(_api::AuthenticationV1beta1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getAuthenticationV1beta1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createAuthenticationV1beta1TokenReview, getAuthenticationV1beta1APIResources diff --git a/src/api/api_AuthorizationApi.jl b/src/api/api_AuthorizationApi.jl index 9362924c..cbe08885 100644 --- a/src/api/api_AuthorizationApi.jl +++ b/src/api/api_AuthorizationApi.jl @@ -10,11 +10,21 @@ end get information of a group Return: IoK8sApimachineryPkgApisMetaV1APIGroup """ -function getAuthorizationAPIGroup(_api::AuthorizationApi; _mediaType=nothing) +function _swaggerinternal_getAuthorizationAPIGroup(_api::AuthorizationApi; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIGroup, "/apis/authorization.k8s.io/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getAuthorizationAPIGroup(_api::AuthorizationApi; _mediaType=nothing) + _ctx = _swaggerinternal_getAuthorizationAPIGroup(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getAuthorizationAPIGroup(_api::AuthorizationApi, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getAuthorizationAPIGroup(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export getAuthorizationAPIGroup diff --git a/src/api/api_AuthorizationV1Api.jl b/src/api/api_AuthorizationV1Api.jl index 2052c103..6b4904cf 100644 --- a/src/api/api_AuthorizationV1Api.jl +++ b/src/api/api_AuthorizationV1Api.jl @@ -15,7 +15,7 @@ Param: fieldManager::String Param: pretty::String Return: IoK8sApiAuthorizationV1LocalSubjectAccessReview """ -function createAuthorizationV1NamespacedLocalSubjectAccessReview(_api::AuthorizationV1Api, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) +function _swaggerinternal_createAuthorizationV1NamespacedLocalSubjectAccessReview(_api::AuthorizationV1Api, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAuthorizationV1LocalSubjectAccessReview, "/apis/authorization.k8s.io/v1/namespaces/{namespace}/localsubjectaccessreviews", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String @@ -23,9 +23,19 @@ function createAuthorizationV1NamespacedLocalSubjectAccessReview(_api::Authoriza Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAuthorizationV1NamespacedLocalSubjectAccessReview(_api::AuthorizationV1Api, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAuthorizationV1NamespacedLocalSubjectAccessReview(_api, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAuthorizationV1NamespacedLocalSubjectAccessReview(_api::AuthorizationV1Api, response_stream::Channel, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAuthorizationV1NamespacedLocalSubjectAccessReview(_api, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a SelfSubjectAccessReview @@ -35,16 +45,26 @@ Param: fieldManager::String Param: pretty::String Return: IoK8sApiAuthorizationV1SelfSubjectAccessReview """ -function createAuthorizationV1SelfSubjectAccessReview(_api::AuthorizationV1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) +function _swaggerinternal_createAuthorizationV1SelfSubjectAccessReview(_api::AuthorizationV1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAuthorizationV1SelfSubjectAccessReview, "/apis/authorization.k8s.io/v1/selfsubjectaccessreviews", ["BearerToken"], body) Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAuthorizationV1SelfSubjectAccessReview(_api::AuthorizationV1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAuthorizationV1SelfSubjectAccessReview(_api, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAuthorizationV1SelfSubjectAccessReview(_api::AuthorizationV1Api, response_stream::Channel, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAuthorizationV1SelfSubjectAccessReview(_api, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a SelfSubjectRulesReview @@ -54,16 +74,26 @@ Param: fieldManager::String Param: pretty::String Return: IoK8sApiAuthorizationV1SelfSubjectRulesReview """ -function createAuthorizationV1SelfSubjectRulesReview(_api::AuthorizationV1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) +function _swaggerinternal_createAuthorizationV1SelfSubjectRulesReview(_api::AuthorizationV1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAuthorizationV1SelfSubjectRulesReview, "/apis/authorization.k8s.io/v1/selfsubjectrulesreviews", ["BearerToken"], body) Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAuthorizationV1SelfSubjectRulesReview(_api::AuthorizationV1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAuthorizationV1SelfSubjectRulesReview(_api, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAuthorizationV1SelfSubjectRulesReview(_api::AuthorizationV1Api, response_stream::Channel, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAuthorizationV1SelfSubjectRulesReview(_api, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a SubjectAccessReview @@ -73,26 +103,46 @@ Param: fieldManager::String Param: pretty::String Return: IoK8sApiAuthorizationV1SubjectAccessReview """ -function createAuthorizationV1SubjectAccessReview(_api::AuthorizationV1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) +function _swaggerinternal_createAuthorizationV1SubjectAccessReview(_api::AuthorizationV1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAuthorizationV1SubjectAccessReview, "/apis/authorization.k8s.io/v1/subjectaccessreviews", ["BearerToken"], body) Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAuthorizationV1SubjectAccessReview(_api::AuthorizationV1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAuthorizationV1SubjectAccessReview(_api, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAuthorizationV1SubjectAccessReview(_api::AuthorizationV1Api, response_stream::Channel, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAuthorizationV1SubjectAccessReview(_api, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getAuthorizationV1APIResources(_api::AuthorizationV1Api; _mediaType=nothing) +function _swaggerinternal_getAuthorizationV1APIResources(_api::AuthorizationV1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/authorization.k8s.io/v1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getAuthorizationV1APIResources(_api::AuthorizationV1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getAuthorizationV1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getAuthorizationV1APIResources(_api::AuthorizationV1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getAuthorizationV1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createAuthorizationV1NamespacedLocalSubjectAccessReview, createAuthorizationV1SelfSubjectAccessReview, createAuthorizationV1SelfSubjectRulesReview, createAuthorizationV1SubjectAccessReview, getAuthorizationV1APIResources diff --git a/src/api/api_AuthorizationV1beta1Api.jl b/src/api/api_AuthorizationV1beta1Api.jl index 09b99bef..2194a032 100644 --- a/src/api/api_AuthorizationV1beta1Api.jl +++ b/src/api/api_AuthorizationV1beta1Api.jl @@ -15,7 +15,7 @@ Param: fieldManager::String Param: pretty::String Return: IoK8sApiAuthorizationV1beta1LocalSubjectAccessReview """ -function createAuthorizationV1beta1NamespacedLocalSubjectAccessReview(_api::AuthorizationV1beta1Api, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) +function _swaggerinternal_createAuthorizationV1beta1NamespacedLocalSubjectAccessReview(_api::AuthorizationV1beta1Api, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAuthorizationV1beta1LocalSubjectAccessReview, "/apis/authorization.k8s.io/v1beta1/namespaces/{namespace}/localsubjectaccessreviews", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String @@ -23,9 +23,19 @@ function createAuthorizationV1beta1NamespacedLocalSubjectAccessReview(_api::Auth Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAuthorizationV1beta1NamespacedLocalSubjectAccessReview(_api::AuthorizationV1beta1Api, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAuthorizationV1beta1NamespacedLocalSubjectAccessReview(_api, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAuthorizationV1beta1NamespacedLocalSubjectAccessReview(_api::AuthorizationV1beta1Api, response_stream::Channel, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAuthorizationV1beta1NamespacedLocalSubjectAccessReview(_api, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a SelfSubjectAccessReview @@ -35,16 +45,26 @@ Param: fieldManager::String Param: pretty::String Return: IoK8sApiAuthorizationV1beta1SelfSubjectAccessReview """ -function createAuthorizationV1beta1SelfSubjectAccessReview(_api::AuthorizationV1beta1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) +function _swaggerinternal_createAuthorizationV1beta1SelfSubjectAccessReview(_api::AuthorizationV1beta1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAuthorizationV1beta1SelfSubjectAccessReview, "/apis/authorization.k8s.io/v1beta1/selfsubjectaccessreviews", ["BearerToken"], body) Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAuthorizationV1beta1SelfSubjectAccessReview(_api::AuthorizationV1beta1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAuthorizationV1beta1SelfSubjectAccessReview(_api, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAuthorizationV1beta1SelfSubjectAccessReview(_api::AuthorizationV1beta1Api, response_stream::Channel, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAuthorizationV1beta1SelfSubjectAccessReview(_api, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a SelfSubjectRulesReview @@ -54,16 +74,26 @@ Param: fieldManager::String Param: pretty::String Return: IoK8sApiAuthorizationV1beta1SelfSubjectRulesReview """ -function createAuthorizationV1beta1SelfSubjectRulesReview(_api::AuthorizationV1beta1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) +function _swaggerinternal_createAuthorizationV1beta1SelfSubjectRulesReview(_api::AuthorizationV1beta1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAuthorizationV1beta1SelfSubjectRulesReview, "/apis/authorization.k8s.io/v1beta1/selfsubjectrulesreviews", ["BearerToken"], body) Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAuthorizationV1beta1SelfSubjectRulesReview(_api::AuthorizationV1beta1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAuthorizationV1beta1SelfSubjectRulesReview(_api, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAuthorizationV1beta1SelfSubjectRulesReview(_api::AuthorizationV1beta1Api, response_stream::Channel, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAuthorizationV1beta1SelfSubjectRulesReview(_api, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a SubjectAccessReview @@ -73,26 +103,46 @@ Param: fieldManager::String Param: pretty::String Return: IoK8sApiAuthorizationV1beta1SubjectAccessReview """ -function createAuthorizationV1beta1SubjectAccessReview(_api::AuthorizationV1beta1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) +function _swaggerinternal_createAuthorizationV1beta1SubjectAccessReview(_api::AuthorizationV1beta1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAuthorizationV1beta1SubjectAccessReview, "/apis/authorization.k8s.io/v1beta1/subjectaccessreviews", ["BearerToken"], body) Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAuthorizationV1beta1SubjectAccessReview(_api::AuthorizationV1beta1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAuthorizationV1beta1SubjectAccessReview(_api, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAuthorizationV1beta1SubjectAccessReview(_api::AuthorizationV1beta1Api, response_stream::Channel, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAuthorizationV1beta1SubjectAccessReview(_api, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getAuthorizationV1beta1APIResources(_api::AuthorizationV1beta1Api; _mediaType=nothing) +function _swaggerinternal_getAuthorizationV1beta1APIResources(_api::AuthorizationV1beta1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/authorization.k8s.io/v1beta1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getAuthorizationV1beta1APIResources(_api::AuthorizationV1beta1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getAuthorizationV1beta1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getAuthorizationV1beta1APIResources(_api::AuthorizationV1beta1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getAuthorizationV1beta1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createAuthorizationV1beta1NamespacedLocalSubjectAccessReview, createAuthorizationV1beta1SelfSubjectAccessReview, createAuthorizationV1beta1SelfSubjectRulesReview, createAuthorizationV1beta1SubjectAccessReview, getAuthorizationV1beta1APIResources diff --git a/src/api/api_AutoscalingApi.jl b/src/api/api_AutoscalingApi.jl index 07b4b29b..ef73f0b5 100644 --- a/src/api/api_AutoscalingApi.jl +++ b/src/api/api_AutoscalingApi.jl @@ -10,11 +10,21 @@ end get information of a group Return: IoK8sApimachineryPkgApisMetaV1APIGroup """ -function getAutoscalingAPIGroup(_api::AutoscalingApi; _mediaType=nothing) +function _swaggerinternal_getAutoscalingAPIGroup(_api::AutoscalingApi; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIGroup, "/apis/autoscaling/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getAutoscalingAPIGroup(_api::AutoscalingApi; _mediaType=nothing) + _ctx = _swaggerinternal_getAutoscalingAPIGroup(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getAutoscalingAPIGroup(_api::AutoscalingApi, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getAutoscalingAPIGroup(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export getAutoscalingAPIGroup diff --git a/src/api/api_AutoscalingV1Api.jl b/src/api/api_AutoscalingV1Api.jl index d0dcf9a7..2d390966 100644 --- a/src/api/api_AutoscalingV1Api.jl +++ b/src/api/api_AutoscalingV1Api.jl @@ -15,7 +15,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAutoscalingV1HorizontalPodAutoscaler """ -function createAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAutoscalingV1HorizontalPodAutoscaler, "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -23,9 +23,19 @@ function createAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAutoscalingV1NamespacedHorizontalPodAutoscaler(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAutoscalingV1NamespacedHorizontalPodAutoscaler(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of HorizontalPodAutoscaler @@ -46,7 +56,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -64,9 +74,19 @@ function deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler(_api::Au Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a HorizontalPodAutoscaler @@ -80,7 +100,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -91,21 +111,41 @@ function deleteAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAutoscalingV1NamespacedHorizontalPodAutoscaler(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAutoscalingV1NamespacedHorizontalPodAutoscaler(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getAutoscalingV1APIResources(_api::AutoscalingV1Api; _mediaType=nothing) +function _swaggerinternal_getAutoscalingV1APIResources(_api::AutoscalingV1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/autoscaling/v1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getAutoscalingV1APIResources(_api::AutoscalingV1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getAutoscalingV1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getAutoscalingV1APIResources(_api::AutoscalingV1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getAutoscalingV1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind HorizontalPodAutoscaler @@ -120,7 +160,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAutoscalingV1HorizontalPodAutoscalerList """ -function listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces(_api::AutoscalingV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces(_api::AutoscalingV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAutoscalingV1HorizontalPodAutoscalerList, "/apis/autoscaling/v1/horizontalpodautoscalers", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -133,9 +173,19 @@ function listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces(_api::Autoscal Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces(_api::AutoscalingV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces(_api::AutoscalingV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind HorizontalPodAutoscaler @@ -151,7 +201,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAutoscalingV1HorizontalPodAutoscalerList """ -function listAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAutoscalingV1HorizontalPodAutoscalerList, "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -165,9 +215,19 @@ function listAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1A Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAutoscalingV1NamespacedHorizontalPodAutoscaler(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAutoscalingV1NamespacedHorizontalPodAutoscaler(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified HorizontalPodAutoscaler @@ -180,7 +240,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAutoscalingV1HorizontalPodAutoscaler """ -function patchAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAutoscalingV1HorizontalPodAutoscaler, "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -190,9 +250,19 @@ function patchAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1 Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAutoscalingV1NamespacedHorizontalPodAutoscaler(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAutoscalingV1NamespacedHorizontalPodAutoscaler(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified HorizontalPodAutoscaler @@ -205,7 +275,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAutoscalingV1HorizontalPodAutoscaler """ -function patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAutoscalingV1HorizontalPodAutoscaler, "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -215,9 +285,19 @@ function patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(_api::Autosca Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified HorizontalPodAutoscaler @@ -228,7 +308,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiAutoscalingV1HorizontalPodAutoscaler """ -function readAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAutoscalingV1HorizontalPodAutoscaler, "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -237,9 +317,19 @@ function readAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1A Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAutoscalingV1NamespacedHorizontalPodAutoscaler(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAutoscalingV1NamespacedHorizontalPodAutoscaler(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified HorizontalPodAutoscaler @@ -248,16 +338,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiAutoscalingV1HorizontalPodAutoscaler """ -function readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAutoscalingV1HorizontalPodAutoscaler, "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified HorizontalPodAutoscaler @@ -269,7 +369,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAutoscalingV1HorizontalPodAutoscaler """ -function replaceAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAutoscalingV1HorizontalPodAutoscaler, "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -278,9 +378,19 @@ function replaceAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::Autoscaling Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAutoscalingV1NamespacedHorizontalPodAutoscaler(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAutoscalingV1NamespacedHorizontalPodAutoscaler(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified HorizontalPodAutoscaler @@ -292,7 +402,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAutoscalingV1HorizontalPodAutoscaler """ -function replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAutoscalingV1HorizontalPodAutoscaler, "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -301,9 +411,19 @@ function replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(_api::Autos Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead. @@ -318,7 +438,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces(_api::AutoscalingV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces(_api::AutoscalingV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/autoscaling/v1/watch/horizontalpodautoscalers", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -331,9 +451,19 @@ function watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces(_api::Aut Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces(_api::AutoscalingV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces(_api::AutoscalingV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -350,7 +480,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/autoscaling/v1/watch/namespaces/{namespace}/horizontalpodautoscalers/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -365,9 +495,19 @@ function watchAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1 Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAutoscalingV1NamespacedHorizontalPodAutoscaler(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAutoscalingV1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAutoscalingV1NamespacedHorizontalPodAutoscaler(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead. @@ -383,7 +523,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAutoscalingV1NamespacedHorizontalPodAutoscalerList(_api::AutoscalingV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAutoscalingV1NamespacedHorizontalPodAutoscalerList(_api::AutoscalingV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/autoscaling/v1/watch/namespaces/{namespace}/horizontalpodautoscalers", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -397,7 +537,17 @@ function watchAutoscalingV1NamespacedHorizontalPodAutoscalerList(_api::Autoscali Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAutoscalingV1NamespacedHorizontalPodAutoscalerList(_api::AutoscalingV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAutoscalingV1NamespacedHorizontalPodAutoscalerList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAutoscalingV1NamespacedHorizontalPodAutoscalerList(_api::AutoscalingV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAutoscalingV1NamespacedHorizontalPodAutoscalerList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createAutoscalingV1NamespacedHorizontalPodAutoscaler, deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler, deleteAutoscalingV1NamespacedHorizontalPodAutoscaler, getAutoscalingV1APIResources, listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces, listAutoscalingV1NamespacedHorizontalPodAutoscaler, patchAutoscalingV1NamespacedHorizontalPodAutoscaler, patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus, readAutoscalingV1NamespacedHorizontalPodAutoscaler, readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus, replaceAutoscalingV1NamespacedHorizontalPodAutoscaler, replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus, watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces, watchAutoscalingV1NamespacedHorizontalPodAutoscaler, watchAutoscalingV1NamespacedHorizontalPodAutoscalerList diff --git a/src/api/api_AutoscalingV2beta1Api.jl b/src/api/api_AutoscalingV2beta1Api.jl index a6c7a0d8..78d37553 100644 --- a/src/api/api_AutoscalingV2beta1Api.jl +++ b/src/api/api_AutoscalingV2beta1Api.jl @@ -15,7 +15,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAutoscalingV2beta1HorizontalPodAutoscaler """ -function createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAutoscalingV2beta1HorizontalPodAutoscaler, "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -23,9 +23,19 @@ function createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::Autosca Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of HorizontalPodAutoscaler @@ -46,7 +56,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAutoscalingV2beta1CollectionNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAutoscalingV2beta1CollectionNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -64,9 +74,19 @@ function deleteAutoscalingV2beta1CollectionNamespacedHorizontalPodAutoscaler(_ap Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAutoscalingV2beta1CollectionNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAutoscalingV2beta1CollectionNamespacedHorizontalPodAutoscaler(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAutoscalingV2beta1CollectionNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAutoscalingV2beta1CollectionNamespacedHorizontalPodAutoscaler(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a HorizontalPodAutoscaler @@ -80,7 +100,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -91,21 +111,41 @@ function deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::Autosca Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getAutoscalingV2beta1APIResources(_api::AutoscalingV2beta1Api; _mediaType=nothing) +function _swaggerinternal_getAutoscalingV2beta1APIResources(_api::AutoscalingV2beta1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/autoscaling/v2beta1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getAutoscalingV2beta1APIResources(_api::AutoscalingV2beta1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getAutoscalingV2beta1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getAutoscalingV2beta1APIResources(_api::AutoscalingV2beta1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getAutoscalingV2beta1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind HorizontalPodAutoscaler @@ -120,7 +160,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAutoscalingV2beta1HorizontalPodAutoscalerList """ -function listAutoscalingV2beta1HorizontalPodAutoscalerForAllNamespaces(_api::AutoscalingV2beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAutoscalingV2beta1HorizontalPodAutoscalerForAllNamespaces(_api::AutoscalingV2beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAutoscalingV2beta1HorizontalPodAutoscalerList, "/apis/autoscaling/v2beta1/horizontalpodautoscalers", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -133,9 +173,19 @@ function listAutoscalingV2beta1HorizontalPodAutoscalerForAllNamespaces(_api::Aut Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAutoscalingV2beta1HorizontalPodAutoscalerForAllNamespaces(_api::AutoscalingV2beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAutoscalingV2beta1HorizontalPodAutoscalerForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAutoscalingV2beta1HorizontalPodAutoscalerForAllNamespaces(_api::AutoscalingV2beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAutoscalingV2beta1HorizontalPodAutoscalerForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind HorizontalPodAutoscaler @@ -151,7 +201,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAutoscalingV2beta1HorizontalPodAutoscalerList """ -function listAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAutoscalingV2beta1HorizontalPodAutoscalerList, "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -165,9 +215,19 @@ function listAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::Autoscali Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified HorizontalPodAutoscaler @@ -180,7 +240,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAutoscalingV2beta1HorizontalPodAutoscaler """ -function patchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAutoscalingV2beta1HorizontalPodAutoscaler, "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -190,9 +250,19 @@ function patchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::Autoscal Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified HorizontalPodAutoscaler @@ -205,7 +275,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAutoscalingV2beta1HorizontalPodAutoscaler """ -function patchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAutoscalingV2beta1HorizontalPodAutoscaler, "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -215,9 +285,19 @@ function patchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus(_api::Au Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified HorizontalPodAutoscaler @@ -228,7 +308,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiAutoscalingV2beta1HorizontalPodAutoscaler """ -function readAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAutoscalingV2beta1HorizontalPodAutoscaler, "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -237,9 +317,19 @@ function readAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::Autoscali Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified HorizontalPodAutoscaler @@ -248,16 +338,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiAutoscalingV2beta1HorizontalPodAutoscaler """ -function readAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAutoscalingV2beta1HorizontalPodAutoscaler, "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified HorizontalPodAutoscaler @@ -269,7 +369,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAutoscalingV2beta1HorizontalPodAutoscaler """ -function replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAutoscalingV2beta1HorizontalPodAutoscaler, "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -278,9 +378,19 @@ function replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::Autosc Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified HorizontalPodAutoscaler @@ -292,7 +402,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAutoscalingV2beta1HorizontalPodAutoscaler """ -function replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAutoscalingV2beta1HorizontalPodAutoscaler, "/apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -301,9 +411,19 @@ function replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus(_api:: Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead. @@ -318,7 +438,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAutoscalingV2beta1HorizontalPodAutoscalerListForAllNamespaces(_api::AutoscalingV2beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAutoscalingV2beta1HorizontalPodAutoscalerListForAllNamespaces(_api::AutoscalingV2beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/autoscaling/v2beta1/watch/horizontalpodautoscalers", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -331,9 +451,19 @@ function watchAutoscalingV2beta1HorizontalPodAutoscalerListForAllNamespaces(_api Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAutoscalingV2beta1HorizontalPodAutoscalerListForAllNamespaces(_api::AutoscalingV2beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAutoscalingV2beta1HorizontalPodAutoscalerListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAutoscalingV2beta1HorizontalPodAutoscalerListForAllNamespaces(_api::AutoscalingV2beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAutoscalingV2beta1HorizontalPodAutoscalerListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -350,7 +480,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/autoscaling/v2beta1/watch/namespaces/{namespace}/horizontalpodautoscalers/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -365,9 +495,19 @@ function watchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::Autoscal Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead. @@ -383,7 +523,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerList(_api::AutoscalingV2beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerList(_api::AutoscalingV2beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/autoscaling/v2beta1/watch/namespaces/{namespace}/horizontalpodautoscalers", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -397,7 +537,17 @@ function watchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerList(_api::Auto Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerList(_api::AutoscalingV2beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerList(_api::AutoscalingV2beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler, deleteAutoscalingV2beta1CollectionNamespacedHorizontalPodAutoscaler, deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler, getAutoscalingV2beta1APIResources, listAutoscalingV2beta1HorizontalPodAutoscalerForAllNamespaces, listAutoscalingV2beta1NamespacedHorizontalPodAutoscaler, patchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler, patchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus, readAutoscalingV2beta1NamespacedHorizontalPodAutoscaler, readAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus, replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler, replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus, watchAutoscalingV2beta1HorizontalPodAutoscalerListForAllNamespaces, watchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler, watchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerList diff --git a/src/api/api_AutoscalingV2beta2Api.jl b/src/api/api_AutoscalingV2beta2Api.jl index 55015338..a57bd175 100644 --- a/src/api/api_AutoscalingV2beta2Api.jl +++ b/src/api/api_AutoscalingV2beta2Api.jl @@ -15,7 +15,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAutoscalingV2beta2HorizontalPodAutoscaler """ -function createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAutoscalingV2beta2HorizontalPodAutoscaler, "/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -23,9 +23,19 @@ function createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::Autosca Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of HorizontalPodAutoscaler @@ -46,7 +56,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAutoscalingV2beta2CollectionNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAutoscalingV2beta2CollectionNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -64,9 +74,19 @@ function deleteAutoscalingV2beta2CollectionNamespacedHorizontalPodAutoscaler(_ap Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAutoscalingV2beta2CollectionNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAutoscalingV2beta2CollectionNamespacedHorizontalPodAutoscaler(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAutoscalingV2beta2CollectionNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAutoscalingV2beta2CollectionNamespacedHorizontalPodAutoscaler(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a HorizontalPodAutoscaler @@ -80,7 +100,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -91,21 +111,41 @@ function deleteAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::Autosca Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getAutoscalingV2beta2APIResources(_api::AutoscalingV2beta2Api; _mediaType=nothing) +function _swaggerinternal_getAutoscalingV2beta2APIResources(_api::AutoscalingV2beta2Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/autoscaling/v2beta2/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getAutoscalingV2beta2APIResources(_api::AutoscalingV2beta2Api; _mediaType=nothing) + _ctx = _swaggerinternal_getAutoscalingV2beta2APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getAutoscalingV2beta2APIResources(_api::AutoscalingV2beta2Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getAutoscalingV2beta2APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind HorizontalPodAutoscaler @@ -120,7 +160,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAutoscalingV2beta2HorizontalPodAutoscalerList """ -function listAutoscalingV2beta2HorizontalPodAutoscalerForAllNamespaces(_api::AutoscalingV2beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAutoscalingV2beta2HorizontalPodAutoscalerForAllNamespaces(_api::AutoscalingV2beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAutoscalingV2beta2HorizontalPodAutoscalerList, "/apis/autoscaling/v2beta2/horizontalpodautoscalers", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -133,9 +173,19 @@ function listAutoscalingV2beta2HorizontalPodAutoscalerForAllNamespaces(_api::Aut Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAutoscalingV2beta2HorizontalPodAutoscalerForAllNamespaces(_api::AutoscalingV2beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAutoscalingV2beta2HorizontalPodAutoscalerForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAutoscalingV2beta2HorizontalPodAutoscalerForAllNamespaces(_api::AutoscalingV2beta2Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAutoscalingV2beta2HorizontalPodAutoscalerForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind HorizontalPodAutoscaler @@ -151,7 +201,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiAutoscalingV2beta2HorizontalPodAutoscalerList """ -function listAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAutoscalingV2beta2HorizontalPodAutoscalerList, "/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -165,9 +215,19 @@ function listAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::Autoscali Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified HorizontalPodAutoscaler @@ -180,7 +240,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAutoscalingV2beta2HorizontalPodAutoscaler """ -function patchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAutoscalingV2beta2HorizontalPodAutoscaler, "/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -190,9 +250,19 @@ function patchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::Autoscal Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified HorizontalPodAutoscaler @@ -205,7 +275,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAutoscalingV2beta2HorizontalPodAutoscaler """ -function patchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAutoscalingV2beta2HorizontalPodAutoscaler, "/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -215,9 +285,19 @@ function patchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus(_api::Au Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified HorizontalPodAutoscaler @@ -228,7 +308,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiAutoscalingV2beta2HorizontalPodAutoscaler """ -function readAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAutoscalingV2beta2HorizontalPodAutoscaler, "/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -237,9 +317,19 @@ function readAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::Autoscali Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified HorizontalPodAutoscaler @@ -248,16 +338,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiAutoscalingV2beta2HorizontalPodAutoscaler """ -function readAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAutoscalingV2beta2HorizontalPodAutoscaler, "/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified HorizontalPodAutoscaler @@ -269,7 +369,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAutoscalingV2beta2HorizontalPodAutoscaler """ -function replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAutoscalingV2beta2HorizontalPodAutoscaler, "/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -278,9 +378,19 @@ function replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::Autosc Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified HorizontalPodAutoscaler @@ -292,7 +402,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAutoscalingV2beta2HorizontalPodAutoscaler """ -function replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAutoscalingV2beta2HorizontalPodAutoscaler, "/apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -301,9 +411,19 @@ function replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus(_api:: Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead. @@ -318,7 +438,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAutoscalingV2beta2HorizontalPodAutoscalerListForAllNamespaces(_api::AutoscalingV2beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAutoscalingV2beta2HorizontalPodAutoscalerListForAllNamespaces(_api::AutoscalingV2beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/autoscaling/v2beta2/watch/horizontalpodautoscalers", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -331,9 +451,19 @@ function watchAutoscalingV2beta2HorizontalPodAutoscalerListForAllNamespaces(_api Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAutoscalingV2beta2HorizontalPodAutoscalerListForAllNamespaces(_api::AutoscalingV2beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAutoscalingV2beta2HorizontalPodAutoscalerListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAutoscalingV2beta2HorizontalPodAutoscalerListForAllNamespaces(_api::AutoscalingV2beta2Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAutoscalingV2beta2HorizontalPodAutoscalerListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -350,7 +480,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/autoscaling/v2beta2/watch/namespaces/{namespace}/horizontalpodautoscalers/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -365,9 +495,19 @@ function watchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::Autoscal Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of HorizontalPodAutoscaler. deprecated: use the 'watch' parameter with a list operation instead. @@ -383,7 +523,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerList(_api::AutoscalingV2beta2Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerList(_api::AutoscalingV2beta2Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/autoscaling/v2beta2/watch/namespaces/{namespace}/horizontalpodautoscalers", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -397,7 +537,17 @@ function watchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerList(_api::Auto Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerList(_api::AutoscalingV2beta2Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerList(_api::AutoscalingV2beta2Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler, deleteAutoscalingV2beta2CollectionNamespacedHorizontalPodAutoscaler, deleteAutoscalingV2beta2NamespacedHorizontalPodAutoscaler, getAutoscalingV2beta2APIResources, listAutoscalingV2beta2HorizontalPodAutoscalerForAllNamespaces, listAutoscalingV2beta2NamespacedHorizontalPodAutoscaler, patchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler, patchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus, readAutoscalingV2beta2NamespacedHorizontalPodAutoscaler, readAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus, replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscaler, replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus, watchAutoscalingV2beta2HorizontalPodAutoscalerListForAllNamespaces, watchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler, watchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerList diff --git a/src/api/api_BatchApi.jl b/src/api/api_BatchApi.jl index 20145200..d2b6cbfb 100644 --- a/src/api/api_BatchApi.jl +++ b/src/api/api_BatchApi.jl @@ -10,11 +10,21 @@ end get information of a group Return: IoK8sApimachineryPkgApisMetaV1APIGroup """ -function getBatchAPIGroup(_api::BatchApi; _mediaType=nothing) +function _swaggerinternal_getBatchAPIGroup(_api::BatchApi; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIGroup, "/apis/batch/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getBatchAPIGroup(_api::BatchApi; _mediaType=nothing) + _ctx = _swaggerinternal_getBatchAPIGroup(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getBatchAPIGroup(_api::BatchApi, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getBatchAPIGroup(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export getBatchAPIGroup diff --git a/src/api/api_BatchV1Api.jl b/src/api/api_BatchV1Api.jl index ec6a30b8..28f76f22 100644 --- a/src/api/api_BatchV1Api.jl +++ b/src/api/api_BatchV1Api.jl @@ -15,7 +15,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiBatchV1Job """ -function createBatchV1NamespacedJob(_api::BatchV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createBatchV1NamespacedJob(_api::BatchV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiBatchV1Job, "/apis/batch/v1/namespaces/{namespace}/jobs", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -23,9 +23,19 @@ function createBatchV1NamespacedJob(_api::BatchV1Api, namespace::String, body; p Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createBatchV1NamespacedJob(_api::BatchV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createBatchV1NamespacedJob(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createBatchV1NamespacedJob(_api::BatchV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createBatchV1NamespacedJob(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of Job @@ -46,7 +56,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteBatchV1CollectionNamespacedJob(_api::BatchV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteBatchV1CollectionNamespacedJob(_api::BatchV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/batch/v1/namespaces/{namespace}/jobs", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -64,9 +74,19 @@ function deleteBatchV1CollectionNamespacedJob(_api::BatchV1Api, namespace::Strin Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteBatchV1CollectionNamespacedJob(_api::BatchV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteBatchV1CollectionNamespacedJob(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteBatchV1CollectionNamespacedJob(_api::BatchV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteBatchV1CollectionNamespacedJob(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a Job @@ -80,7 +100,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteBatchV1NamespacedJob(_api::BatchV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteBatchV1NamespacedJob(_api::BatchV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/batch/v1/namespaces/{namespace}/jobs/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -91,21 +111,41 @@ function deleteBatchV1NamespacedJob(_api::BatchV1Api, name::String, namespace::S Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteBatchV1NamespacedJob(_api::BatchV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteBatchV1NamespacedJob(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteBatchV1NamespacedJob(_api::BatchV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteBatchV1NamespacedJob(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getBatchV1APIResources(_api::BatchV1Api; _mediaType=nothing) +function _swaggerinternal_getBatchV1APIResources(_api::BatchV1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/batch/v1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getBatchV1APIResources(_api::BatchV1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getBatchV1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getBatchV1APIResources(_api::BatchV1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getBatchV1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Job @@ -120,7 +160,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiBatchV1JobList """ -function listBatchV1JobForAllNamespaces(_api::BatchV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listBatchV1JobForAllNamespaces(_api::BatchV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiBatchV1JobList, "/apis/batch/v1/jobs", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -133,9 +173,19 @@ function listBatchV1JobForAllNamespaces(_api::BatchV1Api; allowWatchBookmarks=no Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listBatchV1JobForAllNamespaces(_api::BatchV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listBatchV1JobForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listBatchV1JobForAllNamespaces(_api::BatchV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listBatchV1JobForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Job @@ -151,7 +201,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiBatchV1JobList """ -function listBatchV1NamespacedJob(_api::BatchV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listBatchV1NamespacedJob(_api::BatchV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiBatchV1JobList, "/apis/batch/v1/namespaces/{namespace}/jobs", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -165,9 +215,19 @@ function listBatchV1NamespacedJob(_api::BatchV1Api, namespace::String; pretty=no Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listBatchV1NamespacedJob(_api::BatchV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listBatchV1NamespacedJob(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listBatchV1NamespacedJob(_api::BatchV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listBatchV1NamespacedJob(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified Job @@ -180,7 +240,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiBatchV1Job """ -function patchBatchV1NamespacedJob(_api::BatchV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchBatchV1NamespacedJob(_api::BatchV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiBatchV1Job, "/apis/batch/v1/namespaces/{namespace}/jobs/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -190,9 +250,19 @@ function patchBatchV1NamespacedJob(_api::BatchV1Api, name::String, namespace::St Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchBatchV1NamespacedJob(_api::BatchV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchBatchV1NamespacedJob(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchBatchV1NamespacedJob(_api::BatchV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchBatchV1NamespacedJob(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified Job @@ -205,7 +275,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiBatchV1Job """ -function patchBatchV1NamespacedJobStatus(_api::BatchV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchBatchV1NamespacedJobStatus(_api::BatchV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiBatchV1Job, "/apis/batch/v1/namespaces/{namespace}/jobs/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -215,9 +285,19 @@ function patchBatchV1NamespacedJobStatus(_api::BatchV1Api, name::String, namespa Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchBatchV1NamespacedJobStatus(_api::BatchV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchBatchV1NamespacedJobStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchBatchV1NamespacedJobStatus(_api::BatchV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchBatchV1NamespacedJobStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified Job @@ -228,7 +308,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiBatchV1Job """ -function readBatchV1NamespacedJob(_api::BatchV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readBatchV1NamespacedJob(_api::BatchV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiBatchV1Job, "/apis/batch/v1/namespaces/{namespace}/jobs/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -237,9 +317,19 @@ function readBatchV1NamespacedJob(_api::BatchV1Api, name::String, namespace::Str Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readBatchV1NamespacedJob(_api::BatchV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readBatchV1NamespacedJob(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readBatchV1NamespacedJob(_api::BatchV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readBatchV1NamespacedJob(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified Job @@ -248,16 +338,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiBatchV1Job """ -function readBatchV1NamespacedJobStatus(_api::BatchV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readBatchV1NamespacedJobStatus(_api::BatchV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiBatchV1Job, "/apis/batch/v1/namespaces/{namespace}/jobs/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readBatchV1NamespacedJobStatus(_api::BatchV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readBatchV1NamespacedJobStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readBatchV1NamespacedJobStatus(_api::BatchV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readBatchV1NamespacedJobStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified Job @@ -269,7 +369,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiBatchV1Job """ -function replaceBatchV1NamespacedJob(_api::BatchV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceBatchV1NamespacedJob(_api::BatchV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiBatchV1Job, "/apis/batch/v1/namespaces/{namespace}/jobs/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -278,9 +378,19 @@ function replaceBatchV1NamespacedJob(_api::BatchV1Api, name::String, namespace:: Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceBatchV1NamespacedJob(_api::BatchV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceBatchV1NamespacedJob(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceBatchV1NamespacedJob(_api::BatchV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceBatchV1NamespacedJob(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified Job @@ -292,7 +402,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiBatchV1Job """ -function replaceBatchV1NamespacedJobStatus(_api::BatchV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceBatchV1NamespacedJobStatus(_api::BatchV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiBatchV1Job, "/apis/batch/v1/namespaces/{namespace}/jobs/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -301,9 +411,19 @@ function replaceBatchV1NamespacedJobStatus(_api::BatchV1Api, name::String, names Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceBatchV1NamespacedJobStatus(_api::BatchV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceBatchV1NamespacedJobStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceBatchV1NamespacedJobStatus(_api::BatchV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceBatchV1NamespacedJobStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Job. deprecated: use the 'watch' parameter with a list operation instead. @@ -318,7 +438,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchBatchV1JobListForAllNamespaces(_api::BatchV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchBatchV1JobListForAllNamespaces(_api::BatchV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/batch/v1/watch/jobs", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -331,9 +451,19 @@ function watchBatchV1JobListForAllNamespaces(_api::BatchV1Api; allowWatchBookmar Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchBatchV1JobListForAllNamespaces(_api::BatchV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchBatchV1JobListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchBatchV1JobListForAllNamespaces(_api::BatchV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchBatchV1JobListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -350,7 +480,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchBatchV1NamespacedJob(_api::BatchV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchBatchV1NamespacedJob(_api::BatchV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/batch/v1/watch/namespaces/{namespace}/jobs/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -365,9 +495,19 @@ function watchBatchV1NamespacedJob(_api::BatchV1Api, name::String, namespace::St Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchBatchV1NamespacedJob(_api::BatchV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchBatchV1NamespacedJob(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchBatchV1NamespacedJob(_api::BatchV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchBatchV1NamespacedJob(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Job. deprecated: use the 'watch' parameter with a list operation instead. @@ -383,7 +523,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchBatchV1NamespacedJobList(_api::BatchV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchBatchV1NamespacedJobList(_api::BatchV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/batch/v1/watch/namespaces/{namespace}/jobs", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -397,7 +537,17 @@ function watchBatchV1NamespacedJobList(_api::BatchV1Api, namespace::String; allo Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchBatchV1NamespacedJobList(_api::BatchV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchBatchV1NamespacedJobList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchBatchV1NamespacedJobList(_api::BatchV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchBatchV1NamespacedJobList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createBatchV1NamespacedJob, deleteBatchV1CollectionNamespacedJob, deleteBatchV1NamespacedJob, getBatchV1APIResources, listBatchV1JobForAllNamespaces, listBatchV1NamespacedJob, patchBatchV1NamespacedJob, patchBatchV1NamespacedJobStatus, readBatchV1NamespacedJob, readBatchV1NamespacedJobStatus, replaceBatchV1NamespacedJob, replaceBatchV1NamespacedJobStatus, watchBatchV1JobListForAllNamespaces, watchBatchV1NamespacedJob, watchBatchV1NamespacedJobList diff --git a/src/api/api_BatchV1beta1Api.jl b/src/api/api_BatchV1beta1Api.jl index f5108d71..1b194407 100644 --- a/src/api/api_BatchV1beta1Api.jl +++ b/src/api/api_BatchV1beta1Api.jl @@ -15,7 +15,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiBatchV1beta1CronJob """ -function createBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiBatchV1beta1CronJob, "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -23,9 +23,19 @@ function createBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, namespace::S Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createBatchV1beta1NamespacedCronJob(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createBatchV1beta1NamespacedCronJob(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of CronJob @@ -46,7 +56,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteBatchV1beta1CollectionNamespacedCronJob(_api::BatchV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteBatchV1beta1CollectionNamespacedCronJob(_api::BatchV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -64,9 +74,19 @@ function deleteBatchV1beta1CollectionNamespacedCronJob(_api::BatchV1beta1Api, na Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteBatchV1beta1CollectionNamespacedCronJob(_api::BatchV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteBatchV1beta1CollectionNamespacedCronJob(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteBatchV1beta1CollectionNamespacedCronJob(_api::BatchV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteBatchV1beta1CollectionNamespacedCronJob(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a CronJob @@ -80,7 +100,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -91,21 +111,41 @@ function deleteBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, name::String Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteBatchV1beta1NamespacedCronJob(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteBatchV1beta1NamespacedCronJob(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getBatchV1beta1APIResources(_api::BatchV1beta1Api; _mediaType=nothing) +function _swaggerinternal_getBatchV1beta1APIResources(_api::BatchV1beta1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/batch/v1beta1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getBatchV1beta1APIResources(_api::BatchV1beta1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getBatchV1beta1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getBatchV1beta1APIResources(_api::BatchV1beta1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getBatchV1beta1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind CronJob @@ -120,7 +160,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiBatchV1beta1CronJobList """ -function listBatchV1beta1CronJobForAllNamespaces(_api::BatchV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listBatchV1beta1CronJobForAllNamespaces(_api::BatchV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiBatchV1beta1CronJobList, "/apis/batch/v1beta1/cronjobs", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -133,9 +173,19 @@ function listBatchV1beta1CronJobForAllNamespaces(_api::BatchV1beta1Api; allowWat Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listBatchV1beta1CronJobForAllNamespaces(_api::BatchV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listBatchV1beta1CronJobForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listBatchV1beta1CronJobForAllNamespaces(_api::BatchV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listBatchV1beta1CronJobForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind CronJob @@ -151,7 +201,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiBatchV1beta1CronJobList """ -function listBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiBatchV1beta1CronJobList, "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -165,9 +215,19 @@ function listBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, namespace::Str Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listBatchV1beta1NamespacedCronJob(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listBatchV1beta1NamespacedCronJob(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified CronJob @@ -180,7 +240,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiBatchV1beta1CronJob """ -function patchBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiBatchV1beta1CronJob, "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -190,9 +250,19 @@ function patchBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, name::String, Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchBatchV1beta1NamespacedCronJob(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchBatchV1beta1NamespacedCronJob(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified CronJob @@ -205,7 +275,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiBatchV1beta1CronJob """ -function patchBatchV1beta1NamespacedCronJobStatus(_api::BatchV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchBatchV1beta1NamespacedCronJobStatus(_api::BatchV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiBatchV1beta1CronJob, "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -215,9 +285,19 @@ function patchBatchV1beta1NamespacedCronJobStatus(_api::BatchV1beta1Api, name::S Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchBatchV1beta1NamespacedCronJobStatus(_api::BatchV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchBatchV1beta1NamespacedCronJobStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchBatchV1beta1NamespacedCronJobStatus(_api::BatchV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchBatchV1beta1NamespacedCronJobStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified CronJob @@ -228,7 +308,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiBatchV1beta1CronJob """ -function readBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiBatchV1beta1CronJob, "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -237,9 +317,19 @@ function readBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, name::String, Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readBatchV1beta1NamespacedCronJob(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readBatchV1beta1NamespacedCronJob(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified CronJob @@ -248,16 +338,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiBatchV1beta1CronJob """ -function readBatchV1beta1NamespacedCronJobStatus(_api::BatchV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readBatchV1beta1NamespacedCronJobStatus(_api::BatchV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiBatchV1beta1CronJob, "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readBatchV1beta1NamespacedCronJobStatus(_api::BatchV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readBatchV1beta1NamespacedCronJobStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readBatchV1beta1NamespacedCronJobStatus(_api::BatchV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readBatchV1beta1NamespacedCronJobStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified CronJob @@ -269,7 +369,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiBatchV1beta1CronJob """ -function replaceBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiBatchV1beta1CronJob, "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -278,9 +378,19 @@ function replaceBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, name::Strin Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceBatchV1beta1NamespacedCronJob(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceBatchV1beta1NamespacedCronJob(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified CronJob @@ -292,7 +402,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiBatchV1beta1CronJob """ -function replaceBatchV1beta1NamespacedCronJobStatus(_api::BatchV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceBatchV1beta1NamespacedCronJobStatus(_api::BatchV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiBatchV1beta1CronJob, "/apis/batch/v1beta1/namespaces/{namespace}/cronjobs/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -301,9 +411,19 @@ function replaceBatchV1beta1NamespacedCronJobStatus(_api::BatchV1beta1Api, name: Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceBatchV1beta1NamespacedCronJobStatus(_api::BatchV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceBatchV1beta1NamespacedCronJobStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceBatchV1beta1NamespacedCronJobStatus(_api::BatchV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceBatchV1beta1NamespacedCronJobStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead. @@ -318,7 +438,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchBatchV1beta1CronJobListForAllNamespaces(_api::BatchV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchBatchV1beta1CronJobListForAllNamespaces(_api::BatchV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/batch/v1beta1/watch/cronjobs", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -331,9 +451,19 @@ function watchBatchV1beta1CronJobListForAllNamespaces(_api::BatchV1beta1Api; all Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchBatchV1beta1CronJobListForAllNamespaces(_api::BatchV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchBatchV1beta1CronJobListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchBatchV1beta1CronJobListForAllNamespaces(_api::BatchV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchBatchV1beta1CronJobListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -350,7 +480,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/batch/v1beta1/watch/namespaces/{namespace}/cronjobs/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -365,9 +495,19 @@ function watchBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, name::String, Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchBatchV1beta1NamespacedCronJob(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchBatchV1beta1NamespacedCronJob(_api::BatchV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchBatchV1beta1NamespacedCronJob(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead. @@ -383,7 +523,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchBatchV1beta1NamespacedCronJobList(_api::BatchV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchBatchV1beta1NamespacedCronJobList(_api::BatchV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/batch/v1beta1/watch/namespaces/{namespace}/cronjobs", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -397,7 +537,17 @@ function watchBatchV1beta1NamespacedCronJobList(_api::BatchV1beta1Api, namespace Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchBatchV1beta1NamespacedCronJobList(_api::BatchV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchBatchV1beta1NamespacedCronJobList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchBatchV1beta1NamespacedCronJobList(_api::BatchV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchBatchV1beta1NamespacedCronJobList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createBatchV1beta1NamespacedCronJob, deleteBatchV1beta1CollectionNamespacedCronJob, deleteBatchV1beta1NamespacedCronJob, getBatchV1beta1APIResources, listBatchV1beta1CronJobForAllNamespaces, listBatchV1beta1NamespacedCronJob, patchBatchV1beta1NamespacedCronJob, patchBatchV1beta1NamespacedCronJobStatus, readBatchV1beta1NamespacedCronJob, readBatchV1beta1NamespacedCronJobStatus, replaceBatchV1beta1NamespacedCronJob, replaceBatchV1beta1NamespacedCronJobStatus, watchBatchV1beta1CronJobListForAllNamespaces, watchBatchV1beta1NamespacedCronJob, watchBatchV1beta1NamespacedCronJobList diff --git a/src/api/api_BatchV2alpha1Api.jl b/src/api/api_BatchV2alpha1Api.jl index d001c228..027cc0e3 100644 --- a/src/api/api_BatchV2alpha1Api.jl +++ b/src/api/api_BatchV2alpha1Api.jl @@ -15,7 +15,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiBatchV2alpha1CronJob """ -function createBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiBatchV2alpha1CronJob, "/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -23,9 +23,19 @@ function createBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, namespace: Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createBatchV2alpha1NamespacedCronJob(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createBatchV2alpha1NamespacedCronJob(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of CronJob @@ -46,7 +56,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteBatchV2alpha1CollectionNamespacedCronJob(_api::BatchV2alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteBatchV2alpha1CollectionNamespacedCronJob(_api::BatchV2alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -64,9 +74,19 @@ function deleteBatchV2alpha1CollectionNamespacedCronJob(_api::BatchV2alpha1Api, Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteBatchV2alpha1CollectionNamespacedCronJob(_api::BatchV2alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteBatchV2alpha1CollectionNamespacedCronJob(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteBatchV2alpha1CollectionNamespacedCronJob(_api::BatchV2alpha1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteBatchV2alpha1CollectionNamespacedCronJob(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a CronJob @@ -80,7 +100,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -91,21 +111,41 @@ function deleteBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, name::Stri Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteBatchV2alpha1NamespacedCronJob(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteBatchV2alpha1NamespacedCronJob(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getBatchV2alpha1APIResources(_api::BatchV2alpha1Api; _mediaType=nothing) +function _swaggerinternal_getBatchV2alpha1APIResources(_api::BatchV2alpha1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/batch/v2alpha1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getBatchV2alpha1APIResources(_api::BatchV2alpha1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getBatchV2alpha1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getBatchV2alpha1APIResources(_api::BatchV2alpha1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getBatchV2alpha1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind CronJob @@ -120,7 +160,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiBatchV2alpha1CronJobList """ -function listBatchV2alpha1CronJobForAllNamespaces(_api::BatchV2alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listBatchV2alpha1CronJobForAllNamespaces(_api::BatchV2alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiBatchV2alpha1CronJobList, "/apis/batch/v2alpha1/cronjobs", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -133,9 +173,19 @@ function listBatchV2alpha1CronJobForAllNamespaces(_api::BatchV2alpha1Api; allowW Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listBatchV2alpha1CronJobForAllNamespaces(_api::BatchV2alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listBatchV2alpha1CronJobForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listBatchV2alpha1CronJobForAllNamespaces(_api::BatchV2alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listBatchV2alpha1CronJobForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind CronJob @@ -151,7 +201,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiBatchV2alpha1CronJobList """ -function listBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiBatchV2alpha1CronJobList, "/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -165,9 +215,19 @@ function listBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, namespace::S Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listBatchV2alpha1NamespacedCronJob(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listBatchV2alpha1NamespacedCronJob(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified CronJob @@ -180,7 +240,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiBatchV2alpha1CronJob """ -function patchBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiBatchV2alpha1CronJob, "/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -190,9 +250,19 @@ function patchBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, name::Strin Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchBatchV2alpha1NamespacedCronJob(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchBatchV2alpha1NamespacedCronJob(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified CronJob @@ -205,7 +275,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiBatchV2alpha1CronJob """ -function patchBatchV2alpha1NamespacedCronJobStatus(_api::BatchV2alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchBatchV2alpha1NamespacedCronJobStatus(_api::BatchV2alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiBatchV2alpha1CronJob, "/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -215,9 +285,19 @@ function patchBatchV2alpha1NamespacedCronJobStatus(_api::BatchV2alpha1Api, name: Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchBatchV2alpha1NamespacedCronJobStatus(_api::BatchV2alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchBatchV2alpha1NamespacedCronJobStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchBatchV2alpha1NamespacedCronJobStatus(_api::BatchV2alpha1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchBatchV2alpha1NamespacedCronJobStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified CronJob @@ -228,7 +308,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiBatchV2alpha1CronJob """ -function readBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiBatchV2alpha1CronJob, "/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -237,9 +317,19 @@ function readBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, name::String Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readBatchV2alpha1NamespacedCronJob(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readBatchV2alpha1NamespacedCronJob(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified CronJob @@ -248,16 +338,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiBatchV2alpha1CronJob """ -function readBatchV2alpha1NamespacedCronJobStatus(_api::BatchV2alpha1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readBatchV2alpha1NamespacedCronJobStatus(_api::BatchV2alpha1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiBatchV2alpha1CronJob, "/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readBatchV2alpha1NamespacedCronJobStatus(_api::BatchV2alpha1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readBatchV2alpha1NamespacedCronJobStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readBatchV2alpha1NamespacedCronJobStatus(_api::BatchV2alpha1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readBatchV2alpha1NamespacedCronJobStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified CronJob @@ -269,7 +369,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiBatchV2alpha1CronJob """ -function replaceBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiBatchV2alpha1CronJob, "/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -278,9 +378,19 @@ function replaceBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, name::Str Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceBatchV2alpha1NamespacedCronJob(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceBatchV2alpha1NamespacedCronJob(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified CronJob @@ -292,7 +402,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiBatchV2alpha1CronJob """ -function replaceBatchV2alpha1NamespacedCronJobStatus(_api::BatchV2alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceBatchV2alpha1NamespacedCronJobStatus(_api::BatchV2alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiBatchV2alpha1CronJob, "/apis/batch/v2alpha1/namespaces/{namespace}/cronjobs/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -301,9 +411,19 @@ function replaceBatchV2alpha1NamespacedCronJobStatus(_api::BatchV2alpha1Api, nam Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceBatchV2alpha1NamespacedCronJobStatus(_api::BatchV2alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceBatchV2alpha1NamespacedCronJobStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceBatchV2alpha1NamespacedCronJobStatus(_api::BatchV2alpha1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceBatchV2alpha1NamespacedCronJobStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead. @@ -318,7 +438,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchBatchV2alpha1CronJobListForAllNamespaces(_api::BatchV2alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchBatchV2alpha1CronJobListForAllNamespaces(_api::BatchV2alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/batch/v2alpha1/watch/cronjobs", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -331,9 +451,19 @@ function watchBatchV2alpha1CronJobListForAllNamespaces(_api::BatchV2alpha1Api; a Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchBatchV2alpha1CronJobListForAllNamespaces(_api::BatchV2alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchBatchV2alpha1CronJobListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchBatchV2alpha1CronJobListForAllNamespaces(_api::BatchV2alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchBatchV2alpha1CronJobListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -350,7 +480,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/batch/v2alpha1/watch/namespaces/{namespace}/cronjobs/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -365,9 +495,19 @@ function watchBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, name::Strin Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchBatchV2alpha1NamespacedCronJob(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchBatchV2alpha1NamespacedCronJob(_api::BatchV2alpha1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchBatchV2alpha1NamespacedCronJob(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of CronJob. deprecated: use the 'watch' parameter with a list operation instead. @@ -383,7 +523,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchBatchV2alpha1NamespacedCronJobList(_api::BatchV2alpha1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchBatchV2alpha1NamespacedCronJobList(_api::BatchV2alpha1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/batch/v2alpha1/watch/namespaces/{namespace}/cronjobs", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -397,7 +537,17 @@ function watchBatchV2alpha1NamespacedCronJobList(_api::BatchV2alpha1Api, namespa Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchBatchV2alpha1NamespacedCronJobList(_api::BatchV2alpha1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchBatchV2alpha1NamespacedCronJobList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchBatchV2alpha1NamespacedCronJobList(_api::BatchV2alpha1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchBatchV2alpha1NamespacedCronJobList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createBatchV2alpha1NamespacedCronJob, deleteBatchV2alpha1CollectionNamespacedCronJob, deleteBatchV2alpha1NamespacedCronJob, getBatchV2alpha1APIResources, listBatchV2alpha1CronJobForAllNamespaces, listBatchV2alpha1NamespacedCronJob, patchBatchV2alpha1NamespacedCronJob, patchBatchV2alpha1NamespacedCronJobStatus, readBatchV2alpha1NamespacedCronJob, readBatchV2alpha1NamespacedCronJobStatus, replaceBatchV2alpha1NamespacedCronJob, replaceBatchV2alpha1NamespacedCronJobStatus, watchBatchV2alpha1CronJobListForAllNamespaces, watchBatchV2alpha1NamespacedCronJob, watchBatchV2alpha1NamespacedCronJobList diff --git a/src/api/api_CertificatesApi.jl b/src/api/api_CertificatesApi.jl index 01c00b0a..2988295e 100644 --- a/src/api/api_CertificatesApi.jl +++ b/src/api/api_CertificatesApi.jl @@ -10,11 +10,21 @@ end get information of a group Return: IoK8sApimachineryPkgApisMetaV1APIGroup """ -function getCertificatesAPIGroup(_api::CertificatesApi; _mediaType=nothing) +function _swaggerinternal_getCertificatesAPIGroup(_api::CertificatesApi; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIGroup, "/apis/certificates.k8s.io/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getCertificatesAPIGroup(_api::CertificatesApi; _mediaType=nothing) + _ctx = _swaggerinternal_getCertificatesAPIGroup(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getCertificatesAPIGroup(_api::CertificatesApi, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getCertificatesAPIGroup(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export getCertificatesAPIGroup diff --git a/src/api/api_CertificatesV1beta1Api.jl b/src/api/api_CertificatesV1beta1Api.jl index 580fac4f..0a9a3f81 100644 --- a/src/api/api_CertificatesV1beta1Api.jl +++ b/src/api/api_CertificatesV1beta1Api.jl @@ -14,16 +14,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCertificatesV1beta1CertificateSigningRequest """ -function createCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiCertificatesV1beta1CertificateSigningRequest, "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCertificatesV1beta1CertificateSigningRequest(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCertificatesV1beta1CertificateSigningRequest(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a CertificateSigningRequest @@ -36,7 +46,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -46,9 +56,19 @@ function deleteCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1 Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCertificatesV1beta1CertificateSigningRequest(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCertificatesV1beta1CertificateSigningRequest(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of CertificateSigningRequest @@ -68,7 +88,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCertificatesV1beta1CollectionCertificateSigningRequest(_api::CertificatesV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCertificatesV1beta1CollectionCertificateSigningRequest(_api::CertificatesV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -85,21 +105,41 @@ function deleteCertificatesV1beta1CollectionCertificateSigningRequest(_api::Cert Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCertificatesV1beta1CollectionCertificateSigningRequest(_api::CertificatesV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCertificatesV1beta1CollectionCertificateSigningRequest(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCertificatesV1beta1CollectionCertificateSigningRequest(_api::CertificatesV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCertificatesV1beta1CollectionCertificateSigningRequest(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getCertificatesV1beta1APIResources(_api::CertificatesV1beta1Api; _mediaType=nothing) +function _swaggerinternal_getCertificatesV1beta1APIResources(_api::CertificatesV1beta1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/certificates.k8s.io/v1beta1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getCertificatesV1beta1APIResources(_api::CertificatesV1beta1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getCertificatesV1beta1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getCertificatesV1beta1APIResources(_api::CertificatesV1beta1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getCertificatesV1beta1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind CertificateSigningRequest @@ -114,7 +154,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCertificatesV1beta1CertificateSigningRequestList """ -function listCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCertificatesV1beta1CertificateSigningRequestList, "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -127,9 +167,19 @@ function listCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1be Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCertificatesV1beta1CertificateSigningRequest(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCertificatesV1beta1CertificateSigningRequest(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified CertificateSigningRequest @@ -141,7 +191,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiCertificatesV1beta1CertificateSigningRequest """ -function patchCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiCertificatesV1beta1CertificateSigningRequest, "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -150,9 +200,19 @@ function patchCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1b Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCertificatesV1beta1CertificateSigningRequest(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCertificatesV1beta1CertificateSigningRequest(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified CertificateSigningRequest @@ -164,7 +224,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiCertificatesV1beta1CertificateSigningRequest """ -function patchCertificatesV1beta1CertificateSigningRequestStatus(_api::CertificatesV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchCertificatesV1beta1CertificateSigningRequestStatus(_api::CertificatesV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiCertificatesV1beta1CertificateSigningRequest, "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -173,9 +233,19 @@ function patchCertificatesV1beta1CertificateSigningRequestStatus(_api::Certifica Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchCertificatesV1beta1CertificateSigningRequestStatus(_api::CertificatesV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCertificatesV1beta1CertificateSigningRequestStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchCertificatesV1beta1CertificateSigningRequestStatus(_api::CertificatesV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCertificatesV1beta1CertificateSigningRequestStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified CertificateSigningRequest @@ -185,7 +255,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiCertificatesV1beta1CertificateSigningRequest """ -function readCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCertificatesV1beta1CertificateSigningRequest, "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -193,9 +263,19 @@ function readCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1be Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCertificatesV1beta1CertificateSigningRequest(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1beta1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCertificatesV1beta1CertificateSigningRequest(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified CertificateSigningRequest @@ -203,15 +283,25 @@ Param: name::String (required) Param: pretty::String Return: IoK8sApiCertificatesV1beta1CertificateSigningRequest """ -function readCertificatesV1beta1CertificateSigningRequestStatus(_api::CertificatesV1beta1Api, name::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readCertificatesV1beta1CertificateSigningRequestStatus(_api::CertificatesV1beta1Api, name::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCertificatesV1beta1CertificateSigningRequest, "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCertificatesV1beta1CertificateSigningRequestStatus(_api::CertificatesV1beta1Api, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCertificatesV1beta1CertificateSigningRequestStatus(_api, name; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCertificatesV1beta1CertificateSigningRequestStatus(_api::CertificatesV1beta1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCertificatesV1beta1CertificateSigningRequestStatus(_api, name; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified CertificateSigningRequest @@ -222,7 +312,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCertificatesV1beta1CertificateSigningRequest """ -function replaceCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiCertificatesV1beta1CertificateSigningRequest, "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -230,9 +320,19 @@ function replaceCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCertificatesV1beta1CertificateSigningRequest(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCertificatesV1beta1CertificateSigningRequest(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace approval of the specified CertificateSigningRequest @@ -243,7 +343,7 @@ Param: fieldManager::String Param: pretty::String Return: IoK8sApiCertificatesV1beta1CertificateSigningRequest """ -function replaceCertificatesV1beta1CertificateSigningRequestApproval(_api::CertificatesV1beta1Api, name::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCertificatesV1beta1CertificateSigningRequestApproval(_api::CertificatesV1beta1Api, name::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiCertificatesV1beta1CertificateSigningRequest, "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}/approval", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String @@ -251,9 +351,19 @@ function replaceCertificatesV1beta1CertificateSigningRequestApproval(_api::Certi Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCertificatesV1beta1CertificateSigningRequestApproval(_api::CertificatesV1beta1Api, name::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCertificatesV1beta1CertificateSigningRequestApproval(_api, name, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCertificatesV1beta1CertificateSigningRequestApproval(_api::CertificatesV1beta1Api, response_stream::Channel, name::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCertificatesV1beta1CertificateSigningRequestApproval(_api, name, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified CertificateSigningRequest @@ -264,7 +374,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCertificatesV1beta1CertificateSigningRequest """ -function replaceCertificatesV1beta1CertificateSigningRequestStatus(_api::CertificatesV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCertificatesV1beta1CertificateSigningRequestStatus(_api::CertificatesV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiCertificatesV1beta1CertificateSigningRequest, "/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -272,9 +382,19 @@ function replaceCertificatesV1beta1CertificateSigningRequestStatus(_api::Certifi Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCertificatesV1beta1CertificateSigningRequestStatus(_api::CertificatesV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCertificatesV1beta1CertificateSigningRequestStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCertificatesV1beta1CertificateSigningRequestStatus(_api::CertificatesV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCertificatesV1beta1CertificateSigningRequestStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -290,7 +410,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/certificates.k8s.io/v1beta1/watch/certificatesigningrequests/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -304,9 +424,19 @@ function watchCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1b Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCertificatesV1beta1CertificateSigningRequest(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCertificatesV1beta1CertificateSigningRequest(_api::CertificatesV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCertificatesV1beta1CertificateSigningRequest(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of CertificateSigningRequest. deprecated: use the 'watch' parameter with a list operation instead. @@ -321,7 +451,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCertificatesV1beta1CertificateSigningRequestList(_api::CertificatesV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCertificatesV1beta1CertificateSigningRequestList(_api::CertificatesV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/certificates.k8s.io/v1beta1/watch/certificatesigningrequests", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -334,7 +464,17 @@ function watchCertificatesV1beta1CertificateSigningRequestList(_api::Certificate Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCertificatesV1beta1CertificateSigningRequestList(_api::CertificatesV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCertificatesV1beta1CertificateSigningRequestList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCertificatesV1beta1CertificateSigningRequestList(_api::CertificatesV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCertificatesV1beta1CertificateSigningRequestList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createCertificatesV1beta1CertificateSigningRequest, deleteCertificatesV1beta1CertificateSigningRequest, deleteCertificatesV1beta1CollectionCertificateSigningRequest, getCertificatesV1beta1APIResources, listCertificatesV1beta1CertificateSigningRequest, patchCertificatesV1beta1CertificateSigningRequest, patchCertificatesV1beta1CertificateSigningRequestStatus, readCertificatesV1beta1CertificateSigningRequest, readCertificatesV1beta1CertificateSigningRequestStatus, replaceCertificatesV1beta1CertificateSigningRequest, replaceCertificatesV1beta1CertificateSigningRequestApproval, replaceCertificatesV1beta1CertificateSigningRequestStatus, watchCertificatesV1beta1CertificateSigningRequest, watchCertificatesV1beta1CertificateSigningRequestList diff --git a/src/api/api_CoordinationApi.jl b/src/api/api_CoordinationApi.jl index 2cf51b24..46685ebd 100644 --- a/src/api/api_CoordinationApi.jl +++ b/src/api/api_CoordinationApi.jl @@ -10,11 +10,21 @@ end get information of a group Return: IoK8sApimachineryPkgApisMetaV1APIGroup """ -function getCoordinationAPIGroup(_api::CoordinationApi; _mediaType=nothing) +function _swaggerinternal_getCoordinationAPIGroup(_api::CoordinationApi; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIGroup, "/apis/coordination.k8s.io/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getCoordinationAPIGroup(_api::CoordinationApi; _mediaType=nothing) + _ctx = _swaggerinternal_getCoordinationAPIGroup(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getCoordinationAPIGroup(_api::CoordinationApi, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getCoordinationAPIGroup(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export getCoordinationAPIGroup diff --git a/src/api/api_CoordinationV1Api.jl b/src/api/api_CoordinationV1Api.jl index 3044fe54..eb790b10 100644 --- a/src/api/api_CoordinationV1Api.jl +++ b/src/api/api_CoordinationV1Api.jl @@ -15,7 +15,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoordinationV1Lease """ -function createCoordinationV1NamespacedLease(_api::CoordinationV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createCoordinationV1NamespacedLease(_api::CoordinationV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiCoordinationV1Lease, "/apis/coordination.k8s.io/v1/namespaces/{namespace}/leases", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -23,9 +23,19 @@ function createCoordinationV1NamespacedLease(_api::CoordinationV1Api, namespace: Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createCoordinationV1NamespacedLease(_api::CoordinationV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoordinationV1NamespacedLease(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createCoordinationV1NamespacedLease(_api::CoordinationV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoordinationV1NamespacedLease(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of Lease @@ -46,7 +56,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoordinationV1CollectionNamespacedLease(_api::CoordinationV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoordinationV1CollectionNamespacedLease(_api::CoordinationV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/coordination.k8s.io/v1/namespaces/{namespace}/leases", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -64,9 +74,19 @@ function deleteCoordinationV1CollectionNamespacedLease(_api::CoordinationV1Api, Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoordinationV1CollectionNamespacedLease(_api::CoordinationV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoordinationV1CollectionNamespacedLease(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoordinationV1CollectionNamespacedLease(_api::CoordinationV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoordinationV1CollectionNamespacedLease(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a Lease @@ -80,7 +100,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoordinationV1NamespacedLease(_api::CoordinationV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoordinationV1NamespacedLease(_api::CoordinationV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/coordination.k8s.io/v1/namespaces/{namespace}/leases/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -91,21 +111,41 @@ function deleteCoordinationV1NamespacedLease(_api::CoordinationV1Api, name::Stri Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoordinationV1NamespacedLease(_api::CoordinationV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoordinationV1NamespacedLease(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoordinationV1NamespacedLease(_api::CoordinationV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoordinationV1NamespacedLease(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getCoordinationV1APIResources(_api::CoordinationV1Api; _mediaType=nothing) +function _swaggerinternal_getCoordinationV1APIResources(_api::CoordinationV1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/coordination.k8s.io/v1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getCoordinationV1APIResources(_api::CoordinationV1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getCoordinationV1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getCoordinationV1APIResources(_api::CoordinationV1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getCoordinationV1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Lease @@ -120,7 +160,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoordinationV1LeaseList """ -function listCoordinationV1LeaseForAllNamespaces(_api::CoordinationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoordinationV1LeaseForAllNamespaces(_api::CoordinationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoordinationV1LeaseList, "/apis/coordination.k8s.io/v1/leases", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -133,9 +173,19 @@ function listCoordinationV1LeaseForAllNamespaces(_api::CoordinationV1Api; allowW Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoordinationV1LeaseForAllNamespaces(_api::CoordinationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoordinationV1LeaseForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoordinationV1LeaseForAllNamespaces(_api::CoordinationV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoordinationV1LeaseForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Lease @@ -151,7 +201,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoordinationV1LeaseList """ -function listCoordinationV1NamespacedLease(_api::CoordinationV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoordinationV1NamespacedLease(_api::CoordinationV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoordinationV1LeaseList, "/apis/coordination.k8s.io/v1/namespaces/{namespace}/leases", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -165,9 +215,19 @@ function listCoordinationV1NamespacedLease(_api::CoordinationV1Api, namespace::S Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoordinationV1NamespacedLease(_api::CoordinationV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoordinationV1NamespacedLease(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoordinationV1NamespacedLease(_api::CoordinationV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoordinationV1NamespacedLease(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified Lease @@ -180,7 +240,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiCoordinationV1Lease """ -function patchCoordinationV1NamespacedLease(_api::CoordinationV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchCoordinationV1NamespacedLease(_api::CoordinationV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiCoordinationV1Lease, "/apis/coordination.k8s.io/v1/namespaces/{namespace}/leases/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -190,9 +250,19 @@ function patchCoordinationV1NamespacedLease(_api::CoordinationV1Api, name::Strin Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchCoordinationV1NamespacedLease(_api::CoordinationV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoordinationV1NamespacedLease(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchCoordinationV1NamespacedLease(_api::CoordinationV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoordinationV1NamespacedLease(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified Lease @@ -203,7 +273,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiCoordinationV1Lease """ -function readCoordinationV1NamespacedLease(_api::CoordinationV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readCoordinationV1NamespacedLease(_api::CoordinationV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoordinationV1Lease, "/apis/coordination.k8s.io/v1/namespaces/{namespace}/leases/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -212,9 +282,19 @@ function readCoordinationV1NamespacedLease(_api::CoordinationV1Api, name::String Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCoordinationV1NamespacedLease(_api::CoordinationV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoordinationV1NamespacedLease(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCoordinationV1NamespacedLease(_api::CoordinationV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoordinationV1NamespacedLease(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified Lease @@ -226,7 +306,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoordinationV1Lease """ -function replaceCoordinationV1NamespacedLease(_api::CoordinationV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCoordinationV1NamespacedLease(_api::CoordinationV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiCoordinationV1Lease, "/apis/coordination.k8s.io/v1/namespaces/{namespace}/leases/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -235,9 +315,19 @@ function replaceCoordinationV1NamespacedLease(_api::CoordinationV1Api, name::Str Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCoordinationV1NamespacedLease(_api::CoordinationV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoordinationV1NamespacedLease(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCoordinationV1NamespacedLease(_api::CoordinationV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoordinationV1NamespacedLease(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead. @@ -252,7 +342,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoordinationV1LeaseListForAllNamespaces(_api::CoordinationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoordinationV1LeaseListForAllNamespaces(_api::CoordinationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/coordination.k8s.io/v1/watch/leases", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -265,9 +355,19 @@ function watchCoordinationV1LeaseListForAllNamespaces(_api::CoordinationV1Api; a Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoordinationV1LeaseListForAllNamespaces(_api::CoordinationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoordinationV1LeaseListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoordinationV1LeaseListForAllNamespaces(_api::CoordinationV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoordinationV1LeaseListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -284,7 +384,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoordinationV1NamespacedLease(_api::CoordinationV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoordinationV1NamespacedLease(_api::CoordinationV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/coordination.k8s.io/v1/watch/namespaces/{namespace}/leases/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -299,9 +399,19 @@ function watchCoordinationV1NamespacedLease(_api::CoordinationV1Api, name::Strin Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoordinationV1NamespacedLease(_api::CoordinationV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoordinationV1NamespacedLease(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoordinationV1NamespacedLease(_api::CoordinationV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoordinationV1NamespacedLease(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead. @@ -317,7 +427,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoordinationV1NamespacedLeaseList(_api::CoordinationV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoordinationV1NamespacedLeaseList(_api::CoordinationV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/coordination.k8s.io/v1/watch/namespaces/{namespace}/leases", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -331,7 +441,17 @@ function watchCoordinationV1NamespacedLeaseList(_api::CoordinationV1Api, namespa Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoordinationV1NamespacedLeaseList(_api::CoordinationV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoordinationV1NamespacedLeaseList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoordinationV1NamespacedLeaseList(_api::CoordinationV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoordinationV1NamespacedLeaseList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createCoordinationV1NamespacedLease, deleteCoordinationV1CollectionNamespacedLease, deleteCoordinationV1NamespacedLease, getCoordinationV1APIResources, listCoordinationV1LeaseForAllNamespaces, listCoordinationV1NamespacedLease, patchCoordinationV1NamespacedLease, readCoordinationV1NamespacedLease, replaceCoordinationV1NamespacedLease, watchCoordinationV1LeaseListForAllNamespaces, watchCoordinationV1NamespacedLease, watchCoordinationV1NamespacedLeaseList diff --git a/src/api/api_CoordinationV1beta1Api.jl b/src/api/api_CoordinationV1beta1Api.jl index e30a7fde..61848080 100644 --- a/src/api/api_CoordinationV1beta1Api.jl +++ b/src/api/api_CoordinationV1beta1Api.jl @@ -15,7 +15,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoordinationV1beta1Lease """ -function createCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiCoordinationV1beta1Lease, "/apis/coordination.k8s.io/v1beta1/namespaces/{namespace}/leases", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -23,9 +23,19 @@ function createCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoordinationV1beta1NamespacedLease(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoordinationV1beta1NamespacedLease(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of Lease @@ -46,7 +56,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoordinationV1beta1CollectionNamespacedLease(_api::CoordinationV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoordinationV1beta1CollectionNamespacedLease(_api::CoordinationV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/coordination.k8s.io/v1beta1/namespaces/{namespace}/leases", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -64,9 +74,19 @@ function deleteCoordinationV1beta1CollectionNamespacedLease(_api::CoordinationV1 Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoordinationV1beta1CollectionNamespacedLease(_api::CoordinationV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoordinationV1beta1CollectionNamespacedLease(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoordinationV1beta1CollectionNamespacedLease(_api::CoordinationV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoordinationV1beta1CollectionNamespacedLease(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a Lease @@ -80,7 +100,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/coordination.k8s.io/v1beta1/namespaces/{namespace}/leases/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -91,21 +111,41 @@ function deleteCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoordinationV1beta1NamespacedLease(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoordinationV1beta1NamespacedLease(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getCoordinationV1beta1APIResources(_api::CoordinationV1beta1Api; _mediaType=nothing) +function _swaggerinternal_getCoordinationV1beta1APIResources(_api::CoordinationV1beta1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/coordination.k8s.io/v1beta1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getCoordinationV1beta1APIResources(_api::CoordinationV1beta1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getCoordinationV1beta1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getCoordinationV1beta1APIResources(_api::CoordinationV1beta1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getCoordinationV1beta1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Lease @@ -120,7 +160,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoordinationV1beta1LeaseList """ -function listCoordinationV1beta1LeaseForAllNamespaces(_api::CoordinationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoordinationV1beta1LeaseForAllNamespaces(_api::CoordinationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoordinationV1beta1LeaseList, "/apis/coordination.k8s.io/v1beta1/leases", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -133,9 +173,19 @@ function listCoordinationV1beta1LeaseForAllNamespaces(_api::CoordinationV1beta1A Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoordinationV1beta1LeaseForAllNamespaces(_api::CoordinationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoordinationV1beta1LeaseForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoordinationV1beta1LeaseForAllNamespaces(_api::CoordinationV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoordinationV1beta1LeaseForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Lease @@ -151,7 +201,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoordinationV1beta1LeaseList """ -function listCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoordinationV1beta1LeaseList, "/apis/coordination.k8s.io/v1beta1/namespaces/{namespace}/leases", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -165,9 +215,19 @@ function listCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, na Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoordinationV1beta1NamespacedLease(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoordinationV1beta1NamespacedLease(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified Lease @@ -180,7 +240,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiCoordinationV1beta1Lease """ -function patchCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiCoordinationV1beta1Lease, "/apis/coordination.k8s.io/v1beta1/namespaces/{namespace}/leases/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -190,9 +250,19 @@ function patchCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, n Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoordinationV1beta1NamespacedLease(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoordinationV1beta1NamespacedLease(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified Lease @@ -203,7 +273,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiCoordinationV1beta1Lease """ -function readCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoordinationV1beta1Lease, "/apis/coordination.k8s.io/v1beta1/namespaces/{namespace}/leases/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -212,9 +282,19 @@ function readCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, na Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoordinationV1beta1NamespacedLease(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoordinationV1beta1NamespacedLease(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified Lease @@ -226,7 +306,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoordinationV1beta1Lease """ -function replaceCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiCoordinationV1beta1Lease, "/apis/coordination.k8s.io/v1beta1/namespaces/{namespace}/leases/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -235,9 +315,19 @@ function replaceCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoordinationV1beta1NamespacedLease(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoordinationV1beta1NamespacedLease(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead. @@ -252,7 +342,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoordinationV1beta1LeaseListForAllNamespaces(_api::CoordinationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoordinationV1beta1LeaseListForAllNamespaces(_api::CoordinationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/coordination.k8s.io/v1beta1/watch/leases", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -265,9 +355,19 @@ function watchCoordinationV1beta1LeaseListForAllNamespaces(_api::CoordinationV1b Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoordinationV1beta1LeaseListForAllNamespaces(_api::CoordinationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoordinationV1beta1LeaseListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoordinationV1beta1LeaseListForAllNamespaces(_api::CoordinationV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoordinationV1beta1LeaseListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -284,7 +384,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/coordination.k8s.io/v1beta1/watch/namespaces/{namespace}/leases/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -299,9 +399,19 @@ function watchCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, n Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoordinationV1beta1NamespacedLease(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoordinationV1beta1NamespacedLease(_api::CoordinationV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoordinationV1beta1NamespacedLease(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Lease. deprecated: use the 'watch' parameter with a list operation instead. @@ -317,7 +427,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoordinationV1beta1NamespacedLeaseList(_api::CoordinationV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoordinationV1beta1NamespacedLeaseList(_api::CoordinationV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/coordination.k8s.io/v1beta1/watch/namespaces/{namespace}/leases", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -331,7 +441,17 @@ function watchCoordinationV1beta1NamespacedLeaseList(_api::CoordinationV1beta1Ap Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoordinationV1beta1NamespacedLeaseList(_api::CoordinationV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoordinationV1beta1NamespacedLeaseList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoordinationV1beta1NamespacedLeaseList(_api::CoordinationV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoordinationV1beta1NamespacedLeaseList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createCoordinationV1beta1NamespacedLease, deleteCoordinationV1beta1CollectionNamespacedLease, deleteCoordinationV1beta1NamespacedLease, getCoordinationV1beta1APIResources, listCoordinationV1beta1LeaseForAllNamespaces, listCoordinationV1beta1NamespacedLease, patchCoordinationV1beta1NamespacedLease, readCoordinationV1beta1NamespacedLease, replaceCoordinationV1beta1NamespacedLease, watchCoordinationV1beta1LeaseListForAllNamespaces, watchCoordinationV1beta1NamespacedLease, watchCoordinationV1beta1NamespacedLeaseList diff --git a/src/api/api_CoreApi.jl b/src/api/api_CoreApi.jl index 2062f0b2..730e7336 100644 --- a/src/api/api_CoreApi.jl +++ b/src/api/api_CoreApi.jl @@ -10,11 +10,21 @@ end get available API versions Return: IoK8sApimachineryPkgApisMetaV1APIVersions """ -function getCoreAPIVersions(_api::CoreApi; _mediaType=nothing) +function _swaggerinternal_getCoreAPIVersions(_api::CoreApi; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIVersions, "/api/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getCoreAPIVersions(_api::CoreApi; _mediaType=nothing) + _ctx = _swaggerinternal_getCoreAPIVersions(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getCoreAPIVersions(_api::CoreApi, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getCoreAPIVersions(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export getCoreAPIVersions diff --git a/src/api/api_CoreV1Api.jl b/src/api/api_CoreV1Api.jl index 593cee99..b7d3d7c7 100644 --- a/src/api/api_CoreV1Api.jl +++ b/src/api/api_CoreV1Api.jl @@ -13,16 +13,26 @@ Param: namespace::String (required) Param: path::String Return: String """ -function connectCoreV1DeleteNamespacedPodProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1DeleteNamespacedPodProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", String, "/api/v1/namespaces/{namespace}/pods/{name}/proxy", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "path", path) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1DeleteNamespacedPodProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1DeleteNamespacedPodProxy(_api, name, namespace; path=path, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1DeleteNamespacedPodProxy(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1DeleteNamespacedPodProxy(_api, name, namespace; path=path, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect DELETE requests to proxy of Pod @@ -32,7 +42,7 @@ Param: path::String (required) Param: path2::String Return: String """ -function connectCoreV1DeleteNamespacedPodProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1DeleteNamespacedPodProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", String, "/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -40,9 +50,19 @@ function connectCoreV1DeleteNamespacedPodProxyWithPath(_api::CoreV1Api, name::St Swagger.set_param(_ctx.query, "path", path2) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1DeleteNamespacedPodProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1DeleteNamespacedPodProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1DeleteNamespacedPodProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1DeleteNamespacedPodProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect DELETE requests to proxy of Service @@ -51,16 +71,26 @@ Param: namespace::String (required) Param: path::String Return: String """ -function connectCoreV1DeleteNamespacedServiceProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1DeleteNamespacedServiceProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", String, "/api/v1/namespaces/{namespace}/services/{name}/proxy", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "path", path) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1DeleteNamespacedServiceProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1DeleteNamespacedServiceProxy(_api, name, namespace; path=path, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1DeleteNamespacedServiceProxy(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1DeleteNamespacedServiceProxy(_api, name, namespace; path=path, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect DELETE requests to proxy of Service @@ -70,7 +100,7 @@ Param: path::String (required) Param: path2::String Return: String """ -function connectCoreV1DeleteNamespacedServiceProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1DeleteNamespacedServiceProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", String, "/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -78,9 +108,19 @@ function connectCoreV1DeleteNamespacedServiceProxyWithPath(_api::CoreV1Api, name Swagger.set_param(_ctx.query, "path", path2) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1DeleteNamespacedServiceProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1DeleteNamespacedServiceProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1DeleteNamespacedServiceProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1DeleteNamespacedServiceProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect DELETE requests to proxy of Node @@ -88,15 +128,25 @@ Param: name::String (required) Param: path::String Return: String """ -function connectCoreV1DeleteNodeProxy(_api::CoreV1Api, name::String; path=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1DeleteNodeProxy(_api::CoreV1Api, name::String; path=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", String, "/api/v1/nodes/{name}/proxy", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "path", path) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1DeleteNodeProxy(_api::CoreV1Api, name::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1DeleteNodeProxy(_api, name; path=path, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1DeleteNodeProxy(_api::CoreV1Api, response_stream::Channel, name::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1DeleteNodeProxy(_api, name; path=path, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect DELETE requests to proxy of Node @@ -105,16 +155,26 @@ Param: path::String (required) Param: path2::String Return: String """ -function connectCoreV1DeleteNodeProxyWithPath(_api::CoreV1Api, name::String, path::String; path2=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1DeleteNodeProxyWithPath(_api::CoreV1Api, name::String, path::String; path2=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", String, "/api/v1/nodes/{name}/proxy/{path}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "path", path) # type String Swagger.set_param(_ctx.query, "path", path2) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1DeleteNodeProxyWithPath(_api::CoreV1Api, name::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1DeleteNodeProxyWithPath(_api, name, path; path2=path2, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1DeleteNodeProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1DeleteNodeProxyWithPath(_api, name, path; path2=path2, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect GET requests to attach of Pod @@ -127,7 +187,7 @@ Param: stdout::Bool Param: tty::Bool Return: String """ -function connectCoreV1GetNamespacedPodAttach(_api::CoreV1Api, name::String, namespace::String; container=nothing, stderr=nothing, stdin=nothing, stdout=nothing, tty=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1GetNamespacedPodAttach(_api::CoreV1Api, name::String, namespace::String; container=nothing, stderr=nothing, stdin=nothing, stdout=nothing, tty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", String, "/api/v1/namespaces/{namespace}/pods/{name}/attach", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -138,9 +198,19 @@ function connectCoreV1GetNamespacedPodAttach(_api::CoreV1Api, name::String, name Swagger.set_param(_ctx.query, "tty", tty) # type Bool Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1GetNamespacedPodAttach(_api::CoreV1Api, name::String, namespace::String; container=nothing, stderr=nothing, stdin=nothing, stdout=nothing, tty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1GetNamespacedPodAttach(_api, name, namespace; container=container, stderr=stderr, stdin=stdin, stdout=stdout, tty=tty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1GetNamespacedPodAttach(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; container=nothing, stderr=nothing, stdin=nothing, stdout=nothing, tty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1GetNamespacedPodAttach(_api, name, namespace; container=container, stderr=stderr, stdin=stdin, stdout=stdout, tty=tty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect GET requests to exec of Pod @@ -154,7 +224,7 @@ Param: stdout::Bool Param: tty::Bool Return: String """ -function connectCoreV1GetNamespacedPodExec(_api::CoreV1Api, name::String, namespace::String; command=nothing, container=nothing, stderr=nothing, stdin=nothing, stdout=nothing, tty=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1GetNamespacedPodExec(_api::CoreV1Api, name::String, namespace::String; command=nothing, container=nothing, stderr=nothing, stdin=nothing, stdout=nothing, tty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", String, "/api/v1/namespaces/{namespace}/pods/{name}/exec", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -166,9 +236,19 @@ function connectCoreV1GetNamespacedPodExec(_api::CoreV1Api, name::String, namesp Swagger.set_param(_ctx.query, "tty", tty) # type Bool Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1GetNamespacedPodExec(_api::CoreV1Api, name::String, namespace::String; command=nothing, container=nothing, stderr=nothing, stdin=nothing, stdout=nothing, tty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1GetNamespacedPodExec(_api, name, namespace; command=command, container=container, stderr=stderr, stdin=stdin, stdout=stdout, tty=tty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1GetNamespacedPodExec(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; command=nothing, container=nothing, stderr=nothing, stdin=nothing, stdout=nothing, tty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1GetNamespacedPodExec(_api, name, namespace; command=command, container=container, stderr=stderr, stdin=stdin, stdout=stdout, tty=tty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect GET requests to portforward of Pod @@ -177,16 +257,26 @@ Param: namespace::String (required) Param: ports::Int32 Return: String """ -function connectCoreV1GetNamespacedPodPortforward(_api::CoreV1Api, name::String, namespace::String; ports=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1GetNamespacedPodPortforward(_api::CoreV1Api, name::String, namespace::String; ports=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", String, "/api/v1/namespaces/{namespace}/pods/{name}/portforward", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "ports", ports) # type Int32 Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1GetNamespacedPodPortforward(_api::CoreV1Api, name::String, namespace::String; ports=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1GetNamespacedPodPortforward(_api, name, namespace; ports=ports, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1GetNamespacedPodPortforward(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; ports=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1GetNamespacedPodPortforward(_api, name, namespace; ports=ports, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect GET requests to proxy of Pod @@ -195,16 +285,26 @@ Param: namespace::String (required) Param: path::String Return: String """ -function connectCoreV1GetNamespacedPodProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1GetNamespacedPodProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", String, "/api/v1/namespaces/{namespace}/pods/{name}/proxy", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "path", path) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1GetNamespacedPodProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1GetNamespacedPodProxy(_api, name, namespace; path=path, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1GetNamespacedPodProxy(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1GetNamespacedPodProxy(_api, name, namespace; path=path, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect GET requests to proxy of Pod @@ -214,7 +314,7 @@ Param: path::String (required) Param: path2::String Return: String """ -function connectCoreV1GetNamespacedPodProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1GetNamespacedPodProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", String, "/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -222,9 +322,19 @@ function connectCoreV1GetNamespacedPodProxyWithPath(_api::CoreV1Api, name::Strin Swagger.set_param(_ctx.query, "path", path2) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1GetNamespacedPodProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1GetNamespacedPodProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1GetNamespacedPodProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1GetNamespacedPodProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect GET requests to proxy of Service @@ -233,16 +343,26 @@ Param: namespace::String (required) Param: path::String Return: String """ -function connectCoreV1GetNamespacedServiceProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1GetNamespacedServiceProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", String, "/api/v1/namespaces/{namespace}/services/{name}/proxy", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "path", path) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1GetNamespacedServiceProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1GetNamespacedServiceProxy(_api, name, namespace; path=path, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1GetNamespacedServiceProxy(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1GetNamespacedServiceProxy(_api, name, namespace; path=path, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect GET requests to proxy of Service @@ -252,7 +372,7 @@ Param: path::String (required) Param: path2::String Return: String """ -function connectCoreV1GetNamespacedServiceProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1GetNamespacedServiceProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", String, "/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -260,9 +380,19 @@ function connectCoreV1GetNamespacedServiceProxyWithPath(_api::CoreV1Api, name::S Swagger.set_param(_ctx.query, "path", path2) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1GetNamespacedServiceProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1GetNamespacedServiceProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1GetNamespacedServiceProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1GetNamespacedServiceProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect GET requests to proxy of Node @@ -270,15 +400,25 @@ Param: name::String (required) Param: path::String Return: String """ -function connectCoreV1GetNodeProxy(_api::CoreV1Api, name::String; path=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1GetNodeProxy(_api::CoreV1Api, name::String; path=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", String, "/api/v1/nodes/{name}/proxy", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "path", path) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1GetNodeProxy(_api::CoreV1Api, name::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1GetNodeProxy(_api, name; path=path, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1GetNodeProxy(_api::CoreV1Api, response_stream::Channel, name::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1GetNodeProxy(_api, name; path=path, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect GET requests to proxy of Node @@ -287,16 +427,26 @@ Param: path::String (required) Param: path2::String Return: String """ -function connectCoreV1GetNodeProxyWithPath(_api::CoreV1Api, name::String, path::String; path2=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1GetNodeProxyWithPath(_api::CoreV1Api, name::String, path::String; path2=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", String, "/api/v1/nodes/{name}/proxy/{path}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "path", path) # type String Swagger.set_param(_ctx.query, "path", path2) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1GetNodeProxyWithPath(_api::CoreV1Api, name::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1GetNodeProxyWithPath(_api, name, path; path2=path2, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1GetNodeProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1GetNodeProxyWithPath(_api, name, path; path2=path2, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect HEAD requests to proxy of Pod @@ -305,16 +455,26 @@ Param: namespace::String (required) Param: path::String Return: String """ -function connectCoreV1HeadNamespacedPodProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1HeadNamespacedPodProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "HEAD", String, "/api/v1/namespaces/{namespace}/pods/{name}/proxy", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "path", path) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1HeadNamespacedPodProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1HeadNamespacedPodProxy(_api, name, namespace; path=path, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1HeadNamespacedPodProxy(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1HeadNamespacedPodProxy(_api, name, namespace; path=path, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect HEAD requests to proxy of Pod @@ -324,7 +484,7 @@ Param: path::String (required) Param: path2::String Return: String """ -function connectCoreV1HeadNamespacedPodProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1HeadNamespacedPodProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "HEAD", String, "/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -332,9 +492,19 @@ function connectCoreV1HeadNamespacedPodProxyWithPath(_api::CoreV1Api, name::Stri Swagger.set_param(_ctx.query, "path", path2) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1HeadNamespacedPodProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1HeadNamespacedPodProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1HeadNamespacedPodProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1HeadNamespacedPodProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect HEAD requests to proxy of Service @@ -343,16 +513,26 @@ Param: namespace::String (required) Param: path::String Return: String """ -function connectCoreV1HeadNamespacedServiceProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1HeadNamespacedServiceProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "HEAD", String, "/api/v1/namespaces/{namespace}/services/{name}/proxy", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "path", path) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1HeadNamespacedServiceProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1HeadNamespacedServiceProxy(_api, name, namespace; path=path, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1HeadNamespacedServiceProxy(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1HeadNamespacedServiceProxy(_api, name, namespace; path=path, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect HEAD requests to proxy of Service @@ -362,7 +542,7 @@ Param: path::String (required) Param: path2::String Return: String """ -function connectCoreV1HeadNamespacedServiceProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1HeadNamespacedServiceProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "HEAD", String, "/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -370,9 +550,19 @@ function connectCoreV1HeadNamespacedServiceProxyWithPath(_api::CoreV1Api, name:: Swagger.set_param(_ctx.query, "path", path2) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1HeadNamespacedServiceProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1HeadNamespacedServiceProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1HeadNamespacedServiceProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1HeadNamespacedServiceProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect HEAD requests to proxy of Node @@ -380,15 +570,25 @@ Param: name::String (required) Param: path::String Return: String """ -function connectCoreV1HeadNodeProxy(_api::CoreV1Api, name::String; path=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1HeadNodeProxy(_api::CoreV1Api, name::String; path=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "HEAD", String, "/api/v1/nodes/{name}/proxy", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "path", path) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1HeadNodeProxy(_api::CoreV1Api, name::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1HeadNodeProxy(_api, name; path=path, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1HeadNodeProxy(_api::CoreV1Api, response_stream::Channel, name::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1HeadNodeProxy(_api, name; path=path, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect HEAD requests to proxy of Node @@ -397,16 +597,26 @@ Param: path::String (required) Param: path2::String Return: String """ -function connectCoreV1HeadNodeProxyWithPath(_api::CoreV1Api, name::String, path::String; path2=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1HeadNodeProxyWithPath(_api::CoreV1Api, name::String, path::String; path2=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "HEAD", String, "/api/v1/nodes/{name}/proxy/{path}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "path", path) # type String Swagger.set_param(_ctx.query, "path", path2) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1HeadNodeProxyWithPath(_api::CoreV1Api, name::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1HeadNodeProxyWithPath(_api, name, path; path2=path2, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1HeadNodeProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1HeadNodeProxyWithPath(_api, name, path; path2=path2, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect OPTIONS requests to proxy of Pod @@ -415,16 +625,26 @@ Param: namespace::String (required) Param: path::String Return: String """ -function connectCoreV1OptionsNamespacedPodProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1OptionsNamespacedPodProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "OPTIONS", String, "/api/v1/namespaces/{namespace}/pods/{name}/proxy", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "path", path) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1OptionsNamespacedPodProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1OptionsNamespacedPodProxy(_api, name, namespace; path=path, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1OptionsNamespacedPodProxy(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1OptionsNamespacedPodProxy(_api, name, namespace; path=path, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect OPTIONS requests to proxy of Pod @@ -434,7 +654,7 @@ Param: path::String (required) Param: path2::String Return: String """ -function connectCoreV1OptionsNamespacedPodProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1OptionsNamespacedPodProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "OPTIONS", String, "/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -442,9 +662,19 @@ function connectCoreV1OptionsNamespacedPodProxyWithPath(_api::CoreV1Api, name::S Swagger.set_param(_ctx.query, "path", path2) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1OptionsNamespacedPodProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1OptionsNamespacedPodProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1OptionsNamespacedPodProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1OptionsNamespacedPodProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect OPTIONS requests to proxy of Service @@ -453,16 +683,26 @@ Param: namespace::String (required) Param: path::String Return: String """ -function connectCoreV1OptionsNamespacedServiceProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1OptionsNamespacedServiceProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "OPTIONS", String, "/api/v1/namespaces/{namespace}/services/{name}/proxy", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "path", path) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1OptionsNamespacedServiceProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1OptionsNamespacedServiceProxy(_api, name, namespace; path=path, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1OptionsNamespacedServiceProxy(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1OptionsNamespacedServiceProxy(_api, name, namespace; path=path, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect OPTIONS requests to proxy of Service @@ -472,7 +712,7 @@ Param: path::String (required) Param: path2::String Return: String """ -function connectCoreV1OptionsNamespacedServiceProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1OptionsNamespacedServiceProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "OPTIONS", String, "/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -480,9 +720,19 @@ function connectCoreV1OptionsNamespacedServiceProxyWithPath(_api::CoreV1Api, nam Swagger.set_param(_ctx.query, "path", path2) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1OptionsNamespacedServiceProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1OptionsNamespacedServiceProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1OptionsNamespacedServiceProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1OptionsNamespacedServiceProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect OPTIONS requests to proxy of Node @@ -490,15 +740,25 @@ Param: name::String (required) Param: path::String Return: String """ -function connectCoreV1OptionsNodeProxy(_api::CoreV1Api, name::String; path=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1OptionsNodeProxy(_api::CoreV1Api, name::String; path=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "OPTIONS", String, "/api/v1/nodes/{name}/proxy", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "path", path) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1OptionsNodeProxy(_api::CoreV1Api, name::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1OptionsNodeProxy(_api, name; path=path, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1OptionsNodeProxy(_api::CoreV1Api, response_stream::Channel, name::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1OptionsNodeProxy(_api, name; path=path, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect OPTIONS requests to proxy of Node @@ -507,16 +767,26 @@ Param: path::String (required) Param: path2::String Return: String """ -function connectCoreV1OptionsNodeProxyWithPath(_api::CoreV1Api, name::String, path::String; path2=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1OptionsNodeProxyWithPath(_api::CoreV1Api, name::String, path::String; path2=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "OPTIONS", String, "/api/v1/nodes/{name}/proxy/{path}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "path", path) # type String Swagger.set_param(_ctx.query, "path", path2) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1OptionsNodeProxyWithPath(_api::CoreV1Api, name::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1OptionsNodeProxyWithPath(_api, name, path; path2=path2, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1OptionsNodeProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1OptionsNodeProxyWithPath(_api, name, path; path2=path2, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect PATCH requests to proxy of Pod @@ -525,16 +795,26 @@ Param: namespace::String (required) Param: path::String Return: String """ -function connectCoreV1PatchNamespacedPodProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1PatchNamespacedPodProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", String, "/api/v1/namespaces/{namespace}/pods/{name}/proxy", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "path", path) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1PatchNamespacedPodProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PatchNamespacedPodProxy(_api, name, namespace; path=path, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1PatchNamespacedPodProxy(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PatchNamespacedPodProxy(_api, name, namespace; path=path, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect PATCH requests to proxy of Pod @@ -544,7 +824,7 @@ Param: path::String (required) Param: path2::String Return: String """ -function connectCoreV1PatchNamespacedPodProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1PatchNamespacedPodProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", String, "/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -552,9 +832,19 @@ function connectCoreV1PatchNamespacedPodProxyWithPath(_api::CoreV1Api, name::Str Swagger.set_param(_ctx.query, "path", path2) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1PatchNamespacedPodProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PatchNamespacedPodProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1PatchNamespacedPodProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PatchNamespacedPodProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect PATCH requests to proxy of Service @@ -563,16 +853,26 @@ Param: namespace::String (required) Param: path::String Return: String """ -function connectCoreV1PatchNamespacedServiceProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1PatchNamespacedServiceProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", String, "/api/v1/namespaces/{namespace}/services/{name}/proxy", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "path", path) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1PatchNamespacedServiceProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PatchNamespacedServiceProxy(_api, name, namespace; path=path, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1PatchNamespacedServiceProxy(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PatchNamespacedServiceProxy(_api, name, namespace; path=path, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect PATCH requests to proxy of Service @@ -582,7 +882,7 @@ Param: path::String (required) Param: path2::String Return: String """ -function connectCoreV1PatchNamespacedServiceProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1PatchNamespacedServiceProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", String, "/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -590,9 +890,19 @@ function connectCoreV1PatchNamespacedServiceProxyWithPath(_api::CoreV1Api, name: Swagger.set_param(_ctx.query, "path", path2) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1PatchNamespacedServiceProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PatchNamespacedServiceProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1PatchNamespacedServiceProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PatchNamespacedServiceProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect PATCH requests to proxy of Node @@ -600,15 +910,25 @@ Param: name::String (required) Param: path::String Return: String """ -function connectCoreV1PatchNodeProxy(_api::CoreV1Api, name::String; path=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1PatchNodeProxy(_api::CoreV1Api, name::String; path=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", String, "/api/v1/nodes/{name}/proxy", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "path", path) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1PatchNodeProxy(_api::CoreV1Api, name::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PatchNodeProxy(_api, name; path=path, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1PatchNodeProxy(_api::CoreV1Api, response_stream::Channel, name::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PatchNodeProxy(_api, name; path=path, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect PATCH requests to proxy of Node @@ -617,16 +937,26 @@ Param: path::String (required) Param: path2::String Return: String """ -function connectCoreV1PatchNodeProxyWithPath(_api::CoreV1Api, name::String, path::String; path2=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1PatchNodeProxyWithPath(_api::CoreV1Api, name::String, path::String; path2=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", String, "/api/v1/nodes/{name}/proxy/{path}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "path", path) # type String Swagger.set_param(_ctx.query, "path", path2) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1PatchNodeProxyWithPath(_api::CoreV1Api, name::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PatchNodeProxyWithPath(_api, name, path; path2=path2, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1PatchNodeProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PatchNodeProxyWithPath(_api, name, path; path2=path2, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect POST requests to attach of Pod @@ -639,7 +969,7 @@ Param: stdout::Bool Param: tty::Bool Return: String """ -function connectCoreV1PostNamespacedPodAttach(_api::CoreV1Api, name::String, namespace::String; container=nothing, stderr=nothing, stdin=nothing, stdout=nothing, tty=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1PostNamespacedPodAttach(_api::CoreV1Api, name::String, namespace::String; container=nothing, stderr=nothing, stdin=nothing, stdout=nothing, tty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", String, "/api/v1/namespaces/{namespace}/pods/{name}/attach", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -650,9 +980,19 @@ function connectCoreV1PostNamespacedPodAttach(_api::CoreV1Api, name::String, nam Swagger.set_param(_ctx.query, "tty", tty) # type Bool Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1PostNamespacedPodAttach(_api::CoreV1Api, name::String, namespace::String; container=nothing, stderr=nothing, stdin=nothing, stdout=nothing, tty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PostNamespacedPodAttach(_api, name, namespace; container=container, stderr=stderr, stdin=stdin, stdout=stdout, tty=tty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1PostNamespacedPodAttach(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; container=nothing, stderr=nothing, stdin=nothing, stdout=nothing, tty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PostNamespacedPodAttach(_api, name, namespace; container=container, stderr=stderr, stdin=stdin, stdout=stdout, tty=tty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect POST requests to exec of Pod @@ -666,7 +1006,7 @@ Param: stdout::Bool Param: tty::Bool Return: String """ -function connectCoreV1PostNamespacedPodExec(_api::CoreV1Api, name::String, namespace::String; command=nothing, container=nothing, stderr=nothing, stdin=nothing, stdout=nothing, tty=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1PostNamespacedPodExec(_api::CoreV1Api, name::String, namespace::String; command=nothing, container=nothing, stderr=nothing, stdin=nothing, stdout=nothing, tty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", String, "/api/v1/namespaces/{namespace}/pods/{name}/exec", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -678,9 +1018,19 @@ function connectCoreV1PostNamespacedPodExec(_api::CoreV1Api, name::String, names Swagger.set_param(_ctx.query, "tty", tty) # type Bool Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1PostNamespacedPodExec(_api::CoreV1Api, name::String, namespace::String; command=nothing, container=nothing, stderr=nothing, stdin=nothing, stdout=nothing, tty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PostNamespacedPodExec(_api, name, namespace; command=command, container=container, stderr=stderr, stdin=stdin, stdout=stdout, tty=tty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1PostNamespacedPodExec(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; command=nothing, container=nothing, stderr=nothing, stdin=nothing, stdout=nothing, tty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PostNamespacedPodExec(_api, name, namespace; command=command, container=container, stderr=stderr, stdin=stdin, stdout=stdout, tty=tty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect POST requests to portforward of Pod @@ -689,16 +1039,26 @@ Param: namespace::String (required) Param: ports::Int32 Return: String """ -function connectCoreV1PostNamespacedPodPortforward(_api::CoreV1Api, name::String, namespace::String; ports=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1PostNamespacedPodPortforward(_api::CoreV1Api, name::String, namespace::String; ports=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", String, "/api/v1/namespaces/{namespace}/pods/{name}/portforward", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "ports", ports) # type Int32 Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1PostNamespacedPodPortforward(_api::CoreV1Api, name::String, namespace::String; ports=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PostNamespacedPodPortforward(_api, name, namespace; ports=ports, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1PostNamespacedPodPortforward(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; ports=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PostNamespacedPodPortforward(_api, name, namespace; ports=ports, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect POST requests to proxy of Pod @@ -707,16 +1067,26 @@ Param: namespace::String (required) Param: path::String Return: String """ -function connectCoreV1PostNamespacedPodProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1PostNamespacedPodProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", String, "/api/v1/namespaces/{namespace}/pods/{name}/proxy", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "path", path) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1PostNamespacedPodProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PostNamespacedPodProxy(_api, name, namespace; path=path, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1PostNamespacedPodProxy(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PostNamespacedPodProxy(_api, name, namespace; path=path, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect POST requests to proxy of Pod @@ -726,7 +1096,7 @@ Param: path::String (required) Param: path2::String Return: String """ -function connectCoreV1PostNamespacedPodProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1PostNamespacedPodProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", String, "/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -734,9 +1104,19 @@ function connectCoreV1PostNamespacedPodProxyWithPath(_api::CoreV1Api, name::Stri Swagger.set_param(_ctx.query, "path", path2) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1PostNamespacedPodProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PostNamespacedPodProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1PostNamespacedPodProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PostNamespacedPodProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect POST requests to proxy of Service @@ -745,16 +1125,26 @@ Param: namespace::String (required) Param: path::String Return: String """ -function connectCoreV1PostNamespacedServiceProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1PostNamespacedServiceProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", String, "/api/v1/namespaces/{namespace}/services/{name}/proxy", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "path", path) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1PostNamespacedServiceProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PostNamespacedServiceProxy(_api, name, namespace; path=path, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1PostNamespacedServiceProxy(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PostNamespacedServiceProxy(_api, name, namespace; path=path, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect POST requests to proxy of Service @@ -764,7 +1154,7 @@ Param: path::String (required) Param: path2::String Return: String """ -function connectCoreV1PostNamespacedServiceProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1PostNamespacedServiceProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", String, "/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -772,9 +1162,19 @@ function connectCoreV1PostNamespacedServiceProxyWithPath(_api::CoreV1Api, name:: Swagger.set_param(_ctx.query, "path", path2) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1PostNamespacedServiceProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PostNamespacedServiceProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1PostNamespacedServiceProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PostNamespacedServiceProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect POST requests to proxy of Node @@ -782,15 +1182,25 @@ Param: name::String (required) Param: path::String Return: String """ -function connectCoreV1PostNodeProxy(_api::CoreV1Api, name::String; path=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1PostNodeProxy(_api::CoreV1Api, name::String; path=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", String, "/api/v1/nodes/{name}/proxy", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "path", path) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1PostNodeProxy(_api::CoreV1Api, name::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PostNodeProxy(_api, name; path=path, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1PostNodeProxy(_api::CoreV1Api, response_stream::Channel, name::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PostNodeProxy(_api, name; path=path, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect POST requests to proxy of Node @@ -799,16 +1209,26 @@ Param: path::String (required) Param: path2::String Return: String """ -function connectCoreV1PostNodeProxyWithPath(_api::CoreV1Api, name::String, path::String; path2=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1PostNodeProxyWithPath(_api::CoreV1Api, name::String, path::String; path2=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", String, "/api/v1/nodes/{name}/proxy/{path}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "path", path) # type String Swagger.set_param(_ctx.query, "path", path2) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1PostNodeProxyWithPath(_api::CoreV1Api, name::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PostNodeProxyWithPath(_api, name, path; path2=path2, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1PostNodeProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PostNodeProxyWithPath(_api, name, path; path2=path2, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect PUT requests to proxy of Pod @@ -817,16 +1237,26 @@ Param: namespace::String (required) Param: path::String Return: String """ -function connectCoreV1PutNamespacedPodProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1PutNamespacedPodProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", String, "/api/v1/namespaces/{namespace}/pods/{name}/proxy", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "path", path) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1PutNamespacedPodProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PutNamespacedPodProxy(_api, name, namespace; path=path, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1PutNamespacedPodProxy(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PutNamespacedPodProxy(_api, name, namespace; path=path, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect PUT requests to proxy of Pod @@ -836,7 +1266,7 @@ Param: path::String (required) Param: path2::String Return: String """ -function connectCoreV1PutNamespacedPodProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1PutNamespacedPodProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", String, "/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -844,9 +1274,19 @@ function connectCoreV1PutNamespacedPodProxyWithPath(_api::CoreV1Api, name::Strin Swagger.set_param(_ctx.query, "path", path2) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1PutNamespacedPodProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PutNamespacedPodProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1PutNamespacedPodProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PutNamespacedPodProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect PUT requests to proxy of Service @@ -855,16 +1295,26 @@ Param: namespace::String (required) Param: path::String Return: String """ -function connectCoreV1PutNamespacedServiceProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1PutNamespacedServiceProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", String, "/api/v1/namespaces/{namespace}/services/{name}/proxy", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "path", path) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1PutNamespacedServiceProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PutNamespacedServiceProxy(_api, name, namespace; path=path, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1PutNamespacedServiceProxy(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PutNamespacedServiceProxy(_api, name, namespace; path=path, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect PUT requests to proxy of Service @@ -874,7 +1324,7 @@ Param: path::String (required) Param: path2::String Return: String """ -function connectCoreV1PutNamespacedServiceProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1PutNamespacedServiceProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", String, "/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -882,9 +1332,19 @@ function connectCoreV1PutNamespacedServiceProxyWithPath(_api::CoreV1Api, name::S Swagger.set_param(_ctx.query, "path", path2) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1PutNamespacedServiceProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PutNamespacedServiceProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1PutNamespacedServiceProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PutNamespacedServiceProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect PUT requests to proxy of Node @@ -892,15 +1352,25 @@ Param: name::String (required) Param: path::String Return: String """ -function connectCoreV1PutNodeProxy(_api::CoreV1Api, name::String; path=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1PutNodeProxy(_api::CoreV1Api, name::String; path=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", String, "/api/v1/nodes/{name}/proxy", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "path", path) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1PutNodeProxy(_api::CoreV1Api, name::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PutNodeProxy(_api, name; path=path, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1PutNodeProxy(_api::CoreV1Api, response_stream::Channel, name::String; path=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PutNodeProxy(_api, name; path=path, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ connect PUT requests to proxy of Node @@ -909,16 +1379,26 @@ Param: path::String (required) Param: path2::String Return: String """ -function connectCoreV1PutNodeProxyWithPath(_api::CoreV1Api, name::String, path::String; path2=nothing, _mediaType=nothing) +function _swaggerinternal_connectCoreV1PutNodeProxyWithPath(_api::CoreV1Api, name::String, path::String; path2=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", String, "/api/v1/nodes/{name}/proxy/{path}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "path", path) # type String Swagger.set_param(_ctx.query, "path", path2) # type String Swagger.set_header_accept(_ctx, ["*/*"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function connectCoreV1PutNodeProxyWithPath(_api::CoreV1Api, name::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PutNodeProxyWithPath(_api, name, path; path2=path2, _mediaType=_mediaType) Swagger.exec(_ctx) end +function connectCoreV1PutNodeProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, path::String; path2=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_connectCoreV1PutNodeProxyWithPath(_api, name, path; path2=path2, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a Namespace @@ -928,16 +1408,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1Namespace """ -function createCoreV1Namespace(_api::CoreV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createCoreV1Namespace(_api::CoreV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiCoreV1Namespace, "/api/v1/namespaces", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createCoreV1Namespace(_api::CoreV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1Namespace(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createCoreV1Namespace(_api::CoreV1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1Namespace(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a Binding @@ -948,7 +1438,7 @@ Param: fieldManager::String Param: pretty::String Return: IoK8sApiCoreV1Binding """ -function createCoreV1NamespacedBinding(_api::CoreV1Api, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) +function _swaggerinternal_createCoreV1NamespacedBinding(_api::CoreV1Api, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiCoreV1Binding, "/api/v1/namespaces/{namespace}/bindings", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String @@ -956,9 +1446,19 @@ function createCoreV1NamespacedBinding(_api::CoreV1Api, namespace::String, body; Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createCoreV1NamespacedBinding(_api::CoreV1Api, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedBinding(_api, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createCoreV1NamespacedBinding(_api::CoreV1Api, response_stream::Channel, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedBinding(_api, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a ConfigMap @@ -969,7 +1469,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1ConfigMap """ -function createCoreV1NamespacedConfigMap(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createCoreV1NamespacedConfigMap(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiCoreV1ConfigMap, "/api/v1/namespaces/{namespace}/configmaps", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -977,9 +1477,19 @@ function createCoreV1NamespacedConfigMap(_api::CoreV1Api, namespace::String, bod Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createCoreV1NamespacedConfigMap(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedConfigMap(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createCoreV1NamespacedConfigMap(_api::CoreV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedConfigMap(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create Endpoints @@ -990,7 +1500,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1Endpoints """ -function createCoreV1NamespacedEndpoints(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createCoreV1NamespacedEndpoints(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiCoreV1Endpoints, "/api/v1/namespaces/{namespace}/endpoints", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -998,9 +1508,19 @@ function createCoreV1NamespacedEndpoints(_api::CoreV1Api, namespace::String, bod Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createCoreV1NamespacedEndpoints(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedEndpoints(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createCoreV1NamespacedEndpoints(_api::CoreV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedEndpoints(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create an Event @@ -1011,7 +1531,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1Event """ -function createCoreV1NamespacedEvent(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createCoreV1NamespacedEvent(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiCoreV1Event, "/api/v1/namespaces/{namespace}/events", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -1019,9 +1539,19 @@ function createCoreV1NamespacedEvent(_api::CoreV1Api, namespace::String, body; p Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createCoreV1NamespacedEvent(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedEvent(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createCoreV1NamespacedEvent(_api::CoreV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedEvent(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a LimitRange @@ -1032,7 +1562,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1LimitRange """ -function createCoreV1NamespacedLimitRange(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createCoreV1NamespacedLimitRange(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiCoreV1LimitRange, "/api/v1/namespaces/{namespace}/limitranges", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -1040,9 +1570,19 @@ function createCoreV1NamespacedLimitRange(_api::CoreV1Api, namespace::String, bo Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createCoreV1NamespacedLimitRange(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedLimitRange(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createCoreV1NamespacedLimitRange(_api::CoreV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedLimitRange(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a PersistentVolumeClaim @@ -1053,7 +1593,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1PersistentVolumeClaim """ -function createCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiCoreV1PersistentVolumeClaim, "/api/v1/namespaces/{namespace}/persistentvolumeclaims", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -1061,9 +1601,19 @@ function createCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, namespace: Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedPersistentVolumeClaim(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedPersistentVolumeClaim(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a Pod @@ -1074,7 +1624,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1Pod """ -function createCoreV1NamespacedPod(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createCoreV1NamespacedPod(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiCoreV1Pod, "/api/v1/namespaces/{namespace}/pods", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -1082,9 +1632,19 @@ function createCoreV1NamespacedPod(_api::CoreV1Api, namespace::String, body; pre Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createCoreV1NamespacedPod(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedPod(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createCoreV1NamespacedPod(_api::CoreV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedPod(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create binding of a Pod @@ -1096,7 +1656,7 @@ Param: fieldManager::String Param: pretty::String Return: IoK8sApiCoreV1Binding """ -function createCoreV1NamespacedPodBinding(_api::CoreV1Api, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) +function _swaggerinternal_createCoreV1NamespacedPodBinding(_api::CoreV1Api, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiCoreV1Binding, "/api/v1/namespaces/{namespace}/pods/{name}/binding", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1105,9 +1665,19 @@ function createCoreV1NamespacedPodBinding(_api::CoreV1Api, name::String, namespa Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createCoreV1NamespacedPodBinding(_api::CoreV1Api, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedPodBinding(_api, name, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createCoreV1NamespacedPodBinding(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedPodBinding(_api, name, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create eviction of a Pod @@ -1119,7 +1689,7 @@ Param: fieldManager::String Param: pretty::String Return: IoK8sApiPolicyV1beta1Eviction """ -function createCoreV1NamespacedPodEviction(_api::CoreV1Api, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) +function _swaggerinternal_createCoreV1NamespacedPodEviction(_api::CoreV1Api, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiPolicyV1beta1Eviction, "/api/v1/namespaces/{namespace}/pods/{name}/eviction", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1128,9 +1698,19 @@ function createCoreV1NamespacedPodEviction(_api::CoreV1Api, name::String, namesp Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createCoreV1NamespacedPodEviction(_api::CoreV1Api, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedPodEviction(_api, name, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createCoreV1NamespacedPodEviction(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedPodEviction(_api, name, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a PodTemplate @@ -1141,7 +1721,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1PodTemplate """ -function createCoreV1NamespacedPodTemplate(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createCoreV1NamespacedPodTemplate(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiCoreV1PodTemplate, "/api/v1/namespaces/{namespace}/podtemplates", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -1149,9 +1729,19 @@ function createCoreV1NamespacedPodTemplate(_api::CoreV1Api, namespace::String, b Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createCoreV1NamespacedPodTemplate(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedPodTemplate(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createCoreV1NamespacedPodTemplate(_api::CoreV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedPodTemplate(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a ReplicationController @@ -1162,7 +1752,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1ReplicationController """ -function createCoreV1NamespacedReplicationController(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createCoreV1NamespacedReplicationController(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiCoreV1ReplicationController, "/api/v1/namespaces/{namespace}/replicationcontrollers", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -1170,9 +1760,19 @@ function createCoreV1NamespacedReplicationController(_api::CoreV1Api, namespace: Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createCoreV1NamespacedReplicationController(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedReplicationController(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createCoreV1NamespacedReplicationController(_api::CoreV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedReplicationController(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a ResourceQuota @@ -1183,7 +1783,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1ResourceQuota """ -function createCoreV1NamespacedResourceQuota(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createCoreV1NamespacedResourceQuota(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiCoreV1ResourceQuota, "/api/v1/namespaces/{namespace}/resourcequotas", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -1191,9 +1791,19 @@ function createCoreV1NamespacedResourceQuota(_api::CoreV1Api, namespace::String, Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createCoreV1NamespacedResourceQuota(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedResourceQuota(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createCoreV1NamespacedResourceQuota(_api::CoreV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedResourceQuota(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a Secret @@ -1204,7 +1814,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1Secret """ -function createCoreV1NamespacedSecret(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createCoreV1NamespacedSecret(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiCoreV1Secret, "/api/v1/namespaces/{namespace}/secrets", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -1212,9 +1822,19 @@ function createCoreV1NamespacedSecret(_api::CoreV1Api, namespace::String, body; Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createCoreV1NamespacedSecret(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedSecret(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createCoreV1NamespacedSecret(_api::CoreV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedSecret(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a Service @@ -1225,7 +1845,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1Service """ -function createCoreV1NamespacedService(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createCoreV1NamespacedService(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiCoreV1Service, "/api/v1/namespaces/{namespace}/services", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -1233,9 +1853,19 @@ function createCoreV1NamespacedService(_api::CoreV1Api, namespace::String, body; Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createCoreV1NamespacedService(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedService(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createCoreV1NamespacedService(_api::CoreV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedService(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a ServiceAccount @@ -1246,7 +1876,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1ServiceAccount """ -function createCoreV1NamespacedServiceAccount(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createCoreV1NamespacedServiceAccount(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiCoreV1ServiceAccount, "/api/v1/namespaces/{namespace}/serviceaccounts", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -1254,9 +1884,19 @@ function createCoreV1NamespacedServiceAccount(_api::CoreV1Api, namespace::String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createCoreV1NamespacedServiceAccount(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedServiceAccount(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createCoreV1NamespacedServiceAccount(_api::CoreV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedServiceAccount(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create token of a ServiceAccount @@ -1268,7 +1908,7 @@ Param: fieldManager::String Param: pretty::String Return: IoK8sApiAuthenticationV1TokenRequest """ -function createCoreV1NamespacedServiceAccountToken(_api::CoreV1Api, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) +function _swaggerinternal_createCoreV1NamespacedServiceAccountToken(_api::CoreV1Api, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiAuthenticationV1TokenRequest, "/api/v1/namespaces/{namespace}/serviceaccounts/{name}/token", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1277,9 +1917,19 @@ function createCoreV1NamespacedServiceAccountToken(_api::CoreV1Api, name::String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createCoreV1NamespacedServiceAccountToken(_api::CoreV1Api, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedServiceAccountToken(_api, name, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createCoreV1NamespacedServiceAccountToken(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1NamespacedServiceAccountToken(_api, name, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a Node @@ -1289,16 +1939,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1Node """ -function createCoreV1Node(_api::CoreV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createCoreV1Node(_api::CoreV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiCoreV1Node, "/api/v1/nodes", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createCoreV1Node(_api::CoreV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1Node(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createCoreV1Node(_api::CoreV1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1Node(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a PersistentVolume @@ -1308,16 +1968,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1PersistentVolume """ -function createCoreV1PersistentVolume(_api::CoreV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createCoreV1PersistentVolume(_api::CoreV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiCoreV1PersistentVolume, "/api/v1/persistentvolumes", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createCoreV1PersistentVolume(_api::CoreV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1PersistentVolume(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createCoreV1PersistentVolume(_api::CoreV1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createCoreV1PersistentVolume(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of ConfigMap @@ -1338,7 +2008,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoreV1CollectionNamespacedConfigMap(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoreV1CollectionNamespacedConfigMap(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/api/v1/namespaces/{namespace}/configmaps", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -1356,9 +2026,19 @@ function deleteCoreV1CollectionNamespacedConfigMap(_api::CoreV1Api, namespace::S Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoreV1CollectionNamespacedConfigMap(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1CollectionNamespacedConfigMap(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoreV1CollectionNamespacedConfigMap(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1CollectionNamespacedConfigMap(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of Endpoints @@ -1379,7 +2059,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoreV1CollectionNamespacedEndpoints(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoreV1CollectionNamespacedEndpoints(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/api/v1/namespaces/{namespace}/endpoints", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -1397,9 +2077,19 @@ function deleteCoreV1CollectionNamespacedEndpoints(_api::CoreV1Api, namespace::S Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoreV1CollectionNamespacedEndpoints(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1CollectionNamespacedEndpoints(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoreV1CollectionNamespacedEndpoints(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1CollectionNamespacedEndpoints(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of Event @@ -1420,7 +2110,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoreV1CollectionNamespacedEvent(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoreV1CollectionNamespacedEvent(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/api/v1/namespaces/{namespace}/events", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -1438,9 +2128,19 @@ function deleteCoreV1CollectionNamespacedEvent(_api::CoreV1Api, namespace::Strin Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoreV1CollectionNamespacedEvent(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1CollectionNamespacedEvent(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoreV1CollectionNamespacedEvent(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1CollectionNamespacedEvent(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of LimitRange @@ -1461,7 +2161,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoreV1CollectionNamespacedLimitRange(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoreV1CollectionNamespacedLimitRange(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/api/v1/namespaces/{namespace}/limitranges", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -1479,9 +2179,19 @@ function deleteCoreV1CollectionNamespacedLimitRange(_api::CoreV1Api, namespace:: Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoreV1CollectionNamespacedLimitRange(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1CollectionNamespacedLimitRange(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoreV1CollectionNamespacedLimitRange(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1CollectionNamespacedLimitRange(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of PersistentVolumeClaim @@ -1502,7 +2212,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoreV1CollectionNamespacedPersistentVolumeClaim(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoreV1CollectionNamespacedPersistentVolumeClaim(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/api/v1/namespaces/{namespace}/persistentvolumeclaims", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -1520,9 +2230,19 @@ function deleteCoreV1CollectionNamespacedPersistentVolumeClaim(_api::CoreV1Api, Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoreV1CollectionNamespacedPersistentVolumeClaim(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1CollectionNamespacedPersistentVolumeClaim(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoreV1CollectionNamespacedPersistentVolumeClaim(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1CollectionNamespacedPersistentVolumeClaim(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of Pod @@ -1543,7 +2263,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoreV1CollectionNamespacedPod(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoreV1CollectionNamespacedPod(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/api/v1/namespaces/{namespace}/pods", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -1561,9 +2281,19 @@ function deleteCoreV1CollectionNamespacedPod(_api::CoreV1Api, namespace::String; Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoreV1CollectionNamespacedPod(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1CollectionNamespacedPod(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoreV1CollectionNamespacedPod(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1CollectionNamespacedPod(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of PodTemplate @@ -1584,7 +2314,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoreV1CollectionNamespacedPodTemplate(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoreV1CollectionNamespacedPodTemplate(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/api/v1/namespaces/{namespace}/podtemplates", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -1602,9 +2332,19 @@ function deleteCoreV1CollectionNamespacedPodTemplate(_api::CoreV1Api, namespace: Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoreV1CollectionNamespacedPodTemplate(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1CollectionNamespacedPodTemplate(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoreV1CollectionNamespacedPodTemplate(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1CollectionNamespacedPodTemplate(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of ReplicationController @@ -1625,7 +2365,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoreV1CollectionNamespacedReplicationController(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoreV1CollectionNamespacedReplicationController(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/api/v1/namespaces/{namespace}/replicationcontrollers", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -1643,9 +2383,19 @@ function deleteCoreV1CollectionNamespacedReplicationController(_api::CoreV1Api, Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoreV1CollectionNamespacedReplicationController(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1CollectionNamespacedReplicationController(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoreV1CollectionNamespacedReplicationController(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1CollectionNamespacedReplicationController(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of ResourceQuota @@ -1666,7 +2416,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoreV1CollectionNamespacedResourceQuota(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoreV1CollectionNamespacedResourceQuota(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/api/v1/namespaces/{namespace}/resourcequotas", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -1684,9 +2434,19 @@ function deleteCoreV1CollectionNamespacedResourceQuota(_api::CoreV1Api, namespac Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoreV1CollectionNamespacedResourceQuota(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1CollectionNamespacedResourceQuota(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoreV1CollectionNamespacedResourceQuota(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1CollectionNamespacedResourceQuota(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of Secret @@ -1707,7 +2467,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoreV1CollectionNamespacedSecret(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoreV1CollectionNamespacedSecret(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/api/v1/namespaces/{namespace}/secrets", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -1725,9 +2485,19 @@ function deleteCoreV1CollectionNamespacedSecret(_api::CoreV1Api, namespace::Stri Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoreV1CollectionNamespacedSecret(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1CollectionNamespacedSecret(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoreV1CollectionNamespacedSecret(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1CollectionNamespacedSecret(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of ServiceAccount @@ -1748,7 +2518,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoreV1CollectionNamespacedServiceAccount(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoreV1CollectionNamespacedServiceAccount(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/api/v1/namespaces/{namespace}/serviceaccounts", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -1766,9 +2536,19 @@ function deleteCoreV1CollectionNamespacedServiceAccount(_api::CoreV1Api, namespa Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoreV1CollectionNamespacedServiceAccount(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1CollectionNamespacedServiceAccount(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoreV1CollectionNamespacedServiceAccount(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1CollectionNamespacedServiceAccount(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of Node @@ -1788,7 +2568,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoreV1CollectionNode(_api::CoreV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoreV1CollectionNode(_api::CoreV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/api/v1/nodes", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -1805,9 +2585,19 @@ function deleteCoreV1CollectionNode(_api::CoreV1Api; pretty=nothing, allowWatchB Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoreV1CollectionNode(_api::CoreV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1CollectionNode(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoreV1CollectionNode(_api::CoreV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1CollectionNode(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of PersistentVolume @@ -1827,7 +2617,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoreV1CollectionPersistentVolume(_api::CoreV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoreV1CollectionPersistentVolume(_api::CoreV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/api/v1/persistentvolumes", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -1844,9 +2634,19 @@ function deleteCoreV1CollectionPersistentVolume(_api::CoreV1Api; pretty=nothing, Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoreV1CollectionPersistentVolume(_api::CoreV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1CollectionPersistentVolume(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoreV1CollectionPersistentVolume(_api::CoreV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1CollectionPersistentVolume(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a Namespace @@ -1859,7 +2659,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoreV1Namespace(_api::CoreV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoreV1Namespace(_api::CoreV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/api/v1/namespaces/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -1869,9 +2669,19 @@ function deleteCoreV1Namespace(_api::CoreV1Api, name::String; pretty=nothing, bo Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoreV1Namespace(_api::CoreV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1Namespace(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoreV1Namespace(_api::CoreV1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1Namespace(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a ConfigMap @@ -1885,7 +2695,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoreV1NamespacedConfigMap(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoreV1NamespacedConfigMap(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/api/v1/namespaces/{namespace}/configmaps/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1896,9 +2706,19 @@ function deleteCoreV1NamespacedConfigMap(_api::CoreV1Api, name::String, namespac Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoreV1NamespacedConfigMap(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1NamespacedConfigMap(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoreV1NamespacedConfigMap(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1NamespacedConfigMap(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete Endpoints @@ -1912,7 +2732,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoreV1NamespacedEndpoints(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoreV1NamespacedEndpoints(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/api/v1/namespaces/{namespace}/endpoints/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1923,9 +2743,19 @@ function deleteCoreV1NamespacedEndpoints(_api::CoreV1Api, name::String, namespac Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoreV1NamespacedEndpoints(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1NamespacedEndpoints(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoreV1NamespacedEndpoints(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1NamespacedEndpoints(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete an Event @@ -1939,7 +2769,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoreV1NamespacedEvent(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoreV1NamespacedEvent(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/api/v1/namespaces/{namespace}/events/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1950,9 +2780,19 @@ function deleteCoreV1NamespacedEvent(_api::CoreV1Api, name::String, namespace::S Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoreV1NamespacedEvent(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1NamespacedEvent(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoreV1NamespacedEvent(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1NamespacedEvent(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a LimitRange @@ -1966,7 +2806,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoreV1NamespacedLimitRange(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoreV1NamespacedLimitRange(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/api/v1/namespaces/{namespace}/limitranges/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1977,9 +2817,19 @@ function deleteCoreV1NamespacedLimitRange(_api::CoreV1Api, name::String, namespa Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoreV1NamespacedLimitRange(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1NamespacedLimitRange(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoreV1NamespacedLimitRange(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1NamespacedLimitRange(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a PersistentVolumeClaim @@ -1993,7 +2843,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -2004,9 +2854,19 @@ function deleteCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, name::Stri Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1NamespacedPersistentVolumeClaim(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1NamespacedPersistentVolumeClaim(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a Pod @@ -2020,7 +2880,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoreV1NamespacedPod(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoreV1NamespacedPod(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/api/v1/namespaces/{namespace}/pods/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -2031,9 +2891,19 @@ function deleteCoreV1NamespacedPod(_api::CoreV1Api, name::String, namespace::Str Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoreV1NamespacedPod(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1NamespacedPod(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoreV1NamespacedPod(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1NamespacedPod(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a PodTemplate @@ -2047,7 +2917,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoreV1NamespacedPodTemplate(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoreV1NamespacedPodTemplate(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/api/v1/namespaces/{namespace}/podtemplates/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -2058,9 +2928,19 @@ function deleteCoreV1NamespacedPodTemplate(_api::CoreV1Api, name::String, namesp Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoreV1NamespacedPodTemplate(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1NamespacedPodTemplate(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoreV1NamespacedPodTemplate(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1NamespacedPodTemplate(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a ReplicationController @@ -2074,7 +2954,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoreV1NamespacedReplicationController(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoreV1NamespacedReplicationController(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -2085,9 +2965,19 @@ function deleteCoreV1NamespacedReplicationController(_api::CoreV1Api, name::Stri Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoreV1NamespacedReplicationController(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1NamespacedReplicationController(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoreV1NamespacedReplicationController(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1NamespacedReplicationController(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a ResourceQuota @@ -2101,7 +2991,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoreV1NamespacedResourceQuota(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoreV1NamespacedResourceQuota(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/api/v1/namespaces/{namespace}/resourcequotas/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -2112,9 +3002,19 @@ function deleteCoreV1NamespacedResourceQuota(_api::CoreV1Api, name::String, name Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoreV1NamespacedResourceQuota(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1NamespacedResourceQuota(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoreV1NamespacedResourceQuota(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1NamespacedResourceQuota(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a Secret @@ -2128,7 +3028,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoreV1NamespacedSecret(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoreV1NamespacedSecret(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/api/v1/namespaces/{namespace}/secrets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -2139,9 +3039,19 @@ function deleteCoreV1NamespacedSecret(_api::CoreV1Api, name::String, namespace:: Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoreV1NamespacedSecret(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1NamespacedSecret(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoreV1NamespacedSecret(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1NamespacedSecret(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a Service @@ -2155,7 +3065,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoreV1NamespacedService(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoreV1NamespacedService(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/api/v1/namespaces/{namespace}/services/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -2166,9 +3076,19 @@ function deleteCoreV1NamespacedService(_api::CoreV1Api, name::String, namespace: Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoreV1NamespacedService(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1NamespacedService(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoreV1NamespacedService(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1NamespacedService(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a ServiceAccount @@ -2182,7 +3102,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoreV1NamespacedServiceAccount(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoreV1NamespacedServiceAccount(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/api/v1/namespaces/{namespace}/serviceaccounts/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -2193,9 +3113,19 @@ function deleteCoreV1NamespacedServiceAccount(_api::CoreV1Api, name::String, nam Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoreV1NamespacedServiceAccount(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1NamespacedServiceAccount(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoreV1NamespacedServiceAccount(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1NamespacedServiceAccount(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a Node @@ -2208,7 +3138,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoreV1Node(_api::CoreV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoreV1Node(_api::CoreV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/api/v1/nodes/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -2218,9 +3148,19 @@ function deleteCoreV1Node(_api::CoreV1Api, name::String; pretty=nothing, body=no Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoreV1Node(_api::CoreV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1Node(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoreV1Node(_api::CoreV1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1Node(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a PersistentVolume @@ -2233,7 +3173,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteCoreV1PersistentVolume(_api::CoreV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteCoreV1PersistentVolume(_api::CoreV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/api/v1/persistentvolumes/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -2243,21 +3183,41 @@ function deleteCoreV1PersistentVolume(_api::CoreV1Api, name::String; pretty=noth Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteCoreV1PersistentVolume(_api::CoreV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1PersistentVolume(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteCoreV1PersistentVolume(_api::CoreV1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteCoreV1PersistentVolume(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getCoreV1APIResources(_api::CoreV1Api; _mediaType=nothing) +function _swaggerinternal_getCoreV1APIResources(_api::CoreV1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/api/v1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getCoreV1APIResources(_api::CoreV1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getCoreV1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getCoreV1APIResources(_api::CoreV1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getCoreV1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list objects of kind ComponentStatus @@ -2272,7 +3232,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoreV1ComponentStatusList """ -function listCoreV1ComponentStatus(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoreV1ComponentStatus(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1ComponentStatusList, "/api/v1/componentstatuses", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -2285,9 +3245,19 @@ function listCoreV1ComponentStatus(_api::CoreV1Api; allowWatchBookmarks=nothing, Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoreV1ComponentStatus(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1ComponentStatus(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoreV1ComponentStatus(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1ComponentStatus(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind ConfigMap @@ -2302,7 +3272,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoreV1ConfigMapList """ -function listCoreV1ConfigMapForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoreV1ConfigMapForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1ConfigMapList, "/api/v1/configmaps", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -2315,9 +3285,19 @@ function listCoreV1ConfigMapForAllNamespaces(_api::CoreV1Api; allowWatchBookmark Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoreV1ConfigMapForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1ConfigMapForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoreV1ConfigMapForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1ConfigMapForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Endpoints @@ -2332,7 +3312,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoreV1EndpointsList """ -function listCoreV1EndpointsForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoreV1EndpointsForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1EndpointsList, "/api/v1/endpoints", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -2345,9 +3325,19 @@ function listCoreV1EndpointsForAllNamespaces(_api::CoreV1Api; allowWatchBookmark Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoreV1EndpointsForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1EndpointsForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoreV1EndpointsForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1EndpointsForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Event @@ -2362,7 +3352,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoreV1EventList """ -function listCoreV1EventForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoreV1EventForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1EventList, "/api/v1/events", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -2375,9 +3365,19 @@ function listCoreV1EventForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=no Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoreV1EventForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1EventForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoreV1EventForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1EventForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind LimitRange @@ -2392,7 +3392,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoreV1LimitRangeList """ -function listCoreV1LimitRangeForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoreV1LimitRangeForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1LimitRangeList, "/api/v1/limitranges", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -2405,9 +3405,19 @@ function listCoreV1LimitRangeForAllNamespaces(_api::CoreV1Api; allowWatchBookmar Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoreV1LimitRangeForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1LimitRangeForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoreV1LimitRangeForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1LimitRangeForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Namespace @@ -2422,7 +3432,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoreV1NamespaceList """ -function listCoreV1Namespace(_api::CoreV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoreV1Namespace(_api::CoreV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1NamespaceList, "/api/v1/namespaces", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -2435,9 +3445,19 @@ function listCoreV1Namespace(_api::CoreV1Api; pretty=nothing, allowWatchBookmark Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoreV1Namespace(_api::CoreV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1Namespace(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoreV1Namespace(_api::CoreV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1Namespace(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind ConfigMap @@ -2453,7 +3473,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoreV1ConfigMapList """ -function listCoreV1NamespacedConfigMap(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoreV1NamespacedConfigMap(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1ConfigMapList, "/api/v1/namespaces/{namespace}/configmaps", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -2467,9 +3487,19 @@ function listCoreV1NamespacedConfigMap(_api::CoreV1Api, namespace::String; prett Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoreV1NamespacedConfigMap(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1NamespacedConfigMap(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoreV1NamespacedConfigMap(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1NamespacedConfigMap(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Endpoints @@ -2485,7 +3515,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoreV1EndpointsList """ -function listCoreV1NamespacedEndpoints(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoreV1NamespacedEndpoints(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1EndpointsList, "/api/v1/namespaces/{namespace}/endpoints", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -2499,9 +3529,19 @@ function listCoreV1NamespacedEndpoints(_api::CoreV1Api, namespace::String; prett Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoreV1NamespacedEndpoints(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1NamespacedEndpoints(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoreV1NamespacedEndpoints(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1NamespacedEndpoints(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Event @@ -2517,7 +3557,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoreV1EventList """ -function listCoreV1NamespacedEvent(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoreV1NamespacedEvent(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1EventList, "/api/v1/namespaces/{namespace}/events", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -2531,9 +3571,19 @@ function listCoreV1NamespacedEvent(_api::CoreV1Api, namespace::String; pretty=no Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoreV1NamespacedEvent(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1NamespacedEvent(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoreV1NamespacedEvent(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1NamespacedEvent(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind LimitRange @@ -2549,7 +3599,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoreV1LimitRangeList """ -function listCoreV1NamespacedLimitRange(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoreV1NamespacedLimitRange(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1LimitRangeList, "/api/v1/namespaces/{namespace}/limitranges", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -2563,9 +3613,19 @@ function listCoreV1NamespacedLimitRange(_api::CoreV1Api, namespace::String; pret Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoreV1NamespacedLimitRange(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1NamespacedLimitRange(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoreV1NamespacedLimitRange(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1NamespacedLimitRange(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind PersistentVolumeClaim @@ -2581,7 +3641,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoreV1PersistentVolumeClaimList """ -function listCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1PersistentVolumeClaimList, "/api/v1/namespaces/{namespace}/persistentvolumeclaims", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -2595,9 +3655,19 @@ function listCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, namespace::S Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1NamespacedPersistentVolumeClaim(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1NamespacedPersistentVolumeClaim(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Pod @@ -2613,7 +3683,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoreV1PodList """ -function listCoreV1NamespacedPod(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoreV1NamespacedPod(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1PodList, "/api/v1/namespaces/{namespace}/pods", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -2627,9 +3697,19 @@ function listCoreV1NamespacedPod(_api::CoreV1Api, namespace::String; pretty=noth Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoreV1NamespacedPod(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1NamespacedPod(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoreV1NamespacedPod(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1NamespacedPod(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind PodTemplate @@ -2645,7 +3725,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoreV1PodTemplateList """ -function listCoreV1NamespacedPodTemplate(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoreV1NamespacedPodTemplate(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1PodTemplateList, "/api/v1/namespaces/{namespace}/podtemplates", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -2659,9 +3739,19 @@ function listCoreV1NamespacedPodTemplate(_api::CoreV1Api, namespace::String; pre Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoreV1NamespacedPodTemplate(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1NamespacedPodTemplate(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoreV1NamespacedPodTemplate(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1NamespacedPodTemplate(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind ReplicationController @@ -2677,7 +3767,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoreV1ReplicationControllerList """ -function listCoreV1NamespacedReplicationController(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoreV1NamespacedReplicationController(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1ReplicationControllerList, "/api/v1/namespaces/{namespace}/replicationcontrollers", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -2691,9 +3781,19 @@ function listCoreV1NamespacedReplicationController(_api::CoreV1Api, namespace::S Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoreV1NamespacedReplicationController(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1NamespacedReplicationController(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoreV1NamespacedReplicationController(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1NamespacedReplicationController(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind ResourceQuota @@ -2709,7 +3809,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoreV1ResourceQuotaList """ -function listCoreV1NamespacedResourceQuota(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoreV1NamespacedResourceQuota(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1ResourceQuotaList, "/api/v1/namespaces/{namespace}/resourcequotas", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -2723,9 +3823,19 @@ function listCoreV1NamespacedResourceQuota(_api::CoreV1Api, namespace::String; p Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoreV1NamespacedResourceQuota(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1NamespacedResourceQuota(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoreV1NamespacedResourceQuota(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1NamespacedResourceQuota(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Secret @@ -2741,7 +3851,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoreV1SecretList """ -function listCoreV1NamespacedSecret(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoreV1NamespacedSecret(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1SecretList, "/api/v1/namespaces/{namespace}/secrets", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -2755,9 +3865,19 @@ function listCoreV1NamespacedSecret(_api::CoreV1Api, namespace::String; pretty=n Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoreV1NamespacedSecret(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1NamespacedSecret(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoreV1NamespacedSecret(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1NamespacedSecret(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Service @@ -2773,7 +3893,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoreV1ServiceList """ -function listCoreV1NamespacedService(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoreV1NamespacedService(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1ServiceList, "/api/v1/namespaces/{namespace}/services", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -2787,9 +3907,19 @@ function listCoreV1NamespacedService(_api::CoreV1Api, namespace::String; pretty= Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoreV1NamespacedService(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1NamespacedService(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoreV1NamespacedService(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1NamespacedService(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind ServiceAccount @@ -2805,7 +3935,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoreV1ServiceAccountList """ -function listCoreV1NamespacedServiceAccount(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoreV1NamespacedServiceAccount(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1ServiceAccountList, "/api/v1/namespaces/{namespace}/serviceaccounts", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -2819,9 +3949,19 @@ function listCoreV1NamespacedServiceAccount(_api::CoreV1Api, namespace::String; Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoreV1NamespacedServiceAccount(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1NamespacedServiceAccount(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoreV1NamespacedServiceAccount(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1NamespacedServiceAccount(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Node @@ -2836,7 +3976,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoreV1NodeList """ -function listCoreV1Node(_api::CoreV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoreV1Node(_api::CoreV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1NodeList, "/api/v1/nodes", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -2849,9 +3989,19 @@ function listCoreV1Node(_api::CoreV1Api; pretty=nothing, allowWatchBookmarks=not Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoreV1Node(_api::CoreV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1Node(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoreV1Node(_api::CoreV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1Node(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind PersistentVolume @@ -2866,7 +4016,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoreV1PersistentVolumeList """ -function listCoreV1PersistentVolume(_api::CoreV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoreV1PersistentVolume(_api::CoreV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1PersistentVolumeList, "/api/v1/persistentvolumes", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -2879,9 +4029,19 @@ function listCoreV1PersistentVolume(_api::CoreV1Api; pretty=nothing, allowWatchB Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoreV1PersistentVolume(_api::CoreV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1PersistentVolume(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoreV1PersistentVolume(_api::CoreV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1PersistentVolume(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind PersistentVolumeClaim @@ -2896,7 +4056,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoreV1PersistentVolumeClaimList """ -function listCoreV1PersistentVolumeClaimForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoreV1PersistentVolumeClaimForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1PersistentVolumeClaimList, "/api/v1/persistentvolumeclaims", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -2909,9 +4069,19 @@ function listCoreV1PersistentVolumeClaimForAllNamespaces(_api::CoreV1Api; allowW Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoreV1PersistentVolumeClaimForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1PersistentVolumeClaimForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoreV1PersistentVolumeClaimForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1PersistentVolumeClaimForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Pod @@ -2926,7 +4096,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoreV1PodList """ -function listCoreV1PodForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoreV1PodForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1PodList, "/api/v1/pods", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -2939,9 +4109,19 @@ function listCoreV1PodForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=noth Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoreV1PodForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1PodForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoreV1PodForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1PodForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind PodTemplate @@ -2956,7 +4136,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoreV1PodTemplateList """ -function listCoreV1PodTemplateForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoreV1PodTemplateForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1PodTemplateList, "/api/v1/podtemplates", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -2969,9 +4149,19 @@ function listCoreV1PodTemplateForAllNamespaces(_api::CoreV1Api; allowWatchBookma Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoreV1PodTemplateForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1PodTemplateForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoreV1PodTemplateForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1PodTemplateForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind ReplicationController @@ -2986,7 +4176,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoreV1ReplicationControllerList """ -function listCoreV1ReplicationControllerForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoreV1ReplicationControllerForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1ReplicationControllerList, "/api/v1/replicationcontrollers", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -2999,9 +4189,19 @@ function listCoreV1ReplicationControllerForAllNamespaces(_api::CoreV1Api; allowW Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoreV1ReplicationControllerForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1ReplicationControllerForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoreV1ReplicationControllerForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1ReplicationControllerForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind ResourceQuota @@ -3016,7 +4216,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoreV1ResourceQuotaList """ -function listCoreV1ResourceQuotaForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoreV1ResourceQuotaForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1ResourceQuotaList, "/api/v1/resourcequotas", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -3029,9 +4229,19 @@ function listCoreV1ResourceQuotaForAllNamespaces(_api::CoreV1Api; allowWatchBook Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoreV1ResourceQuotaForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1ResourceQuotaForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoreV1ResourceQuotaForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1ResourceQuotaForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Secret @@ -3046,7 +4256,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoreV1SecretList """ -function listCoreV1SecretForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoreV1SecretForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1SecretList, "/api/v1/secrets", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -3059,9 +4269,19 @@ function listCoreV1SecretForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=n Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoreV1SecretForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1SecretForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoreV1SecretForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1SecretForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind ServiceAccount @@ -3076,7 +4296,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoreV1ServiceAccountList """ -function listCoreV1ServiceAccountForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoreV1ServiceAccountForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1ServiceAccountList, "/api/v1/serviceaccounts", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -3089,9 +4309,19 @@ function listCoreV1ServiceAccountForAllNamespaces(_api::CoreV1Api; allowWatchBoo Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoreV1ServiceAccountForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1ServiceAccountForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoreV1ServiceAccountForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1ServiceAccountForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Service @@ -3106,7 +4336,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiCoreV1ServiceList """ -function listCoreV1ServiceForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listCoreV1ServiceForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1ServiceList, "/api/v1/services", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -3119,9 +4349,19 @@ function listCoreV1ServiceForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks= Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCoreV1ServiceForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1ServiceForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCoreV1ServiceForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCoreV1ServiceForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified Namespace @@ -3133,7 +4373,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiCoreV1Namespace """ -function patchCoreV1Namespace(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchCoreV1Namespace(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiCoreV1Namespace, "/api/v1/namespaces/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -3142,9 +4382,19 @@ function patchCoreV1Namespace(_api::CoreV1Api, name::String, body; pretty=nothin Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchCoreV1Namespace(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1Namespace(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchCoreV1Namespace(_api::CoreV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1Namespace(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified Namespace @@ -3156,7 +4406,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiCoreV1Namespace """ -function patchCoreV1NamespaceStatus(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchCoreV1NamespaceStatus(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiCoreV1Namespace, "/api/v1/namespaces/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -3165,9 +4415,19 @@ function patchCoreV1NamespaceStatus(_api::CoreV1Api, name::String, body; pretty= Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchCoreV1NamespaceStatus(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespaceStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchCoreV1NamespaceStatus(_api::CoreV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespaceStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified ConfigMap @@ -3180,7 +4440,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiCoreV1ConfigMap """ -function patchCoreV1NamespacedConfigMap(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchCoreV1NamespacedConfigMap(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiCoreV1ConfigMap, "/api/v1/namespaces/{namespace}/configmaps/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -3190,9 +4450,19 @@ function patchCoreV1NamespacedConfigMap(_api::CoreV1Api, name::String, namespace Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchCoreV1NamespacedConfigMap(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedConfigMap(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchCoreV1NamespacedConfigMap(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedConfigMap(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified Endpoints @@ -3205,7 +4475,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiCoreV1Endpoints """ -function patchCoreV1NamespacedEndpoints(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchCoreV1NamespacedEndpoints(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiCoreV1Endpoints, "/api/v1/namespaces/{namespace}/endpoints/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -3215,9 +4485,19 @@ function patchCoreV1NamespacedEndpoints(_api::CoreV1Api, name::String, namespace Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchCoreV1NamespacedEndpoints(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedEndpoints(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchCoreV1NamespacedEndpoints(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedEndpoints(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified Event @@ -3230,7 +4510,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiCoreV1Event """ -function patchCoreV1NamespacedEvent(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchCoreV1NamespacedEvent(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiCoreV1Event, "/api/v1/namespaces/{namespace}/events/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -3240,9 +4520,19 @@ function patchCoreV1NamespacedEvent(_api::CoreV1Api, name::String, namespace::St Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchCoreV1NamespacedEvent(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedEvent(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchCoreV1NamespacedEvent(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedEvent(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified LimitRange @@ -3255,7 +4545,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiCoreV1LimitRange """ -function patchCoreV1NamespacedLimitRange(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchCoreV1NamespacedLimitRange(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiCoreV1LimitRange, "/api/v1/namespaces/{namespace}/limitranges/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -3265,9 +4555,19 @@ function patchCoreV1NamespacedLimitRange(_api::CoreV1Api, name::String, namespac Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchCoreV1NamespacedLimitRange(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedLimitRange(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchCoreV1NamespacedLimitRange(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedLimitRange(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified PersistentVolumeClaim @@ -3280,7 +4580,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiCoreV1PersistentVolumeClaim """ -function patchCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiCoreV1PersistentVolumeClaim, "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -3290,9 +4590,19 @@ function patchCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, name::Strin Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedPersistentVolumeClaim(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedPersistentVolumeClaim(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified PersistentVolumeClaim @@ -3305,7 +4615,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiCoreV1PersistentVolumeClaim """ -function patchCoreV1NamespacedPersistentVolumeClaimStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchCoreV1NamespacedPersistentVolumeClaimStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiCoreV1PersistentVolumeClaim, "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -3315,9 +4625,19 @@ function patchCoreV1NamespacedPersistentVolumeClaimStatus(_api::CoreV1Api, name: Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchCoreV1NamespacedPersistentVolumeClaimStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedPersistentVolumeClaimStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchCoreV1NamespacedPersistentVolumeClaimStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedPersistentVolumeClaimStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified Pod @@ -3330,7 +4650,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiCoreV1Pod """ -function patchCoreV1NamespacedPod(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchCoreV1NamespacedPod(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiCoreV1Pod, "/api/v1/namespaces/{namespace}/pods/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -3340,9 +4660,19 @@ function patchCoreV1NamespacedPod(_api::CoreV1Api, name::String, namespace::Stri Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchCoreV1NamespacedPod(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedPod(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchCoreV1NamespacedPod(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedPod(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified Pod @@ -3355,7 +4685,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiCoreV1Pod """ -function patchCoreV1NamespacedPodStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchCoreV1NamespacedPodStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiCoreV1Pod, "/api/v1/namespaces/{namespace}/pods/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -3365,9 +4695,19 @@ function patchCoreV1NamespacedPodStatus(_api::CoreV1Api, name::String, namespace Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchCoreV1NamespacedPodStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedPodStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchCoreV1NamespacedPodStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedPodStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified PodTemplate @@ -3380,7 +4720,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiCoreV1PodTemplate """ -function patchCoreV1NamespacedPodTemplate(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchCoreV1NamespacedPodTemplate(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiCoreV1PodTemplate, "/api/v1/namespaces/{namespace}/podtemplates/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -3390,9 +4730,19 @@ function patchCoreV1NamespacedPodTemplate(_api::CoreV1Api, name::String, namespa Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchCoreV1NamespacedPodTemplate(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedPodTemplate(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchCoreV1NamespacedPodTemplate(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedPodTemplate(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified ReplicationController @@ -3405,7 +4755,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiCoreV1ReplicationController """ -function patchCoreV1NamespacedReplicationController(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchCoreV1NamespacedReplicationController(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiCoreV1ReplicationController, "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -3415,9 +4765,19 @@ function patchCoreV1NamespacedReplicationController(_api::CoreV1Api, name::Strin Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchCoreV1NamespacedReplicationController(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedReplicationController(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchCoreV1NamespacedReplicationController(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedReplicationController(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update scale of the specified ReplicationController @@ -3430,7 +4790,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiAutoscalingV1Scale """ -function patchCoreV1NamespacedReplicationControllerScale(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchCoreV1NamespacedReplicationControllerScale(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiAutoscalingV1Scale, "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -3440,9 +4800,19 @@ function patchCoreV1NamespacedReplicationControllerScale(_api::CoreV1Api, name:: Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchCoreV1NamespacedReplicationControllerScale(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedReplicationControllerScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchCoreV1NamespacedReplicationControllerScale(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedReplicationControllerScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified ReplicationController @@ -3455,7 +4825,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiCoreV1ReplicationController """ -function patchCoreV1NamespacedReplicationControllerStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchCoreV1NamespacedReplicationControllerStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiCoreV1ReplicationController, "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -3465,9 +4835,19 @@ function patchCoreV1NamespacedReplicationControllerStatus(_api::CoreV1Api, name: Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchCoreV1NamespacedReplicationControllerStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedReplicationControllerStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchCoreV1NamespacedReplicationControllerStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedReplicationControllerStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified ResourceQuota @@ -3480,7 +4860,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiCoreV1ResourceQuota """ -function patchCoreV1NamespacedResourceQuota(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchCoreV1NamespacedResourceQuota(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiCoreV1ResourceQuota, "/api/v1/namespaces/{namespace}/resourcequotas/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -3490,9 +4870,19 @@ function patchCoreV1NamespacedResourceQuota(_api::CoreV1Api, name::String, names Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchCoreV1NamespacedResourceQuota(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedResourceQuota(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchCoreV1NamespacedResourceQuota(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedResourceQuota(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified ResourceQuota @@ -3505,7 +4895,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiCoreV1ResourceQuota """ -function patchCoreV1NamespacedResourceQuotaStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchCoreV1NamespacedResourceQuotaStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiCoreV1ResourceQuota, "/api/v1/namespaces/{namespace}/resourcequotas/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -3515,9 +4905,19 @@ function patchCoreV1NamespacedResourceQuotaStatus(_api::CoreV1Api, name::String, Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchCoreV1NamespacedResourceQuotaStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedResourceQuotaStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchCoreV1NamespacedResourceQuotaStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedResourceQuotaStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified Secret @@ -3530,7 +4930,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiCoreV1Secret """ -function patchCoreV1NamespacedSecret(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchCoreV1NamespacedSecret(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiCoreV1Secret, "/api/v1/namespaces/{namespace}/secrets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -3540,9 +4940,19 @@ function patchCoreV1NamespacedSecret(_api::CoreV1Api, name::String, namespace::S Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchCoreV1NamespacedSecret(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedSecret(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchCoreV1NamespacedSecret(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedSecret(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified Service @@ -3555,7 +4965,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiCoreV1Service """ -function patchCoreV1NamespacedService(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchCoreV1NamespacedService(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiCoreV1Service, "/api/v1/namespaces/{namespace}/services/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -3565,9 +4975,19 @@ function patchCoreV1NamespacedService(_api::CoreV1Api, name::String, namespace:: Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchCoreV1NamespacedService(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedService(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchCoreV1NamespacedService(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedService(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified ServiceAccount @@ -3580,7 +5000,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiCoreV1ServiceAccount """ -function patchCoreV1NamespacedServiceAccount(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchCoreV1NamespacedServiceAccount(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiCoreV1ServiceAccount, "/api/v1/namespaces/{namespace}/serviceaccounts/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -3590,9 +5010,19 @@ function patchCoreV1NamespacedServiceAccount(_api::CoreV1Api, name::String, name Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchCoreV1NamespacedServiceAccount(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedServiceAccount(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchCoreV1NamespacedServiceAccount(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedServiceAccount(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified Service @@ -3605,7 +5035,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiCoreV1Service """ -function patchCoreV1NamespacedServiceStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchCoreV1NamespacedServiceStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiCoreV1Service, "/api/v1/namespaces/{namespace}/services/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -3615,9 +5045,19 @@ function patchCoreV1NamespacedServiceStatus(_api::CoreV1Api, name::String, names Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchCoreV1NamespacedServiceStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedServiceStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchCoreV1NamespacedServiceStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NamespacedServiceStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified Node @@ -3629,7 +5069,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiCoreV1Node """ -function patchCoreV1Node(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchCoreV1Node(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiCoreV1Node, "/api/v1/nodes/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -3638,9 +5078,19 @@ function patchCoreV1Node(_api::CoreV1Api, name::String, body; pretty=nothing, dr Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchCoreV1Node(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1Node(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchCoreV1Node(_api::CoreV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1Node(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified Node @@ -3652,7 +5102,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiCoreV1Node """ -function patchCoreV1NodeStatus(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchCoreV1NodeStatus(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiCoreV1Node, "/api/v1/nodes/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -3661,9 +5111,19 @@ function patchCoreV1NodeStatus(_api::CoreV1Api, name::String, body; pretty=nothi Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchCoreV1NodeStatus(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NodeStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchCoreV1NodeStatus(_api::CoreV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1NodeStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified PersistentVolume @@ -3675,7 +5135,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiCoreV1PersistentVolume """ -function patchCoreV1PersistentVolume(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchCoreV1PersistentVolume(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiCoreV1PersistentVolume, "/api/v1/persistentvolumes/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -3684,9 +5144,19 @@ function patchCoreV1PersistentVolume(_api::CoreV1Api, name::String, body; pretty Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchCoreV1PersistentVolume(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1PersistentVolume(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchCoreV1PersistentVolume(_api::CoreV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1PersistentVolume(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified PersistentVolume @@ -3698,7 +5168,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiCoreV1PersistentVolume """ -function patchCoreV1PersistentVolumeStatus(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchCoreV1PersistentVolumeStatus(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiCoreV1PersistentVolume, "/api/v1/persistentvolumes/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -3707,9 +5177,19 @@ function patchCoreV1PersistentVolumeStatus(_api::CoreV1Api, name::String, body; Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchCoreV1PersistentVolumeStatus(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1PersistentVolumeStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchCoreV1PersistentVolumeStatus(_api::CoreV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchCoreV1PersistentVolumeStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified ComponentStatus @@ -3717,15 +5197,25 @@ Param: name::String (required) Param: pretty::String Return: IoK8sApiCoreV1ComponentStatus """ -function readCoreV1ComponentStatus(_api::CoreV1Api, name::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readCoreV1ComponentStatus(_api::CoreV1Api, name::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1ComponentStatus, "/api/v1/componentstatuses/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCoreV1ComponentStatus(_api::CoreV1Api, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1ComponentStatus(_api, name; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCoreV1ComponentStatus(_api::CoreV1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1ComponentStatus(_api, name; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified Namespace @@ -3735,7 +5225,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiCoreV1Namespace """ -function readCoreV1Namespace(_api::CoreV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readCoreV1Namespace(_api::CoreV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1Namespace, "/api/v1/namespaces/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -3743,9 +5233,19 @@ function readCoreV1Namespace(_api::CoreV1Api, name::String; pretty=nothing, exac Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCoreV1Namespace(_api::CoreV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1Namespace(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCoreV1Namespace(_api::CoreV1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1Namespace(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified Namespace @@ -3753,15 +5253,25 @@ Param: name::String (required) Param: pretty::String Return: IoK8sApiCoreV1Namespace """ -function readCoreV1NamespaceStatus(_api::CoreV1Api, name::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readCoreV1NamespaceStatus(_api::CoreV1Api, name::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1Namespace, "/api/v1/namespaces/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCoreV1NamespaceStatus(_api::CoreV1Api, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespaceStatus(_api, name; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCoreV1NamespaceStatus(_api::CoreV1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespaceStatus(_api, name; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified ConfigMap @@ -3772,7 +5282,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiCoreV1ConfigMap """ -function readCoreV1NamespacedConfigMap(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readCoreV1NamespacedConfigMap(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1ConfigMap, "/api/v1/namespaces/{namespace}/configmaps/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -3781,9 +5291,19 @@ function readCoreV1NamespacedConfigMap(_api::CoreV1Api, name::String, namespace: Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCoreV1NamespacedConfigMap(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedConfigMap(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCoreV1NamespacedConfigMap(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedConfigMap(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified Endpoints @@ -3794,7 +5314,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiCoreV1Endpoints """ -function readCoreV1NamespacedEndpoints(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readCoreV1NamespacedEndpoints(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1Endpoints, "/api/v1/namespaces/{namespace}/endpoints/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -3803,9 +5323,19 @@ function readCoreV1NamespacedEndpoints(_api::CoreV1Api, name::String, namespace: Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCoreV1NamespacedEndpoints(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedEndpoints(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCoreV1NamespacedEndpoints(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedEndpoints(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified Event @@ -3816,7 +5346,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiCoreV1Event """ -function readCoreV1NamespacedEvent(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readCoreV1NamespacedEvent(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1Event, "/api/v1/namespaces/{namespace}/events/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -3825,9 +5355,19 @@ function readCoreV1NamespacedEvent(_api::CoreV1Api, name::String, namespace::Str Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCoreV1NamespacedEvent(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedEvent(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCoreV1NamespacedEvent(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedEvent(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified LimitRange @@ -3838,7 +5378,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiCoreV1LimitRange """ -function readCoreV1NamespacedLimitRange(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readCoreV1NamespacedLimitRange(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1LimitRange, "/api/v1/namespaces/{namespace}/limitranges/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -3847,9 +5387,19 @@ function readCoreV1NamespacedLimitRange(_api::CoreV1Api, name::String, namespace Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCoreV1NamespacedLimitRange(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedLimitRange(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCoreV1NamespacedLimitRange(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedLimitRange(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified PersistentVolumeClaim @@ -3860,7 +5410,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiCoreV1PersistentVolumeClaim """ -function readCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1PersistentVolumeClaim, "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -3869,9 +5419,19 @@ function readCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, name::String Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedPersistentVolumeClaim(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedPersistentVolumeClaim(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified PersistentVolumeClaim @@ -3880,16 +5440,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiCoreV1PersistentVolumeClaim """ -function readCoreV1NamespacedPersistentVolumeClaimStatus(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readCoreV1NamespacedPersistentVolumeClaimStatus(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1PersistentVolumeClaim, "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCoreV1NamespacedPersistentVolumeClaimStatus(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedPersistentVolumeClaimStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCoreV1NamespacedPersistentVolumeClaimStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedPersistentVolumeClaimStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified Pod @@ -3900,7 +5470,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiCoreV1Pod """ -function readCoreV1NamespacedPod(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readCoreV1NamespacedPod(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1Pod, "/api/v1/namespaces/{namespace}/pods/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -3909,9 +5479,19 @@ function readCoreV1NamespacedPod(_api::CoreV1Api, name::String, namespace::Strin Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCoreV1NamespacedPod(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedPod(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCoreV1NamespacedPod(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedPod(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read log of the specified Pod @@ -3928,7 +5508,7 @@ Param: tailLines::Int32 Param: timestamps::Bool Return: String """ -function readCoreV1NamespacedPodLog(_api::CoreV1Api, name::String, namespace::String; container=nothing, follow=nothing, insecureSkipTLSVerifyBackend=nothing, limitBytes=nothing, pretty=nothing, previous=nothing, sinceSeconds=nothing, tailLines=nothing, timestamps=nothing, _mediaType=nothing) +function _swaggerinternal_readCoreV1NamespacedPodLog(_api::CoreV1Api, name::String, namespace::String; container=nothing, follow=nothing, insecureSkipTLSVerifyBackend=nothing, limitBytes=nothing, pretty=nothing, previous=nothing, sinceSeconds=nothing, tailLines=nothing, timestamps=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", String, "/api/v1/namespaces/{namespace}/pods/{name}/log", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -3943,9 +5523,19 @@ function readCoreV1NamespacedPodLog(_api::CoreV1Api, name::String, namespace::St Swagger.set_param(_ctx.query, "timestamps", timestamps) # type Bool Swagger.set_header_accept(_ctx, ["text/plain", "application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCoreV1NamespacedPodLog(_api::CoreV1Api, name::String, namespace::String; container=nothing, follow=nothing, insecureSkipTLSVerifyBackend=nothing, limitBytes=nothing, pretty=nothing, previous=nothing, sinceSeconds=nothing, tailLines=nothing, timestamps=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedPodLog(_api, name, namespace; container=container, follow=follow, insecureSkipTLSVerifyBackend=insecureSkipTLSVerifyBackend, limitBytes=limitBytes, pretty=pretty, previous=previous, sinceSeconds=sinceSeconds, tailLines=tailLines, timestamps=timestamps, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCoreV1NamespacedPodLog(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; container=nothing, follow=nothing, insecureSkipTLSVerifyBackend=nothing, limitBytes=nothing, pretty=nothing, previous=nothing, sinceSeconds=nothing, tailLines=nothing, timestamps=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedPodLog(_api, name, namespace; container=container, follow=follow, insecureSkipTLSVerifyBackend=insecureSkipTLSVerifyBackend, limitBytes=limitBytes, pretty=pretty, previous=previous, sinceSeconds=sinceSeconds, tailLines=tailLines, timestamps=timestamps, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified Pod @@ -3954,16 +5544,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiCoreV1Pod """ -function readCoreV1NamespacedPodStatus(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readCoreV1NamespacedPodStatus(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1Pod, "/api/v1/namespaces/{namespace}/pods/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCoreV1NamespacedPodStatus(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedPodStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCoreV1NamespacedPodStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedPodStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified PodTemplate @@ -3974,7 +5574,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiCoreV1PodTemplate """ -function readCoreV1NamespacedPodTemplate(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readCoreV1NamespacedPodTemplate(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1PodTemplate, "/api/v1/namespaces/{namespace}/podtemplates/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -3983,9 +5583,19 @@ function readCoreV1NamespacedPodTemplate(_api::CoreV1Api, name::String, namespac Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCoreV1NamespacedPodTemplate(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedPodTemplate(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCoreV1NamespacedPodTemplate(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedPodTemplate(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified ReplicationController @@ -3996,7 +5606,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiCoreV1ReplicationController """ -function readCoreV1NamespacedReplicationController(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readCoreV1NamespacedReplicationController(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1ReplicationController, "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -4005,9 +5615,19 @@ function readCoreV1NamespacedReplicationController(_api::CoreV1Api, name::String Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCoreV1NamespacedReplicationController(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedReplicationController(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCoreV1NamespacedReplicationController(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedReplicationController(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read scale of the specified ReplicationController @@ -4016,16 +5636,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiAutoscalingV1Scale """ -function readCoreV1NamespacedReplicationControllerScale(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readCoreV1NamespacedReplicationControllerScale(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiAutoscalingV1Scale, "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCoreV1NamespacedReplicationControllerScale(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedReplicationControllerScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCoreV1NamespacedReplicationControllerScale(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedReplicationControllerScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified ReplicationController @@ -4034,16 +5664,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiCoreV1ReplicationController """ -function readCoreV1NamespacedReplicationControllerStatus(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readCoreV1NamespacedReplicationControllerStatus(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1ReplicationController, "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCoreV1NamespacedReplicationControllerStatus(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedReplicationControllerStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCoreV1NamespacedReplicationControllerStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedReplicationControllerStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified ResourceQuota @@ -4054,7 +5694,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiCoreV1ResourceQuota """ -function readCoreV1NamespacedResourceQuota(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readCoreV1NamespacedResourceQuota(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1ResourceQuota, "/api/v1/namespaces/{namespace}/resourcequotas/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -4063,9 +5703,19 @@ function readCoreV1NamespacedResourceQuota(_api::CoreV1Api, name::String, namesp Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCoreV1NamespacedResourceQuota(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedResourceQuota(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCoreV1NamespacedResourceQuota(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedResourceQuota(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified ResourceQuota @@ -4074,16 +5724,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiCoreV1ResourceQuota """ -function readCoreV1NamespacedResourceQuotaStatus(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readCoreV1NamespacedResourceQuotaStatus(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1ResourceQuota, "/api/v1/namespaces/{namespace}/resourcequotas/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCoreV1NamespacedResourceQuotaStatus(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedResourceQuotaStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCoreV1NamespacedResourceQuotaStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedResourceQuotaStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified Secret @@ -4094,7 +5754,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiCoreV1Secret """ -function readCoreV1NamespacedSecret(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readCoreV1NamespacedSecret(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1Secret, "/api/v1/namespaces/{namespace}/secrets/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -4103,9 +5763,19 @@ function readCoreV1NamespacedSecret(_api::CoreV1Api, name::String, namespace::St Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCoreV1NamespacedSecret(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedSecret(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCoreV1NamespacedSecret(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedSecret(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified Service @@ -4116,7 +5786,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiCoreV1Service """ -function readCoreV1NamespacedService(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readCoreV1NamespacedService(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1Service, "/api/v1/namespaces/{namespace}/services/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -4125,9 +5795,19 @@ function readCoreV1NamespacedService(_api::CoreV1Api, name::String, namespace::S Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCoreV1NamespacedService(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedService(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCoreV1NamespacedService(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedService(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified ServiceAccount @@ -4138,7 +5818,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiCoreV1ServiceAccount """ -function readCoreV1NamespacedServiceAccount(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readCoreV1NamespacedServiceAccount(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1ServiceAccount, "/api/v1/namespaces/{namespace}/serviceaccounts/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -4147,9 +5827,19 @@ function readCoreV1NamespacedServiceAccount(_api::CoreV1Api, name::String, names Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCoreV1NamespacedServiceAccount(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedServiceAccount(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCoreV1NamespacedServiceAccount(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedServiceAccount(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified Service @@ -4158,16 +5848,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiCoreV1Service """ -function readCoreV1NamespacedServiceStatus(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readCoreV1NamespacedServiceStatus(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1Service, "/api/v1/namespaces/{namespace}/services/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCoreV1NamespacedServiceStatus(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedServiceStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCoreV1NamespacedServiceStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NamespacedServiceStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified Node @@ -4177,7 +5877,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiCoreV1Node """ -function readCoreV1Node(_api::CoreV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readCoreV1Node(_api::CoreV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1Node, "/api/v1/nodes/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -4185,9 +5885,19 @@ function readCoreV1Node(_api::CoreV1Api, name::String; pretty=nothing, exact=not Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCoreV1Node(_api::CoreV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1Node(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCoreV1Node(_api::CoreV1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1Node(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified Node @@ -4195,15 +5905,25 @@ Param: name::String (required) Param: pretty::String Return: IoK8sApiCoreV1Node """ -function readCoreV1NodeStatus(_api::CoreV1Api, name::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readCoreV1NodeStatus(_api::CoreV1Api, name::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1Node, "/api/v1/nodes/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCoreV1NodeStatus(_api::CoreV1Api, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NodeStatus(_api, name; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCoreV1NodeStatus(_api::CoreV1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1NodeStatus(_api, name; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified PersistentVolume @@ -4213,7 +5933,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiCoreV1PersistentVolume """ -function readCoreV1PersistentVolume(_api::CoreV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readCoreV1PersistentVolume(_api::CoreV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1PersistentVolume, "/api/v1/persistentvolumes/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -4221,9 +5941,19 @@ function readCoreV1PersistentVolume(_api::CoreV1Api, name::String; pretty=nothin Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCoreV1PersistentVolume(_api::CoreV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1PersistentVolume(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCoreV1PersistentVolume(_api::CoreV1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1PersistentVolume(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified PersistentVolume @@ -4231,15 +5961,25 @@ Param: name::String (required) Param: pretty::String Return: IoK8sApiCoreV1PersistentVolume """ -function readCoreV1PersistentVolumeStatus(_api::CoreV1Api, name::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readCoreV1PersistentVolumeStatus(_api::CoreV1Api, name::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCoreV1PersistentVolume, "/api/v1/persistentvolumes/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readCoreV1PersistentVolumeStatus(_api::CoreV1Api, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1PersistentVolumeStatus(_api, name; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readCoreV1PersistentVolumeStatus(_api::CoreV1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readCoreV1PersistentVolumeStatus(_api, name; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified Namespace @@ -4250,7 +5990,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1Namespace """ -function replaceCoreV1Namespace(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCoreV1Namespace(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiCoreV1Namespace, "/api/v1/namespaces/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -4258,9 +5998,19 @@ function replaceCoreV1Namespace(_api::CoreV1Api, name::String, body; pretty=noth Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCoreV1Namespace(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1Namespace(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCoreV1Namespace(_api::CoreV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1Namespace(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace finalize of the specified Namespace @@ -4271,7 +6021,7 @@ Param: fieldManager::String Param: pretty::String Return: IoK8sApiCoreV1Namespace """ -function replaceCoreV1NamespaceFinalize(_api::CoreV1Api, name::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCoreV1NamespaceFinalize(_api::CoreV1Api, name::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiCoreV1Namespace, "/api/v1/namespaces/{name}/finalize", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String @@ -4279,9 +6029,19 @@ function replaceCoreV1NamespaceFinalize(_api::CoreV1Api, name::String, body; dry Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCoreV1NamespaceFinalize(_api::CoreV1Api, name::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespaceFinalize(_api, name, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCoreV1NamespaceFinalize(_api::CoreV1Api, response_stream::Channel, name::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespaceFinalize(_api, name, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified Namespace @@ -4292,7 +6052,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1Namespace """ -function replaceCoreV1NamespaceStatus(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCoreV1NamespaceStatus(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiCoreV1Namespace, "/api/v1/namespaces/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -4300,9 +6060,19 @@ function replaceCoreV1NamespaceStatus(_api::CoreV1Api, name::String, body; prett Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCoreV1NamespaceStatus(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespaceStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCoreV1NamespaceStatus(_api::CoreV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespaceStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified ConfigMap @@ -4314,7 +6084,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1ConfigMap """ -function replaceCoreV1NamespacedConfigMap(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCoreV1NamespacedConfigMap(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiCoreV1ConfigMap, "/api/v1/namespaces/{namespace}/configmaps/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -4323,9 +6093,19 @@ function replaceCoreV1NamespacedConfigMap(_api::CoreV1Api, name::String, namespa Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCoreV1NamespacedConfigMap(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedConfigMap(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCoreV1NamespacedConfigMap(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedConfigMap(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified Endpoints @@ -4337,7 +6117,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1Endpoints """ -function replaceCoreV1NamespacedEndpoints(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCoreV1NamespacedEndpoints(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiCoreV1Endpoints, "/api/v1/namespaces/{namespace}/endpoints/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -4346,9 +6126,19 @@ function replaceCoreV1NamespacedEndpoints(_api::CoreV1Api, name::String, namespa Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCoreV1NamespacedEndpoints(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedEndpoints(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCoreV1NamespacedEndpoints(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedEndpoints(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified Event @@ -4360,7 +6150,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1Event """ -function replaceCoreV1NamespacedEvent(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCoreV1NamespacedEvent(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiCoreV1Event, "/api/v1/namespaces/{namespace}/events/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -4369,9 +6159,19 @@ function replaceCoreV1NamespacedEvent(_api::CoreV1Api, name::String, namespace:: Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCoreV1NamespacedEvent(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedEvent(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCoreV1NamespacedEvent(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedEvent(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified LimitRange @@ -4383,7 +6183,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1LimitRange """ -function replaceCoreV1NamespacedLimitRange(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCoreV1NamespacedLimitRange(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiCoreV1LimitRange, "/api/v1/namespaces/{namespace}/limitranges/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -4392,9 +6192,19 @@ function replaceCoreV1NamespacedLimitRange(_api::CoreV1Api, name::String, namesp Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCoreV1NamespacedLimitRange(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedLimitRange(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCoreV1NamespacedLimitRange(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedLimitRange(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified PersistentVolumeClaim @@ -4406,7 +6216,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1PersistentVolumeClaim """ -function replaceCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiCoreV1PersistentVolumeClaim, "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -4415,9 +6225,19 @@ function replaceCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, name::Str Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedPersistentVolumeClaim(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedPersistentVolumeClaim(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified PersistentVolumeClaim @@ -4429,7 +6249,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1PersistentVolumeClaim """ -function replaceCoreV1NamespacedPersistentVolumeClaimStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCoreV1NamespacedPersistentVolumeClaimStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiCoreV1PersistentVolumeClaim, "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -4438,9 +6258,19 @@ function replaceCoreV1NamespacedPersistentVolumeClaimStatus(_api::CoreV1Api, nam Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCoreV1NamespacedPersistentVolumeClaimStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedPersistentVolumeClaimStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCoreV1NamespacedPersistentVolumeClaimStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedPersistentVolumeClaimStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified Pod @@ -4452,7 +6282,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1Pod """ -function replaceCoreV1NamespacedPod(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCoreV1NamespacedPod(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiCoreV1Pod, "/api/v1/namespaces/{namespace}/pods/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -4461,9 +6291,19 @@ function replaceCoreV1NamespacedPod(_api::CoreV1Api, name::String, namespace::St Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCoreV1NamespacedPod(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedPod(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCoreV1NamespacedPod(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedPod(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified Pod @@ -4475,7 +6315,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1Pod """ -function replaceCoreV1NamespacedPodStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCoreV1NamespacedPodStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiCoreV1Pod, "/api/v1/namespaces/{namespace}/pods/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -4484,9 +6324,19 @@ function replaceCoreV1NamespacedPodStatus(_api::CoreV1Api, name::String, namespa Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCoreV1NamespacedPodStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedPodStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCoreV1NamespacedPodStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedPodStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified PodTemplate @@ -4498,7 +6348,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1PodTemplate """ -function replaceCoreV1NamespacedPodTemplate(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCoreV1NamespacedPodTemplate(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiCoreV1PodTemplate, "/api/v1/namespaces/{namespace}/podtemplates/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -4507,9 +6357,19 @@ function replaceCoreV1NamespacedPodTemplate(_api::CoreV1Api, name::String, names Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCoreV1NamespacedPodTemplate(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedPodTemplate(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCoreV1NamespacedPodTemplate(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedPodTemplate(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified ReplicationController @@ -4521,7 +6381,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1ReplicationController """ -function replaceCoreV1NamespacedReplicationController(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCoreV1NamespacedReplicationController(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiCoreV1ReplicationController, "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -4530,9 +6390,19 @@ function replaceCoreV1NamespacedReplicationController(_api::CoreV1Api, name::Str Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCoreV1NamespacedReplicationController(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedReplicationController(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCoreV1NamespacedReplicationController(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedReplicationController(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace scale of the specified ReplicationController @@ -4544,7 +6414,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiAutoscalingV1Scale """ -function replaceCoreV1NamespacedReplicationControllerScale(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCoreV1NamespacedReplicationControllerScale(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiAutoscalingV1Scale, "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -4553,9 +6423,19 @@ function replaceCoreV1NamespacedReplicationControllerScale(_api::CoreV1Api, name Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCoreV1NamespacedReplicationControllerScale(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedReplicationControllerScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCoreV1NamespacedReplicationControllerScale(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedReplicationControllerScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified ReplicationController @@ -4567,7 +6447,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1ReplicationController """ -function replaceCoreV1NamespacedReplicationControllerStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCoreV1NamespacedReplicationControllerStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiCoreV1ReplicationController, "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -4576,9 +6456,19 @@ function replaceCoreV1NamespacedReplicationControllerStatus(_api::CoreV1Api, nam Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCoreV1NamespacedReplicationControllerStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedReplicationControllerStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCoreV1NamespacedReplicationControllerStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedReplicationControllerStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified ResourceQuota @@ -4590,7 +6480,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1ResourceQuota """ -function replaceCoreV1NamespacedResourceQuota(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCoreV1NamespacedResourceQuota(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiCoreV1ResourceQuota, "/api/v1/namespaces/{namespace}/resourcequotas/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -4599,9 +6489,19 @@ function replaceCoreV1NamespacedResourceQuota(_api::CoreV1Api, name::String, nam Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCoreV1NamespacedResourceQuota(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedResourceQuota(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCoreV1NamespacedResourceQuota(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedResourceQuota(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified ResourceQuota @@ -4613,7 +6513,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1ResourceQuota """ -function replaceCoreV1NamespacedResourceQuotaStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCoreV1NamespacedResourceQuotaStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiCoreV1ResourceQuota, "/api/v1/namespaces/{namespace}/resourcequotas/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -4622,9 +6522,19 @@ function replaceCoreV1NamespacedResourceQuotaStatus(_api::CoreV1Api, name::Strin Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCoreV1NamespacedResourceQuotaStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedResourceQuotaStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCoreV1NamespacedResourceQuotaStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedResourceQuotaStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified Secret @@ -4636,7 +6546,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1Secret """ -function replaceCoreV1NamespacedSecret(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCoreV1NamespacedSecret(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiCoreV1Secret, "/api/v1/namespaces/{namespace}/secrets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -4645,9 +6555,19 @@ function replaceCoreV1NamespacedSecret(_api::CoreV1Api, name::String, namespace: Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCoreV1NamespacedSecret(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedSecret(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCoreV1NamespacedSecret(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedSecret(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified Service @@ -4659,7 +6579,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1Service """ -function replaceCoreV1NamespacedService(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCoreV1NamespacedService(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiCoreV1Service, "/api/v1/namespaces/{namespace}/services/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -4668,9 +6588,19 @@ function replaceCoreV1NamespacedService(_api::CoreV1Api, name::String, namespace Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCoreV1NamespacedService(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedService(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCoreV1NamespacedService(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedService(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified ServiceAccount @@ -4682,7 +6612,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1ServiceAccount """ -function replaceCoreV1NamespacedServiceAccount(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCoreV1NamespacedServiceAccount(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiCoreV1ServiceAccount, "/api/v1/namespaces/{namespace}/serviceaccounts/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -4691,9 +6621,19 @@ function replaceCoreV1NamespacedServiceAccount(_api::CoreV1Api, name::String, na Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCoreV1NamespacedServiceAccount(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedServiceAccount(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCoreV1NamespacedServiceAccount(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedServiceAccount(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified Service @@ -4705,7 +6645,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1Service """ -function replaceCoreV1NamespacedServiceStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCoreV1NamespacedServiceStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiCoreV1Service, "/api/v1/namespaces/{namespace}/services/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -4714,9 +6654,19 @@ function replaceCoreV1NamespacedServiceStatus(_api::CoreV1Api, name::String, nam Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCoreV1NamespacedServiceStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedServiceStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCoreV1NamespacedServiceStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NamespacedServiceStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified Node @@ -4727,7 +6677,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1Node """ -function replaceCoreV1Node(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCoreV1Node(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiCoreV1Node, "/api/v1/nodes/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -4735,9 +6685,19 @@ function replaceCoreV1Node(_api::CoreV1Api, name::String, body; pretty=nothing, Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCoreV1Node(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1Node(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCoreV1Node(_api::CoreV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1Node(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified Node @@ -4748,7 +6708,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1Node """ -function replaceCoreV1NodeStatus(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCoreV1NodeStatus(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiCoreV1Node, "/api/v1/nodes/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -4756,9 +6716,19 @@ function replaceCoreV1NodeStatus(_api::CoreV1Api, name::String, body; pretty=not Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCoreV1NodeStatus(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NodeStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCoreV1NodeStatus(_api::CoreV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1NodeStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified PersistentVolume @@ -4769,7 +6739,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1PersistentVolume """ -function replaceCoreV1PersistentVolume(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCoreV1PersistentVolume(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiCoreV1PersistentVolume, "/api/v1/persistentvolumes/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -4777,9 +6747,19 @@ function replaceCoreV1PersistentVolume(_api::CoreV1Api, name::String, body; pret Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCoreV1PersistentVolume(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1PersistentVolume(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCoreV1PersistentVolume(_api::CoreV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1PersistentVolume(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified PersistentVolume @@ -4790,7 +6770,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiCoreV1PersistentVolume """ -function replaceCoreV1PersistentVolumeStatus(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceCoreV1PersistentVolumeStatus(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiCoreV1PersistentVolume, "/api/v1/persistentvolumes/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -4798,9 +6778,19 @@ function replaceCoreV1PersistentVolumeStatus(_api::CoreV1Api, name::String, body Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceCoreV1PersistentVolumeStatus(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1PersistentVolumeStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceCoreV1PersistentVolumeStatus(_api::CoreV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceCoreV1PersistentVolumeStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of ConfigMap. deprecated: use the 'watch' parameter with a list operation instead. @@ -4815,7 +6805,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1ConfigMapListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1ConfigMapListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/configmaps", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -4828,9 +6818,19 @@ function watchCoreV1ConfigMapListForAllNamespaces(_api::CoreV1Api; allowWatchBoo Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1ConfigMapListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1ConfigMapListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1ConfigMapListForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1ConfigMapListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Endpoints. deprecated: use the 'watch' parameter with a list operation instead. @@ -4845,7 +6845,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1EndpointsListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1EndpointsListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/endpoints", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -4858,9 +6858,19 @@ function watchCoreV1EndpointsListForAllNamespaces(_api::CoreV1Api; allowWatchBoo Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1EndpointsListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1EndpointsListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1EndpointsListForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1EndpointsListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead. @@ -4875,7 +6885,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1EventListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1EventListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/events", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -4888,9 +6898,19 @@ function watchCoreV1EventListForAllNamespaces(_api::CoreV1Api; allowWatchBookmar Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1EventListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1EventListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1EventListForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1EventListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of LimitRange. deprecated: use the 'watch' parameter with a list operation instead. @@ -4905,7 +6925,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1LimitRangeListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1LimitRangeListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/limitranges", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -4918,9 +6938,19 @@ function watchCoreV1LimitRangeListForAllNamespaces(_api::CoreV1Api; allowWatchBo Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1LimitRangeListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1LimitRangeListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1LimitRangeListForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1LimitRangeListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -4936,7 +6966,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1Namespace(_api::CoreV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1Namespace(_api::CoreV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/namespaces/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -4950,9 +6980,19 @@ function watchCoreV1Namespace(_api::CoreV1Api, name::String; allowWatchBookmarks Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1Namespace(_api::CoreV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1Namespace(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1Namespace(_api::CoreV1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1Namespace(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Namespace. deprecated: use the 'watch' parameter with a list operation instead. @@ -4967,7 +7007,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1NamespaceList(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1NamespaceList(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/namespaces", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -4980,9 +7020,19 @@ function watchCoreV1NamespaceList(_api::CoreV1Api; allowWatchBookmarks=nothing, Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1NamespaceList(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespaceList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1NamespaceList(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespaceList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -4999,7 +7049,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1NamespacedConfigMap(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1NamespacedConfigMap(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/namespaces/{namespace}/configmaps/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -5014,9 +7064,19 @@ function watchCoreV1NamespacedConfigMap(_api::CoreV1Api, name::String, namespace Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1NamespacedConfigMap(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedConfigMap(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1NamespacedConfigMap(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedConfigMap(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of ConfigMap. deprecated: use the 'watch' parameter with a list operation instead. @@ -5032,7 +7092,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1NamespacedConfigMapList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1NamespacedConfigMapList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/namespaces/{namespace}/configmaps", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -5046,9 +7106,19 @@ function watchCoreV1NamespacedConfigMapList(_api::CoreV1Api, namespace::String; Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1NamespacedConfigMapList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedConfigMapList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1NamespacedConfigMapList(_api::CoreV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedConfigMapList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -5065,7 +7135,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1NamespacedEndpoints(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1NamespacedEndpoints(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/namespaces/{namespace}/endpoints/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -5080,9 +7150,19 @@ function watchCoreV1NamespacedEndpoints(_api::CoreV1Api, name::String, namespace Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1NamespacedEndpoints(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedEndpoints(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1NamespacedEndpoints(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedEndpoints(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Endpoints. deprecated: use the 'watch' parameter with a list operation instead. @@ -5098,7 +7178,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1NamespacedEndpointsList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1NamespacedEndpointsList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/namespaces/{namespace}/endpoints", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -5112,9 +7192,19 @@ function watchCoreV1NamespacedEndpointsList(_api::CoreV1Api, namespace::String; Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1NamespacedEndpointsList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedEndpointsList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1NamespacedEndpointsList(_api::CoreV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedEndpointsList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -5131,7 +7221,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1NamespacedEvent(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1NamespacedEvent(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/namespaces/{namespace}/events/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -5146,9 +7236,19 @@ function watchCoreV1NamespacedEvent(_api::CoreV1Api, name::String, namespace::St Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1NamespacedEvent(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedEvent(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1NamespacedEvent(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedEvent(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead. @@ -5164,7 +7264,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1NamespacedEventList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1NamespacedEventList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/namespaces/{namespace}/events", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -5178,9 +7278,19 @@ function watchCoreV1NamespacedEventList(_api::CoreV1Api, namespace::String; allo Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1NamespacedEventList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedEventList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1NamespacedEventList(_api::CoreV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedEventList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -5197,7 +7307,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1NamespacedLimitRange(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1NamespacedLimitRange(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/namespaces/{namespace}/limitranges/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -5212,9 +7322,19 @@ function watchCoreV1NamespacedLimitRange(_api::CoreV1Api, name::String, namespac Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1NamespacedLimitRange(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedLimitRange(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1NamespacedLimitRange(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedLimitRange(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of LimitRange. deprecated: use the 'watch' parameter with a list operation instead. @@ -5230,7 +7350,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1NamespacedLimitRangeList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1NamespacedLimitRangeList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/namespaces/{namespace}/limitranges", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -5244,9 +7364,19 @@ function watchCoreV1NamespacedLimitRangeList(_api::CoreV1Api, namespace::String; Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1NamespacedLimitRangeList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedLimitRangeList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1NamespacedLimitRangeList(_api::CoreV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedLimitRangeList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -5263,7 +7393,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/namespaces/{namespace}/persistentvolumeclaims/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -5278,9 +7408,19 @@ function watchCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, name::Strin Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedPersistentVolumeClaim(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1NamespacedPersistentVolumeClaim(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedPersistentVolumeClaim(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of PersistentVolumeClaim. deprecated: use the 'watch' parameter with a list operation instead. @@ -5296,7 +7436,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1NamespacedPersistentVolumeClaimList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1NamespacedPersistentVolumeClaimList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/namespaces/{namespace}/persistentvolumeclaims", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -5310,9 +7450,19 @@ function watchCoreV1NamespacedPersistentVolumeClaimList(_api::CoreV1Api, namespa Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1NamespacedPersistentVolumeClaimList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedPersistentVolumeClaimList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1NamespacedPersistentVolumeClaimList(_api::CoreV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedPersistentVolumeClaimList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -5329,7 +7479,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1NamespacedPod(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1NamespacedPod(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/namespaces/{namespace}/pods/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -5344,9 +7494,19 @@ function watchCoreV1NamespacedPod(_api::CoreV1Api, name::String, namespace::Stri Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1NamespacedPod(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedPod(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1NamespacedPod(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedPod(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Pod. deprecated: use the 'watch' parameter with a list operation instead. @@ -5362,7 +7522,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1NamespacedPodList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1NamespacedPodList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/namespaces/{namespace}/pods", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -5376,9 +7536,19 @@ function watchCoreV1NamespacedPodList(_api::CoreV1Api, namespace::String; allowW Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1NamespacedPodList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedPodList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1NamespacedPodList(_api::CoreV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedPodList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -5395,7 +7565,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1NamespacedPodTemplate(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1NamespacedPodTemplate(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/namespaces/{namespace}/podtemplates/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -5410,9 +7580,19 @@ function watchCoreV1NamespacedPodTemplate(_api::CoreV1Api, name::String, namespa Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1NamespacedPodTemplate(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedPodTemplate(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1NamespacedPodTemplate(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedPodTemplate(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of PodTemplate. deprecated: use the 'watch' parameter with a list operation instead. @@ -5428,7 +7608,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1NamespacedPodTemplateList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1NamespacedPodTemplateList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/namespaces/{namespace}/podtemplates", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -5442,9 +7622,19 @@ function watchCoreV1NamespacedPodTemplateList(_api::CoreV1Api, namespace::String Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1NamespacedPodTemplateList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedPodTemplateList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1NamespacedPodTemplateList(_api::CoreV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedPodTemplateList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -5461,7 +7651,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1NamespacedReplicationController(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1NamespacedReplicationController(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/namespaces/{namespace}/replicationcontrollers/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -5476,9 +7666,19 @@ function watchCoreV1NamespacedReplicationController(_api::CoreV1Api, name::Strin Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1NamespacedReplicationController(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedReplicationController(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1NamespacedReplicationController(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedReplicationController(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of ReplicationController. deprecated: use the 'watch' parameter with a list operation instead. @@ -5494,7 +7694,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1NamespacedReplicationControllerList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1NamespacedReplicationControllerList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/namespaces/{namespace}/replicationcontrollers", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -5508,9 +7708,19 @@ function watchCoreV1NamespacedReplicationControllerList(_api::CoreV1Api, namespa Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1NamespacedReplicationControllerList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedReplicationControllerList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1NamespacedReplicationControllerList(_api::CoreV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedReplicationControllerList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -5527,7 +7737,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1NamespacedResourceQuota(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1NamespacedResourceQuota(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/namespaces/{namespace}/resourcequotas/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -5542,9 +7752,19 @@ function watchCoreV1NamespacedResourceQuota(_api::CoreV1Api, name::String, names Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1NamespacedResourceQuota(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedResourceQuota(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1NamespacedResourceQuota(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedResourceQuota(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of ResourceQuota. deprecated: use the 'watch' parameter with a list operation instead. @@ -5560,7 +7780,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1NamespacedResourceQuotaList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1NamespacedResourceQuotaList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/namespaces/{namespace}/resourcequotas", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -5574,9 +7794,19 @@ function watchCoreV1NamespacedResourceQuotaList(_api::CoreV1Api, namespace::Stri Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1NamespacedResourceQuotaList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedResourceQuotaList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1NamespacedResourceQuotaList(_api::CoreV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedResourceQuotaList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -5593,7 +7823,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1NamespacedSecret(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1NamespacedSecret(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/namespaces/{namespace}/secrets/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -5608,9 +7838,19 @@ function watchCoreV1NamespacedSecret(_api::CoreV1Api, name::String, namespace::S Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1NamespacedSecret(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedSecret(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1NamespacedSecret(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedSecret(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Secret. deprecated: use the 'watch' parameter with a list operation instead. @@ -5626,7 +7866,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1NamespacedSecretList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1NamespacedSecretList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/namespaces/{namespace}/secrets", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -5640,9 +7880,19 @@ function watchCoreV1NamespacedSecretList(_api::CoreV1Api, namespace::String; all Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1NamespacedSecretList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedSecretList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1NamespacedSecretList(_api::CoreV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedSecretList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -5659,7 +7909,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1NamespacedService(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1NamespacedService(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/namespaces/{namespace}/services/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -5674,9 +7924,19 @@ function watchCoreV1NamespacedService(_api::CoreV1Api, name::String, namespace:: Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1NamespacedService(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedService(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1NamespacedService(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedService(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -5693,7 +7953,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1NamespacedServiceAccount(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1NamespacedServiceAccount(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/namespaces/{namespace}/serviceaccounts/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -5708,9 +7968,19 @@ function watchCoreV1NamespacedServiceAccount(_api::CoreV1Api, name::String, name Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1NamespacedServiceAccount(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedServiceAccount(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1NamespacedServiceAccount(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedServiceAccount(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of ServiceAccount. deprecated: use the 'watch' parameter with a list operation instead. @@ -5726,7 +7996,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1NamespacedServiceAccountList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1NamespacedServiceAccountList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/namespaces/{namespace}/serviceaccounts", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -5740,9 +8010,19 @@ function watchCoreV1NamespacedServiceAccountList(_api::CoreV1Api, namespace::Str Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1NamespacedServiceAccountList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedServiceAccountList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1NamespacedServiceAccountList(_api::CoreV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedServiceAccountList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Service. deprecated: use the 'watch' parameter with a list operation instead. @@ -5758,7 +8038,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1NamespacedServiceList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1NamespacedServiceList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/namespaces/{namespace}/services", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -5772,9 +8052,19 @@ function watchCoreV1NamespacedServiceList(_api::CoreV1Api, namespace::String; al Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1NamespacedServiceList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedServiceList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1NamespacedServiceList(_api::CoreV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NamespacedServiceList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -5790,7 +8080,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1Node(_api::CoreV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1Node(_api::CoreV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/nodes/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -5804,9 +8094,19 @@ function watchCoreV1Node(_api::CoreV1Api, name::String; allowWatchBookmarks=noth Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1Node(_api::CoreV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1Node(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1Node(_api::CoreV1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1Node(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Node. deprecated: use the 'watch' parameter with a list operation instead. @@ -5821,7 +8121,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1NodeList(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1NodeList(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/nodes", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -5834,9 +8134,19 @@ function watchCoreV1NodeList(_api::CoreV1Api; allowWatchBookmarks=nothing, __con Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1NodeList(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NodeList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1NodeList(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1NodeList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -5852,7 +8162,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1PersistentVolume(_api::CoreV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1PersistentVolume(_api::CoreV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/persistentvolumes/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -5866,9 +8176,19 @@ function watchCoreV1PersistentVolume(_api::CoreV1Api, name::String; allowWatchBo Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1PersistentVolume(_api::CoreV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1PersistentVolume(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1PersistentVolume(_api::CoreV1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1PersistentVolume(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of PersistentVolumeClaim. deprecated: use the 'watch' parameter with a list operation instead. @@ -5883,7 +8203,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1PersistentVolumeClaimListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1PersistentVolumeClaimListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/persistentvolumeclaims", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -5896,9 +8216,19 @@ function watchCoreV1PersistentVolumeClaimListForAllNamespaces(_api::CoreV1Api; a Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1PersistentVolumeClaimListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1PersistentVolumeClaimListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1PersistentVolumeClaimListForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1PersistentVolumeClaimListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of PersistentVolume. deprecated: use the 'watch' parameter with a list operation instead. @@ -5913,7 +8243,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1PersistentVolumeList(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1PersistentVolumeList(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/persistentvolumes", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -5926,9 +8256,19 @@ function watchCoreV1PersistentVolumeList(_api::CoreV1Api; allowWatchBookmarks=no Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1PersistentVolumeList(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1PersistentVolumeList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1PersistentVolumeList(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1PersistentVolumeList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Pod. deprecated: use the 'watch' parameter with a list operation instead. @@ -5943,7 +8283,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1PodListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1PodListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/pods", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -5956,9 +8296,19 @@ function watchCoreV1PodListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1PodListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1PodListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1PodListForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1PodListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of PodTemplate. deprecated: use the 'watch' parameter with a list operation instead. @@ -5973,7 +8323,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1PodTemplateListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1PodTemplateListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/podtemplates", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -5986,9 +8336,19 @@ function watchCoreV1PodTemplateListForAllNamespaces(_api::CoreV1Api; allowWatchB Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1PodTemplateListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1PodTemplateListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1PodTemplateListForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1PodTemplateListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of ReplicationController. deprecated: use the 'watch' parameter with a list operation instead. @@ -6003,7 +8363,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1ReplicationControllerListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1ReplicationControllerListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/replicationcontrollers", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -6016,9 +8376,19 @@ function watchCoreV1ReplicationControllerListForAllNamespaces(_api::CoreV1Api; a Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1ReplicationControllerListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1ReplicationControllerListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1ReplicationControllerListForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1ReplicationControllerListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of ResourceQuota. deprecated: use the 'watch' parameter with a list operation instead. @@ -6033,7 +8403,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1ResourceQuotaListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1ResourceQuotaListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/resourcequotas", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -6046,9 +8416,19 @@ function watchCoreV1ResourceQuotaListForAllNamespaces(_api::CoreV1Api; allowWatc Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1ResourceQuotaListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1ResourceQuotaListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1ResourceQuotaListForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1ResourceQuotaListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Secret. deprecated: use the 'watch' parameter with a list operation instead. @@ -6063,7 +8443,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1SecretListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1SecretListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/secrets", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -6076,9 +8456,19 @@ function watchCoreV1SecretListForAllNamespaces(_api::CoreV1Api; allowWatchBookma Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1SecretListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1SecretListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1SecretListForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1SecretListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of ServiceAccount. deprecated: use the 'watch' parameter with a list operation instead. @@ -6093,7 +8483,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1ServiceAccountListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1ServiceAccountListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/serviceaccounts", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -6106,9 +8496,19 @@ function watchCoreV1ServiceAccountListForAllNamespaces(_api::CoreV1Api; allowWat Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1ServiceAccountListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1ServiceAccountListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1ServiceAccountListForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1ServiceAccountListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Service. deprecated: use the 'watch' parameter with a list operation instead. @@ -6123,7 +8523,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchCoreV1ServiceListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchCoreV1ServiceListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/api/v1/watch/services", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -6136,7 +8536,17 @@ function watchCoreV1ServiceListForAllNamespaces(_api::CoreV1Api; allowWatchBookm Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchCoreV1ServiceListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1ServiceListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchCoreV1ServiceListForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchCoreV1ServiceListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export connectCoreV1DeleteNamespacedPodProxy, connectCoreV1DeleteNamespacedPodProxyWithPath, connectCoreV1DeleteNamespacedServiceProxy, connectCoreV1DeleteNamespacedServiceProxyWithPath, connectCoreV1DeleteNodeProxy, connectCoreV1DeleteNodeProxyWithPath, connectCoreV1GetNamespacedPodAttach, connectCoreV1GetNamespacedPodExec, connectCoreV1GetNamespacedPodPortforward, connectCoreV1GetNamespacedPodProxy, connectCoreV1GetNamespacedPodProxyWithPath, connectCoreV1GetNamespacedServiceProxy, connectCoreV1GetNamespacedServiceProxyWithPath, connectCoreV1GetNodeProxy, connectCoreV1GetNodeProxyWithPath, connectCoreV1HeadNamespacedPodProxy, connectCoreV1HeadNamespacedPodProxyWithPath, connectCoreV1HeadNamespacedServiceProxy, connectCoreV1HeadNamespacedServiceProxyWithPath, connectCoreV1HeadNodeProxy, connectCoreV1HeadNodeProxyWithPath, connectCoreV1OptionsNamespacedPodProxy, connectCoreV1OptionsNamespacedPodProxyWithPath, connectCoreV1OptionsNamespacedServiceProxy, connectCoreV1OptionsNamespacedServiceProxyWithPath, connectCoreV1OptionsNodeProxy, connectCoreV1OptionsNodeProxyWithPath, connectCoreV1PatchNamespacedPodProxy, connectCoreV1PatchNamespacedPodProxyWithPath, connectCoreV1PatchNamespacedServiceProxy, connectCoreV1PatchNamespacedServiceProxyWithPath, connectCoreV1PatchNodeProxy, connectCoreV1PatchNodeProxyWithPath, connectCoreV1PostNamespacedPodAttach, connectCoreV1PostNamespacedPodExec, connectCoreV1PostNamespacedPodPortforward, connectCoreV1PostNamespacedPodProxy, connectCoreV1PostNamespacedPodProxyWithPath, connectCoreV1PostNamespacedServiceProxy, connectCoreV1PostNamespacedServiceProxyWithPath, connectCoreV1PostNodeProxy, connectCoreV1PostNodeProxyWithPath, connectCoreV1PutNamespacedPodProxy, connectCoreV1PutNamespacedPodProxyWithPath, connectCoreV1PutNamespacedServiceProxy, connectCoreV1PutNamespacedServiceProxyWithPath, connectCoreV1PutNodeProxy, connectCoreV1PutNodeProxyWithPath, createCoreV1Namespace, createCoreV1NamespacedBinding, createCoreV1NamespacedConfigMap, createCoreV1NamespacedEndpoints, createCoreV1NamespacedEvent, createCoreV1NamespacedLimitRange, createCoreV1NamespacedPersistentVolumeClaim, createCoreV1NamespacedPod, createCoreV1NamespacedPodBinding, createCoreV1NamespacedPodEviction, createCoreV1NamespacedPodTemplate, createCoreV1NamespacedReplicationController, createCoreV1NamespacedResourceQuota, createCoreV1NamespacedSecret, createCoreV1NamespacedService, createCoreV1NamespacedServiceAccount, createCoreV1NamespacedServiceAccountToken, createCoreV1Node, createCoreV1PersistentVolume, deleteCoreV1CollectionNamespacedConfigMap, deleteCoreV1CollectionNamespacedEndpoints, deleteCoreV1CollectionNamespacedEvent, deleteCoreV1CollectionNamespacedLimitRange, deleteCoreV1CollectionNamespacedPersistentVolumeClaim, deleteCoreV1CollectionNamespacedPod, deleteCoreV1CollectionNamespacedPodTemplate, deleteCoreV1CollectionNamespacedReplicationController, deleteCoreV1CollectionNamespacedResourceQuota, deleteCoreV1CollectionNamespacedSecret, deleteCoreV1CollectionNamespacedServiceAccount, deleteCoreV1CollectionNode, deleteCoreV1CollectionPersistentVolume, deleteCoreV1Namespace, deleteCoreV1NamespacedConfigMap, deleteCoreV1NamespacedEndpoints, deleteCoreV1NamespacedEvent, deleteCoreV1NamespacedLimitRange, deleteCoreV1NamespacedPersistentVolumeClaim, deleteCoreV1NamespacedPod, deleteCoreV1NamespacedPodTemplate, deleteCoreV1NamespacedReplicationController, deleteCoreV1NamespacedResourceQuota, deleteCoreV1NamespacedSecret, deleteCoreV1NamespacedService, deleteCoreV1NamespacedServiceAccount, deleteCoreV1Node, deleteCoreV1PersistentVolume, getCoreV1APIResources, listCoreV1ComponentStatus, listCoreV1ConfigMapForAllNamespaces, listCoreV1EndpointsForAllNamespaces, listCoreV1EventForAllNamespaces, listCoreV1LimitRangeForAllNamespaces, listCoreV1Namespace, listCoreV1NamespacedConfigMap, listCoreV1NamespacedEndpoints, listCoreV1NamespacedEvent, listCoreV1NamespacedLimitRange, listCoreV1NamespacedPersistentVolumeClaim, listCoreV1NamespacedPod, listCoreV1NamespacedPodTemplate, listCoreV1NamespacedReplicationController, listCoreV1NamespacedResourceQuota, listCoreV1NamespacedSecret, listCoreV1NamespacedService, listCoreV1NamespacedServiceAccount, listCoreV1Node, listCoreV1PersistentVolume, listCoreV1PersistentVolumeClaimForAllNamespaces, listCoreV1PodForAllNamespaces, listCoreV1PodTemplateForAllNamespaces, listCoreV1ReplicationControllerForAllNamespaces, listCoreV1ResourceQuotaForAllNamespaces, listCoreV1SecretForAllNamespaces, listCoreV1ServiceAccountForAllNamespaces, listCoreV1ServiceForAllNamespaces, patchCoreV1Namespace, patchCoreV1NamespaceStatus, patchCoreV1NamespacedConfigMap, patchCoreV1NamespacedEndpoints, patchCoreV1NamespacedEvent, patchCoreV1NamespacedLimitRange, patchCoreV1NamespacedPersistentVolumeClaim, patchCoreV1NamespacedPersistentVolumeClaimStatus, patchCoreV1NamespacedPod, patchCoreV1NamespacedPodStatus, patchCoreV1NamespacedPodTemplate, patchCoreV1NamespacedReplicationController, patchCoreV1NamespacedReplicationControllerScale, patchCoreV1NamespacedReplicationControllerStatus, patchCoreV1NamespacedResourceQuota, patchCoreV1NamespacedResourceQuotaStatus, patchCoreV1NamespacedSecret, patchCoreV1NamespacedService, patchCoreV1NamespacedServiceAccount, patchCoreV1NamespacedServiceStatus, patchCoreV1Node, patchCoreV1NodeStatus, patchCoreV1PersistentVolume, patchCoreV1PersistentVolumeStatus, readCoreV1ComponentStatus, readCoreV1Namespace, readCoreV1NamespaceStatus, readCoreV1NamespacedConfigMap, readCoreV1NamespacedEndpoints, readCoreV1NamespacedEvent, readCoreV1NamespacedLimitRange, readCoreV1NamespacedPersistentVolumeClaim, readCoreV1NamespacedPersistentVolumeClaimStatus, readCoreV1NamespacedPod, readCoreV1NamespacedPodLog, readCoreV1NamespacedPodStatus, readCoreV1NamespacedPodTemplate, readCoreV1NamespacedReplicationController, readCoreV1NamespacedReplicationControllerScale, readCoreV1NamespacedReplicationControllerStatus, readCoreV1NamespacedResourceQuota, readCoreV1NamespacedResourceQuotaStatus, readCoreV1NamespacedSecret, readCoreV1NamespacedService, readCoreV1NamespacedServiceAccount, readCoreV1NamespacedServiceStatus, readCoreV1Node, readCoreV1NodeStatus, readCoreV1PersistentVolume, readCoreV1PersistentVolumeStatus, replaceCoreV1Namespace, replaceCoreV1NamespaceFinalize, replaceCoreV1NamespaceStatus, replaceCoreV1NamespacedConfigMap, replaceCoreV1NamespacedEndpoints, replaceCoreV1NamespacedEvent, replaceCoreV1NamespacedLimitRange, replaceCoreV1NamespacedPersistentVolumeClaim, replaceCoreV1NamespacedPersistentVolumeClaimStatus, replaceCoreV1NamespacedPod, replaceCoreV1NamespacedPodStatus, replaceCoreV1NamespacedPodTemplate, replaceCoreV1NamespacedReplicationController, replaceCoreV1NamespacedReplicationControllerScale, replaceCoreV1NamespacedReplicationControllerStatus, replaceCoreV1NamespacedResourceQuota, replaceCoreV1NamespacedResourceQuotaStatus, replaceCoreV1NamespacedSecret, replaceCoreV1NamespacedService, replaceCoreV1NamespacedServiceAccount, replaceCoreV1NamespacedServiceStatus, replaceCoreV1Node, replaceCoreV1NodeStatus, replaceCoreV1PersistentVolume, replaceCoreV1PersistentVolumeStatus, watchCoreV1ConfigMapListForAllNamespaces, watchCoreV1EndpointsListForAllNamespaces, watchCoreV1EventListForAllNamespaces, watchCoreV1LimitRangeListForAllNamespaces, watchCoreV1Namespace, watchCoreV1NamespaceList, watchCoreV1NamespacedConfigMap, watchCoreV1NamespacedConfigMapList, watchCoreV1NamespacedEndpoints, watchCoreV1NamespacedEndpointsList, watchCoreV1NamespacedEvent, watchCoreV1NamespacedEventList, watchCoreV1NamespacedLimitRange, watchCoreV1NamespacedLimitRangeList, watchCoreV1NamespacedPersistentVolumeClaim, watchCoreV1NamespacedPersistentVolumeClaimList, watchCoreV1NamespacedPod, watchCoreV1NamespacedPodList, watchCoreV1NamespacedPodTemplate, watchCoreV1NamespacedPodTemplateList, watchCoreV1NamespacedReplicationController, watchCoreV1NamespacedReplicationControllerList, watchCoreV1NamespacedResourceQuota, watchCoreV1NamespacedResourceQuotaList, watchCoreV1NamespacedSecret, watchCoreV1NamespacedSecretList, watchCoreV1NamespacedService, watchCoreV1NamespacedServiceAccount, watchCoreV1NamespacedServiceAccountList, watchCoreV1NamespacedServiceList, watchCoreV1Node, watchCoreV1NodeList, watchCoreV1PersistentVolume, watchCoreV1PersistentVolumeClaimListForAllNamespaces, watchCoreV1PersistentVolumeList, watchCoreV1PodListForAllNamespaces, watchCoreV1PodTemplateListForAllNamespaces, watchCoreV1ReplicationControllerListForAllNamespaces, watchCoreV1ResourceQuotaListForAllNamespaces, watchCoreV1SecretListForAllNamespaces, watchCoreV1ServiceAccountListForAllNamespaces, watchCoreV1ServiceListForAllNamespaces diff --git a/src/api/api_CustomMetricsV1beta1Api.jl b/src/api/api_CustomMetricsV1beta1Api.jl index 10f88d19..c2871a17 100644 --- a/src/api/api_CustomMetricsV1beta1Api.jl +++ b/src/api/api_CustomMetricsV1beta1Api.jl @@ -15,7 +15,7 @@ Param: labelSelector::String Param: limit::Int32 Return: IoK8sApiCustomMetricsV1beta1MetricValueList """ -function listCustomMetricsV1beta1MetricValue(_api::CustomMetricsV1beta1Api, compositemetricname::String; pretty=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, _mediaType=nothing) +function _swaggerinternal_listCustomMetricsV1beta1MetricValue(_api::CustomMetricsV1beta1Api, compositemetricname::String; pretty=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCustomMetricsV1beta1MetricValueList, "/apis/custom.metrics.k8s.io/v1beta1/{compositemetricname}", ["BearerToken"]) Swagger.set_param(_ctx.path, "compositemetricname", compositemetricname) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -24,9 +24,19 @@ function listCustomMetricsV1beta1MetricValue(_api::CustomMetricsV1beta1Api, comp Swagger.set_param(_ctx.query, "limit", limit) # type Int32 Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCustomMetricsV1beta1MetricValue(_api::CustomMetricsV1beta1Api, compositemetricname::String; pretty=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCustomMetricsV1beta1MetricValue(_api, compositemetricname; pretty=pretty, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCustomMetricsV1beta1MetricValue(_api::CustomMetricsV1beta1Api, response_stream::Channel, compositemetricname::String; pretty=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCustomMetricsV1beta1MetricValue(_api, compositemetricname; pretty=pretty, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ retrieve the given metric (in composite form) which describes the given namespace. Composite form of metrics can be either \"metric/\" to fetch metrics of all objects in the namespace, or \"//\" to fetch metrics of the specified object type and name. Passing \"*\" for objectname would fetch metrics of all objects of the specified type in the namespace. @@ -38,7 +48,7 @@ Param: labelSelector::String Param: limit::Int32 Return: IoK8sApiCustomMetricsV1beta1MetricValueList """ -function listCustomMetricsV1beta1NamespacedMetricValue(_api::CustomMetricsV1beta1Api, compositemetricname::String, namespace::String; pretty=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, _mediaType=nothing) +function _swaggerinternal_listCustomMetricsV1beta1NamespacedMetricValue(_api::CustomMetricsV1beta1Api, compositemetricname::String, namespace::String; pretty=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiCustomMetricsV1beta1MetricValueList, "/apis/custom.metrics.k8s.io/v1beta1/namespaces/{namespace}/{compositemetricname}", ["BearerToken"]) Swagger.set_param(_ctx.path, "compositemetricname", compositemetricname) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -48,7 +58,17 @@ function listCustomMetricsV1beta1NamespacedMetricValue(_api::CustomMetricsV1beta Swagger.set_param(_ctx.query, "limit", limit) # type Int32 Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listCustomMetricsV1beta1NamespacedMetricValue(_api::CustomMetricsV1beta1Api, compositemetricname::String, namespace::String; pretty=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCustomMetricsV1beta1NamespacedMetricValue(_api, compositemetricname, namespace; pretty=pretty, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listCustomMetricsV1beta1NamespacedMetricValue(_api::CustomMetricsV1beta1Api, response_stream::Channel, compositemetricname::String, namespace::String; pretty=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listCustomMetricsV1beta1NamespacedMetricValue(_api, compositemetricname, namespace; pretty=pretty, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export listCustomMetricsV1beta1MetricValue, listCustomMetricsV1beta1NamespacedMetricValue diff --git a/src/api/api_DiscoveryApi.jl b/src/api/api_DiscoveryApi.jl index 8b0b3d96..fb6f4c26 100644 --- a/src/api/api_DiscoveryApi.jl +++ b/src/api/api_DiscoveryApi.jl @@ -10,11 +10,21 @@ end get information of a group Return: IoK8sApimachineryPkgApisMetaV1APIGroup """ -function getDiscoveryAPIGroup(_api::DiscoveryApi; _mediaType=nothing) +function _swaggerinternal_getDiscoveryAPIGroup(_api::DiscoveryApi; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIGroup, "/apis/discovery.k8s.io/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getDiscoveryAPIGroup(_api::DiscoveryApi; _mediaType=nothing) + _ctx = _swaggerinternal_getDiscoveryAPIGroup(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getDiscoveryAPIGroup(_api::DiscoveryApi, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getDiscoveryAPIGroup(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export getDiscoveryAPIGroup diff --git a/src/api/api_DiscoveryV1beta1Api.jl b/src/api/api_DiscoveryV1beta1Api.jl index 1677b569..f3af3294 100644 --- a/src/api/api_DiscoveryV1beta1Api.jl +++ b/src/api/api_DiscoveryV1beta1Api.jl @@ -15,7 +15,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiDiscoveryV1beta1EndpointSlice """ -function createDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiDiscoveryV1beta1EndpointSlice, "/apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -23,9 +23,19 @@ function createDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createDiscoveryV1beta1NamespacedEndpointSlice(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createDiscoveryV1beta1NamespacedEndpointSlice(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of EndpointSlice @@ -46,7 +56,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteDiscoveryV1beta1CollectionNamespacedEndpointSlice(_api::DiscoveryV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteDiscoveryV1beta1CollectionNamespacedEndpointSlice(_api::DiscoveryV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -64,9 +74,19 @@ function deleteDiscoveryV1beta1CollectionNamespacedEndpointSlice(_api::Discovery Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteDiscoveryV1beta1CollectionNamespacedEndpointSlice(_api::DiscoveryV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteDiscoveryV1beta1CollectionNamespacedEndpointSlice(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteDiscoveryV1beta1CollectionNamespacedEndpointSlice(_api::DiscoveryV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteDiscoveryV1beta1CollectionNamespacedEndpointSlice(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete an EndpointSlice @@ -80,7 +100,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -91,21 +111,41 @@ function deleteDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteDiscoveryV1beta1NamespacedEndpointSlice(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteDiscoveryV1beta1NamespacedEndpointSlice(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getDiscoveryV1beta1APIResources(_api::DiscoveryV1beta1Api; _mediaType=nothing) +function _swaggerinternal_getDiscoveryV1beta1APIResources(_api::DiscoveryV1beta1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/discovery.k8s.io/v1beta1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getDiscoveryV1beta1APIResources(_api::DiscoveryV1beta1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getDiscoveryV1beta1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getDiscoveryV1beta1APIResources(_api::DiscoveryV1beta1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getDiscoveryV1beta1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind EndpointSlice @@ -120,7 +160,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiDiscoveryV1beta1EndpointSliceList """ -function listDiscoveryV1beta1EndpointSliceForAllNamespaces(_api::DiscoveryV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listDiscoveryV1beta1EndpointSliceForAllNamespaces(_api::DiscoveryV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiDiscoveryV1beta1EndpointSliceList, "/apis/discovery.k8s.io/v1beta1/endpointslices", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -133,9 +173,19 @@ function listDiscoveryV1beta1EndpointSliceForAllNamespaces(_api::DiscoveryV1beta Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listDiscoveryV1beta1EndpointSliceForAllNamespaces(_api::DiscoveryV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listDiscoveryV1beta1EndpointSliceForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listDiscoveryV1beta1EndpointSliceForAllNamespaces(_api::DiscoveryV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listDiscoveryV1beta1EndpointSliceForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind EndpointSlice @@ -151,7 +201,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiDiscoveryV1beta1EndpointSliceList """ -function listDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiDiscoveryV1beta1EndpointSliceList, "/apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -165,9 +215,19 @@ function listDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listDiscoveryV1beta1NamespacedEndpointSlice(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listDiscoveryV1beta1NamespacedEndpointSlice(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified EndpointSlice @@ -180,7 +240,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiDiscoveryV1beta1EndpointSlice """ -function patchDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiDiscoveryV1beta1EndpointSlice, "/apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -190,9 +250,19 @@ function patchDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchDiscoveryV1beta1NamespacedEndpointSlice(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchDiscoveryV1beta1NamespacedEndpointSlice(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified EndpointSlice @@ -203,7 +273,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiDiscoveryV1beta1EndpointSlice """ -function readDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiDiscoveryV1beta1EndpointSlice, "/apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -212,9 +282,19 @@ function readDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readDiscoveryV1beta1NamespacedEndpointSlice(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readDiscoveryV1beta1NamespacedEndpointSlice(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified EndpointSlice @@ -226,7 +306,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiDiscoveryV1beta1EndpointSlice """ -function replaceDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiDiscoveryV1beta1EndpointSlice, "/apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -235,9 +315,19 @@ function replaceDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Ap Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceDiscoveryV1beta1NamespacedEndpointSlice(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceDiscoveryV1beta1NamespacedEndpointSlice(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of EndpointSlice. deprecated: use the 'watch' parameter with a list operation instead. @@ -252,7 +342,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchDiscoveryV1beta1EndpointSliceListForAllNamespaces(_api::DiscoveryV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchDiscoveryV1beta1EndpointSliceListForAllNamespaces(_api::DiscoveryV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/discovery.k8s.io/v1beta1/watch/endpointslices", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -265,9 +355,19 @@ function watchDiscoveryV1beta1EndpointSliceListForAllNamespaces(_api::DiscoveryV Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchDiscoveryV1beta1EndpointSliceListForAllNamespaces(_api::DiscoveryV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchDiscoveryV1beta1EndpointSliceListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchDiscoveryV1beta1EndpointSliceListForAllNamespaces(_api::DiscoveryV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchDiscoveryV1beta1EndpointSliceListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -284,7 +384,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/discovery.k8s.io/v1beta1/watch/namespaces/{namespace}/endpointslices/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -299,9 +399,19 @@ function watchDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchDiscoveryV1beta1NamespacedEndpointSlice(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchDiscoveryV1beta1NamespacedEndpointSlice(_api::DiscoveryV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchDiscoveryV1beta1NamespacedEndpointSlice(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of EndpointSlice. deprecated: use the 'watch' parameter with a list operation instead. @@ -317,7 +427,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchDiscoveryV1beta1NamespacedEndpointSliceList(_api::DiscoveryV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchDiscoveryV1beta1NamespacedEndpointSliceList(_api::DiscoveryV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/discovery.k8s.io/v1beta1/watch/namespaces/{namespace}/endpointslices", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -331,7 +441,17 @@ function watchDiscoveryV1beta1NamespacedEndpointSliceList(_api::DiscoveryV1beta1 Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchDiscoveryV1beta1NamespacedEndpointSliceList(_api::DiscoveryV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchDiscoveryV1beta1NamespacedEndpointSliceList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchDiscoveryV1beta1NamespacedEndpointSliceList(_api::DiscoveryV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchDiscoveryV1beta1NamespacedEndpointSliceList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createDiscoveryV1beta1NamespacedEndpointSlice, deleteDiscoveryV1beta1CollectionNamespacedEndpointSlice, deleteDiscoveryV1beta1NamespacedEndpointSlice, getDiscoveryV1beta1APIResources, listDiscoveryV1beta1EndpointSliceForAllNamespaces, listDiscoveryV1beta1NamespacedEndpointSlice, patchDiscoveryV1beta1NamespacedEndpointSlice, readDiscoveryV1beta1NamespacedEndpointSlice, replaceDiscoveryV1beta1NamespacedEndpointSlice, watchDiscoveryV1beta1EndpointSliceListForAllNamespaces, watchDiscoveryV1beta1NamespacedEndpointSlice, watchDiscoveryV1beta1NamespacedEndpointSliceList diff --git a/src/api/api_EventsApi.jl b/src/api/api_EventsApi.jl index 90e32748..0d6ae37e 100644 --- a/src/api/api_EventsApi.jl +++ b/src/api/api_EventsApi.jl @@ -10,11 +10,21 @@ end get information of a group Return: IoK8sApimachineryPkgApisMetaV1APIGroup """ -function getEventsAPIGroup(_api::EventsApi; _mediaType=nothing) +function _swaggerinternal_getEventsAPIGroup(_api::EventsApi; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIGroup, "/apis/events.k8s.io/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getEventsAPIGroup(_api::EventsApi; _mediaType=nothing) + _ctx = _swaggerinternal_getEventsAPIGroup(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getEventsAPIGroup(_api::EventsApi, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getEventsAPIGroup(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export getEventsAPIGroup diff --git a/src/api/api_EventsV1beta1Api.jl b/src/api/api_EventsV1beta1Api.jl index 09a0e176..de299048 100644 --- a/src/api/api_EventsV1beta1Api.jl +++ b/src/api/api_EventsV1beta1Api.jl @@ -15,7 +15,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiEventsV1beta1Event """ -function createEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiEventsV1beta1Event, "/apis/events.k8s.io/v1beta1/namespaces/{namespace}/events", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -23,9 +23,19 @@ function createEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, namespace::S Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createEventsV1beta1NamespacedEvent(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createEventsV1beta1NamespacedEvent(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of Event @@ -46,7 +56,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteEventsV1beta1CollectionNamespacedEvent(_api::EventsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteEventsV1beta1CollectionNamespacedEvent(_api::EventsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/events.k8s.io/v1beta1/namespaces/{namespace}/events", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -64,9 +74,19 @@ function deleteEventsV1beta1CollectionNamespacedEvent(_api::EventsV1beta1Api, na Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteEventsV1beta1CollectionNamespacedEvent(_api::EventsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteEventsV1beta1CollectionNamespacedEvent(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteEventsV1beta1CollectionNamespacedEvent(_api::EventsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteEventsV1beta1CollectionNamespacedEvent(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete an Event @@ -80,7 +100,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/events.k8s.io/v1beta1/namespaces/{namespace}/events/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -91,21 +111,41 @@ function deleteEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, name::String Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteEventsV1beta1NamespacedEvent(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteEventsV1beta1NamespacedEvent(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getEventsV1beta1APIResources(_api::EventsV1beta1Api; _mediaType=nothing) +function _swaggerinternal_getEventsV1beta1APIResources(_api::EventsV1beta1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/events.k8s.io/v1beta1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getEventsV1beta1APIResources(_api::EventsV1beta1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getEventsV1beta1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getEventsV1beta1APIResources(_api::EventsV1beta1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getEventsV1beta1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Event @@ -120,7 +160,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiEventsV1beta1EventList """ -function listEventsV1beta1EventForAllNamespaces(_api::EventsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listEventsV1beta1EventForAllNamespaces(_api::EventsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiEventsV1beta1EventList, "/apis/events.k8s.io/v1beta1/events", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -133,9 +173,19 @@ function listEventsV1beta1EventForAllNamespaces(_api::EventsV1beta1Api; allowWat Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listEventsV1beta1EventForAllNamespaces(_api::EventsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listEventsV1beta1EventForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listEventsV1beta1EventForAllNamespaces(_api::EventsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listEventsV1beta1EventForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Event @@ -151,7 +201,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiEventsV1beta1EventList """ -function listEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiEventsV1beta1EventList, "/apis/events.k8s.io/v1beta1/namespaces/{namespace}/events", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -165,9 +215,19 @@ function listEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, namespace::Str Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listEventsV1beta1NamespacedEvent(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listEventsV1beta1NamespacedEvent(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified Event @@ -180,7 +240,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiEventsV1beta1Event """ -function patchEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiEventsV1beta1Event, "/apis/events.k8s.io/v1beta1/namespaces/{namespace}/events/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -190,9 +250,19 @@ function patchEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, name::String, Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchEventsV1beta1NamespacedEvent(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchEventsV1beta1NamespacedEvent(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified Event @@ -203,7 +273,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiEventsV1beta1Event """ -function readEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiEventsV1beta1Event, "/apis/events.k8s.io/v1beta1/namespaces/{namespace}/events/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -212,9 +282,19 @@ function readEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, name::String, Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readEventsV1beta1NamespacedEvent(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readEventsV1beta1NamespacedEvent(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified Event @@ -226,7 +306,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiEventsV1beta1Event """ -function replaceEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiEventsV1beta1Event, "/apis/events.k8s.io/v1beta1/namespaces/{namespace}/events/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -235,9 +315,19 @@ function replaceEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, name::Strin Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceEventsV1beta1NamespacedEvent(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceEventsV1beta1NamespacedEvent(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead. @@ -252,7 +342,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchEventsV1beta1EventListForAllNamespaces(_api::EventsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchEventsV1beta1EventListForAllNamespaces(_api::EventsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/events.k8s.io/v1beta1/watch/events", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -265,9 +355,19 @@ function watchEventsV1beta1EventListForAllNamespaces(_api::EventsV1beta1Api; all Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchEventsV1beta1EventListForAllNamespaces(_api::EventsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchEventsV1beta1EventListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchEventsV1beta1EventListForAllNamespaces(_api::EventsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchEventsV1beta1EventListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -284,7 +384,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/events.k8s.io/v1beta1/watch/namespaces/{namespace}/events/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -299,9 +399,19 @@ function watchEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, name::String, Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchEventsV1beta1NamespacedEvent(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchEventsV1beta1NamespacedEvent(_api::EventsV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchEventsV1beta1NamespacedEvent(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Event. deprecated: use the 'watch' parameter with a list operation instead. @@ -317,7 +427,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchEventsV1beta1NamespacedEventList(_api::EventsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchEventsV1beta1NamespacedEventList(_api::EventsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/events.k8s.io/v1beta1/watch/namespaces/{namespace}/events", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -331,7 +441,17 @@ function watchEventsV1beta1NamespacedEventList(_api::EventsV1beta1Api, namespace Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchEventsV1beta1NamespacedEventList(_api::EventsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchEventsV1beta1NamespacedEventList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchEventsV1beta1NamespacedEventList(_api::EventsV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchEventsV1beta1NamespacedEventList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createEventsV1beta1NamespacedEvent, deleteEventsV1beta1CollectionNamespacedEvent, deleteEventsV1beta1NamespacedEvent, getEventsV1beta1APIResources, listEventsV1beta1EventForAllNamespaces, listEventsV1beta1NamespacedEvent, patchEventsV1beta1NamespacedEvent, readEventsV1beta1NamespacedEvent, replaceEventsV1beta1NamespacedEvent, watchEventsV1beta1EventListForAllNamespaces, watchEventsV1beta1NamespacedEvent, watchEventsV1beta1NamespacedEventList diff --git a/src/api/api_ExtensionsApi.jl b/src/api/api_ExtensionsApi.jl index 475345fa..bb89f440 100644 --- a/src/api/api_ExtensionsApi.jl +++ b/src/api/api_ExtensionsApi.jl @@ -10,11 +10,21 @@ end get information of a group Return: IoK8sApimachineryPkgApisMetaV1APIGroup """ -function getExtensionsAPIGroup(_api::ExtensionsApi; _mediaType=nothing) +function _swaggerinternal_getExtensionsAPIGroup(_api::ExtensionsApi; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIGroup, "/apis/extensions/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getExtensionsAPIGroup(_api::ExtensionsApi; _mediaType=nothing) + _ctx = _swaggerinternal_getExtensionsAPIGroup(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getExtensionsAPIGroup(_api::ExtensionsApi, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getExtensionsAPIGroup(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export getExtensionsAPIGroup diff --git a/src/api/api_ExtensionsV1beta1Api.jl b/src/api/api_ExtensionsV1beta1Api.jl index 17020ed8..f478542a 100644 --- a/src/api/api_ExtensionsV1beta1Api.jl +++ b/src/api/api_ExtensionsV1beta1Api.jl @@ -15,7 +15,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiExtensionsV1beta1DaemonSet """ -function createExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiExtensionsV1beta1DaemonSet, "/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -23,9 +23,19 @@ function createExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createExtensionsV1beta1NamespacedDaemonSet(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createExtensionsV1beta1NamespacedDaemonSet(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a Deployment @@ -36,7 +46,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiExtensionsV1beta1Deployment """ -function createExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiExtensionsV1beta1Deployment, "/apis/extensions/v1beta1/namespaces/{namespace}/deployments", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -44,9 +54,19 @@ function createExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createExtensionsV1beta1NamespacedDeployment(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createExtensionsV1beta1NamespacedDeployment(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create rollback of a Deployment @@ -58,7 +78,7 @@ Param: fieldManager::String Param: pretty::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function createExtensionsV1beta1NamespacedDeploymentRollback(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) +function _swaggerinternal_createExtensionsV1beta1NamespacedDeploymentRollback(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApimachineryPkgApisMetaV1Status, "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/rollback", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -67,9 +87,19 @@ function createExtensionsV1beta1NamespacedDeploymentRollback(_api::ExtensionsV1b Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createExtensionsV1beta1NamespacedDeploymentRollback(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createExtensionsV1beta1NamespacedDeploymentRollback(_api, name, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createExtensionsV1beta1NamespacedDeploymentRollback(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createExtensionsV1beta1NamespacedDeploymentRollback(_api, name, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create an Ingress @@ -80,7 +110,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiExtensionsV1beta1Ingress """ -function createExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiExtensionsV1beta1Ingress, "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -88,9 +118,19 @@ function createExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, na Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createExtensionsV1beta1NamespacedIngress(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createExtensionsV1beta1NamespacedIngress(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a NetworkPolicy @@ -101,7 +141,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiExtensionsV1beta1NetworkPolicy """ -function createExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiExtensionsV1beta1NetworkPolicy, "/apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -109,9 +149,19 @@ function createExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1A Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createExtensionsV1beta1NamespacedNetworkPolicy(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createExtensionsV1beta1NamespacedNetworkPolicy(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a ReplicaSet @@ -122,7 +172,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiExtensionsV1beta1ReplicaSet """ -function createExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiExtensionsV1beta1ReplicaSet, "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -130,9 +180,19 @@ function createExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createExtensionsV1beta1NamespacedReplicaSet(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createExtensionsV1beta1NamespacedReplicaSet(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a PodSecurityPolicy @@ -142,16 +202,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiExtensionsV1beta1PodSecurityPolicy """ -function createExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiExtensionsV1beta1PodSecurityPolicy, "/apis/extensions/v1beta1/podsecuritypolicies", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createExtensionsV1beta1PodSecurityPolicy(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createExtensionsV1beta1PodSecurityPolicy(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of DaemonSet @@ -172,7 +242,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteExtensionsV1beta1CollectionNamespacedDaemonSet(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteExtensionsV1beta1CollectionNamespacedDaemonSet(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -190,9 +260,19 @@ function deleteExtensionsV1beta1CollectionNamespacedDaemonSet(_api::ExtensionsV1 Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteExtensionsV1beta1CollectionNamespacedDaemonSet(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteExtensionsV1beta1CollectionNamespacedDaemonSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteExtensionsV1beta1CollectionNamespacedDaemonSet(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteExtensionsV1beta1CollectionNamespacedDaemonSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of Deployment @@ -213,7 +293,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteExtensionsV1beta1CollectionNamespacedDeployment(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteExtensionsV1beta1CollectionNamespacedDeployment(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/extensions/v1beta1/namespaces/{namespace}/deployments", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -231,9 +311,19 @@ function deleteExtensionsV1beta1CollectionNamespacedDeployment(_api::ExtensionsV Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteExtensionsV1beta1CollectionNamespacedDeployment(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteExtensionsV1beta1CollectionNamespacedDeployment(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteExtensionsV1beta1CollectionNamespacedDeployment(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteExtensionsV1beta1CollectionNamespacedDeployment(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of Ingress @@ -254,7 +344,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteExtensionsV1beta1CollectionNamespacedIngress(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteExtensionsV1beta1CollectionNamespacedIngress(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -272,9 +362,19 @@ function deleteExtensionsV1beta1CollectionNamespacedIngress(_api::ExtensionsV1be Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteExtensionsV1beta1CollectionNamespacedIngress(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteExtensionsV1beta1CollectionNamespacedIngress(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteExtensionsV1beta1CollectionNamespacedIngress(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteExtensionsV1beta1CollectionNamespacedIngress(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of NetworkPolicy @@ -295,7 +395,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteExtensionsV1beta1CollectionNamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteExtensionsV1beta1CollectionNamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -313,9 +413,19 @@ function deleteExtensionsV1beta1CollectionNamespacedNetworkPolicy(_api::Extensio Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteExtensionsV1beta1CollectionNamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteExtensionsV1beta1CollectionNamespacedNetworkPolicy(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteExtensionsV1beta1CollectionNamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteExtensionsV1beta1CollectionNamespacedNetworkPolicy(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of ReplicaSet @@ -336,7 +446,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteExtensionsV1beta1CollectionNamespacedReplicaSet(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteExtensionsV1beta1CollectionNamespacedReplicaSet(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -354,9 +464,19 @@ function deleteExtensionsV1beta1CollectionNamespacedReplicaSet(_api::ExtensionsV Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteExtensionsV1beta1CollectionNamespacedReplicaSet(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteExtensionsV1beta1CollectionNamespacedReplicaSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteExtensionsV1beta1CollectionNamespacedReplicaSet(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteExtensionsV1beta1CollectionNamespacedReplicaSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of PodSecurityPolicy @@ -376,7 +496,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteExtensionsV1beta1CollectionPodSecurityPolicy(_api::ExtensionsV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteExtensionsV1beta1CollectionPodSecurityPolicy(_api::ExtensionsV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/extensions/v1beta1/podsecuritypolicies", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -393,9 +513,19 @@ function deleteExtensionsV1beta1CollectionPodSecurityPolicy(_api::ExtensionsV1be Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteExtensionsV1beta1CollectionPodSecurityPolicy(_api::ExtensionsV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteExtensionsV1beta1CollectionPodSecurityPolicy(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteExtensionsV1beta1CollectionPodSecurityPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteExtensionsV1beta1CollectionPodSecurityPolicy(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a DaemonSet @@ -409,7 +539,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -420,9 +550,19 @@ function deleteExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteExtensionsV1beta1NamespacedDaemonSet(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteExtensionsV1beta1NamespacedDaemonSet(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a Deployment @@ -436,7 +576,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -447,9 +587,19 @@ function deleteExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteExtensionsV1beta1NamespacedDeployment(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteExtensionsV1beta1NamespacedDeployment(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete an Ingress @@ -463,7 +613,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -474,9 +624,19 @@ function deleteExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, na Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteExtensionsV1beta1NamespacedIngress(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteExtensionsV1beta1NamespacedIngress(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a NetworkPolicy @@ -490,7 +650,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -501,9 +661,19 @@ function deleteExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1A Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteExtensionsV1beta1NamespacedNetworkPolicy(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteExtensionsV1beta1NamespacedNetworkPolicy(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a ReplicaSet @@ -517,7 +687,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -528,9 +698,19 @@ function deleteExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteExtensionsV1beta1NamespacedReplicaSet(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteExtensionsV1beta1NamespacedReplicaSet(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a PodSecurityPolicy @@ -543,7 +723,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/extensions/v1beta1/podsecuritypolicies/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -553,21 +733,41 @@ function deleteExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, na Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteExtensionsV1beta1PodSecurityPolicy(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteExtensionsV1beta1PodSecurityPolicy(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getExtensionsV1beta1APIResources(_api::ExtensionsV1beta1Api; _mediaType=nothing) +function _swaggerinternal_getExtensionsV1beta1APIResources(_api::ExtensionsV1beta1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/extensions/v1beta1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getExtensionsV1beta1APIResources(_api::ExtensionsV1beta1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getExtensionsV1beta1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getExtensionsV1beta1APIResources(_api::ExtensionsV1beta1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getExtensionsV1beta1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind DaemonSet @@ -582,7 +782,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiExtensionsV1beta1DaemonSetList """ -function listExtensionsV1beta1DaemonSetForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listExtensionsV1beta1DaemonSetForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiExtensionsV1beta1DaemonSetList, "/apis/extensions/v1beta1/daemonsets", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -595,9 +795,19 @@ function listExtensionsV1beta1DaemonSetForAllNamespaces(_api::ExtensionsV1beta1A Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listExtensionsV1beta1DaemonSetForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listExtensionsV1beta1DaemonSetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listExtensionsV1beta1DaemonSetForAllNamespaces(_api::ExtensionsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listExtensionsV1beta1DaemonSetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Deployment @@ -612,7 +822,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiExtensionsV1beta1DeploymentList """ -function listExtensionsV1beta1DeploymentForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listExtensionsV1beta1DeploymentForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiExtensionsV1beta1DeploymentList, "/apis/extensions/v1beta1/deployments", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -625,9 +835,19 @@ function listExtensionsV1beta1DeploymentForAllNamespaces(_api::ExtensionsV1beta1 Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listExtensionsV1beta1DeploymentForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listExtensionsV1beta1DeploymentForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listExtensionsV1beta1DeploymentForAllNamespaces(_api::ExtensionsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listExtensionsV1beta1DeploymentForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Ingress @@ -642,7 +862,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiExtensionsV1beta1IngressList """ -function listExtensionsV1beta1IngressForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listExtensionsV1beta1IngressForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiExtensionsV1beta1IngressList, "/apis/extensions/v1beta1/ingresses", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -655,9 +875,19 @@ function listExtensionsV1beta1IngressForAllNamespaces(_api::ExtensionsV1beta1Api Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listExtensionsV1beta1IngressForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listExtensionsV1beta1IngressForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listExtensionsV1beta1IngressForAllNamespaces(_api::ExtensionsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listExtensionsV1beta1IngressForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind DaemonSet @@ -673,7 +903,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiExtensionsV1beta1DaemonSetList """ -function listExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiExtensionsV1beta1DaemonSetList, "/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -687,9 +917,19 @@ function listExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, na Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listExtensionsV1beta1NamespacedDaemonSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listExtensionsV1beta1NamespacedDaemonSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Deployment @@ -705,7 +945,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiExtensionsV1beta1DeploymentList """ -function listExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiExtensionsV1beta1DeploymentList, "/apis/extensions/v1beta1/namespaces/{namespace}/deployments", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -719,9 +959,19 @@ function listExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, n Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listExtensionsV1beta1NamespacedDeployment(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listExtensionsV1beta1NamespacedDeployment(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Ingress @@ -737,7 +987,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiExtensionsV1beta1IngressList """ -function listExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiExtensionsV1beta1IngressList, "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -751,9 +1001,19 @@ function listExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, name Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listExtensionsV1beta1NamespacedIngress(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listExtensionsV1beta1NamespacedIngress(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind NetworkPolicy @@ -769,7 +1029,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiExtensionsV1beta1NetworkPolicyList """ -function listExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiExtensionsV1beta1NetworkPolicyList, "/apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -783,9 +1043,19 @@ function listExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listExtensionsV1beta1NamespacedNetworkPolicy(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listExtensionsV1beta1NamespacedNetworkPolicy(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind ReplicaSet @@ -801,7 +1071,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiExtensionsV1beta1ReplicaSetList """ -function listExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiExtensionsV1beta1ReplicaSetList, "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -815,9 +1085,19 @@ function listExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, n Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listExtensionsV1beta1NamespacedReplicaSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listExtensionsV1beta1NamespacedReplicaSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind NetworkPolicy @@ -832,7 +1112,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiExtensionsV1beta1NetworkPolicyList """ -function listExtensionsV1beta1NetworkPolicyForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listExtensionsV1beta1NetworkPolicyForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiExtensionsV1beta1NetworkPolicyList, "/apis/extensions/v1beta1/networkpolicies", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -845,9 +1125,19 @@ function listExtensionsV1beta1NetworkPolicyForAllNamespaces(_api::ExtensionsV1be Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listExtensionsV1beta1NetworkPolicyForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listExtensionsV1beta1NetworkPolicyForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listExtensionsV1beta1NetworkPolicyForAllNamespaces(_api::ExtensionsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listExtensionsV1beta1NetworkPolicyForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind PodSecurityPolicy @@ -862,7 +1152,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiExtensionsV1beta1PodSecurityPolicyList """ -function listExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiExtensionsV1beta1PodSecurityPolicyList, "/apis/extensions/v1beta1/podsecuritypolicies", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -875,9 +1165,19 @@ function listExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api; pret Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listExtensionsV1beta1PodSecurityPolicy(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listExtensionsV1beta1PodSecurityPolicy(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind ReplicaSet @@ -892,7 +1192,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiExtensionsV1beta1ReplicaSetList """ -function listExtensionsV1beta1ReplicaSetForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listExtensionsV1beta1ReplicaSetForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiExtensionsV1beta1ReplicaSetList, "/apis/extensions/v1beta1/replicasets", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -905,9 +1205,19 @@ function listExtensionsV1beta1ReplicaSetForAllNamespaces(_api::ExtensionsV1beta1 Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listExtensionsV1beta1ReplicaSetForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listExtensionsV1beta1ReplicaSetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listExtensionsV1beta1ReplicaSetForAllNamespaces(_api::ExtensionsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listExtensionsV1beta1ReplicaSetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified DaemonSet @@ -920,7 +1230,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiExtensionsV1beta1DaemonSet """ -function patchExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiExtensionsV1beta1DaemonSet, "/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -930,9 +1240,19 @@ function patchExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, n Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchExtensionsV1beta1NamespacedDaemonSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchExtensionsV1beta1NamespacedDaemonSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified DaemonSet @@ -945,7 +1265,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiExtensionsV1beta1DaemonSet """ -function patchExtensionsV1beta1NamespacedDaemonSetStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchExtensionsV1beta1NamespacedDaemonSetStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiExtensionsV1beta1DaemonSet, "/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -955,9 +1275,19 @@ function patchExtensionsV1beta1NamespacedDaemonSetStatus(_api::ExtensionsV1beta1 Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchExtensionsV1beta1NamespacedDaemonSetStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchExtensionsV1beta1NamespacedDaemonSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchExtensionsV1beta1NamespacedDaemonSetStatus(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchExtensionsV1beta1NamespacedDaemonSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified Deployment @@ -970,7 +1300,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiExtensionsV1beta1Deployment """ -function patchExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiExtensionsV1beta1Deployment, "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -980,9 +1310,19 @@ function patchExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchExtensionsV1beta1NamespacedDeployment(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchExtensionsV1beta1NamespacedDeployment(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update scale of the specified Deployment @@ -995,7 +1335,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiExtensionsV1beta1Scale """ -function patchExtensionsV1beta1NamespacedDeploymentScale(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchExtensionsV1beta1NamespacedDeploymentScale(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiExtensionsV1beta1Scale, "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1005,9 +1345,19 @@ function patchExtensionsV1beta1NamespacedDeploymentScale(_api::ExtensionsV1beta1 Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchExtensionsV1beta1NamespacedDeploymentScale(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchExtensionsV1beta1NamespacedDeploymentScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchExtensionsV1beta1NamespacedDeploymentScale(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchExtensionsV1beta1NamespacedDeploymentScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified Deployment @@ -1020,7 +1370,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiExtensionsV1beta1Deployment """ -function patchExtensionsV1beta1NamespacedDeploymentStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchExtensionsV1beta1NamespacedDeploymentStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiExtensionsV1beta1Deployment, "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1030,9 +1380,19 @@ function patchExtensionsV1beta1NamespacedDeploymentStatus(_api::ExtensionsV1beta Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchExtensionsV1beta1NamespacedDeploymentStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchExtensionsV1beta1NamespacedDeploymentStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchExtensionsV1beta1NamespacedDeploymentStatus(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchExtensionsV1beta1NamespacedDeploymentStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified Ingress @@ -1045,7 +1405,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiExtensionsV1beta1Ingress """ -function patchExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiExtensionsV1beta1Ingress, "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1055,9 +1415,19 @@ function patchExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, nam Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchExtensionsV1beta1NamespacedIngress(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchExtensionsV1beta1NamespacedIngress(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified Ingress @@ -1070,7 +1440,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiExtensionsV1beta1Ingress """ -function patchExtensionsV1beta1NamespacedIngressStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchExtensionsV1beta1NamespacedIngressStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiExtensionsV1beta1Ingress, "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1080,9 +1450,19 @@ function patchExtensionsV1beta1NamespacedIngressStatus(_api::ExtensionsV1beta1Ap Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchExtensionsV1beta1NamespacedIngressStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchExtensionsV1beta1NamespacedIngressStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchExtensionsV1beta1NamespacedIngressStatus(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchExtensionsV1beta1NamespacedIngressStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified NetworkPolicy @@ -1095,7 +1475,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiExtensionsV1beta1NetworkPolicy """ -function patchExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiExtensionsV1beta1NetworkPolicy, "/apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1105,9 +1485,19 @@ function patchExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Ap Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchExtensionsV1beta1NamespacedNetworkPolicy(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchExtensionsV1beta1NamespacedNetworkPolicy(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified ReplicaSet @@ -1120,7 +1510,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiExtensionsV1beta1ReplicaSet """ -function patchExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiExtensionsV1beta1ReplicaSet, "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1130,9 +1520,19 @@ function patchExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchExtensionsV1beta1NamespacedReplicaSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchExtensionsV1beta1NamespacedReplicaSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update scale of the specified ReplicaSet @@ -1145,7 +1545,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiExtensionsV1beta1Scale """ -function patchExtensionsV1beta1NamespacedReplicaSetScale(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchExtensionsV1beta1NamespacedReplicaSetScale(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiExtensionsV1beta1Scale, "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1155,9 +1555,19 @@ function patchExtensionsV1beta1NamespacedReplicaSetScale(_api::ExtensionsV1beta1 Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchExtensionsV1beta1NamespacedReplicaSetScale(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchExtensionsV1beta1NamespacedReplicaSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchExtensionsV1beta1NamespacedReplicaSetScale(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchExtensionsV1beta1NamespacedReplicaSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified ReplicaSet @@ -1170,7 +1580,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiExtensionsV1beta1ReplicaSet """ -function patchExtensionsV1beta1NamespacedReplicaSetStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchExtensionsV1beta1NamespacedReplicaSetStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiExtensionsV1beta1ReplicaSet, "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1180,9 +1590,19 @@ function patchExtensionsV1beta1NamespacedReplicaSetStatus(_api::ExtensionsV1beta Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchExtensionsV1beta1NamespacedReplicaSetStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchExtensionsV1beta1NamespacedReplicaSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchExtensionsV1beta1NamespacedReplicaSetStatus(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchExtensionsV1beta1NamespacedReplicaSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update scale of the specified ReplicationControllerDummy @@ -1195,7 +1615,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiExtensionsV1beta1Scale """ -function patchExtensionsV1beta1NamespacedReplicationControllerDummyScale(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchExtensionsV1beta1NamespacedReplicationControllerDummyScale(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiExtensionsV1beta1Scale, "/apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1205,9 +1625,19 @@ function patchExtensionsV1beta1NamespacedReplicationControllerDummyScale(_api::E Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchExtensionsV1beta1NamespacedReplicationControllerDummyScale(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchExtensionsV1beta1NamespacedReplicationControllerDummyScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchExtensionsV1beta1NamespacedReplicationControllerDummyScale(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchExtensionsV1beta1NamespacedReplicationControllerDummyScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified PodSecurityPolicy @@ -1219,7 +1649,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiExtensionsV1beta1PodSecurityPolicy """ -function patchExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiExtensionsV1beta1PodSecurityPolicy, "/apis/extensions/v1beta1/podsecuritypolicies/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -1228,9 +1658,19 @@ function patchExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, nam Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchExtensionsV1beta1PodSecurityPolicy(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchExtensionsV1beta1PodSecurityPolicy(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified DaemonSet @@ -1241,7 +1681,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiExtensionsV1beta1DaemonSet """ -function readExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiExtensionsV1beta1DaemonSet, "/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1250,9 +1690,19 @@ function readExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, na Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readExtensionsV1beta1NamespacedDaemonSet(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readExtensionsV1beta1NamespacedDaemonSet(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified DaemonSet @@ -1261,16 +1711,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiExtensionsV1beta1DaemonSet """ -function readExtensionsV1beta1NamespacedDaemonSetStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readExtensionsV1beta1NamespacedDaemonSetStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiExtensionsV1beta1DaemonSet, "/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readExtensionsV1beta1NamespacedDaemonSetStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readExtensionsV1beta1NamespacedDaemonSetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readExtensionsV1beta1NamespacedDaemonSetStatus(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readExtensionsV1beta1NamespacedDaemonSetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified Deployment @@ -1281,7 +1741,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiExtensionsV1beta1Deployment """ -function readExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiExtensionsV1beta1Deployment, "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1290,9 +1750,19 @@ function readExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, n Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readExtensionsV1beta1NamespacedDeployment(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readExtensionsV1beta1NamespacedDeployment(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read scale of the specified Deployment @@ -1301,16 +1771,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiExtensionsV1beta1Scale """ -function readExtensionsV1beta1NamespacedDeploymentScale(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readExtensionsV1beta1NamespacedDeploymentScale(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiExtensionsV1beta1Scale, "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readExtensionsV1beta1NamespacedDeploymentScale(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readExtensionsV1beta1NamespacedDeploymentScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readExtensionsV1beta1NamespacedDeploymentScale(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readExtensionsV1beta1NamespacedDeploymentScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified Deployment @@ -1319,16 +1799,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiExtensionsV1beta1Deployment """ -function readExtensionsV1beta1NamespacedDeploymentStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readExtensionsV1beta1NamespacedDeploymentStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiExtensionsV1beta1Deployment, "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readExtensionsV1beta1NamespacedDeploymentStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readExtensionsV1beta1NamespacedDeploymentStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readExtensionsV1beta1NamespacedDeploymentStatus(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readExtensionsV1beta1NamespacedDeploymentStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified Ingress @@ -1339,7 +1829,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiExtensionsV1beta1Ingress """ -function readExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiExtensionsV1beta1Ingress, "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1348,9 +1838,19 @@ function readExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, name Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readExtensionsV1beta1NamespacedIngress(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readExtensionsV1beta1NamespacedIngress(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified Ingress @@ -1359,16 +1859,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiExtensionsV1beta1Ingress """ -function readExtensionsV1beta1NamespacedIngressStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readExtensionsV1beta1NamespacedIngressStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiExtensionsV1beta1Ingress, "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readExtensionsV1beta1NamespacedIngressStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readExtensionsV1beta1NamespacedIngressStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readExtensionsV1beta1NamespacedIngressStatus(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readExtensionsV1beta1NamespacedIngressStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified NetworkPolicy @@ -1379,7 +1889,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiExtensionsV1beta1NetworkPolicy """ -function readExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiExtensionsV1beta1NetworkPolicy, "/apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1388,9 +1898,19 @@ function readExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readExtensionsV1beta1NamespacedNetworkPolicy(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readExtensionsV1beta1NamespacedNetworkPolicy(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified ReplicaSet @@ -1401,7 +1921,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiExtensionsV1beta1ReplicaSet """ -function readExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiExtensionsV1beta1ReplicaSet, "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1410,9 +1930,19 @@ function readExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, n Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readExtensionsV1beta1NamespacedReplicaSet(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readExtensionsV1beta1NamespacedReplicaSet(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read scale of the specified ReplicaSet @@ -1421,16 +1951,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiExtensionsV1beta1Scale """ -function readExtensionsV1beta1NamespacedReplicaSetScale(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readExtensionsV1beta1NamespacedReplicaSetScale(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiExtensionsV1beta1Scale, "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readExtensionsV1beta1NamespacedReplicaSetScale(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readExtensionsV1beta1NamespacedReplicaSetScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readExtensionsV1beta1NamespacedReplicaSetScale(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readExtensionsV1beta1NamespacedReplicaSetScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified ReplicaSet @@ -1439,16 +1979,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiExtensionsV1beta1ReplicaSet """ -function readExtensionsV1beta1NamespacedReplicaSetStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readExtensionsV1beta1NamespacedReplicaSetStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiExtensionsV1beta1ReplicaSet, "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readExtensionsV1beta1NamespacedReplicaSetStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readExtensionsV1beta1NamespacedReplicaSetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readExtensionsV1beta1NamespacedReplicaSetStatus(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readExtensionsV1beta1NamespacedReplicaSetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read scale of the specified ReplicationControllerDummy @@ -1457,16 +2007,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiExtensionsV1beta1Scale """ -function readExtensionsV1beta1NamespacedReplicationControllerDummyScale(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readExtensionsV1beta1NamespacedReplicationControllerDummyScale(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiExtensionsV1beta1Scale, "/apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readExtensionsV1beta1NamespacedReplicationControllerDummyScale(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readExtensionsV1beta1NamespacedReplicationControllerDummyScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readExtensionsV1beta1NamespacedReplicationControllerDummyScale(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readExtensionsV1beta1NamespacedReplicationControllerDummyScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified PodSecurityPolicy @@ -1476,7 +2036,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiExtensionsV1beta1PodSecurityPolicy """ -function readExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiExtensionsV1beta1PodSecurityPolicy, "/apis/extensions/v1beta1/podsecuritypolicies/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -1484,9 +2044,19 @@ function readExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, name Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readExtensionsV1beta1PodSecurityPolicy(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readExtensionsV1beta1PodSecurityPolicy(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified DaemonSet @@ -1498,7 +2068,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiExtensionsV1beta1DaemonSet """ -function replaceExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiExtensionsV1beta1DaemonSet, "/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1507,9 +2077,19 @@ function replaceExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceExtensionsV1beta1NamespacedDaemonSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceExtensionsV1beta1NamespacedDaemonSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified DaemonSet @@ -1521,7 +2101,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiExtensionsV1beta1DaemonSet """ -function replaceExtensionsV1beta1NamespacedDaemonSetStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceExtensionsV1beta1NamespacedDaemonSetStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiExtensionsV1beta1DaemonSet, "/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1530,9 +2110,19 @@ function replaceExtensionsV1beta1NamespacedDaemonSetStatus(_api::ExtensionsV1bet Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceExtensionsV1beta1NamespacedDaemonSetStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceExtensionsV1beta1NamespacedDaemonSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceExtensionsV1beta1NamespacedDaemonSetStatus(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceExtensionsV1beta1NamespacedDaemonSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified Deployment @@ -1544,7 +2134,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiExtensionsV1beta1Deployment """ -function replaceExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiExtensionsV1beta1Deployment, "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1553,9 +2143,19 @@ function replaceExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceExtensionsV1beta1NamespacedDeployment(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceExtensionsV1beta1NamespacedDeployment(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace scale of the specified Deployment @@ -1567,7 +2167,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiExtensionsV1beta1Scale """ -function replaceExtensionsV1beta1NamespacedDeploymentScale(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceExtensionsV1beta1NamespacedDeploymentScale(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiExtensionsV1beta1Scale, "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1576,9 +2176,19 @@ function replaceExtensionsV1beta1NamespacedDeploymentScale(_api::ExtensionsV1bet Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceExtensionsV1beta1NamespacedDeploymentScale(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceExtensionsV1beta1NamespacedDeploymentScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceExtensionsV1beta1NamespacedDeploymentScale(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceExtensionsV1beta1NamespacedDeploymentScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified Deployment @@ -1590,7 +2200,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiExtensionsV1beta1Deployment """ -function replaceExtensionsV1beta1NamespacedDeploymentStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceExtensionsV1beta1NamespacedDeploymentStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiExtensionsV1beta1Deployment, "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1599,9 +2209,19 @@ function replaceExtensionsV1beta1NamespacedDeploymentStatus(_api::ExtensionsV1be Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceExtensionsV1beta1NamespacedDeploymentStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceExtensionsV1beta1NamespacedDeploymentStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceExtensionsV1beta1NamespacedDeploymentStatus(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceExtensionsV1beta1NamespacedDeploymentStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified Ingress @@ -1613,7 +2233,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiExtensionsV1beta1Ingress """ -function replaceExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiExtensionsV1beta1Ingress, "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1622,9 +2242,19 @@ function replaceExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, n Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceExtensionsV1beta1NamespacedIngress(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceExtensionsV1beta1NamespacedIngress(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified Ingress @@ -1636,7 +2266,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiExtensionsV1beta1Ingress """ -function replaceExtensionsV1beta1NamespacedIngressStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceExtensionsV1beta1NamespacedIngressStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiExtensionsV1beta1Ingress, "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1645,9 +2275,19 @@ function replaceExtensionsV1beta1NamespacedIngressStatus(_api::ExtensionsV1beta1 Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceExtensionsV1beta1NamespacedIngressStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceExtensionsV1beta1NamespacedIngressStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceExtensionsV1beta1NamespacedIngressStatus(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceExtensionsV1beta1NamespacedIngressStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified NetworkPolicy @@ -1659,7 +2299,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiExtensionsV1beta1NetworkPolicy """ -function replaceExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiExtensionsV1beta1NetworkPolicy, "/apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1668,9 +2308,19 @@ function replaceExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1 Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceExtensionsV1beta1NamespacedNetworkPolicy(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceExtensionsV1beta1NamespacedNetworkPolicy(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified ReplicaSet @@ -1682,7 +2332,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiExtensionsV1beta1ReplicaSet """ -function replaceExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiExtensionsV1beta1ReplicaSet, "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1691,9 +2341,19 @@ function replaceExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceExtensionsV1beta1NamespacedReplicaSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceExtensionsV1beta1NamespacedReplicaSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace scale of the specified ReplicaSet @@ -1705,7 +2365,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiExtensionsV1beta1Scale """ -function replaceExtensionsV1beta1NamespacedReplicaSetScale(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceExtensionsV1beta1NamespacedReplicaSetScale(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiExtensionsV1beta1Scale, "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1714,9 +2374,19 @@ function replaceExtensionsV1beta1NamespacedReplicaSetScale(_api::ExtensionsV1bet Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceExtensionsV1beta1NamespacedReplicaSetScale(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceExtensionsV1beta1NamespacedReplicaSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceExtensionsV1beta1NamespacedReplicaSetScale(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceExtensionsV1beta1NamespacedReplicaSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified ReplicaSet @@ -1728,7 +2398,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiExtensionsV1beta1ReplicaSet """ -function replaceExtensionsV1beta1NamespacedReplicaSetStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceExtensionsV1beta1NamespacedReplicaSetStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiExtensionsV1beta1ReplicaSet, "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1737,9 +2407,19 @@ function replaceExtensionsV1beta1NamespacedReplicaSetStatus(_api::ExtensionsV1be Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceExtensionsV1beta1NamespacedReplicaSetStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceExtensionsV1beta1NamespacedReplicaSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceExtensionsV1beta1NamespacedReplicaSetStatus(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceExtensionsV1beta1NamespacedReplicaSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace scale of the specified ReplicationControllerDummy @@ -1751,7 +2431,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiExtensionsV1beta1Scale """ -function replaceExtensionsV1beta1NamespacedReplicationControllerDummyScale(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceExtensionsV1beta1NamespacedReplicationControllerDummyScale(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiExtensionsV1beta1Scale, "/apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1760,9 +2440,19 @@ function replaceExtensionsV1beta1NamespacedReplicationControllerDummyScale(_api: Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceExtensionsV1beta1NamespacedReplicationControllerDummyScale(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceExtensionsV1beta1NamespacedReplicationControllerDummyScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceExtensionsV1beta1NamespacedReplicationControllerDummyScale(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceExtensionsV1beta1NamespacedReplicationControllerDummyScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified PodSecurityPolicy @@ -1773,7 +2463,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiExtensionsV1beta1PodSecurityPolicy """ -function replaceExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiExtensionsV1beta1PodSecurityPolicy, "/apis/extensions/v1beta1/podsecuritypolicies/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -1781,9 +2471,19 @@ function replaceExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, n Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceExtensionsV1beta1PodSecurityPolicy(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceExtensionsV1beta1PodSecurityPolicy(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of DaemonSet. deprecated: use the 'watch' parameter with a list operation instead. @@ -1798,7 +2498,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchExtensionsV1beta1DaemonSetListForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchExtensionsV1beta1DaemonSetListForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/extensions/v1beta1/watch/daemonsets", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -1811,9 +2511,19 @@ function watchExtensionsV1beta1DaemonSetListForAllNamespaces(_api::ExtensionsV1b Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchExtensionsV1beta1DaemonSetListForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1DaemonSetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchExtensionsV1beta1DaemonSetListForAllNamespaces(_api::ExtensionsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1DaemonSetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead. @@ -1828,7 +2538,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchExtensionsV1beta1DeploymentListForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchExtensionsV1beta1DeploymentListForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/extensions/v1beta1/watch/deployments", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -1841,9 +2551,19 @@ function watchExtensionsV1beta1DeploymentListForAllNamespaces(_api::ExtensionsV1 Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchExtensionsV1beta1DeploymentListForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1DeploymentListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchExtensionsV1beta1DeploymentListForAllNamespaces(_api::ExtensionsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1DeploymentListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead. @@ -1858,7 +2578,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchExtensionsV1beta1IngressListForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchExtensionsV1beta1IngressListForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/extensions/v1beta1/watch/ingresses", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -1871,9 +2591,19 @@ function watchExtensionsV1beta1IngressListForAllNamespaces(_api::ExtensionsV1bet Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchExtensionsV1beta1IngressListForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1IngressListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchExtensionsV1beta1IngressListForAllNamespaces(_api::ExtensionsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1IngressListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -1890,7 +2620,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/extensions/v1beta1/watch/namespaces/{namespace}/daemonsets/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1905,9 +2635,19 @@ function watchExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, n Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1NamespacedDaemonSet(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchExtensionsV1beta1NamespacedDaemonSet(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1NamespacedDaemonSet(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of DaemonSet. deprecated: use the 'watch' parameter with a list operation instead. @@ -1923,7 +2663,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchExtensionsV1beta1NamespacedDaemonSetList(_api::ExtensionsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchExtensionsV1beta1NamespacedDaemonSetList(_api::ExtensionsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/extensions/v1beta1/watch/namespaces/{namespace}/daemonsets", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -1937,9 +2677,19 @@ function watchExtensionsV1beta1NamespacedDaemonSetList(_api::ExtensionsV1beta1Ap Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchExtensionsV1beta1NamespacedDaemonSetList(_api::ExtensionsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1NamespacedDaemonSetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchExtensionsV1beta1NamespacedDaemonSetList(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1NamespacedDaemonSetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -1956,7 +2706,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/extensions/v1beta1/watch/namespaces/{namespace}/deployments/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -1971,9 +2721,19 @@ function watchExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1NamespacedDeployment(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchExtensionsV1beta1NamespacedDeployment(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1NamespacedDeployment(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead. @@ -1989,7 +2749,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchExtensionsV1beta1NamespacedDeploymentList(_api::ExtensionsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchExtensionsV1beta1NamespacedDeploymentList(_api::ExtensionsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/extensions/v1beta1/watch/namespaces/{namespace}/deployments", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -2003,9 +2763,19 @@ function watchExtensionsV1beta1NamespacedDeploymentList(_api::ExtensionsV1beta1A Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchExtensionsV1beta1NamespacedDeploymentList(_api::ExtensionsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1NamespacedDeploymentList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchExtensionsV1beta1NamespacedDeploymentList(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1NamespacedDeploymentList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -2022,7 +2792,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/extensions/v1beta1/watch/namespaces/{namespace}/ingresses/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -2037,9 +2807,19 @@ function watchExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, nam Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1NamespacedIngress(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchExtensionsV1beta1NamespacedIngress(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1NamespacedIngress(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead. @@ -2055,7 +2835,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchExtensionsV1beta1NamespacedIngressList(_api::ExtensionsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchExtensionsV1beta1NamespacedIngressList(_api::ExtensionsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/extensions/v1beta1/watch/namespaces/{namespace}/ingresses", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -2069,9 +2849,19 @@ function watchExtensionsV1beta1NamespacedIngressList(_api::ExtensionsV1beta1Api, Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchExtensionsV1beta1NamespacedIngressList(_api::ExtensionsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1NamespacedIngressList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchExtensionsV1beta1NamespacedIngressList(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1NamespacedIngressList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -2088,7 +2878,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/extensions/v1beta1/watch/namespaces/{namespace}/networkpolicies/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -2103,9 +2893,19 @@ function watchExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Ap Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1NamespacedNetworkPolicy(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchExtensionsV1beta1NamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1NamespacedNetworkPolicy(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of NetworkPolicy. deprecated: use the 'watch' parameter with a list operation instead. @@ -2121,7 +2921,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchExtensionsV1beta1NamespacedNetworkPolicyList(_api::ExtensionsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchExtensionsV1beta1NamespacedNetworkPolicyList(_api::ExtensionsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/extensions/v1beta1/watch/namespaces/{namespace}/networkpolicies", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -2135,9 +2935,19 @@ function watchExtensionsV1beta1NamespacedNetworkPolicyList(_api::ExtensionsV1bet Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchExtensionsV1beta1NamespacedNetworkPolicyList(_api::ExtensionsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1NamespacedNetworkPolicyList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchExtensionsV1beta1NamespacedNetworkPolicyList(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1NamespacedNetworkPolicyList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -2154,7 +2964,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/extensions/v1beta1/watch/namespaces/{namespace}/replicasets/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -2169,9 +2979,19 @@ function watchExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1NamespacedReplicaSet(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchExtensionsV1beta1NamespacedReplicaSet(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1NamespacedReplicaSet(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead. @@ -2187,7 +3007,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchExtensionsV1beta1NamespacedReplicaSetList(_api::ExtensionsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchExtensionsV1beta1NamespacedReplicaSetList(_api::ExtensionsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/extensions/v1beta1/watch/namespaces/{namespace}/replicasets", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -2201,9 +3021,19 @@ function watchExtensionsV1beta1NamespacedReplicaSetList(_api::ExtensionsV1beta1A Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchExtensionsV1beta1NamespacedReplicaSetList(_api::ExtensionsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1NamespacedReplicaSetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchExtensionsV1beta1NamespacedReplicaSetList(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1NamespacedReplicaSetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of NetworkPolicy. deprecated: use the 'watch' parameter with a list operation instead. @@ -2218,7 +3048,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchExtensionsV1beta1NetworkPolicyListForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchExtensionsV1beta1NetworkPolicyListForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/extensions/v1beta1/watch/networkpolicies", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -2231,9 +3061,19 @@ function watchExtensionsV1beta1NetworkPolicyListForAllNamespaces(_api::Extension Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchExtensionsV1beta1NetworkPolicyListForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1NetworkPolicyListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchExtensionsV1beta1NetworkPolicyListForAllNamespaces(_api::ExtensionsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1NetworkPolicyListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -2249,7 +3089,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/extensions/v1beta1/watch/podsecuritypolicies/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -2263,9 +3103,19 @@ function watchExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, nam Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1PodSecurityPolicy(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchExtensionsV1beta1PodSecurityPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1PodSecurityPolicy(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of PodSecurityPolicy. deprecated: use the 'watch' parameter with a list operation instead. @@ -2280,7 +3130,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchExtensionsV1beta1PodSecurityPolicyList(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchExtensionsV1beta1PodSecurityPolicyList(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/extensions/v1beta1/watch/podsecuritypolicies", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -2293,9 +3143,19 @@ function watchExtensionsV1beta1PodSecurityPolicyList(_api::ExtensionsV1beta1Api; Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchExtensionsV1beta1PodSecurityPolicyList(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1PodSecurityPolicyList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchExtensionsV1beta1PodSecurityPolicyList(_api::ExtensionsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1PodSecurityPolicyList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead. @@ -2310,7 +3170,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchExtensionsV1beta1ReplicaSetListForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchExtensionsV1beta1ReplicaSetListForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/extensions/v1beta1/watch/replicasets", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -2323,7 +3183,17 @@ function watchExtensionsV1beta1ReplicaSetListForAllNamespaces(_api::ExtensionsV1 Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchExtensionsV1beta1ReplicaSetListForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1ReplicaSetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchExtensionsV1beta1ReplicaSetListForAllNamespaces(_api::ExtensionsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchExtensionsV1beta1ReplicaSetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createExtensionsV1beta1NamespacedDaemonSet, createExtensionsV1beta1NamespacedDeployment, createExtensionsV1beta1NamespacedDeploymentRollback, createExtensionsV1beta1NamespacedIngress, createExtensionsV1beta1NamespacedNetworkPolicy, createExtensionsV1beta1NamespacedReplicaSet, createExtensionsV1beta1PodSecurityPolicy, deleteExtensionsV1beta1CollectionNamespacedDaemonSet, deleteExtensionsV1beta1CollectionNamespacedDeployment, deleteExtensionsV1beta1CollectionNamespacedIngress, deleteExtensionsV1beta1CollectionNamespacedNetworkPolicy, deleteExtensionsV1beta1CollectionNamespacedReplicaSet, deleteExtensionsV1beta1CollectionPodSecurityPolicy, deleteExtensionsV1beta1NamespacedDaemonSet, deleteExtensionsV1beta1NamespacedDeployment, deleteExtensionsV1beta1NamespacedIngress, deleteExtensionsV1beta1NamespacedNetworkPolicy, deleteExtensionsV1beta1NamespacedReplicaSet, deleteExtensionsV1beta1PodSecurityPolicy, getExtensionsV1beta1APIResources, listExtensionsV1beta1DaemonSetForAllNamespaces, listExtensionsV1beta1DeploymentForAllNamespaces, listExtensionsV1beta1IngressForAllNamespaces, listExtensionsV1beta1NamespacedDaemonSet, listExtensionsV1beta1NamespacedDeployment, listExtensionsV1beta1NamespacedIngress, listExtensionsV1beta1NamespacedNetworkPolicy, listExtensionsV1beta1NamespacedReplicaSet, listExtensionsV1beta1NetworkPolicyForAllNamespaces, listExtensionsV1beta1PodSecurityPolicy, listExtensionsV1beta1ReplicaSetForAllNamespaces, patchExtensionsV1beta1NamespacedDaemonSet, patchExtensionsV1beta1NamespacedDaemonSetStatus, patchExtensionsV1beta1NamespacedDeployment, patchExtensionsV1beta1NamespacedDeploymentScale, patchExtensionsV1beta1NamespacedDeploymentStatus, patchExtensionsV1beta1NamespacedIngress, patchExtensionsV1beta1NamespacedIngressStatus, patchExtensionsV1beta1NamespacedNetworkPolicy, patchExtensionsV1beta1NamespacedReplicaSet, patchExtensionsV1beta1NamespacedReplicaSetScale, patchExtensionsV1beta1NamespacedReplicaSetStatus, patchExtensionsV1beta1NamespacedReplicationControllerDummyScale, patchExtensionsV1beta1PodSecurityPolicy, readExtensionsV1beta1NamespacedDaemonSet, readExtensionsV1beta1NamespacedDaemonSetStatus, readExtensionsV1beta1NamespacedDeployment, readExtensionsV1beta1NamespacedDeploymentScale, readExtensionsV1beta1NamespacedDeploymentStatus, readExtensionsV1beta1NamespacedIngress, readExtensionsV1beta1NamespacedIngressStatus, readExtensionsV1beta1NamespacedNetworkPolicy, readExtensionsV1beta1NamespacedReplicaSet, readExtensionsV1beta1NamespacedReplicaSetScale, readExtensionsV1beta1NamespacedReplicaSetStatus, readExtensionsV1beta1NamespacedReplicationControllerDummyScale, readExtensionsV1beta1PodSecurityPolicy, replaceExtensionsV1beta1NamespacedDaemonSet, replaceExtensionsV1beta1NamespacedDaemonSetStatus, replaceExtensionsV1beta1NamespacedDeployment, replaceExtensionsV1beta1NamespacedDeploymentScale, replaceExtensionsV1beta1NamespacedDeploymentStatus, replaceExtensionsV1beta1NamespacedIngress, replaceExtensionsV1beta1NamespacedIngressStatus, replaceExtensionsV1beta1NamespacedNetworkPolicy, replaceExtensionsV1beta1NamespacedReplicaSet, replaceExtensionsV1beta1NamespacedReplicaSetScale, replaceExtensionsV1beta1NamespacedReplicaSetStatus, replaceExtensionsV1beta1NamespacedReplicationControllerDummyScale, replaceExtensionsV1beta1PodSecurityPolicy, watchExtensionsV1beta1DaemonSetListForAllNamespaces, watchExtensionsV1beta1DeploymentListForAllNamespaces, watchExtensionsV1beta1IngressListForAllNamespaces, watchExtensionsV1beta1NamespacedDaemonSet, watchExtensionsV1beta1NamespacedDaemonSetList, watchExtensionsV1beta1NamespacedDeployment, watchExtensionsV1beta1NamespacedDeploymentList, watchExtensionsV1beta1NamespacedIngress, watchExtensionsV1beta1NamespacedIngressList, watchExtensionsV1beta1NamespacedNetworkPolicy, watchExtensionsV1beta1NamespacedNetworkPolicyList, watchExtensionsV1beta1NamespacedReplicaSet, watchExtensionsV1beta1NamespacedReplicaSetList, watchExtensionsV1beta1NetworkPolicyListForAllNamespaces, watchExtensionsV1beta1PodSecurityPolicy, watchExtensionsV1beta1PodSecurityPolicyList, watchExtensionsV1beta1ReplicaSetListForAllNamespaces diff --git a/src/api/api_FlowcontrolApiserverApi.jl b/src/api/api_FlowcontrolApiserverApi.jl index ab42e224..59b198e8 100644 --- a/src/api/api_FlowcontrolApiserverApi.jl +++ b/src/api/api_FlowcontrolApiserverApi.jl @@ -10,11 +10,21 @@ end get information of a group Return: IoK8sApimachineryPkgApisMetaV1APIGroup """ -function getFlowcontrolApiserverAPIGroup(_api::FlowcontrolApiserverApi; _mediaType=nothing) +function _swaggerinternal_getFlowcontrolApiserverAPIGroup(_api::FlowcontrolApiserverApi; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIGroup, "/apis/flowcontrol.apiserver.k8s.io/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getFlowcontrolApiserverAPIGroup(_api::FlowcontrolApiserverApi; _mediaType=nothing) + _ctx = _swaggerinternal_getFlowcontrolApiserverAPIGroup(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getFlowcontrolApiserverAPIGroup(_api::FlowcontrolApiserverApi, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getFlowcontrolApiserverAPIGroup(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export getFlowcontrolApiserverAPIGroup diff --git a/src/api/api_FlowcontrolApiserverV1alpha1Api.jl b/src/api/api_FlowcontrolApiserverV1alpha1Api.jl index 9b7290fd..ba8a30b5 100644 --- a/src/api/api_FlowcontrolApiserverV1alpha1Api.jl +++ b/src/api/api_FlowcontrolApiserverV1alpha1Api.jl @@ -14,16 +14,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiFlowcontrolV1alpha1FlowSchema """ -function createFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiFlowcontrolV1alpha1FlowSchema, "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createFlowcontrolApiserverV1alpha1FlowSchema(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createFlowcontrolApiserverV1alpha1FlowSchema(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a PriorityLevelConfiguration @@ -33,16 +43,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiFlowcontrolV1alpha1PriorityLevelConfiguration """ -function createFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiFlowcontrolV1alpha1PriorityLevelConfiguration, "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of FlowSchema @@ -62,7 +82,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteFlowcontrolApiserverV1alpha1CollectionFlowSchema(_api::FlowcontrolApiserverV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteFlowcontrolApiserverV1alpha1CollectionFlowSchema(_api::FlowcontrolApiserverV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -79,9 +99,19 @@ function deleteFlowcontrolApiserverV1alpha1CollectionFlowSchema(_api::Flowcontro Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteFlowcontrolApiserverV1alpha1CollectionFlowSchema(_api::FlowcontrolApiserverV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteFlowcontrolApiserverV1alpha1CollectionFlowSchema(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteFlowcontrolApiserverV1alpha1CollectionFlowSchema(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteFlowcontrolApiserverV1alpha1CollectionFlowSchema(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of PriorityLevelConfiguration @@ -101,7 +131,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteFlowcontrolApiserverV1alpha1CollectionPriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteFlowcontrolApiserverV1alpha1CollectionPriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -118,9 +148,19 @@ function deleteFlowcontrolApiserverV1alpha1CollectionPriorityLevelConfiguration( Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteFlowcontrolApiserverV1alpha1CollectionPriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteFlowcontrolApiserverV1alpha1CollectionPriorityLevelConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteFlowcontrolApiserverV1alpha1CollectionPriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteFlowcontrolApiserverV1alpha1CollectionPriorityLevelConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a FlowSchema @@ -133,7 +173,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -143,9 +183,19 @@ function deleteFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserver Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteFlowcontrolApiserverV1alpha1FlowSchema(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteFlowcontrolApiserverV1alpha1FlowSchema(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a PriorityLevelConfiguration @@ -158,7 +208,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -168,21 +218,41 @@ function deleteFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::Flow Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getFlowcontrolApiserverV1alpha1APIResources(_api::FlowcontrolApiserverV1alpha1Api; _mediaType=nothing) +function _swaggerinternal_getFlowcontrolApiserverV1alpha1APIResources(_api::FlowcontrolApiserverV1alpha1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getFlowcontrolApiserverV1alpha1APIResources(_api::FlowcontrolApiserverV1alpha1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getFlowcontrolApiserverV1alpha1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getFlowcontrolApiserverV1alpha1APIResources(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getFlowcontrolApiserverV1alpha1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind FlowSchema @@ -197,7 +267,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiFlowcontrolV1alpha1FlowSchemaList """ -function listFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiFlowcontrolV1alpha1FlowSchemaList, "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -210,9 +280,19 @@ function listFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1 Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listFlowcontrolApiserverV1alpha1FlowSchema(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listFlowcontrolApiserverV1alpha1FlowSchema(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind PriorityLevelConfiguration @@ -227,7 +307,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiFlowcontrolV1alpha1PriorityLevelConfigurationList """ -function listFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiFlowcontrolV1alpha1PriorityLevelConfigurationList, "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -240,9 +320,19 @@ function listFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::Flowco Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified FlowSchema @@ -254,7 +344,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiFlowcontrolV1alpha1FlowSchema """ -function patchFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiFlowcontrolV1alpha1FlowSchema, "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -263,9 +353,19 @@ function patchFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchFlowcontrolApiserverV1alpha1FlowSchema(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchFlowcontrolApiserverV1alpha1FlowSchema(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified FlowSchema @@ -277,7 +377,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiFlowcontrolV1alpha1FlowSchema """ -function patchFlowcontrolApiserverV1alpha1FlowSchemaStatus(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchFlowcontrolApiserverV1alpha1FlowSchemaStatus(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiFlowcontrolV1alpha1FlowSchema, "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -286,9 +386,19 @@ function patchFlowcontrolApiserverV1alpha1FlowSchemaStatus(_api::FlowcontrolApis Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchFlowcontrolApiserverV1alpha1FlowSchemaStatus(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchFlowcontrolApiserverV1alpha1FlowSchemaStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchFlowcontrolApiserverV1alpha1FlowSchemaStatus(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchFlowcontrolApiserverV1alpha1FlowSchemaStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified PriorityLevelConfiguration @@ -300,7 +410,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiFlowcontrolV1alpha1PriorityLevelConfiguration """ -function patchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiFlowcontrolV1alpha1PriorityLevelConfiguration, "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -309,9 +419,19 @@ function patchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::Flowc Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified PriorityLevelConfiguration @@ -323,7 +443,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiFlowcontrolV1alpha1PriorityLevelConfiguration """ -function patchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiFlowcontrolV1alpha1PriorityLevelConfiguration, "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -332,9 +452,19 @@ function patchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus(_api: Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified FlowSchema @@ -344,7 +474,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiFlowcontrolV1alpha1FlowSchema """ -function readFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1alpha1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1alpha1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiFlowcontrolV1alpha1FlowSchema, "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -352,9 +482,19 @@ function readFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1 Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1alpha1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readFlowcontrolApiserverV1alpha1FlowSchema(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readFlowcontrolApiserverV1alpha1FlowSchema(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified FlowSchema @@ -362,15 +502,25 @@ Param: name::String (required) Param: pretty::String Return: IoK8sApiFlowcontrolV1alpha1FlowSchema """ -function readFlowcontrolApiserverV1alpha1FlowSchemaStatus(_api::FlowcontrolApiserverV1alpha1Api, name::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readFlowcontrolApiserverV1alpha1FlowSchemaStatus(_api::FlowcontrolApiserverV1alpha1Api, name::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiFlowcontrolV1alpha1FlowSchema, "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readFlowcontrolApiserverV1alpha1FlowSchemaStatus(_api::FlowcontrolApiserverV1alpha1Api, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readFlowcontrolApiserverV1alpha1FlowSchemaStatus(_api, name; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readFlowcontrolApiserverV1alpha1FlowSchemaStatus(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readFlowcontrolApiserverV1alpha1FlowSchemaStatus(_api, name; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified PriorityLevelConfiguration @@ -380,7 +530,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiFlowcontrolV1alpha1PriorityLevelConfiguration """ -function readFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiFlowcontrolV1alpha1PriorityLevelConfiguration, "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -388,9 +538,19 @@ function readFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::Flowco Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified PriorityLevelConfiguration @@ -398,15 +558,25 @@ Param: name::String (required) Param: pretty::String Return: IoK8sApiFlowcontrolV1alpha1PriorityLevelConfiguration """ -function readFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus(_api::FlowcontrolApiserverV1alpha1Api, name::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus(_api::FlowcontrolApiserverV1alpha1Api, name::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiFlowcontrolV1alpha1PriorityLevelConfiguration, "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus(_api::FlowcontrolApiserverV1alpha1Api, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus(_api, name; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus(_api, name; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified FlowSchema @@ -417,7 +587,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiFlowcontrolV1alpha1FlowSchema """ -function replaceFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiFlowcontrolV1alpha1FlowSchema, "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -425,9 +595,19 @@ function replaceFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserve Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceFlowcontrolApiserverV1alpha1FlowSchema(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceFlowcontrolApiserverV1alpha1FlowSchema(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified FlowSchema @@ -438,7 +618,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiFlowcontrolV1alpha1FlowSchema """ -function replaceFlowcontrolApiserverV1alpha1FlowSchemaStatus(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceFlowcontrolApiserverV1alpha1FlowSchemaStatus(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiFlowcontrolV1alpha1FlowSchema, "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/flowschemas/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -446,9 +626,19 @@ function replaceFlowcontrolApiserverV1alpha1FlowSchemaStatus(_api::FlowcontrolAp Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceFlowcontrolApiserverV1alpha1FlowSchemaStatus(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceFlowcontrolApiserverV1alpha1FlowSchemaStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceFlowcontrolApiserverV1alpha1FlowSchemaStatus(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceFlowcontrolApiserverV1alpha1FlowSchemaStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified PriorityLevelConfiguration @@ -459,7 +649,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiFlowcontrolV1alpha1PriorityLevelConfiguration """ -function replaceFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiFlowcontrolV1alpha1PriorityLevelConfiguration, "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -467,9 +657,19 @@ function replaceFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::Flo Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified PriorityLevelConfiguration @@ -480,7 +680,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiFlowcontrolV1alpha1PriorityLevelConfiguration """ -function replaceFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiFlowcontrolV1alpha1PriorityLevelConfiguration, "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/prioritylevelconfigurations/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -488,9 +688,19 @@ function replaceFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus(_ap Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -506,7 +716,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/watch/flowschemas/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -520,9 +730,19 @@ function watchFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchFlowcontrolApiserverV1alpha1FlowSchema(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchFlowcontrolApiserverV1alpha1FlowSchema(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchFlowcontrolApiserverV1alpha1FlowSchema(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of FlowSchema. deprecated: use the 'watch' parameter with a list operation instead. @@ -537,7 +757,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchFlowcontrolApiserverV1alpha1FlowSchemaList(_api::FlowcontrolApiserverV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchFlowcontrolApiserverV1alpha1FlowSchemaList(_api::FlowcontrolApiserverV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/watch/flowschemas", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -550,9 +770,19 @@ function watchFlowcontrolApiserverV1alpha1FlowSchemaList(_api::FlowcontrolApiser Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchFlowcontrolApiserverV1alpha1FlowSchemaList(_api::FlowcontrolApiserverV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchFlowcontrolApiserverV1alpha1FlowSchemaList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchFlowcontrolApiserverV1alpha1FlowSchemaList(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchFlowcontrolApiserverV1alpha1FlowSchemaList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -568,7 +798,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/watch/prioritylevelconfigurations/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -582,9 +812,19 @@ function watchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::Flowc Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of PriorityLevelConfiguration. deprecated: use the 'watch' parameter with a list operation instead. @@ -599,7 +839,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationList(_api::FlowcontrolApiserverV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationList(_api::FlowcontrolApiserverV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/flowcontrol.apiserver.k8s.io/v1alpha1/watch/prioritylevelconfigurations", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -612,7 +852,17 @@ function watchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationList(_api::F Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationList(_api::FlowcontrolApiserverV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationList(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createFlowcontrolApiserverV1alpha1FlowSchema, createFlowcontrolApiserverV1alpha1PriorityLevelConfiguration, deleteFlowcontrolApiserverV1alpha1CollectionFlowSchema, deleteFlowcontrolApiserverV1alpha1CollectionPriorityLevelConfiguration, deleteFlowcontrolApiserverV1alpha1FlowSchema, deleteFlowcontrolApiserverV1alpha1PriorityLevelConfiguration, getFlowcontrolApiserverV1alpha1APIResources, listFlowcontrolApiserverV1alpha1FlowSchema, listFlowcontrolApiserverV1alpha1PriorityLevelConfiguration, patchFlowcontrolApiserverV1alpha1FlowSchema, patchFlowcontrolApiserverV1alpha1FlowSchemaStatus, patchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration, patchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus, readFlowcontrolApiserverV1alpha1FlowSchema, readFlowcontrolApiserverV1alpha1FlowSchemaStatus, readFlowcontrolApiserverV1alpha1PriorityLevelConfiguration, readFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus, replaceFlowcontrolApiserverV1alpha1FlowSchema, replaceFlowcontrolApiserverV1alpha1FlowSchemaStatus, replaceFlowcontrolApiserverV1alpha1PriorityLevelConfiguration, replaceFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus, watchFlowcontrolApiserverV1alpha1FlowSchema, watchFlowcontrolApiserverV1alpha1FlowSchemaList, watchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration, watchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationList diff --git a/src/api/api_LogsApi.jl b/src/api/api_LogsApi.jl index 8d692083..33c2d2ea 100644 --- a/src/api/api_LogsApi.jl +++ b/src/api/api_LogsApi.jl @@ -11,24 +11,44 @@ end Param: logpath::String (required) Return: Nothing """ -function logFileHandler(_api::LogsApi, logpath::String; _mediaType=nothing) +function _swaggerinternal_logFileHandler(_api::LogsApi, logpath::String; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", Nothing, "/logs/{logpath}", ["BearerToken"]) Swagger.set_param(_ctx.path, "logpath", logpath) # type String Swagger.set_header_accept(_ctx, []) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? [] : [_mediaType]) + return _ctx +end + +function logFileHandler(_api::LogsApi, logpath::String; _mediaType=nothing) + _ctx = _swaggerinternal_logFileHandler(_api, logpath; _mediaType=_mediaType) Swagger.exec(_ctx) end +function logFileHandler(_api::LogsApi, response_stream::Channel, logpath::String; _mediaType=nothing) + _ctx = _swaggerinternal_logFileHandler(_api, logpath; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ Return: Nothing """ -function logFileListHandler(_api::LogsApi; _mediaType=nothing) +function _swaggerinternal_logFileListHandler(_api::LogsApi; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", Nothing, "/logs/", ["BearerToken"]) Swagger.set_header_accept(_ctx, []) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? [] : [_mediaType]) + return _ctx +end + +function logFileListHandler(_api::LogsApi; _mediaType=nothing) + _ctx = _swaggerinternal_logFileListHandler(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function logFileListHandler(_api::LogsApi, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_logFileListHandler(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export logFileHandler, logFileListHandler diff --git a/src/api/api_MetricsV1beta1Api.jl b/src/api/api_MetricsV1beta1Api.jl index 1bfdf6a1..d954ce90 100644 --- a/src/api/api_MetricsV1beta1Api.jl +++ b/src/api/api_MetricsV1beta1Api.jl @@ -18,7 +18,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiMetricsV1beta1NodeMetricsList """ -function listMetricsV1beta1NodeMetrics(_api::MetricsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listMetricsV1beta1NodeMetrics(_api::MetricsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiMetricsV1beta1NodeMetricsList, "/apis/metrics.k8s.io/v1beta1/nodes", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -30,9 +30,19 @@ function listMetricsV1beta1NodeMetrics(_api::MetricsV1beta1Api; allowWatchBookma Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listMetricsV1beta1NodeMetrics(_api::MetricsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listMetricsV1beta1NodeMetrics(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listMetricsV1beta1NodeMetrics(_api::MetricsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listMetricsV1beta1NodeMetrics(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind PodMetrics @@ -46,7 +56,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiMetricsV1beta1PodMetricsList """ -function listMetricsV1beta1PodMetrics(_api::MetricsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listMetricsV1beta1PodMetrics(_api::MetricsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiMetricsV1beta1PodMetricsList, "/apis/metrics.k8s.io/v1beta1/pods", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -58,9 +68,19 @@ function listMetricsV1beta1PodMetrics(_api::MetricsV1beta1Api; allowWatchBookmar Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listMetricsV1beta1PodMetrics(_api::MetricsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listMetricsV1beta1PodMetrics(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listMetricsV1beta1PodMetrics(_api::MetricsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listMetricsV1beta1PodMetrics(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified PodMetrics @@ -71,7 +91,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiMetricsV1beta1PodMetrics """ -function readMetricsV1beta1NamespacedPodMetrics(_api::MetricsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readMetricsV1beta1NamespacedPodMetrics(_api::MetricsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiMetricsV1beta1PodMetrics, "/apis/metrics.k8s.io/v1beta1/namespaces/{namespace}/pods/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -80,9 +100,19 @@ function readMetricsV1beta1NamespacedPodMetrics(_api::MetricsV1beta1Api, name::S Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readMetricsV1beta1NamespacedPodMetrics(_api::MetricsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readMetricsV1beta1NamespacedPodMetrics(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readMetricsV1beta1NamespacedPodMetrics(_api::MetricsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readMetricsV1beta1NamespacedPodMetrics(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified NodeMetrics @@ -92,7 +122,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiMetricsV1beta1NodeMetrics """ -function readMetricsV1beta1NodeMetrics(_api::MetricsV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readMetricsV1beta1NodeMetrics(_api::MetricsV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiMetricsV1beta1NodeMetrics, "/apis/metrics.k8s.io/v1beta1/nodes/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -100,7 +130,17 @@ function readMetricsV1beta1NodeMetrics(_api::MetricsV1beta1Api, name::String; pr Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readMetricsV1beta1NodeMetrics(_api::MetricsV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readMetricsV1beta1NodeMetrics(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readMetricsV1beta1NodeMetrics(_api::MetricsV1beta1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readMetricsV1beta1NodeMetrics(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export listMetricsV1beta1NodeMetrics, listMetricsV1beta1PodMetrics, readMetricsV1beta1NamespacedPodMetrics, readMetricsV1beta1NodeMetrics diff --git a/src/api/api_NetworkingApi.jl b/src/api/api_NetworkingApi.jl index 13185e2e..067c706f 100644 --- a/src/api/api_NetworkingApi.jl +++ b/src/api/api_NetworkingApi.jl @@ -10,11 +10,21 @@ end get information of a group Return: IoK8sApimachineryPkgApisMetaV1APIGroup """ -function getNetworkingAPIGroup(_api::NetworkingApi; _mediaType=nothing) +function _swaggerinternal_getNetworkingAPIGroup(_api::NetworkingApi; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIGroup, "/apis/networking.k8s.io/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getNetworkingAPIGroup(_api::NetworkingApi; _mediaType=nothing) + _ctx = _swaggerinternal_getNetworkingAPIGroup(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getNetworkingAPIGroup(_api::NetworkingApi, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getNetworkingAPIGroup(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export getNetworkingAPIGroup diff --git a/src/api/api_NetworkingV1Api.jl b/src/api/api_NetworkingV1Api.jl index fda0df46..50f5b979 100644 --- a/src/api/api_NetworkingV1Api.jl +++ b/src/api/api_NetworkingV1Api.jl @@ -15,7 +15,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiNetworkingV1NetworkPolicy """ -function createNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiNetworkingV1NetworkPolicy, "/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -23,9 +23,19 @@ function createNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, namesp Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createNetworkingV1NamespacedNetworkPolicy(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createNetworkingV1NamespacedNetworkPolicy(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of NetworkPolicy @@ -46,7 +56,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteNetworkingV1CollectionNamespacedNetworkPolicy(_api::NetworkingV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteNetworkingV1CollectionNamespacedNetworkPolicy(_api::NetworkingV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -64,9 +74,19 @@ function deleteNetworkingV1CollectionNamespacedNetworkPolicy(_api::NetworkingV1A Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteNetworkingV1CollectionNamespacedNetworkPolicy(_api::NetworkingV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteNetworkingV1CollectionNamespacedNetworkPolicy(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteNetworkingV1CollectionNamespacedNetworkPolicy(_api::NetworkingV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteNetworkingV1CollectionNamespacedNetworkPolicy(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a NetworkPolicy @@ -80,7 +100,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -91,21 +111,41 @@ function deleteNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, name:: Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteNetworkingV1NamespacedNetworkPolicy(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteNetworkingV1NamespacedNetworkPolicy(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getNetworkingV1APIResources(_api::NetworkingV1Api; _mediaType=nothing) +function _swaggerinternal_getNetworkingV1APIResources(_api::NetworkingV1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/networking.k8s.io/v1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getNetworkingV1APIResources(_api::NetworkingV1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getNetworkingV1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getNetworkingV1APIResources(_api::NetworkingV1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getNetworkingV1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind NetworkPolicy @@ -121,7 +161,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiNetworkingV1NetworkPolicyList """ -function listNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiNetworkingV1NetworkPolicyList, "/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -135,9 +175,19 @@ function listNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, namespac Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listNetworkingV1NamespacedNetworkPolicy(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listNetworkingV1NamespacedNetworkPolicy(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind NetworkPolicy @@ -152,7 +202,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiNetworkingV1NetworkPolicyList """ -function listNetworkingV1NetworkPolicyForAllNamespaces(_api::NetworkingV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listNetworkingV1NetworkPolicyForAllNamespaces(_api::NetworkingV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiNetworkingV1NetworkPolicyList, "/apis/networking.k8s.io/v1/networkpolicies", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -165,9 +215,19 @@ function listNetworkingV1NetworkPolicyForAllNamespaces(_api::NetworkingV1Api; al Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listNetworkingV1NetworkPolicyForAllNamespaces(_api::NetworkingV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listNetworkingV1NetworkPolicyForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listNetworkingV1NetworkPolicyForAllNamespaces(_api::NetworkingV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listNetworkingV1NetworkPolicyForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified NetworkPolicy @@ -180,7 +240,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiNetworkingV1NetworkPolicy """ -function patchNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiNetworkingV1NetworkPolicy, "/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -190,9 +250,19 @@ function patchNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, name::S Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchNetworkingV1NamespacedNetworkPolicy(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchNetworkingV1NamespacedNetworkPolicy(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified NetworkPolicy @@ -203,7 +273,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiNetworkingV1NetworkPolicy """ -function readNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiNetworkingV1NetworkPolicy, "/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -212,9 +282,19 @@ function readNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, name::St Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readNetworkingV1NamespacedNetworkPolicy(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readNetworkingV1NamespacedNetworkPolicy(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified NetworkPolicy @@ -226,7 +306,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiNetworkingV1NetworkPolicy """ -function replaceNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiNetworkingV1NetworkPolicy, "/apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -235,9 +315,19 @@ function replaceNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, name: Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceNetworkingV1NamespacedNetworkPolicy(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceNetworkingV1NamespacedNetworkPolicy(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -254,7 +344,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/networking.k8s.io/v1/watch/namespaces/{namespace}/networkpolicies/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -269,9 +359,19 @@ function watchNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, name::S Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchNetworkingV1NamespacedNetworkPolicy(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchNetworkingV1NamespacedNetworkPolicy(_api::NetworkingV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchNetworkingV1NamespacedNetworkPolicy(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of NetworkPolicy. deprecated: use the 'watch' parameter with a list operation instead. @@ -287,7 +387,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchNetworkingV1NamespacedNetworkPolicyList(_api::NetworkingV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchNetworkingV1NamespacedNetworkPolicyList(_api::NetworkingV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/networking.k8s.io/v1/watch/namespaces/{namespace}/networkpolicies", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -301,9 +401,19 @@ function watchNetworkingV1NamespacedNetworkPolicyList(_api::NetworkingV1Api, nam Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchNetworkingV1NamespacedNetworkPolicyList(_api::NetworkingV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchNetworkingV1NamespacedNetworkPolicyList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchNetworkingV1NamespacedNetworkPolicyList(_api::NetworkingV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchNetworkingV1NamespacedNetworkPolicyList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of NetworkPolicy. deprecated: use the 'watch' parameter with a list operation instead. @@ -318,7 +428,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchNetworkingV1NetworkPolicyListForAllNamespaces(_api::NetworkingV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchNetworkingV1NetworkPolicyListForAllNamespaces(_api::NetworkingV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/networking.k8s.io/v1/watch/networkpolicies", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -331,7 +441,17 @@ function watchNetworkingV1NetworkPolicyListForAllNamespaces(_api::NetworkingV1Ap Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchNetworkingV1NetworkPolicyListForAllNamespaces(_api::NetworkingV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchNetworkingV1NetworkPolicyListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchNetworkingV1NetworkPolicyListForAllNamespaces(_api::NetworkingV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchNetworkingV1NetworkPolicyListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createNetworkingV1NamespacedNetworkPolicy, deleteNetworkingV1CollectionNamespacedNetworkPolicy, deleteNetworkingV1NamespacedNetworkPolicy, getNetworkingV1APIResources, listNetworkingV1NamespacedNetworkPolicy, listNetworkingV1NetworkPolicyForAllNamespaces, patchNetworkingV1NamespacedNetworkPolicy, readNetworkingV1NamespacedNetworkPolicy, replaceNetworkingV1NamespacedNetworkPolicy, watchNetworkingV1NamespacedNetworkPolicy, watchNetworkingV1NamespacedNetworkPolicyList, watchNetworkingV1NetworkPolicyListForAllNamespaces diff --git a/src/api/api_NetworkingV1beta1Api.jl b/src/api/api_NetworkingV1beta1Api.jl index 8aab4afe..dbb9573c 100644 --- a/src/api/api_NetworkingV1beta1Api.jl +++ b/src/api/api_NetworkingV1beta1Api.jl @@ -15,7 +15,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiNetworkingV1beta1Ingress """ -function createNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiNetworkingV1beta1Ingress, "/apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -23,9 +23,19 @@ function createNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, na Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createNetworkingV1beta1NamespacedIngress(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createNetworkingV1beta1NamespacedIngress(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of Ingress @@ -46,7 +56,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteNetworkingV1beta1CollectionNamespacedIngress(_api::NetworkingV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteNetworkingV1beta1CollectionNamespacedIngress(_api::NetworkingV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -64,9 +74,19 @@ function deleteNetworkingV1beta1CollectionNamespacedIngress(_api::NetworkingV1be Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteNetworkingV1beta1CollectionNamespacedIngress(_api::NetworkingV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteNetworkingV1beta1CollectionNamespacedIngress(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteNetworkingV1beta1CollectionNamespacedIngress(_api::NetworkingV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteNetworkingV1beta1CollectionNamespacedIngress(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete an Ingress @@ -80,7 +100,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -91,21 +111,41 @@ function deleteNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, na Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteNetworkingV1beta1NamespacedIngress(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteNetworkingV1beta1NamespacedIngress(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getNetworkingV1beta1APIResources(_api::NetworkingV1beta1Api; _mediaType=nothing) +function _swaggerinternal_getNetworkingV1beta1APIResources(_api::NetworkingV1beta1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/networking.k8s.io/v1beta1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getNetworkingV1beta1APIResources(_api::NetworkingV1beta1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getNetworkingV1beta1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getNetworkingV1beta1APIResources(_api::NetworkingV1beta1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getNetworkingV1beta1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Ingress @@ -120,7 +160,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiNetworkingV1beta1IngressList """ -function listNetworkingV1beta1IngressForAllNamespaces(_api::NetworkingV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listNetworkingV1beta1IngressForAllNamespaces(_api::NetworkingV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiNetworkingV1beta1IngressList, "/apis/networking.k8s.io/v1beta1/ingresses", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -133,9 +173,19 @@ function listNetworkingV1beta1IngressForAllNamespaces(_api::NetworkingV1beta1Api Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listNetworkingV1beta1IngressForAllNamespaces(_api::NetworkingV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listNetworkingV1beta1IngressForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listNetworkingV1beta1IngressForAllNamespaces(_api::NetworkingV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listNetworkingV1beta1IngressForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Ingress @@ -151,7 +201,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiNetworkingV1beta1IngressList """ -function listNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiNetworkingV1beta1IngressList, "/apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -165,9 +215,19 @@ function listNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, name Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listNetworkingV1beta1NamespacedIngress(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listNetworkingV1beta1NamespacedIngress(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified Ingress @@ -180,7 +240,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiNetworkingV1beta1Ingress """ -function patchNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiNetworkingV1beta1Ingress, "/apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -190,9 +250,19 @@ function patchNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, nam Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchNetworkingV1beta1NamespacedIngress(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchNetworkingV1beta1NamespacedIngress(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified Ingress @@ -205,7 +275,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiNetworkingV1beta1Ingress """ -function patchNetworkingV1beta1NamespacedIngressStatus(_api::NetworkingV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchNetworkingV1beta1NamespacedIngressStatus(_api::NetworkingV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiNetworkingV1beta1Ingress, "/apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -215,9 +285,19 @@ function patchNetworkingV1beta1NamespacedIngressStatus(_api::NetworkingV1beta1Ap Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchNetworkingV1beta1NamespacedIngressStatus(_api::NetworkingV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchNetworkingV1beta1NamespacedIngressStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchNetworkingV1beta1NamespacedIngressStatus(_api::NetworkingV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchNetworkingV1beta1NamespacedIngressStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified Ingress @@ -228,7 +308,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiNetworkingV1beta1Ingress """ -function readNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiNetworkingV1beta1Ingress, "/apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -237,9 +317,19 @@ function readNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, name Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readNetworkingV1beta1NamespacedIngress(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readNetworkingV1beta1NamespacedIngress(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified Ingress @@ -248,16 +338,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiNetworkingV1beta1Ingress """ -function readNetworkingV1beta1NamespacedIngressStatus(_api::NetworkingV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readNetworkingV1beta1NamespacedIngressStatus(_api::NetworkingV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiNetworkingV1beta1Ingress, "/apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readNetworkingV1beta1NamespacedIngressStatus(_api::NetworkingV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readNetworkingV1beta1NamespacedIngressStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readNetworkingV1beta1NamespacedIngressStatus(_api::NetworkingV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readNetworkingV1beta1NamespacedIngressStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified Ingress @@ -269,7 +369,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiNetworkingV1beta1Ingress """ -function replaceNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiNetworkingV1beta1Ingress, "/apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -278,9 +378,19 @@ function replaceNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, n Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceNetworkingV1beta1NamespacedIngress(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceNetworkingV1beta1NamespacedIngress(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified Ingress @@ -292,7 +402,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiNetworkingV1beta1Ingress """ -function replaceNetworkingV1beta1NamespacedIngressStatus(_api::NetworkingV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceNetworkingV1beta1NamespacedIngressStatus(_api::NetworkingV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiNetworkingV1beta1Ingress, "/apis/networking.k8s.io/v1beta1/namespaces/{namespace}/ingresses/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -301,9 +411,19 @@ function replaceNetworkingV1beta1NamespacedIngressStatus(_api::NetworkingV1beta1 Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceNetworkingV1beta1NamespacedIngressStatus(_api::NetworkingV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceNetworkingV1beta1NamespacedIngressStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceNetworkingV1beta1NamespacedIngressStatus(_api::NetworkingV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceNetworkingV1beta1NamespacedIngressStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead. @@ -318,7 +438,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchNetworkingV1beta1IngressListForAllNamespaces(_api::NetworkingV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchNetworkingV1beta1IngressListForAllNamespaces(_api::NetworkingV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/networking.k8s.io/v1beta1/watch/ingresses", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -331,9 +451,19 @@ function watchNetworkingV1beta1IngressListForAllNamespaces(_api::NetworkingV1bet Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchNetworkingV1beta1IngressListForAllNamespaces(_api::NetworkingV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchNetworkingV1beta1IngressListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchNetworkingV1beta1IngressListForAllNamespaces(_api::NetworkingV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchNetworkingV1beta1IngressListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -350,7 +480,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/networking.k8s.io/v1beta1/watch/namespaces/{namespace}/ingresses/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -365,9 +495,19 @@ function watchNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, nam Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchNetworkingV1beta1NamespacedIngress(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchNetworkingV1beta1NamespacedIngress(_api::NetworkingV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchNetworkingV1beta1NamespacedIngress(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Ingress. deprecated: use the 'watch' parameter with a list operation instead. @@ -383,7 +523,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchNetworkingV1beta1NamespacedIngressList(_api::NetworkingV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchNetworkingV1beta1NamespacedIngressList(_api::NetworkingV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/networking.k8s.io/v1beta1/watch/namespaces/{namespace}/ingresses", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -397,7 +537,17 @@ function watchNetworkingV1beta1NamespacedIngressList(_api::NetworkingV1beta1Api, Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchNetworkingV1beta1NamespacedIngressList(_api::NetworkingV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchNetworkingV1beta1NamespacedIngressList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchNetworkingV1beta1NamespacedIngressList(_api::NetworkingV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchNetworkingV1beta1NamespacedIngressList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createNetworkingV1beta1NamespacedIngress, deleteNetworkingV1beta1CollectionNamespacedIngress, deleteNetworkingV1beta1NamespacedIngress, getNetworkingV1beta1APIResources, listNetworkingV1beta1IngressForAllNamespaces, listNetworkingV1beta1NamespacedIngress, patchNetworkingV1beta1NamespacedIngress, patchNetworkingV1beta1NamespacedIngressStatus, readNetworkingV1beta1NamespacedIngress, readNetworkingV1beta1NamespacedIngressStatus, replaceNetworkingV1beta1NamespacedIngress, replaceNetworkingV1beta1NamespacedIngressStatus, watchNetworkingV1beta1IngressListForAllNamespaces, watchNetworkingV1beta1NamespacedIngress, watchNetworkingV1beta1NamespacedIngressList diff --git a/src/api/api_NodeApi.jl b/src/api/api_NodeApi.jl index a9d53555..910d4de6 100644 --- a/src/api/api_NodeApi.jl +++ b/src/api/api_NodeApi.jl @@ -10,11 +10,21 @@ end get information of a group Return: IoK8sApimachineryPkgApisMetaV1APIGroup """ -function getNodeAPIGroup(_api::NodeApi; _mediaType=nothing) +function _swaggerinternal_getNodeAPIGroup(_api::NodeApi; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIGroup, "/apis/node.k8s.io/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getNodeAPIGroup(_api::NodeApi; _mediaType=nothing) + _ctx = _swaggerinternal_getNodeAPIGroup(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getNodeAPIGroup(_api::NodeApi, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getNodeAPIGroup(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export getNodeAPIGroup diff --git a/src/api/api_NodeV1alpha1Api.jl b/src/api/api_NodeV1alpha1Api.jl index 8f45375b..36026c7d 100644 --- a/src/api/api_NodeV1alpha1Api.jl +++ b/src/api/api_NodeV1alpha1Api.jl @@ -14,16 +14,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiNodeV1alpha1RuntimeClass """ -function createNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiNodeV1alpha1RuntimeClass, "/apis/node.k8s.io/v1alpha1/runtimeclasses", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createNodeV1alpha1RuntimeClass(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createNodeV1alpha1RuntimeClass(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of RuntimeClass @@ -43,7 +53,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteNodeV1alpha1CollectionRuntimeClass(_api::NodeV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteNodeV1alpha1CollectionRuntimeClass(_api::NodeV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/node.k8s.io/v1alpha1/runtimeclasses", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -60,9 +70,19 @@ function deleteNodeV1alpha1CollectionRuntimeClass(_api::NodeV1alpha1Api; pretty= Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteNodeV1alpha1CollectionRuntimeClass(_api::NodeV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteNodeV1alpha1CollectionRuntimeClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteNodeV1alpha1CollectionRuntimeClass(_api::NodeV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteNodeV1alpha1CollectionRuntimeClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a RuntimeClass @@ -75,7 +95,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/node.k8s.io/v1alpha1/runtimeclasses/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -85,21 +105,41 @@ function deleteNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, name::String; pre Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteNodeV1alpha1RuntimeClass(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteNodeV1alpha1RuntimeClass(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getNodeV1alpha1APIResources(_api::NodeV1alpha1Api; _mediaType=nothing) +function _swaggerinternal_getNodeV1alpha1APIResources(_api::NodeV1alpha1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/node.k8s.io/v1alpha1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getNodeV1alpha1APIResources(_api::NodeV1alpha1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getNodeV1alpha1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getNodeV1alpha1APIResources(_api::NodeV1alpha1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getNodeV1alpha1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind RuntimeClass @@ -114,7 +154,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiNodeV1alpha1RuntimeClassList """ -function listNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiNodeV1alpha1RuntimeClassList, "/apis/node.k8s.io/v1alpha1/runtimeclasses", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -127,9 +167,19 @@ function listNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api; pretty=nothing, all Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listNodeV1alpha1RuntimeClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listNodeV1alpha1RuntimeClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified RuntimeClass @@ -141,7 +191,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiNodeV1alpha1RuntimeClass """ -function patchNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiNodeV1alpha1RuntimeClass, "/apis/node.k8s.io/v1alpha1/runtimeclasses/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -150,9 +200,19 @@ function patchNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, name::String, body Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchNodeV1alpha1RuntimeClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchNodeV1alpha1RuntimeClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified RuntimeClass @@ -162,7 +222,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiNodeV1alpha1RuntimeClass """ -function readNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiNodeV1alpha1RuntimeClass, "/apis/node.k8s.io/v1alpha1/runtimeclasses/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -170,9 +230,19 @@ function readNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, name::String; prett Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readNodeV1alpha1RuntimeClass(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readNodeV1alpha1RuntimeClass(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified RuntimeClass @@ -183,7 +253,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiNodeV1alpha1RuntimeClass """ -function replaceNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiNodeV1alpha1RuntimeClass, "/apis/node.k8s.io/v1alpha1/runtimeclasses/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -191,9 +261,19 @@ function replaceNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, name::String, bo Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceNodeV1alpha1RuntimeClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceNodeV1alpha1RuntimeClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -209,7 +289,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/node.k8s.io/v1alpha1/watch/runtimeclasses/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -223,9 +303,19 @@ function watchNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, name::String; allo Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchNodeV1alpha1RuntimeClass(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchNodeV1alpha1RuntimeClass(_api::NodeV1alpha1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchNodeV1alpha1RuntimeClass(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of RuntimeClass. deprecated: use the 'watch' parameter with a list operation instead. @@ -240,7 +330,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchNodeV1alpha1RuntimeClassList(_api::NodeV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchNodeV1alpha1RuntimeClassList(_api::NodeV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/node.k8s.io/v1alpha1/watch/runtimeclasses", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -253,7 +343,17 @@ function watchNodeV1alpha1RuntimeClassList(_api::NodeV1alpha1Api; allowWatchBook Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchNodeV1alpha1RuntimeClassList(_api::NodeV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchNodeV1alpha1RuntimeClassList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchNodeV1alpha1RuntimeClassList(_api::NodeV1alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchNodeV1alpha1RuntimeClassList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createNodeV1alpha1RuntimeClass, deleteNodeV1alpha1CollectionRuntimeClass, deleteNodeV1alpha1RuntimeClass, getNodeV1alpha1APIResources, listNodeV1alpha1RuntimeClass, patchNodeV1alpha1RuntimeClass, readNodeV1alpha1RuntimeClass, replaceNodeV1alpha1RuntimeClass, watchNodeV1alpha1RuntimeClass, watchNodeV1alpha1RuntimeClassList diff --git a/src/api/api_NodeV1beta1Api.jl b/src/api/api_NodeV1beta1Api.jl index 07ae7215..19562f48 100644 --- a/src/api/api_NodeV1beta1Api.jl +++ b/src/api/api_NodeV1beta1Api.jl @@ -14,16 +14,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiNodeV1beta1RuntimeClass """ -function createNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiNodeV1beta1RuntimeClass, "/apis/node.k8s.io/v1beta1/runtimeclasses", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createNodeV1beta1RuntimeClass(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createNodeV1beta1RuntimeClass(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of RuntimeClass @@ -43,7 +53,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteNodeV1beta1CollectionRuntimeClass(_api::NodeV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteNodeV1beta1CollectionRuntimeClass(_api::NodeV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/node.k8s.io/v1beta1/runtimeclasses", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -60,9 +70,19 @@ function deleteNodeV1beta1CollectionRuntimeClass(_api::NodeV1beta1Api; pretty=no Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteNodeV1beta1CollectionRuntimeClass(_api::NodeV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteNodeV1beta1CollectionRuntimeClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteNodeV1beta1CollectionRuntimeClass(_api::NodeV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteNodeV1beta1CollectionRuntimeClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a RuntimeClass @@ -75,7 +95,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/node.k8s.io/v1beta1/runtimeclasses/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -85,21 +105,41 @@ function deleteNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, name::String; prett Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteNodeV1beta1RuntimeClass(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteNodeV1beta1RuntimeClass(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getNodeV1beta1APIResources(_api::NodeV1beta1Api; _mediaType=nothing) +function _swaggerinternal_getNodeV1beta1APIResources(_api::NodeV1beta1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/node.k8s.io/v1beta1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getNodeV1beta1APIResources(_api::NodeV1beta1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getNodeV1beta1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getNodeV1beta1APIResources(_api::NodeV1beta1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getNodeV1beta1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind RuntimeClass @@ -114,7 +154,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiNodeV1beta1RuntimeClassList """ -function listNodeV1beta1RuntimeClass(_api::NodeV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listNodeV1beta1RuntimeClass(_api::NodeV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiNodeV1beta1RuntimeClassList, "/apis/node.k8s.io/v1beta1/runtimeclasses", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -127,9 +167,19 @@ function listNodeV1beta1RuntimeClass(_api::NodeV1beta1Api; pretty=nothing, allow Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listNodeV1beta1RuntimeClass(_api::NodeV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listNodeV1beta1RuntimeClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listNodeV1beta1RuntimeClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified RuntimeClass @@ -141,7 +191,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiNodeV1beta1RuntimeClass """ -function patchNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiNodeV1beta1RuntimeClass, "/apis/node.k8s.io/v1beta1/runtimeclasses/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -150,9 +200,19 @@ function patchNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, name::String, body; Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchNodeV1beta1RuntimeClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchNodeV1beta1RuntimeClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified RuntimeClass @@ -162,7 +222,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiNodeV1beta1RuntimeClass """ -function readNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiNodeV1beta1RuntimeClass, "/apis/node.k8s.io/v1beta1/runtimeclasses/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -170,9 +230,19 @@ function readNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, name::String; pretty= Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readNodeV1beta1RuntimeClass(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readNodeV1beta1RuntimeClass(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified RuntimeClass @@ -183,7 +253,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiNodeV1beta1RuntimeClass """ -function replaceNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiNodeV1beta1RuntimeClass, "/apis/node.k8s.io/v1beta1/runtimeclasses/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -191,9 +261,19 @@ function replaceNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, name::String, body Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceNodeV1beta1RuntimeClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceNodeV1beta1RuntimeClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -209,7 +289,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/node.k8s.io/v1beta1/watch/runtimeclasses/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -223,9 +303,19 @@ function watchNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, name::String; allowW Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchNodeV1beta1RuntimeClass(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchNodeV1beta1RuntimeClass(_api::NodeV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchNodeV1beta1RuntimeClass(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of RuntimeClass. deprecated: use the 'watch' parameter with a list operation instead. @@ -240,7 +330,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchNodeV1beta1RuntimeClassList(_api::NodeV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchNodeV1beta1RuntimeClassList(_api::NodeV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/node.k8s.io/v1beta1/watch/runtimeclasses", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -253,7 +343,17 @@ function watchNodeV1beta1RuntimeClassList(_api::NodeV1beta1Api; allowWatchBookma Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchNodeV1beta1RuntimeClassList(_api::NodeV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchNodeV1beta1RuntimeClassList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchNodeV1beta1RuntimeClassList(_api::NodeV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchNodeV1beta1RuntimeClassList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createNodeV1beta1RuntimeClass, deleteNodeV1beta1CollectionRuntimeClass, deleteNodeV1beta1RuntimeClass, getNodeV1beta1APIResources, listNodeV1beta1RuntimeClass, patchNodeV1beta1RuntimeClass, readNodeV1beta1RuntimeClass, replaceNodeV1beta1RuntimeClass, watchNodeV1beta1RuntimeClass, watchNodeV1beta1RuntimeClassList diff --git a/src/api/api_PolicyApi.jl b/src/api/api_PolicyApi.jl index feff1c76..fb7dea10 100644 --- a/src/api/api_PolicyApi.jl +++ b/src/api/api_PolicyApi.jl @@ -10,11 +10,21 @@ end get information of a group Return: IoK8sApimachineryPkgApisMetaV1APIGroup """ -function getPolicyAPIGroup(_api::PolicyApi; _mediaType=nothing) +function _swaggerinternal_getPolicyAPIGroup(_api::PolicyApi; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIGroup, "/apis/policy/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getPolicyAPIGroup(_api::PolicyApi; _mediaType=nothing) + _ctx = _swaggerinternal_getPolicyAPIGroup(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getPolicyAPIGroup(_api::PolicyApi, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getPolicyAPIGroup(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export getPolicyAPIGroup diff --git a/src/api/api_PolicyV1beta1Api.jl b/src/api/api_PolicyV1beta1Api.jl index 1fdb1ec7..9d2277bd 100644 --- a/src/api/api_PolicyV1beta1Api.jl +++ b/src/api/api_PolicyV1beta1Api.jl @@ -15,7 +15,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiPolicyV1beta1PodDisruptionBudget """ -function createPolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createPolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiPolicyV1beta1PodDisruptionBudget, "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -23,9 +23,19 @@ function createPolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createPolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createPolicyV1beta1NamespacedPodDisruptionBudget(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createPolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createPolicyV1beta1NamespacedPodDisruptionBudget(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a PodSecurityPolicy @@ -35,16 +45,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiPolicyV1beta1PodSecurityPolicy """ -function createPolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createPolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiPolicyV1beta1PodSecurityPolicy, "/apis/policy/v1beta1/podsecuritypolicies", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createPolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createPolicyV1beta1PodSecurityPolicy(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createPolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createPolicyV1beta1PodSecurityPolicy(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of PodDisruptionBudget @@ -65,7 +85,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deletePolicyV1beta1CollectionNamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deletePolicyV1beta1CollectionNamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -83,9 +103,19 @@ function deletePolicyV1beta1CollectionNamespacedPodDisruptionBudget(_api::Policy Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deletePolicyV1beta1CollectionNamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deletePolicyV1beta1CollectionNamespacedPodDisruptionBudget(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deletePolicyV1beta1CollectionNamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deletePolicyV1beta1CollectionNamespacedPodDisruptionBudget(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of PodSecurityPolicy @@ -105,7 +135,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deletePolicyV1beta1CollectionPodSecurityPolicy(_api::PolicyV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deletePolicyV1beta1CollectionPodSecurityPolicy(_api::PolicyV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/policy/v1beta1/podsecuritypolicies", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -122,9 +152,19 @@ function deletePolicyV1beta1CollectionPodSecurityPolicy(_api::PolicyV1beta1Api; Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deletePolicyV1beta1CollectionPodSecurityPolicy(_api::PolicyV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deletePolicyV1beta1CollectionPodSecurityPolicy(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deletePolicyV1beta1CollectionPodSecurityPolicy(_api::PolicyV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deletePolicyV1beta1CollectionPodSecurityPolicy(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a PodDisruptionBudget @@ -138,7 +178,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deletePolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deletePolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -149,9 +189,19 @@ function deletePolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deletePolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deletePolicyV1beta1NamespacedPodDisruptionBudget(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deletePolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deletePolicyV1beta1NamespacedPodDisruptionBudget(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a PodSecurityPolicy @@ -164,7 +214,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deletePolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deletePolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/policy/v1beta1/podsecuritypolicies/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -174,21 +224,41 @@ function deletePolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, name::Stri Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deletePolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deletePolicyV1beta1PodSecurityPolicy(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deletePolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deletePolicyV1beta1PodSecurityPolicy(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getPolicyV1beta1APIResources(_api::PolicyV1beta1Api; _mediaType=nothing) +function _swaggerinternal_getPolicyV1beta1APIResources(_api::PolicyV1beta1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/policy/v1beta1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getPolicyV1beta1APIResources(_api::PolicyV1beta1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getPolicyV1beta1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getPolicyV1beta1APIResources(_api::PolicyV1beta1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getPolicyV1beta1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind PodDisruptionBudget @@ -204,7 +274,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiPolicyV1beta1PodDisruptionBudgetList """ -function listPolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listPolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiPolicyV1beta1PodDisruptionBudgetList, "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -218,9 +288,19 @@ function listPolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listPolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listPolicyV1beta1NamespacedPodDisruptionBudget(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listPolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listPolicyV1beta1NamespacedPodDisruptionBudget(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind PodDisruptionBudget @@ -235,7 +315,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiPolicyV1beta1PodDisruptionBudgetList """ -function listPolicyV1beta1PodDisruptionBudgetForAllNamespaces(_api::PolicyV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listPolicyV1beta1PodDisruptionBudgetForAllNamespaces(_api::PolicyV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiPolicyV1beta1PodDisruptionBudgetList, "/apis/policy/v1beta1/poddisruptionbudgets", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -248,9 +328,19 @@ function listPolicyV1beta1PodDisruptionBudgetForAllNamespaces(_api::PolicyV1beta Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listPolicyV1beta1PodDisruptionBudgetForAllNamespaces(_api::PolicyV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listPolicyV1beta1PodDisruptionBudgetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listPolicyV1beta1PodDisruptionBudgetForAllNamespaces(_api::PolicyV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listPolicyV1beta1PodDisruptionBudgetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind PodSecurityPolicy @@ -265,7 +355,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiPolicyV1beta1PodSecurityPolicyList """ -function listPolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listPolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiPolicyV1beta1PodSecurityPolicyList, "/apis/policy/v1beta1/podsecuritypolicies", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -278,9 +368,19 @@ function listPolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api; pretty=nothi Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listPolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listPolicyV1beta1PodSecurityPolicy(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listPolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listPolicyV1beta1PodSecurityPolicy(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified PodDisruptionBudget @@ -293,7 +393,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiPolicyV1beta1PodDisruptionBudget """ -function patchPolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchPolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiPolicyV1beta1PodDisruptionBudget, "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -303,9 +403,19 @@ function patchPolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchPolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchPolicyV1beta1NamespacedPodDisruptionBudget(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchPolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchPolicyV1beta1NamespacedPodDisruptionBudget(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified PodDisruptionBudget @@ -318,7 +428,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiPolicyV1beta1PodDisruptionBudget """ -function patchPolicyV1beta1NamespacedPodDisruptionBudgetStatus(_api::PolicyV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchPolicyV1beta1NamespacedPodDisruptionBudgetStatus(_api::PolicyV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiPolicyV1beta1PodDisruptionBudget, "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -328,9 +438,19 @@ function patchPolicyV1beta1NamespacedPodDisruptionBudgetStatus(_api::PolicyV1bet Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchPolicyV1beta1NamespacedPodDisruptionBudgetStatus(_api::PolicyV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchPolicyV1beta1NamespacedPodDisruptionBudgetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchPolicyV1beta1NamespacedPodDisruptionBudgetStatus(_api::PolicyV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchPolicyV1beta1NamespacedPodDisruptionBudgetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified PodSecurityPolicy @@ -342,7 +462,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiPolicyV1beta1PodSecurityPolicy """ -function patchPolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchPolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiPolicyV1beta1PodSecurityPolicy, "/apis/policy/v1beta1/podsecuritypolicies/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -351,9 +471,19 @@ function patchPolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, name::Strin Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchPolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchPolicyV1beta1PodSecurityPolicy(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchPolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchPolicyV1beta1PodSecurityPolicy(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified PodDisruptionBudget @@ -364,7 +494,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiPolicyV1beta1PodDisruptionBudget """ -function readPolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readPolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiPolicyV1beta1PodDisruptionBudget, "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -373,9 +503,19 @@ function readPolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readPolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readPolicyV1beta1NamespacedPodDisruptionBudget(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readPolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readPolicyV1beta1NamespacedPodDisruptionBudget(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified PodDisruptionBudget @@ -384,16 +524,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiPolicyV1beta1PodDisruptionBudget """ -function readPolicyV1beta1NamespacedPodDisruptionBudgetStatus(_api::PolicyV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readPolicyV1beta1NamespacedPodDisruptionBudgetStatus(_api::PolicyV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiPolicyV1beta1PodDisruptionBudget, "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readPolicyV1beta1NamespacedPodDisruptionBudgetStatus(_api::PolicyV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readPolicyV1beta1NamespacedPodDisruptionBudgetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readPolicyV1beta1NamespacedPodDisruptionBudgetStatus(_api::PolicyV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readPolicyV1beta1NamespacedPodDisruptionBudgetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified PodSecurityPolicy @@ -403,7 +553,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiPolicyV1beta1PodSecurityPolicy """ -function readPolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readPolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiPolicyV1beta1PodSecurityPolicy, "/apis/policy/v1beta1/podsecuritypolicies/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -411,9 +561,19 @@ function readPolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, name::String Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readPolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readPolicyV1beta1PodSecurityPolicy(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readPolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readPolicyV1beta1PodSecurityPolicy(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified PodDisruptionBudget @@ -425,7 +585,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiPolicyV1beta1PodDisruptionBudget """ -function replacePolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replacePolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiPolicyV1beta1PodDisruptionBudget, "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -434,9 +594,19 @@ function replacePolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Ap Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replacePolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replacePolicyV1beta1NamespacedPodDisruptionBudget(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replacePolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replacePolicyV1beta1NamespacedPodDisruptionBudget(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified PodDisruptionBudget @@ -448,7 +618,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiPolicyV1beta1PodDisruptionBudget """ -function replacePolicyV1beta1NamespacedPodDisruptionBudgetStatus(_api::PolicyV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replacePolicyV1beta1NamespacedPodDisruptionBudgetStatus(_api::PolicyV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiPolicyV1beta1PodDisruptionBudget, "/apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -457,9 +627,19 @@ function replacePolicyV1beta1NamespacedPodDisruptionBudgetStatus(_api::PolicyV1b Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replacePolicyV1beta1NamespacedPodDisruptionBudgetStatus(_api::PolicyV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replacePolicyV1beta1NamespacedPodDisruptionBudgetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replacePolicyV1beta1NamespacedPodDisruptionBudgetStatus(_api::PolicyV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replacePolicyV1beta1NamespacedPodDisruptionBudgetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified PodSecurityPolicy @@ -470,7 +650,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiPolicyV1beta1PodSecurityPolicy """ -function replacePolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replacePolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiPolicyV1beta1PodSecurityPolicy, "/apis/policy/v1beta1/podsecuritypolicies/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -478,9 +658,19 @@ function replacePolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, name::Str Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replacePolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replacePolicyV1beta1PodSecurityPolicy(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replacePolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replacePolicyV1beta1PodSecurityPolicy(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -497,7 +687,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchPolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchPolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/policy/v1beta1/watch/namespaces/{namespace}/poddisruptionbudgets/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -512,9 +702,19 @@ function watchPolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchPolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchPolicyV1beta1NamespacedPodDisruptionBudget(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchPolicyV1beta1NamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchPolicyV1beta1NamespacedPodDisruptionBudget(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of PodDisruptionBudget. deprecated: use the 'watch' parameter with a list operation instead. @@ -530,7 +730,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchPolicyV1beta1NamespacedPodDisruptionBudgetList(_api::PolicyV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchPolicyV1beta1NamespacedPodDisruptionBudgetList(_api::PolicyV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/policy/v1beta1/watch/namespaces/{namespace}/poddisruptionbudgets", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -544,9 +744,19 @@ function watchPolicyV1beta1NamespacedPodDisruptionBudgetList(_api::PolicyV1beta1 Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchPolicyV1beta1NamespacedPodDisruptionBudgetList(_api::PolicyV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchPolicyV1beta1NamespacedPodDisruptionBudgetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchPolicyV1beta1NamespacedPodDisruptionBudgetList(_api::PolicyV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchPolicyV1beta1NamespacedPodDisruptionBudgetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of PodDisruptionBudget. deprecated: use the 'watch' parameter with a list operation instead. @@ -561,7 +771,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchPolicyV1beta1PodDisruptionBudgetListForAllNamespaces(_api::PolicyV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchPolicyV1beta1PodDisruptionBudgetListForAllNamespaces(_api::PolicyV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/policy/v1beta1/watch/poddisruptionbudgets", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -574,9 +784,19 @@ function watchPolicyV1beta1PodDisruptionBudgetListForAllNamespaces(_api::PolicyV Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchPolicyV1beta1PodDisruptionBudgetListForAllNamespaces(_api::PolicyV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchPolicyV1beta1PodDisruptionBudgetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchPolicyV1beta1PodDisruptionBudgetListForAllNamespaces(_api::PolicyV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchPolicyV1beta1PodDisruptionBudgetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -592,7 +812,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchPolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchPolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/policy/v1beta1/watch/podsecuritypolicies/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -606,9 +826,19 @@ function watchPolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, name::Strin Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchPolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchPolicyV1beta1PodSecurityPolicy(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchPolicyV1beta1PodSecurityPolicy(_api::PolicyV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchPolicyV1beta1PodSecurityPolicy(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of PodSecurityPolicy. deprecated: use the 'watch' parameter with a list operation instead. @@ -623,7 +853,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchPolicyV1beta1PodSecurityPolicyList(_api::PolicyV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchPolicyV1beta1PodSecurityPolicyList(_api::PolicyV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/policy/v1beta1/watch/podsecuritypolicies", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -636,7 +866,17 @@ function watchPolicyV1beta1PodSecurityPolicyList(_api::PolicyV1beta1Api; allowWa Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchPolicyV1beta1PodSecurityPolicyList(_api::PolicyV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchPolicyV1beta1PodSecurityPolicyList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchPolicyV1beta1PodSecurityPolicyList(_api::PolicyV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchPolicyV1beta1PodSecurityPolicyList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createPolicyV1beta1NamespacedPodDisruptionBudget, createPolicyV1beta1PodSecurityPolicy, deletePolicyV1beta1CollectionNamespacedPodDisruptionBudget, deletePolicyV1beta1CollectionPodSecurityPolicy, deletePolicyV1beta1NamespacedPodDisruptionBudget, deletePolicyV1beta1PodSecurityPolicy, getPolicyV1beta1APIResources, listPolicyV1beta1NamespacedPodDisruptionBudget, listPolicyV1beta1PodDisruptionBudgetForAllNamespaces, listPolicyV1beta1PodSecurityPolicy, patchPolicyV1beta1NamespacedPodDisruptionBudget, patchPolicyV1beta1NamespacedPodDisruptionBudgetStatus, patchPolicyV1beta1PodSecurityPolicy, readPolicyV1beta1NamespacedPodDisruptionBudget, readPolicyV1beta1NamespacedPodDisruptionBudgetStatus, readPolicyV1beta1PodSecurityPolicy, replacePolicyV1beta1NamespacedPodDisruptionBudget, replacePolicyV1beta1NamespacedPodDisruptionBudgetStatus, replacePolicyV1beta1PodSecurityPolicy, watchPolicyV1beta1NamespacedPodDisruptionBudget, watchPolicyV1beta1NamespacedPodDisruptionBudgetList, watchPolicyV1beta1PodDisruptionBudgetListForAllNamespaces, watchPolicyV1beta1PodSecurityPolicy, watchPolicyV1beta1PodSecurityPolicyList diff --git a/src/api/api_RbacAuthorizationApi.jl b/src/api/api_RbacAuthorizationApi.jl index a9a86d8c..e67f24ea 100644 --- a/src/api/api_RbacAuthorizationApi.jl +++ b/src/api/api_RbacAuthorizationApi.jl @@ -10,11 +10,21 @@ end get information of a group Return: IoK8sApimachineryPkgApisMetaV1APIGroup """ -function getRbacAuthorizationAPIGroup(_api::RbacAuthorizationApi; _mediaType=nothing) +function _swaggerinternal_getRbacAuthorizationAPIGroup(_api::RbacAuthorizationApi; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIGroup, "/apis/rbac.authorization.k8s.io/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getRbacAuthorizationAPIGroup(_api::RbacAuthorizationApi; _mediaType=nothing) + _ctx = _swaggerinternal_getRbacAuthorizationAPIGroup(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getRbacAuthorizationAPIGroup(_api::RbacAuthorizationApi, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getRbacAuthorizationAPIGroup(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export getRbacAuthorizationAPIGroup diff --git a/src/api/api_RbacAuthorizationV1Api.jl b/src/api/api_RbacAuthorizationV1Api.jl index 62e7f5aa..b6734210 100644 --- a/src/api/api_RbacAuthorizationV1Api.jl +++ b/src/api/api_RbacAuthorizationV1Api.jl @@ -14,16 +14,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiRbacV1ClusterRole """ -function createRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiRbacV1ClusterRole, "/apis/rbac.authorization.k8s.io/v1/clusterroles", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createRbacAuthorizationV1ClusterRole(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createRbacAuthorizationV1ClusterRole(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a ClusterRoleBinding @@ -33,16 +43,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiRbacV1ClusterRoleBinding """ -function createRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiRbacV1ClusterRoleBinding, "/apis/rbac.authorization.k8s.io/v1/clusterrolebindings", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createRbacAuthorizationV1ClusterRoleBinding(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createRbacAuthorizationV1ClusterRoleBinding(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a Role @@ -53,7 +73,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiRbacV1Role """ -function createRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiRbacV1Role, "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -61,9 +81,19 @@ function createRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, n Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createRbacAuthorizationV1NamespacedRole(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createRbacAuthorizationV1NamespacedRole(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a RoleBinding @@ -74,7 +104,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiRbacV1RoleBinding """ -function createRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiRbacV1RoleBinding, "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -82,9 +112,19 @@ function createRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createRbacAuthorizationV1NamespacedRoleBinding(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createRbacAuthorizationV1NamespacedRoleBinding(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a ClusterRole @@ -97,7 +137,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/rbac.authorization.k8s.io/v1/clusterroles/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -107,9 +147,19 @@ function deleteRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api, name Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1ClusterRole(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1ClusterRole(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a ClusterRoleBinding @@ -122,7 +172,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -132,9 +182,19 @@ function deleteRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Ap Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1ClusterRoleBinding(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1ClusterRoleBinding(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of ClusterRole @@ -154,7 +214,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteRbacAuthorizationV1CollectionClusterRole(_api::RbacAuthorizationV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteRbacAuthorizationV1CollectionClusterRole(_api::RbacAuthorizationV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/rbac.authorization.k8s.io/v1/clusterroles", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -171,9 +231,19 @@ function deleteRbacAuthorizationV1CollectionClusterRole(_api::RbacAuthorizationV Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteRbacAuthorizationV1CollectionClusterRole(_api::RbacAuthorizationV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1CollectionClusterRole(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteRbacAuthorizationV1CollectionClusterRole(_api::RbacAuthorizationV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1CollectionClusterRole(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of ClusterRoleBinding @@ -193,7 +263,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteRbacAuthorizationV1CollectionClusterRoleBinding(_api::RbacAuthorizationV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteRbacAuthorizationV1CollectionClusterRoleBinding(_api::RbacAuthorizationV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/rbac.authorization.k8s.io/v1/clusterrolebindings", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -210,9 +280,19 @@ function deleteRbacAuthorizationV1CollectionClusterRoleBinding(_api::RbacAuthori Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteRbacAuthorizationV1CollectionClusterRoleBinding(_api::RbacAuthorizationV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1CollectionClusterRoleBinding(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteRbacAuthorizationV1CollectionClusterRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1CollectionClusterRoleBinding(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of Role @@ -233,7 +313,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteRbacAuthorizationV1CollectionNamespacedRole(_api::RbacAuthorizationV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteRbacAuthorizationV1CollectionNamespacedRole(_api::RbacAuthorizationV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -251,9 +331,19 @@ function deleteRbacAuthorizationV1CollectionNamespacedRole(_api::RbacAuthorizati Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteRbacAuthorizationV1CollectionNamespacedRole(_api::RbacAuthorizationV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1CollectionNamespacedRole(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteRbacAuthorizationV1CollectionNamespacedRole(_api::RbacAuthorizationV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1CollectionNamespacedRole(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of RoleBinding @@ -274,7 +364,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteRbacAuthorizationV1CollectionNamespacedRoleBinding(_api::RbacAuthorizationV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteRbacAuthorizationV1CollectionNamespacedRoleBinding(_api::RbacAuthorizationV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -292,9 +382,19 @@ function deleteRbacAuthorizationV1CollectionNamespacedRoleBinding(_api::RbacAuth Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteRbacAuthorizationV1CollectionNamespacedRoleBinding(_api::RbacAuthorizationV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1CollectionNamespacedRoleBinding(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteRbacAuthorizationV1CollectionNamespacedRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1CollectionNamespacedRoleBinding(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a Role @@ -308,7 +408,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -319,9 +419,19 @@ function deleteRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, n Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1NamespacedRole(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1NamespacedRole(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a RoleBinding @@ -335,7 +445,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -346,21 +456,41 @@ function deleteRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1NamespacedRoleBinding(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1NamespacedRoleBinding(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getRbacAuthorizationV1APIResources(_api::RbacAuthorizationV1Api; _mediaType=nothing) +function _swaggerinternal_getRbacAuthorizationV1APIResources(_api::RbacAuthorizationV1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/rbac.authorization.k8s.io/v1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getRbacAuthorizationV1APIResources(_api::RbacAuthorizationV1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getRbacAuthorizationV1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getRbacAuthorizationV1APIResources(_api::RbacAuthorizationV1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getRbacAuthorizationV1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind ClusterRole @@ -375,7 +505,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiRbacV1ClusterRoleList """ -function listRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1ClusterRoleList, "/apis/rbac.authorization.k8s.io/v1/clusterroles", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -388,9 +518,19 @@ function listRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api; pretty Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1ClusterRole(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1ClusterRole(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind ClusterRoleBinding @@ -405,7 +545,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiRbacV1ClusterRoleBindingList """ -function listRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1ClusterRoleBindingList, "/apis/rbac.authorization.k8s.io/v1/clusterrolebindings", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -418,9 +558,19 @@ function listRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api; Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1ClusterRoleBinding(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1ClusterRoleBinding(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Role @@ -436,7 +586,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiRbacV1RoleList """ -function listRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1RoleList, "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -450,9 +600,19 @@ function listRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, nam Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1NamespacedRole(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1NamespacedRole(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind RoleBinding @@ -468,7 +628,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiRbacV1RoleBindingList """ -function listRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1RoleBindingList, "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -482,9 +642,19 @@ function listRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1A Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1NamespacedRoleBinding(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1NamespacedRoleBinding(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind RoleBinding @@ -499,7 +669,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiRbacV1RoleBindingList """ -function listRbacAuthorizationV1RoleBindingForAllNamespaces(_api::RbacAuthorizationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listRbacAuthorizationV1RoleBindingForAllNamespaces(_api::RbacAuthorizationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1RoleBindingList, "/apis/rbac.authorization.k8s.io/v1/rolebindings", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -512,9 +682,19 @@ function listRbacAuthorizationV1RoleBindingForAllNamespaces(_api::RbacAuthorizat Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listRbacAuthorizationV1RoleBindingForAllNamespaces(_api::RbacAuthorizationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1RoleBindingForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listRbacAuthorizationV1RoleBindingForAllNamespaces(_api::RbacAuthorizationV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1RoleBindingForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Role @@ -529,7 +709,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiRbacV1RoleList """ -function listRbacAuthorizationV1RoleForAllNamespaces(_api::RbacAuthorizationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listRbacAuthorizationV1RoleForAllNamespaces(_api::RbacAuthorizationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1RoleList, "/apis/rbac.authorization.k8s.io/v1/roles", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -542,9 +722,19 @@ function listRbacAuthorizationV1RoleForAllNamespaces(_api::RbacAuthorizationV1Ap Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listRbacAuthorizationV1RoleForAllNamespaces(_api::RbacAuthorizationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1RoleForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listRbacAuthorizationV1RoleForAllNamespaces(_api::RbacAuthorizationV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1RoleForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified ClusterRole @@ -556,7 +746,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiRbacV1ClusterRole """ -function patchRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiRbacV1ClusterRole, "/apis/rbac.authorization.k8s.io/v1/clusterroles/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -565,9 +755,19 @@ function patchRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api, name: Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchRbacAuthorizationV1ClusterRole(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchRbacAuthorizationV1ClusterRole(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified ClusterRoleBinding @@ -579,7 +779,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiRbacV1ClusterRoleBinding """ -function patchRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiRbacV1ClusterRoleBinding, "/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -588,9 +788,19 @@ function patchRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchRbacAuthorizationV1ClusterRoleBinding(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchRbacAuthorizationV1ClusterRoleBinding(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified Role @@ -603,7 +813,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiRbacV1Role """ -function patchRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiRbacV1Role, "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -613,9 +823,19 @@ function patchRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, na Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchRbacAuthorizationV1NamespacedRole(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchRbacAuthorizationV1NamespacedRole(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified RoleBinding @@ -628,7 +848,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiRbacV1RoleBinding """ -function patchRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiRbacV1RoleBinding, "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -638,9 +858,19 @@ function patchRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1 Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchRbacAuthorizationV1NamespacedRoleBinding(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchRbacAuthorizationV1NamespacedRoleBinding(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified ClusterRole @@ -648,15 +878,25 @@ Param: name::String (required) Param: pretty::String Return: IoK8sApiRbacV1ClusterRole """ -function readRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api, name::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api, name::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1ClusterRole, "/apis/rbac.authorization.k8s.io/v1/clusterroles/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readRbacAuthorizationV1ClusterRole(_api, name; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readRbacAuthorizationV1ClusterRole(_api, name; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified ClusterRoleBinding @@ -664,15 +904,25 @@ Param: name::String (required) Param: pretty::String Return: IoK8sApiRbacV1ClusterRoleBinding """ -function readRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api, name::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api, name::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1ClusterRoleBinding, "/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readRbacAuthorizationV1ClusterRoleBinding(_api, name; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readRbacAuthorizationV1ClusterRoleBinding(_api, name; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified Role @@ -681,16 +931,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiRbacV1Role """ -function readRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1Role, "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readRbacAuthorizationV1NamespacedRole(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readRbacAuthorizationV1NamespacedRole(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified RoleBinding @@ -699,16 +959,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiRbacV1RoleBinding """ -function readRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1RoleBinding, "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readRbacAuthorizationV1NamespacedRoleBinding(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readRbacAuthorizationV1NamespacedRoleBinding(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified ClusterRole @@ -719,7 +989,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiRbacV1ClusterRole """ -function replaceRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiRbacV1ClusterRole, "/apis/rbac.authorization.k8s.io/v1/clusterroles/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -727,9 +997,19 @@ function replaceRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api, nam Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceRbacAuthorizationV1ClusterRole(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceRbacAuthorizationV1ClusterRole(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified ClusterRoleBinding @@ -740,7 +1020,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiRbacV1ClusterRoleBinding """ -function replaceRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiRbacV1ClusterRoleBinding, "/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -748,9 +1028,19 @@ function replaceRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1A Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceRbacAuthorizationV1ClusterRoleBinding(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceRbacAuthorizationV1ClusterRoleBinding(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified Role @@ -762,7 +1052,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiRbacV1Role """ -function replaceRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiRbacV1Role, "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -771,9 +1061,19 @@ function replaceRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceRbacAuthorizationV1NamespacedRole(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceRbacAuthorizationV1NamespacedRole(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified RoleBinding @@ -785,7 +1085,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiRbacV1RoleBinding """ -function replaceRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiRbacV1RoleBinding, "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -794,9 +1094,19 @@ function replaceRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorization Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceRbacAuthorizationV1NamespacedRoleBinding(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceRbacAuthorizationV1NamespacedRoleBinding(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -812,7 +1122,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1/watch/clusterroles/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -826,9 +1136,19 @@ function watchRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api, name: Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1ClusterRole(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1ClusterRole(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1ClusterRole(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -844,7 +1164,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1/watch/clusterrolebindings/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -858,9 +1178,19 @@ function watchRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1ClusterRoleBinding(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1ClusterRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1ClusterRoleBinding(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead. @@ -875,7 +1205,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1ClusterRoleBindingList(_api::RbacAuthorizationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1ClusterRoleBindingList(_api::RbacAuthorizationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1/watch/clusterrolebindings", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -888,9 +1218,19 @@ function watchRbacAuthorizationV1ClusterRoleBindingList(_api::RbacAuthorizationV Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1ClusterRoleBindingList(_api::RbacAuthorizationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1ClusterRoleBindingList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1ClusterRoleBindingList(_api::RbacAuthorizationV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1ClusterRoleBindingList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of ClusterRole. deprecated: use the 'watch' parameter with a list operation instead. @@ -905,7 +1245,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1ClusterRoleList(_api::RbacAuthorizationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1ClusterRoleList(_api::RbacAuthorizationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1/watch/clusterroles", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -918,9 +1258,19 @@ function watchRbacAuthorizationV1ClusterRoleList(_api::RbacAuthorizationV1Api; a Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1ClusterRoleList(_api::RbacAuthorizationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1ClusterRoleList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1ClusterRoleList(_api::RbacAuthorizationV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1ClusterRoleList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -937,7 +1287,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/roles/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -952,9 +1302,19 @@ function watchRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, na Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1NamespacedRole(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1NamespacedRole(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1NamespacedRole(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -971,7 +1331,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/rolebindings/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -986,9 +1346,19 @@ function watchRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1 Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1NamespacedRoleBinding(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1NamespacedRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1NamespacedRoleBinding(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead. @@ -1004,7 +1374,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1NamespacedRoleBindingList(_api::RbacAuthorizationV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1NamespacedRoleBindingList(_api::RbacAuthorizationV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/rolebindings", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -1018,9 +1388,19 @@ function watchRbacAuthorizationV1NamespacedRoleBindingList(_api::RbacAuthorizati Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1NamespacedRoleBindingList(_api::RbacAuthorizationV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1NamespacedRoleBindingList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1NamespacedRoleBindingList(_api::RbacAuthorizationV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1NamespacedRoleBindingList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead. @@ -1036,7 +1416,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1NamespacedRoleList(_api::RbacAuthorizationV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1NamespacedRoleList(_api::RbacAuthorizationV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/roles", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -1050,9 +1430,19 @@ function watchRbacAuthorizationV1NamespacedRoleList(_api::RbacAuthorizationV1Api Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1NamespacedRoleList(_api::RbacAuthorizationV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1NamespacedRoleList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1NamespacedRoleList(_api::RbacAuthorizationV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1NamespacedRoleList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead. @@ -1067,7 +1457,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1RoleBindingListForAllNamespaces(_api::RbacAuthorizationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1RoleBindingListForAllNamespaces(_api::RbacAuthorizationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1/watch/rolebindings", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -1080,9 +1470,19 @@ function watchRbacAuthorizationV1RoleBindingListForAllNamespaces(_api::RbacAutho Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1RoleBindingListForAllNamespaces(_api::RbacAuthorizationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1RoleBindingListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1RoleBindingListForAllNamespaces(_api::RbacAuthorizationV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1RoleBindingListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead. @@ -1097,7 +1497,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1RoleListForAllNamespaces(_api::RbacAuthorizationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1RoleListForAllNamespaces(_api::RbacAuthorizationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1/watch/roles", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -1110,7 +1510,17 @@ function watchRbacAuthorizationV1RoleListForAllNamespaces(_api::RbacAuthorizatio Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1RoleListForAllNamespaces(_api::RbacAuthorizationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1RoleListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1RoleListForAllNamespaces(_api::RbacAuthorizationV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1RoleListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createRbacAuthorizationV1ClusterRole, createRbacAuthorizationV1ClusterRoleBinding, createRbacAuthorizationV1NamespacedRole, createRbacAuthorizationV1NamespacedRoleBinding, deleteRbacAuthorizationV1ClusterRole, deleteRbacAuthorizationV1ClusterRoleBinding, deleteRbacAuthorizationV1CollectionClusterRole, deleteRbacAuthorizationV1CollectionClusterRoleBinding, deleteRbacAuthorizationV1CollectionNamespacedRole, deleteRbacAuthorizationV1CollectionNamespacedRoleBinding, deleteRbacAuthorizationV1NamespacedRole, deleteRbacAuthorizationV1NamespacedRoleBinding, getRbacAuthorizationV1APIResources, listRbacAuthorizationV1ClusterRole, listRbacAuthorizationV1ClusterRoleBinding, listRbacAuthorizationV1NamespacedRole, listRbacAuthorizationV1NamespacedRoleBinding, listRbacAuthorizationV1RoleBindingForAllNamespaces, listRbacAuthorizationV1RoleForAllNamespaces, patchRbacAuthorizationV1ClusterRole, patchRbacAuthorizationV1ClusterRoleBinding, patchRbacAuthorizationV1NamespacedRole, patchRbacAuthorizationV1NamespacedRoleBinding, readRbacAuthorizationV1ClusterRole, readRbacAuthorizationV1ClusterRoleBinding, readRbacAuthorizationV1NamespacedRole, readRbacAuthorizationV1NamespacedRoleBinding, replaceRbacAuthorizationV1ClusterRole, replaceRbacAuthorizationV1ClusterRoleBinding, replaceRbacAuthorizationV1NamespacedRole, replaceRbacAuthorizationV1NamespacedRoleBinding, watchRbacAuthorizationV1ClusterRole, watchRbacAuthorizationV1ClusterRoleBinding, watchRbacAuthorizationV1ClusterRoleBindingList, watchRbacAuthorizationV1ClusterRoleList, watchRbacAuthorizationV1NamespacedRole, watchRbacAuthorizationV1NamespacedRoleBinding, watchRbacAuthorizationV1NamespacedRoleBindingList, watchRbacAuthorizationV1NamespacedRoleList, watchRbacAuthorizationV1RoleBindingListForAllNamespaces, watchRbacAuthorizationV1RoleListForAllNamespaces diff --git a/src/api/api_RbacAuthorizationV1alpha1Api.jl b/src/api/api_RbacAuthorizationV1alpha1Api.jl index c7ba6344..0e79f53f 100644 --- a/src/api/api_RbacAuthorizationV1alpha1Api.jl +++ b/src/api/api_RbacAuthorizationV1alpha1Api.jl @@ -14,16 +14,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiRbacV1alpha1ClusterRole """ -function createRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiRbacV1alpha1ClusterRole, "/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createRbacAuthorizationV1alpha1ClusterRole(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createRbacAuthorizationV1alpha1ClusterRole(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a ClusterRoleBinding @@ -33,16 +43,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiRbacV1alpha1ClusterRoleBinding """ -function createRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiRbacV1alpha1ClusterRoleBinding, "/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createRbacAuthorizationV1alpha1ClusterRoleBinding(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createRbacAuthorizationV1alpha1ClusterRoleBinding(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a Role @@ -53,7 +73,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiRbacV1alpha1Role """ -function createRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1alpha1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1alpha1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiRbacV1alpha1Role, "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -61,9 +81,19 @@ function createRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1 Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1alpha1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createRbacAuthorizationV1alpha1NamespacedRole(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createRbacAuthorizationV1alpha1NamespacedRole(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a RoleBinding @@ -74,7 +104,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiRbacV1alpha1RoleBinding """ -function createRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiRbacV1alpha1RoleBinding, "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -82,9 +112,19 @@ function createRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthoriz Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createRbacAuthorizationV1alpha1NamespacedRoleBinding(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createRbacAuthorizationV1alpha1NamespacedRoleBinding(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a ClusterRole @@ -97,7 +137,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -107,9 +147,19 @@ function deleteRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alp Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1alpha1ClusterRole(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1alpha1ClusterRole(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a ClusterRoleBinding @@ -122,7 +172,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -132,9 +182,19 @@ function deleteRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizati Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1alpha1ClusterRoleBinding(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1alpha1ClusterRoleBinding(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of ClusterRole @@ -154,7 +214,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteRbacAuthorizationV1alpha1CollectionClusterRole(_api::RbacAuthorizationV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteRbacAuthorizationV1alpha1CollectionClusterRole(_api::RbacAuthorizationV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -171,9 +231,19 @@ function deleteRbacAuthorizationV1alpha1CollectionClusterRole(_api::RbacAuthoriz Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteRbacAuthorizationV1alpha1CollectionClusterRole(_api::RbacAuthorizationV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1alpha1CollectionClusterRole(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteRbacAuthorizationV1alpha1CollectionClusterRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1alpha1CollectionClusterRole(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of ClusterRoleBinding @@ -193,7 +263,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteRbacAuthorizationV1alpha1CollectionClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteRbacAuthorizationV1alpha1CollectionClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -210,9 +280,19 @@ function deleteRbacAuthorizationV1alpha1CollectionClusterRoleBinding(_api::RbacA Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteRbacAuthorizationV1alpha1CollectionClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1alpha1CollectionClusterRoleBinding(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteRbacAuthorizationV1alpha1CollectionClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1alpha1CollectionClusterRoleBinding(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of Role @@ -233,7 +313,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteRbacAuthorizationV1alpha1CollectionNamespacedRole(_api::RbacAuthorizationV1alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteRbacAuthorizationV1alpha1CollectionNamespacedRole(_api::RbacAuthorizationV1alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -251,9 +331,19 @@ function deleteRbacAuthorizationV1alpha1CollectionNamespacedRole(_api::RbacAutho Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteRbacAuthorizationV1alpha1CollectionNamespacedRole(_api::RbacAuthorizationV1alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1alpha1CollectionNamespacedRole(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteRbacAuthorizationV1alpha1CollectionNamespacedRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1alpha1CollectionNamespacedRole(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of RoleBinding @@ -274,7 +364,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteRbacAuthorizationV1alpha1CollectionNamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteRbacAuthorizationV1alpha1CollectionNamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -292,9 +382,19 @@ function deleteRbacAuthorizationV1alpha1CollectionNamespacedRoleBinding(_api::Rb Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteRbacAuthorizationV1alpha1CollectionNamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1alpha1CollectionNamespacedRoleBinding(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteRbacAuthorizationV1alpha1CollectionNamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1alpha1CollectionNamespacedRoleBinding(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a Role @@ -308,7 +408,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -319,9 +419,19 @@ function deleteRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1 Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1alpha1NamespacedRole(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1alpha1NamespacedRole(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a RoleBinding @@ -335,7 +445,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -346,21 +456,41 @@ function deleteRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthoriz Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1alpha1NamespacedRoleBinding(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1alpha1NamespacedRoleBinding(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getRbacAuthorizationV1alpha1APIResources(_api::RbacAuthorizationV1alpha1Api; _mediaType=nothing) +function _swaggerinternal_getRbacAuthorizationV1alpha1APIResources(_api::RbacAuthorizationV1alpha1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/rbac.authorization.k8s.io/v1alpha1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getRbacAuthorizationV1alpha1APIResources(_api::RbacAuthorizationV1alpha1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getRbacAuthorizationV1alpha1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getRbacAuthorizationV1alpha1APIResources(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getRbacAuthorizationV1alpha1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind ClusterRole @@ -375,7 +505,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiRbacV1alpha1ClusterRoleList """ -function listRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1alpha1ClusterRoleList, "/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -388,9 +518,19 @@ function listRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alpha Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1alpha1ClusterRole(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1alpha1ClusterRole(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind ClusterRoleBinding @@ -405,7 +545,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiRbacV1alpha1ClusterRoleBindingList """ -function listRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1alpha1ClusterRoleBindingList, "/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -418,9 +558,19 @@ function listRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorization Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1alpha1ClusterRoleBinding(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1alpha1ClusterRoleBinding(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Role @@ -436,7 +586,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiRbacV1alpha1RoleList """ -function listRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1alpha1RoleList, "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -450,9 +600,19 @@ function listRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1al Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1alpha1NamespacedRole(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1alpha1NamespacedRole(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind RoleBinding @@ -468,7 +628,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiRbacV1alpha1RoleBindingList """ -function listRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1alpha1RoleBindingList, "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -482,9 +642,19 @@ function listRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthorizat Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1alpha1NamespacedRoleBinding(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1alpha1NamespacedRoleBinding(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind RoleBinding @@ -499,7 +669,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiRbacV1alpha1RoleBindingList """ -function listRbacAuthorizationV1alpha1RoleBindingForAllNamespaces(_api::RbacAuthorizationV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listRbacAuthorizationV1alpha1RoleBindingForAllNamespaces(_api::RbacAuthorizationV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1alpha1RoleBindingList, "/apis/rbac.authorization.k8s.io/v1alpha1/rolebindings", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -512,9 +682,19 @@ function listRbacAuthorizationV1alpha1RoleBindingForAllNamespaces(_api::RbacAuth Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listRbacAuthorizationV1alpha1RoleBindingForAllNamespaces(_api::RbacAuthorizationV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1alpha1RoleBindingForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listRbacAuthorizationV1alpha1RoleBindingForAllNamespaces(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1alpha1RoleBindingForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Role @@ -529,7 +709,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiRbacV1alpha1RoleList """ -function listRbacAuthorizationV1alpha1RoleForAllNamespaces(_api::RbacAuthorizationV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listRbacAuthorizationV1alpha1RoleForAllNamespaces(_api::RbacAuthorizationV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1alpha1RoleList, "/apis/rbac.authorization.k8s.io/v1alpha1/roles", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -542,9 +722,19 @@ function listRbacAuthorizationV1alpha1RoleForAllNamespaces(_api::RbacAuthorizati Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listRbacAuthorizationV1alpha1RoleForAllNamespaces(_api::RbacAuthorizationV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1alpha1RoleForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listRbacAuthorizationV1alpha1RoleForAllNamespaces(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1alpha1RoleForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified ClusterRole @@ -556,7 +746,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiRbacV1alpha1ClusterRole """ -function patchRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiRbacV1alpha1ClusterRole, "/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -565,9 +755,19 @@ function patchRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alph Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchRbacAuthorizationV1alpha1ClusterRole(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchRbacAuthorizationV1alpha1ClusterRole(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified ClusterRoleBinding @@ -579,7 +779,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiRbacV1alpha1ClusterRoleBinding """ -function patchRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiRbacV1alpha1ClusterRoleBinding, "/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -588,9 +788,19 @@ function patchRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizatio Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchRbacAuthorizationV1alpha1ClusterRoleBinding(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchRbacAuthorizationV1alpha1ClusterRoleBinding(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified Role @@ -603,7 +813,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiRbacV1alpha1Role """ -function patchRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiRbacV1alpha1Role, "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -613,9 +823,19 @@ function patchRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1a Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchRbacAuthorizationV1alpha1NamespacedRole(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchRbacAuthorizationV1alpha1NamespacedRole(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified RoleBinding @@ -628,7 +848,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiRbacV1alpha1RoleBinding """ -function patchRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiRbacV1alpha1RoleBinding, "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -638,9 +858,19 @@ function patchRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthoriza Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchRbacAuthorizationV1alpha1NamespacedRoleBinding(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchRbacAuthorizationV1alpha1NamespacedRoleBinding(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified ClusterRole @@ -648,15 +878,25 @@ Param: name::String (required) Param: pretty::String Return: IoK8sApiRbacV1alpha1ClusterRole """ -function readRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alpha1Api, name::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alpha1Api, name::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1alpha1ClusterRole, "/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alpha1Api, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readRbacAuthorizationV1alpha1ClusterRole(_api, name; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readRbacAuthorizationV1alpha1ClusterRole(_api, name; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified ClusterRoleBinding @@ -664,15 +904,25 @@ Param: name::String (required) Param: pretty::String Return: IoK8sApiRbacV1alpha1ClusterRoleBinding """ -function readRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1alpha1ClusterRoleBinding, "/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readRbacAuthorizationV1alpha1ClusterRoleBinding(_api, name; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readRbacAuthorizationV1alpha1ClusterRoleBinding(_api, name; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified Role @@ -681,16 +931,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiRbacV1alpha1Role """ -function readRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1alpha1Role, "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readRbacAuthorizationV1alpha1NamespacedRole(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readRbacAuthorizationV1alpha1NamespacedRole(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified RoleBinding @@ -699,16 +959,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiRbacV1alpha1RoleBinding """ -function readRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1alpha1RoleBinding, "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readRbacAuthorizationV1alpha1NamespacedRoleBinding(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readRbacAuthorizationV1alpha1NamespacedRoleBinding(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified ClusterRole @@ -719,7 +989,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiRbacV1alpha1ClusterRole """ -function replaceRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiRbacV1alpha1ClusterRole, "/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -727,9 +997,19 @@ function replaceRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1al Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceRbacAuthorizationV1alpha1ClusterRole(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceRbacAuthorizationV1alpha1ClusterRole(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified ClusterRoleBinding @@ -740,7 +1020,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiRbacV1alpha1ClusterRoleBinding """ -function replaceRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiRbacV1alpha1ClusterRoleBinding, "/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -748,9 +1028,19 @@ function replaceRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizat Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceRbacAuthorizationV1alpha1ClusterRoleBinding(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceRbacAuthorizationV1alpha1ClusterRoleBinding(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified Role @@ -762,7 +1052,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiRbacV1alpha1Role """ -function replaceRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiRbacV1alpha1Role, "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -771,9 +1061,19 @@ function replaceRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceRbacAuthorizationV1alpha1NamespacedRole(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceRbacAuthorizationV1alpha1NamespacedRole(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified RoleBinding @@ -785,7 +1085,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiRbacV1alpha1RoleBinding """ -function replaceRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiRbacV1alpha1RoleBinding, "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -794,9 +1094,19 @@ function replaceRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthori Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceRbacAuthorizationV1alpha1NamespacedRoleBinding(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceRbacAuthorizationV1alpha1NamespacedRoleBinding(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -812,7 +1122,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -826,9 +1136,19 @@ function watchRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alph Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1alpha1ClusterRole(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1alpha1ClusterRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1alpha1ClusterRole(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -844,7 +1164,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -858,9 +1178,19 @@ function watchRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizatio Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1alpha1ClusterRoleBinding(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1alpha1ClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1alpha1ClusterRoleBinding(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead. @@ -875,7 +1205,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1alpha1ClusterRoleBindingList(_api::RbacAuthorizationV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1alpha1ClusterRoleBindingList(_api::RbacAuthorizationV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -888,9 +1218,19 @@ function watchRbacAuthorizationV1alpha1ClusterRoleBindingList(_api::RbacAuthoriz Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1alpha1ClusterRoleBindingList(_api::RbacAuthorizationV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1alpha1ClusterRoleBindingList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1alpha1ClusterRoleBindingList(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1alpha1ClusterRoleBindingList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of ClusterRole. deprecated: use the 'watch' parameter with a list operation instead. @@ -905,7 +1245,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1alpha1ClusterRoleList(_api::RbacAuthorizationV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1alpha1ClusterRoleList(_api::RbacAuthorizationV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -918,9 +1258,19 @@ function watchRbacAuthorizationV1alpha1ClusterRoleList(_api::RbacAuthorizationV1 Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1alpha1ClusterRoleList(_api::RbacAuthorizationV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1alpha1ClusterRoleList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1alpha1ClusterRoleList(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1alpha1ClusterRoleList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -937,7 +1287,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/roles/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -952,9 +1302,19 @@ function watchRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1a Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1alpha1NamespacedRole(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1alpha1NamespacedRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1alpha1NamespacedRole(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -971,7 +1331,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/rolebindings/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -986,9 +1346,19 @@ function watchRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthoriza Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1alpha1NamespacedRoleBinding(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1alpha1NamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1alpha1NamespacedRoleBinding(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead. @@ -1004,7 +1374,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1alpha1NamespacedRoleBindingList(_api::RbacAuthorizationV1alpha1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1alpha1NamespacedRoleBindingList(_api::RbacAuthorizationV1alpha1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/rolebindings", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -1018,9 +1388,19 @@ function watchRbacAuthorizationV1alpha1NamespacedRoleBindingList(_api::RbacAutho Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1alpha1NamespacedRoleBindingList(_api::RbacAuthorizationV1alpha1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1alpha1NamespacedRoleBindingList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1alpha1NamespacedRoleBindingList(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1alpha1NamespacedRoleBindingList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead. @@ -1036,7 +1416,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1alpha1NamespacedRoleList(_api::RbacAuthorizationV1alpha1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1alpha1NamespacedRoleList(_api::RbacAuthorizationV1alpha1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/roles", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -1050,9 +1430,19 @@ function watchRbacAuthorizationV1alpha1NamespacedRoleList(_api::RbacAuthorizatio Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1alpha1NamespacedRoleList(_api::RbacAuthorizationV1alpha1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1alpha1NamespacedRoleList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1alpha1NamespacedRoleList(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1alpha1NamespacedRoleList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead. @@ -1067,7 +1457,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1alpha1RoleBindingListForAllNamespaces(_api::RbacAuthorizationV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1alpha1RoleBindingListForAllNamespaces(_api::RbacAuthorizationV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1alpha1/watch/rolebindings", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -1080,9 +1470,19 @@ function watchRbacAuthorizationV1alpha1RoleBindingListForAllNamespaces(_api::Rba Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1alpha1RoleBindingListForAllNamespaces(_api::RbacAuthorizationV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1alpha1RoleBindingListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1alpha1RoleBindingListForAllNamespaces(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1alpha1RoleBindingListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead. @@ -1097,7 +1497,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1alpha1RoleListForAllNamespaces(_api::RbacAuthorizationV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1alpha1RoleListForAllNamespaces(_api::RbacAuthorizationV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1alpha1/watch/roles", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -1110,7 +1510,17 @@ function watchRbacAuthorizationV1alpha1RoleListForAllNamespaces(_api::RbacAuthor Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1alpha1RoleListForAllNamespaces(_api::RbacAuthorizationV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1alpha1RoleListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1alpha1RoleListForAllNamespaces(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1alpha1RoleListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createRbacAuthorizationV1alpha1ClusterRole, createRbacAuthorizationV1alpha1ClusterRoleBinding, createRbacAuthorizationV1alpha1NamespacedRole, createRbacAuthorizationV1alpha1NamespacedRoleBinding, deleteRbacAuthorizationV1alpha1ClusterRole, deleteRbacAuthorizationV1alpha1ClusterRoleBinding, deleteRbacAuthorizationV1alpha1CollectionClusterRole, deleteRbacAuthorizationV1alpha1CollectionClusterRoleBinding, deleteRbacAuthorizationV1alpha1CollectionNamespacedRole, deleteRbacAuthorizationV1alpha1CollectionNamespacedRoleBinding, deleteRbacAuthorizationV1alpha1NamespacedRole, deleteRbacAuthorizationV1alpha1NamespacedRoleBinding, getRbacAuthorizationV1alpha1APIResources, listRbacAuthorizationV1alpha1ClusterRole, listRbacAuthorizationV1alpha1ClusterRoleBinding, listRbacAuthorizationV1alpha1NamespacedRole, listRbacAuthorizationV1alpha1NamespacedRoleBinding, listRbacAuthorizationV1alpha1RoleBindingForAllNamespaces, listRbacAuthorizationV1alpha1RoleForAllNamespaces, patchRbacAuthorizationV1alpha1ClusterRole, patchRbacAuthorizationV1alpha1ClusterRoleBinding, patchRbacAuthorizationV1alpha1NamespacedRole, patchRbacAuthorizationV1alpha1NamespacedRoleBinding, readRbacAuthorizationV1alpha1ClusterRole, readRbacAuthorizationV1alpha1ClusterRoleBinding, readRbacAuthorizationV1alpha1NamespacedRole, readRbacAuthorizationV1alpha1NamespacedRoleBinding, replaceRbacAuthorizationV1alpha1ClusterRole, replaceRbacAuthorizationV1alpha1ClusterRoleBinding, replaceRbacAuthorizationV1alpha1NamespacedRole, replaceRbacAuthorizationV1alpha1NamespacedRoleBinding, watchRbacAuthorizationV1alpha1ClusterRole, watchRbacAuthorizationV1alpha1ClusterRoleBinding, watchRbacAuthorizationV1alpha1ClusterRoleBindingList, watchRbacAuthorizationV1alpha1ClusterRoleList, watchRbacAuthorizationV1alpha1NamespacedRole, watchRbacAuthorizationV1alpha1NamespacedRoleBinding, watchRbacAuthorizationV1alpha1NamespacedRoleBindingList, watchRbacAuthorizationV1alpha1NamespacedRoleList, watchRbacAuthorizationV1alpha1RoleBindingListForAllNamespaces, watchRbacAuthorizationV1alpha1RoleListForAllNamespaces diff --git a/src/api/api_RbacAuthorizationV1beta1Api.jl b/src/api/api_RbacAuthorizationV1beta1Api.jl index eca0e549..e914d9da 100644 --- a/src/api/api_RbacAuthorizationV1beta1Api.jl +++ b/src/api/api_RbacAuthorizationV1beta1Api.jl @@ -14,16 +14,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiRbacV1beta1ClusterRole """ -function createRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiRbacV1beta1ClusterRole, "/apis/rbac.authorization.k8s.io/v1beta1/clusterroles", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createRbacAuthorizationV1beta1ClusterRole(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createRbacAuthorizationV1beta1ClusterRole(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a ClusterRoleBinding @@ -33,16 +43,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiRbacV1beta1ClusterRoleBinding """ -function createRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiRbacV1beta1ClusterRoleBinding, "/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createRbacAuthorizationV1beta1ClusterRoleBinding(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createRbacAuthorizationV1beta1ClusterRoleBinding(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a Role @@ -53,7 +73,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiRbacV1beta1Role """ -function createRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiRbacV1beta1Role, "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -61,9 +81,19 @@ function createRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1b Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createRbacAuthorizationV1beta1NamespacedRole(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createRbacAuthorizationV1beta1NamespacedRole(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a RoleBinding @@ -74,7 +104,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiRbacV1beta1RoleBinding """ -function createRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiRbacV1beta1RoleBinding, "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -82,9 +112,19 @@ function createRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthoriza Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createRbacAuthorizationV1beta1NamespacedRoleBinding(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createRbacAuthorizationV1beta1NamespacedRoleBinding(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a ClusterRole @@ -97,7 +137,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -107,9 +147,19 @@ function deleteRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1beta1ClusterRole(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1beta1ClusterRole(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a ClusterRoleBinding @@ -122,7 +172,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -132,9 +182,19 @@ function deleteRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizatio Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1beta1ClusterRoleBinding(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1beta1ClusterRoleBinding(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of ClusterRole @@ -154,7 +214,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteRbacAuthorizationV1beta1CollectionClusterRole(_api::RbacAuthorizationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteRbacAuthorizationV1beta1CollectionClusterRole(_api::RbacAuthorizationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/rbac.authorization.k8s.io/v1beta1/clusterroles", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -171,9 +231,19 @@ function deleteRbacAuthorizationV1beta1CollectionClusterRole(_api::RbacAuthoriza Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteRbacAuthorizationV1beta1CollectionClusterRole(_api::RbacAuthorizationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1beta1CollectionClusterRole(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteRbacAuthorizationV1beta1CollectionClusterRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1beta1CollectionClusterRole(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of ClusterRoleBinding @@ -193,7 +263,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteRbacAuthorizationV1beta1CollectionClusterRoleBinding(_api::RbacAuthorizationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteRbacAuthorizationV1beta1CollectionClusterRoleBinding(_api::RbacAuthorizationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -210,9 +280,19 @@ function deleteRbacAuthorizationV1beta1CollectionClusterRoleBinding(_api::RbacAu Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteRbacAuthorizationV1beta1CollectionClusterRoleBinding(_api::RbacAuthorizationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1beta1CollectionClusterRoleBinding(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteRbacAuthorizationV1beta1CollectionClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1beta1CollectionClusterRoleBinding(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of Role @@ -233,7 +313,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteRbacAuthorizationV1beta1CollectionNamespacedRole(_api::RbacAuthorizationV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteRbacAuthorizationV1beta1CollectionNamespacedRole(_api::RbacAuthorizationV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -251,9 +331,19 @@ function deleteRbacAuthorizationV1beta1CollectionNamespacedRole(_api::RbacAuthor Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteRbacAuthorizationV1beta1CollectionNamespacedRole(_api::RbacAuthorizationV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1beta1CollectionNamespacedRole(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteRbacAuthorizationV1beta1CollectionNamespacedRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1beta1CollectionNamespacedRole(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of RoleBinding @@ -274,7 +364,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteRbacAuthorizationV1beta1CollectionNamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteRbacAuthorizationV1beta1CollectionNamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -292,9 +382,19 @@ function deleteRbacAuthorizationV1beta1CollectionNamespacedRoleBinding(_api::Rba Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteRbacAuthorizationV1beta1CollectionNamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1beta1CollectionNamespacedRoleBinding(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteRbacAuthorizationV1beta1CollectionNamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1beta1CollectionNamespacedRoleBinding(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a Role @@ -308,7 +408,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -319,9 +419,19 @@ function deleteRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1b Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1beta1NamespacedRole(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1beta1NamespacedRole(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a RoleBinding @@ -335,7 +445,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -346,21 +456,41 @@ function deleteRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthoriza Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1beta1NamespacedRoleBinding(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteRbacAuthorizationV1beta1NamespacedRoleBinding(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getRbacAuthorizationV1beta1APIResources(_api::RbacAuthorizationV1beta1Api; _mediaType=nothing) +function _swaggerinternal_getRbacAuthorizationV1beta1APIResources(_api::RbacAuthorizationV1beta1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/rbac.authorization.k8s.io/v1beta1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getRbacAuthorizationV1beta1APIResources(_api::RbacAuthorizationV1beta1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getRbacAuthorizationV1beta1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getRbacAuthorizationV1beta1APIResources(_api::RbacAuthorizationV1beta1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getRbacAuthorizationV1beta1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind ClusterRole @@ -375,7 +505,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiRbacV1beta1ClusterRoleList """ -function listRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1beta1ClusterRoleList, "/apis/rbac.authorization.k8s.io/v1beta1/clusterroles", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -388,9 +518,19 @@ function listRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1A Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1beta1ClusterRole(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1beta1ClusterRole(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind ClusterRoleBinding @@ -405,7 +545,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiRbacV1beta1ClusterRoleBindingList """ -function listRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1beta1ClusterRoleBindingList, "/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -418,9 +558,19 @@ function listRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizationV Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1beta1ClusterRoleBinding(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1beta1ClusterRoleBinding(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Role @@ -436,7 +586,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiRbacV1beta1RoleList """ -function listRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1beta1RoleList, "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -450,9 +600,19 @@ function listRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1bet Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1beta1NamespacedRole(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1beta1NamespacedRole(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind RoleBinding @@ -468,7 +628,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiRbacV1beta1RoleBindingList """ -function listRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1beta1RoleBindingList, "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -482,9 +642,19 @@ function listRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizati Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1beta1NamespacedRoleBinding(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1beta1NamespacedRoleBinding(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind RoleBinding @@ -499,7 +669,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiRbacV1beta1RoleBindingList """ -function listRbacAuthorizationV1beta1RoleBindingForAllNamespaces(_api::RbacAuthorizationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listRbacAuthorizationV1beta1RoleBindingForAllNamespaces(_api::RbacAuthorizationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1beta1RoleBindingList, "/apis/rbac.authorization.k8s.io/v1beta1/rolebindings", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -512,9 +682,19 @@ function listRbacAuthorizationV1beta1RoleBindingForAllNamespaces(_api::RbacAutho Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listRbacAuthorizationV1beta1RoleBindingForAllNamespaces(_api::RbacAuthorizationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1beta1RoleBindingForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listRbacAuthorizationV1beta1RoleBindingForAllNamespaces(_api::RbacAuthorizationV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1beta1RoleBindingForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind Role @@ -529,7 +709,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiRbacV1beta1RoleList """ -function listRbacAuthorizationV1beta1RoleForAllNamespaces(_api::RbacAuthorizationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listRbacAuthorizationV1beta1RoleForAllNamespaces(_api::RbacAuthorizationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1beta1RoleList, "/apis/rbac.authorization.k8s.io/v1beta1/roles", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -542,9 +722,19 @@ function listRbacAuthorizationV1beta1RoleForAllNamespaces(_api::RbacAuthorizatio Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listRbacAuthorizationV1beta1RoleForAllNamespaces(_api::RbacAuthorizationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1beta1RoleForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listRbacAuthorizationV1beta1RoleForAllNamespaces(_api::RbacAuthorizationV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listRbacAuthorizationV1beta1RoleForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified ClusterRole @@ -556,7 +746,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiRbacV1beta1ClusterRole """ -function patchRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiRbacV1beta1ClusterRole, "/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -565,9 +755,19 @@ function patchRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1 Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchRbacAuthorizationV1beta1ClusterRole(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchRbacAuthorizationV1beta1ClusterRole(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified ClusterRoleBinding @@ -579,7 +779,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiRbacV1beta1ClusterRoleBinding """ -function patchRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiRbacV1beta1ClusterRoleBinding, "/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -588,9 +788,19 @@ function patchRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorization Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchRbacAuthorizationV1beta1ClusterRoleBinding(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchRbacAuthorizationV1beta1ClusterRoleBinding(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified Role @@ -603,7 +813,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiRbacV1beta1Role """ -function patchRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiRbacV1beta1Role, "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -613,9 +823,19 @@ function patchRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1be Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchRbacAuthorizationV1beta1NamespacedRole(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchRbacAuthorizationV1beta1NamespacedRole(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified RoleBinding @@ -628,7 +848,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiRbacV1beta1RoleBinding """ -function patchRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiRbacV1beta1RoleBinding, "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -638,9 +858,19 @@ function patchRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizat Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchRbacAuthorizationV1beta1NamespacedRoleBinding(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchRbacAuthorizationV1beta1NamespacedRoleBinding(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified ClusterRole @@ -648,15 +878,25 @@ Param: name::String (required) Param: pretty::String Return: IoK8sApiRbacV1beta1ClusterRole """ -function readRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1Api, name::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1Api, name::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1beta1ClusterRole, "/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1Api, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readRbacAuthorizationV1beta1ClusterRole(_api, name; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readRbacAuthorizationV1beta1ClusterRole(_api, name; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified ClusterRoleBinding @@ -664,15 +904,25 @@ Param: name::String (required) Param: pretty::String Return: IoK8sApiRbacV1beta1ClusterRoleBinding """ -function readRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1beta1ClusterRoleBinding, "/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readRbacAuthorizationV1beta1ClusterRoleBinding(_api, name; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readRbacAuthorizationV1beta1ClusterRoleBinding(_api, name; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified Role @@ -681,16 +931,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiRbacV1beta1Role """ -function readRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1beta1Role, "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readRbacAuthorizationV1beta1NamespacedRole(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readRbacAuthorizationV1beta1NamespacedRole(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified RoleBinding @@ -699,16 +959,26 @@ Param: namespace::String (required) Param: pretty::String Return: IoK8sApiRbacV1beta1RoleBinding """ -function readRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiRbacV1beta1RoleBinding, "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readRbacAuthorizationV1beta1NamespacedRoleBinding(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readRbacAuthorizationV1beta1NamespacedRoleBinding(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified ClusterRole @@ -719,7 +989,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiRbacV1beta1ClusterRole """ -function replaceRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiRbacV1beta1ClusterRole, "/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -727,9 +997,19 @@ function replaceRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1bet Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceRbacAuthorizationV1beta1ClusterRole(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceRbacAuthorizationV1beta1ClusterRole(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified ClusterRoleBinding @@ -740,7 +1020,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiRbacV1beta1ClusterRoleBinding """ -function replaceRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiRbacV1beta1ClusterRoleBinding, "/apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -748,9 +1028,19 @@ function replaceRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizati Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceRbacAuthorizationV1beta1ClusterRoleBinding(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceRbacAuthorizationV1beta1ClusterRoleBinding(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified Role @@ -762,7 +1052,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiRbacV1beta1Role """ -function replaceRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiRbacV1beta1Role, "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -771,9 +1061,19 @@ function replaceRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1 Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceRbacAuthorizationV1beta1NamespacedRole(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceRbacAuthorizationV1beta1NamespacedRole(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified RoleBinding @@ -785,7 +1085,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiRbacV1beta1RoleBinding """ -function replaceRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiRbacV1beta1RoleBinding, "/apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -794,9 +1094,19 @@ function replaceRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthoriz Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceRbacAuthorizationV1beta1NamespacedRoleBinding(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceRbacAuthorizationV1beta1NamespacedRoleBinding(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -812,7 +1122,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterroles/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -826,9 +1136,19 @@ function watchRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1 Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1beta1ClusterRole(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1beta1ClusterRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1beta1ClusterRole(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -844,7 +1164,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterrolebindings/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -858,9 +1178,19 @@ function watchRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorization Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1beta1ClusterRoleBinding(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1beta1ClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1beta1ClusterRoleBinding(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead. @@ -875,7 +1205,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1beta1ClusterRoleBindingList(_api::RbacAuthorizationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1beta1ClusterRoleBindingList(_api::RbacAuthorizationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterrolebindings", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -888,9 +1218,19 @@ function watchRbacAuthorizationV1beta1ClusterRoleBindingList(_api::RbacAuthoriza Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1beta1ClusterRoleBindingList(_api::RbacAuthorizationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1beta1ClusterRoleBindingList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1beta1ClusterRoleBindingList(_api::RbacAuthorizationV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1beta1ClusterRoleBindingList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of ClusterRole. deprecated: use the 'watch' parameter with a list operation instead. @@ -905,7 +1245,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1beta1ClusterRoleList(_api::RbacAuthorizationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1beta1ClusterRoleList(_api::RbacAuthorizationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1beta1/watch/clusterroles", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -918,9 +1258,19 @@ function watchRbacAuthorizationV1beta1ClusterRoleList(_api::RbacAuthorizationV1b Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1beta1ClusterRoleList(_api::RbacAuthorizationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1beta1ClusterRoleList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1beta1ClusterRoleList(_api::RbacAuthorizationV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1beta1ClusterRoleList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -937,7 +1287,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/{namespace}/roles/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -952,9 +1302,19 @@ function watchRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1be Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1beta1NamespacedRole(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1beta1NamespacedRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1beta1NamespacedRole(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -971,7 +1331,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/{namespace}/rolebindings/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -986,9 +1346,19 @@ function watchRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizat Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1beta1NamespacedRoleBinding(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1beta1NamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1beta1NamespacedRoleBinding(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead. @@ -1004,7 +1374,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1beta1NamespacedRoleBindingList(_api::RbacAuthorizationV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1beta1NamespacedRoleBindingList(_api::RbacAuthorizationV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/{namespace}/rolebindings", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -1018,9 +1388,19 @@ function watchRbacAuthorizationV1beta1NamespacedRoleBindingList(_api::RbacAuthor Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1beta1NamespacedRoleBindingList(_api::RbacAuthorizationV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1beta1NamespacedRoleBindingList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1beta1NamespacedRoleBindingList(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1beta1NamespacedRoleBindingList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead. @@ -1036,7 +1416,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1beta1NamespacedRoleList(_api::RbacAuthorizationV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1beta1NamespacedRoleList(_api::RbacAuthorizationV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1beta1/watch/namespaces/{namespace}/roles", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -1050,9 +1430,19 @@ function watchRbacAuthorizationV1beta1NamespacedRoleList(_api::RbacAuthorization Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1beta1NamespacedRoleList(_api::RbacAuthorizationV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1beta1NamespacedRoleList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1beta1NamespacedRoleList(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1beta1NamespacedRoleList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead. @@ -1067,7 +1457,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1beta1RoleBindingListForAllNamespaces(_api::RbacAuthorizationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1beta1RoleBindingListForAllNamespaces(_api::RbacAuthorizationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1beta1/watch/rolebindings", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -1080,9 +1470,19 @@ function watchRbacAuthorizationV1beta1RoleBindingListForAllNamespaces(_api::Rbac Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1beta1RoleBindingListForAllNamespaces(_api::RbacAuthorizationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1beta1RoleBindingListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1beta1RoleBindingListForAllNamespaces(_api::RbacAuthorizationV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1beta1RoleBindingListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead. @@ -1097,7 +1497,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchRbacAuthorizationV1beta1RoleListForAllNamespaces(_api::RbacAuthorizationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchRbacAuthorizationV1beta1RoleListForAllNamespaces(_api::RbacAuthorizationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/rbac.authorization.k8s.io/v1beta1/watch/roles", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -1110,7 +1510,17 @@ function watchRbacAuthorizationV1beta1RoleListForAllNamespaces(_api::RbacAuthori Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchRbacAuthorizationV1beta1RoleListForAllNamespaces(_api::RbacAuthorizationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1beta1RoleListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchRbacAuthorizationV1beta1RoleListForAllNamespaces(_api::RbacAuthorizationV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchRbacAuthorizationV1beta1RoleListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createRbacAuthorizationV1beta1ClusterRole, createRbacAuthorizationV1beta1ClusterRoleBinding, createRbacAuthorizationV1beta1NamespacedRole, createRbacAuthorizationV1beta1NamespacedRoleBinding, deleteRbacAuthorizationV1beta1ClusterRole, deleteRbacAuthorizationV1beta1ClusterRoleBinding, deleteRbacAuthorizationV1beta1CollectionClusterRole, deleteRbacAuthorizationV1beta1CollectionClusterRoleBinding, deleteRbacAuthorizationV1beta1CollectionNamespacedRole, deleteRbacAuthorizationV1beta1CollectionNamespacedRoleBinding, deleteRbacAuthorizationV1beta1NamespacedRole, deleteRbacAuthorizationV1beta1NamespacedRoleBinding, getRbacAuthorizationV1beta1APIResources, listRbacAuthorizationV1beta1ClusterRole, listRbacAuthorizationV1beta1ClusterRoleBinding, listRbacAuthorizationV1beta1NamespacedRole, listRbacAuthorizationV1beta1NamespacedRoleBinding, listRbacAuthorizationV1beta1RoleBindingForAllNamespaces, listRbacAuthorizationV1beta1RoleForAllNamespaces, patchRbacAuthorizationV1beta1ClusterRole, patchRbacAuthorizationV1beta1ClusterRoleBinding, patchRbacAuthorizationV1beta1NamespacedRole, patchRbacAuthorizationV1beta1NamespacedRoleBinding, readRbacAuthorizationV1beta1ClusterRole, readRbacAuthorizationV1beta1ClusterRoleBinding, readRbacAuthorizationV1beta1NamespacedRole, readRbacAuthorizationV1beta1NamespacedRoleBinding, replaceRbacAuthorizationV1beta1ClusterRole, replaceRbacAuthorizationV1beta1ClusterRoleBinding, replaceRbacAuthorizationV1beta1NamespacedRole, replaceRbacAuthorizationV1beta1NamespacedRoleBinding, watchRbacAuthorizationV1beta1ClusterRole, watchRbacAuthorizationV1beta1ClusterRoleBinding, watchRbacAuthorizationV1beta1ClusterRoleBindingList, watchRbacAuthorizationV1beta1ClusterRoleList, watchRbacAuthorizationV1beta1NamespacedRole, watchRbacAuthorizationV1beta1NamespacedRoleBinding, watchRbacAuthorizationV1beta1NamespacedRoleBindingList, watchRbacAuthorizationV1beta1NamespacedRoleList, watchRbacAuthorizationV1beta1RoleBindingListForAllNamespaces, watchRbacAuthorizationV1beta1RoleListForAllNamespaces diff --git a/src/api/api_SchedulingApi.jl b/src/api/api_SchedulingApi.jl index 2d76738e..d1ce96ee 100644 --- a/src/api/api_SchedulingApi.jl +++ b/src/api/api_SchedulingApi.jl @@ -10,11 +10,21 @@ end get information of a group Return: IoK8sApimachineryPkgApisMetaV1APIGroup """ -function getSchedulingAPIGroup(_api::SchedulingApi; _mediaType=nothing) +function _swaggerinternal_getSchedulingAPIGroup(_api::SchedulingApi; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIGroup, "/apis/scheduling.k8s.io/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getSchedulingAPIGroup(_api::SchedulingApi; _mediaType=nothing) + _ctx = _swaggerinternal_getSchedulingAPIGroup(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getSchedulingAPIGroup(_api::SchedulingApi, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getSchedulingAPIGroup(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export getSchedulingAPIGroup diff --git a/src/api/api_SchedulingV1Api.jl b/src/api/api_SchedulingV1Api.jl index 8c3e85dc..594fd67c 100644 --- a/src/api/api_SchedulingV1Api.jl +++ b/src/api/api_SchedulingV1Api.jl @@ -14,16 +14,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiSchedulingV1PriorityClass """ -function createSchedulingV1PriorityClass(_api::SchedulingV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createSchedulingV1PriorityClass(_api::SchedulingV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiSchedulingV1PriorityClass, "/apis/scheduling.k8s.io/v1/priorityclasses", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createSchedulingV1PriorityClass(_api::SchedulingV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createSchedulingV1PriorityClass(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createSchedulingV1PriorityClass(_api::SchedulingV1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createSchedulingV1PriorityClass(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of PriorityClass @@ -43,7 +53,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteSchedulingV1CollectionPriorityClass(_api::SchedulingV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteSchedulingV1CollectionPriorityClass(_api::SchedulingV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/scheduling.k8s.io/v1/priorityclasses", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -60,9 +70,19 @@ function deleteSchedulingV1CollectionPriorityClass(_api::SchedulingV1Api; pretty Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteSchedulingV1CollectionPriorityClass(_api::SchedulingV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteSchedulingV1CollectionPriorityClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteSchedulingV1CollectionPriorityClass(_api::SchedulingV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteSchedulingV1CollectionPriorityClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a PriorityClass @@ -75,7 +95,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteSchedulingV1PriorityClass(_api::SchedulingV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteSchedulingV1PriorityClass(_api::SchedulingV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/scheduling.k8s.io/v1/priorityclasses/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -85,21 +105,41 @@ function deleteSchedulingV1PriorityClass(_api::SchedulingV1Api, name::String; pr Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteSchedulingV1PriorityClass(_api::SchedulingV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteSchedulingV1PriorityClass(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteSchedulingV1PriorityClass(_api::SchedulingV1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteSchedulingV1PriorityClass(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getSchedulingV1APIResources(_api::SchedulingV1Api; _mediaType=nothing) +function _swaggerinternal_getSchedulingV1APIResources(_api::SchedulingV1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/scheduling.k8s.io/v1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getSchedulingV1APIResources(_api::SchedulingV1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getSchedulingV1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getSchedulingV1APIResources(_api::SchedulingV1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getSchedulingV1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind PriorityClass @@ -114,7 +154,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiSchedulingV1PriorityClassList """ -function listSchedulingV1PriorityClass(_api::SchedulingV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listSchedulingV1PriorityClass(_api::SchedulingV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiSchedulingV1PriorityClassList, "/apis/scheduling.k8s.io/v1/priorityclasses", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -127,9 +167,19 @@ function listSchedulingV1PriorityClass(_api::SchedulingV1Api; pretty=nothing, al Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listSchedulingV1PriorityClass(_api::SchedulingV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listSchedulingV1PriorityClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listSchedulingV1PriorityClass(_api::SchedulingV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listSchedulingV1PriorityClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified PriorityClass @@ -141,7 +191,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiSchedulingV1PriorityClass """ -function patchSchedulingV1PriorityClass(_api::SchedulingV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchSchedulingV1PriorityClass(_api::SchedulingV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiSchedulingV1PriorityClass, "/apis/scheduling.k8s.io/v1/priorityclasses/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -150,9 +200,19 @@ function patchSchedulingV1PriorityClass(_api::SchedulingV1Api, name::String, bod Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchSchedulingV1PriorityClass(_api::SchedulingV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchSchedulingV1PriorityClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchSchedulingV1PriorityClass(_api::SchedulingV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchSchedulingV1PriorityClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified PriorityClass @@ -162,7 +222,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiSchedulingV1PriorityClass """ -function readSchedulingV1PriorityClass(_api::SchedulingV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readSchedulingV1PriorityClass(_api::SchedulingV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiSchedulingV1PriorityClass, "/apis/scheduling.k8s.io/v1/priorityclasses/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -170,9 +230,19 @@ function readSchedulingV1PriorityClass(_api::SchedulingV1Api, name::String; pret Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readSchedulingV1PriorityClass(_api::SchedulingV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readSchedulingV1PriorityClass(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readSchedulingV1PriorityClass(_api::SchedulingV1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readSchedulingV1PriorityClass(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified PriorityClass @@ -183,7 +253,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiSchedulingV1PriorityClass """ -function replaceSchedulingV1PriorityClass(_api::SchedulingV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceSchedulingV1PriorityClass(_api::SchedulingV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiSchedulingV1PriorityClass, "/apis/scheduling.k8s.io/v1/priorityclasses/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -191,9 +261,19 @@ function replaceSchedulingV1PriorityClass(_api::SchedulingV1Api, name::String, b Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceSchedulingV1PriorityClass(_api::SchedulingV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceSchedulingV1PriorityClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceSchedulingV1PriorityClass(_api::SchedulingV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceSchedulingV1PriorityClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -209,7 +289,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchSchedulingV1PriorityClass(_api::SchedulingV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchSchedulingV1PriorityClass(_api::SchedulingV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/scheduling.k8s.io/v1/watch/priorityclasses/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -223,9 +303,19 @@ function watchSchedulingV1PriorityClass(_api::SchedulingV1Api, name::String; all Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchSchedulingV1PriorityClass(_api::SchedulingV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchSchedulingV1PriorityClass(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchSchedulingV1PriorityClass(_api::SchedulingV1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchSchedulingV1PriorityClass(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of PriorityClass. deprecated: use the 'watch' parameter with a list operation instead. @@ -240,7 +330,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchSchedulingV1PriorityClassList(_api::SchedulingV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchSchedulingV1PriorityClassList(_api::SchedulingV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/scheduling.k8s.io/v1/watch/priorityclasses", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -253,7 +343,17 @@ function watchSchedulingV1PriorityClassList(_api::SchedulingV1Api; allowWatchBoo Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchSchedulingV1PriorityClassList(_api::SchedulingV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchSchedulingV1PriorityClassList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchSchedulingV1PriorityClassList(_api::SchedulingV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchSchedulingV1PriorityClassList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createSchedulingV1PriorityClass, deleteSchedulingV1CollectionPriorityClass, deleteSchedulingV1PriorityClass, getSchedulingV1APIResources, listSchedulingV1PriorityClass, patchSchedulingV1PriorityClass, readSchedulingV1PriorityClass, replaceSchedulingV1PriorityClass, watchSchedulingV1PriorityClass, watchSchedulingV1PriorityClassList diff --git a/src/api/api_SchedulingV1alpha1Api.jl b/src/api/api_SchedulingV1alpha1Api.jl index 6ce4e603..09055e7f 100644 --- a/src/api/api_SchedulingV1alpha1Api.jl +++ b/src/api/api_SchedulingV1alpha1Api.jl @@ -14,16 +14,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiSchedulingV1alpha1PriorityClass """ -function createSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiSchedulingV1alpha1PriorityClass, "/apis/scheduling.k8s.io/v1alpha1/priorityclasses", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createSchedulingV1alpha1PriorityClass(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createSchedulingV1alpha1PriorityClass(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of PriorityClass @@ -43,7 +53,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteSchedulingV1alpha1CollectionPriorityClass(_api::SchedulingV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteSchedulingV1alpha1CollectionPriorityClass(_api::SchedulingV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/scheduling.k8s.io/v1alpha1/priorityclasses", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -60,9 +70,19 @@ function deleteSchedulingV1alpha1CollectionPriorityClass(_api::SchedulingV1alpha Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteSchedulingV1alpha1CollectionPriorityClass(_api::SchedulingV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteSchedulingV1alpha1CollectionPriorityClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteSchedulingV1alpha1CollectionPriorityClass(_api::SchedulingV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteSchedulingV1alpha1CollectionPriorityClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a PriorityClass @@ -75,7 +95,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -85,21 +105,41 @@ function deleteSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, name Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteSchedulingV1alpha1PriorityClass(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteSchedulingV1alpha1PriorityClass(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getSchedulingV1alpha1APIResources(_api::SchedulingV1alpha1Api; _mediaType=nothing) +function _swaggerinternal_getSchedulingV1alpha1APIResources(_api::SchedulingV1alpha1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/scheduling.k8s.io/v1alpha1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getSchedulingV1alpha1APIResources(_api::SchedulingV1alpha1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getSchedulingV1alpha1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getSchedulingV1alpha1APIResources(_api::SchedulingV1alpha1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getSchedulingV1alpha1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind PriorityClass @@ -114,7 +154,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiSchedulingV1alpha1PriorityClassList """ -function listSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiSchedulingV1alpha1PriorityClassList, "/apis/scheduling.k8s.io/v1alpha1/priorityclasses", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -127,9 +167,19 @@ function listSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api; pretty Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listSchedulingV1alpha1PriorityClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listSchedulingV1alpha1PriorityClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified PriorityClass @@ -141,7 +191,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiSchedulingV1alpha1PriorityClass """ -function patchSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiSchedulingV1alpha1PriorityClass, "/apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -150,9 +200,19 @@ function patchSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, name: Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchSchedulingV1alpha1PriorityClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchSchedulingV1alpha1PriorityClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified PriorityClass @@ -162,7 +222,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiSchedulingV1alpha1PriorityClass """ -function readSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiSchedulingV1alpha1PriorityClass, "/apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -170,9 +230,19 @@ function readSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, name:: Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readSchedulingV1alpha1PriorityClass(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readSchedulingV1alpha1PriorityClass(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified PriorityClass @@ -183,7 +253,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiSchedulingV1alpha1PriorityClass """ -function replaceSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiSchedulingV1alpha1PriorityClass, "/apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -191,9 +261,19 @@ function replaceSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, nam Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceSchedulingV1alpha1PriorityClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceSchedulingV1alpha1PriorityClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -209,7 +289,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/scheduling.k8s.io/v1alpha1/watch/priorityclasses/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -223,9 +303,19 @@ function watchSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, name: Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchSchedulingV1alpha1PriorityClass(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchSchedulingV1alpha1PriorityClass(_api::SchedulingV1alpha1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchSchedulingV1alpha1PriorityClass(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of PriorityClass. deprecated: use the 'watch' parameter with a list operation instead. @@ -240,7 +330,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchSchedulingV1alpha1PriorityClassList(_api::SchedulingV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchSchedulingV1alpha1PriorityClassList(_api::SchedulingV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/scheduling.k8s.io/v1alpha1/watch/priorityclasses", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -253,7 +343,17 @@ function watchSchedulingV1alpha1PriorityClassList(_api::SchedulingV1alpha1Api; a Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchSchedulingV1alpha1PriorityClassList(_api::SchedulingV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchSchedulingV1alpha1PriorityClassList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchSchedulingV1alpha1PriorityClassList(_api::SchedulingV1alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchSchedulingV1alpha1PriorityClassList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createSchedulingV1alpha1PriorityClass, deleteSchedulingV1alpha1CollectionPriorityClass, deleteSchedulingV1alpha1PriorityClass, getSchedulingV1alpha1APIResources, listSchedulingV1alpha1PriorityClass, patchSchedulingV1alpha1PriorityClass, readSchedulingV1alpha1PriorityClass, replaceSchedulingV1alpha1PriorityClass, watchSchedulingV1alpha1PriorityClass, watchSchedulingV1alpha1PriorityClassList diff --git a/src/api/api_SchedulingV1beta1Api.jl b/src/api/api_SchedulingV1beta1Api.jl index 8c68024f..e94e0dfa 100644 --- a/src/api/api_SchedulingV1beta1Api.jl +++ b/src/api/api_SchedulingV1beta1Api.jl @@ -14,16 +14,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiSchedulingV1beta1PriorityClass """ -function createSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiSchedulingV1beta1PriorityClass, "/apis/scheduling.k8s.io/v1beta1/priorityclasses", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createSchedulingV1beta1PriorityClass(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createSchedulingV1beta1PriorityClass(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of PriorityClass @@ -43,7 +53,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteSchedulingV1beta1CollectionPriorityClass(_api::SchedulingV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteSchedulingV1beta1CollectionPriorityClass(_api::SchedulingV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/scheduling.k8s.io/v1beta1/priorityclasses", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -60,9 +70,19 @@ function deleteSchedulingV1beta1CollectionPriorityClass(_api::SchedulingV1beta1A Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteSchedulingV1beta1CollectionPriorityClass(_api::SchedulingV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteSchedulingV1beta1CollectionPriorityClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteSchedulingV1beta1CollectionPriorityClass(_api::SchedulingV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteSchedulingV1beta1CollectionPriorityClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a PriorityClass @@ -75,7 +95,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/scheduling.k8s.io/v1beta1/priorityclasses/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -85,21 +105,41 @@ function deleteSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, name:: Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteSchedulingV1beta1PriorityClass(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteSchedulingV1beta1PriorityClass(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getSchedulingV1beta1APIResources(_api::SchedulingV1beta1Api; _mediaType=nothing) +function _swaggerinternal_getSchedulingV1beta1APIResources(_api::SchedulingV1beta1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/scheduling.k8s.io/v1beta1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getSchedulingV1beta1APIResources(_api::SchedulingV1beta1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getSchedulingV1beta1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getSchedulingV1beta1APIResources(_api::SchedulingV1beta1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getSchedulingV1beta1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind PriorityClass @@ -114,7 +154,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiSchedulingV1beta1PriorityClassList """ -function listSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiSchedulingV1beta1PriorityClassList, "/apis/scheduling.k8s.io/v1beta1/priorityclasses", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -127,9 +167,19 @@ function listSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api; pretty=n Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listSchedulingV1beta1PriorityClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listSchedulingV1beta1PriorityClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified PriorityClass @@ -141,7 +191,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiSchedulingV1beta1PriorityClass """ -function patchSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiSchedulingV1beta1PriorityClass, "/apis/scheduling.k8s.io/v1beta1/priorityclasses/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -150,9 +200,19 @@ function patchSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, name::S Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchSchedulingV1beta1PriorityClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchSchedulingV1beta1PriorityClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified PriorityClass @@ -162,7 +222,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiSchedulingV1beta1PriorityClass """ -function readSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiSchedulingV1beta1PriorityClass, "/apis/scheduling.k8s.io/v1beta1/priorityclasses/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -170,9 +230,19 @@ function readSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, name::St Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readSchedulingV1beta1PriorityClass(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readSchedulingV1beta1PriorityClass(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified PriorityClass @@ -183,7 +253,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiSchedulingV1beta1PriorityClass """ -function replaceSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiSchedulingV1beta1PriorityClass, "/apis/scheduling.k8s.io/v1beta1/priorityclasses/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -191,9 +261,19 @@ function replaceSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, name: Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceSchedulingV1beta1PriorityClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceSchedulingV1beta1PriorityClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -209,7 +289,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/scheduling.k8s.io/v1beta1/watch/priorityclasses/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -223,9 +303,19 @@ function watchSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, name::S Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchSchedulingV1beta1PriorityClass(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchSchedulingV1beta1PriorityClass(_api::SchedulingV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchSchedulingV1beta1PriorityClass(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of PriorityClass. deprecated: use the 'watch' parameter with a list operation instead. @@ -240,7 +330,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchSchedulingV1beta1PriorityClassList(_api::SchedulingV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchSchedulingV1beta1PriorityClassList(_api::SchedulingV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/scheduling.k8s.io/v1beta1/watch/priorityclasses", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -253,7 +343,17 @@ function watchSchedulingV1beta1PriorityClassList(_api::SchedulingV1beta1Api; all Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchSchedulingV1beta1PriorityClassList(_api::SchedulingV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchSchedulingV1beta1PriorityClassList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchSchedulingV1beta1PriorityClassList(_api::SchedulingV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchSchedulingV1beta1PriorityClassList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createSchedulingV1beta1PriorityClass, deleteSchedulingV1beta1CollectionPriorityClass, deleteSchedulingV1beta1PriorityClass, getSchedulingV1beta1APIResources, listSchedulingV1beta1PriorityClass, patchSchedulingV1beta1PriorityClass, readSchedulingV1beta1PriorityClass, replaceSchedulingV1beta1PriorityClass, watchSchedulingV1beta1PriorityClass, watchSchedulingV1beta1PriorityClassList diff --git a/src/api/api_SettingsApi.jl b/src/api/api_SettingsApi.jl index 629dc68a..93c365ae 100644 --- a/src/api/api_SettingsApi.jl +++ b/src/api/api_SettingsApi.jl @@ -10,11 +10,21 @@ end get information of a group Return: IoK8sApimachineryPkgApisMetaV1APIGroup """ -function getSettingsAPIGroup(_api::SettingsApi; _mediaType=nothing) +function _swaggerinternal_getSettingsAPIGroup(_api::SettingsApi; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIGroup, "/apis/settings.k8s.io/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getSettingsAPIGroup(_api::SettingsApi; _mediaType=nothing) + _ctx = _swaggerinternal_getSettingsAPIGroup(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getSettingsAPIGroup(_api::SettingsApi, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getSettingsAPIGroup(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export getSettingsAPIGroup diff --git a/src/api/api_SettingsV1alpha1Api.jl b/src/api/api_SettingsV1alpha1Api.jl index 55fba1a2..d601f294 100644 --- a/src/api/api_SettingsV1alpha1Api.jl +++ b/src/api/api_SettingsV1alpha1Api.jl @@ -15,7 +15,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiSettingsV1alpha1PodPreset """ -function createSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiSettingsV1alpha1PodPreset, "/apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -23,9 +23,19 @@ function createSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, na Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createSettingsV1alpha1NamespacedPodPreset(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createSettingsV1alpha1NamespacedPodPreset(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of PodPreset @@ -46,7 +56,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteSettingsV1alpha1CollectionNamespacedPodPreset(_api::SettingsV1alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteSettingsV1alpha1CollectionNamespacedPodPreset(_api::SettingsV1alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets", ["BearerToken"], body) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -64,9 +74,19 @@ function deleteSettingsV1alpha1CollectionNamespacedPodPreset(_api::SettingsV1alp Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteSettingsV1alpha1CollectionNamespacedPodPreset(_api::SettingsV1alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteSettingsV1alpha1CollectionNamespacedPodPreset(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteSettingsV1alpha1CollectionNamespacedPodPreset(_api::SettingsV1alpha1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteSettingsV1alpha1CollectionNamespacedPodPreset(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a PodPreset @@ -80,7 +100,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -91,21 +111,41 @@ function deleteSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, na Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteSettingsV1alpha1NamespacedPodPreset(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteSettingsV1alpha1NamespacedPodPreset(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getSettingsV1alpha1APIResources(_api::SettingsV1alpha1Api; _mediaType=nothing) +function _swaggerinternal_getSettingsV1alpha1APIResources(_api::SettingsV1alpha1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/settings.k8s.io/v1alpha1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getSettingsV1alpha1APIResources(_api::SettingsV1alpha1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getSettingsV1alpha1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getSettingsV1alpha1APIResources(_api::SettingsV1alpha1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getSettingsV1alpha1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind PodPreset @@ -121,7 +161,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiSettingsV1alpha1PodPresetList """ -function listSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiSettingsV1alpha1PodPresetList, "/apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -135,9 +175,19 @@ function listSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, name Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listSettingsV1alpha1NamespacedPodPreset(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listSettingsV1alpha1NamespacedPodPreset(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind PodPreset @@ -152,7 +202,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiSettingsV1alpha1PodPresetList """ -function listSettingsV1alpha1PodPresetForAllNamespaces(_api::SettingsV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listSettingsV1alpha1PodPresetForAllNamespaces(_api::SettingsV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiSettingsV1alpha1PodPresetList, "/apis/settings.k8s.io/v1alpha1/podpresets", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -165,9 +215,19 @@ function listSettingsV1alpha1PodPresetForAllNamespaces(_api::SettingsV1alpha1Api Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listSettingsV1alpha1PodPresetForAllNamespaces(_api::SettingsV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listSettingsV1alpha1PodPresetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listSettingsV1alpha1PodPresetForAllNamespaces(_api::SettingsV1alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listSettingsV1alpha1PodPresetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified PodPreset @@ -180,7 +240,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiSettingsV1alpha1PodPreset """ -function patchSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiSettingsV1alpha1PodPreset, "/apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -190,9 +250,19 @@ function patchSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, nam Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchSettingsV1alpha1NamespacedPodPreset(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchSettingsV1alpha1NamespacedPodPreset(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified PodPreset @@ -203,7 +273,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiSettingsV1alpha1PodPreset """ -function readSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiSettingsV1alpha1PodPreset, "/apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -212,9 +282,19 @@ function readSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, name Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readSettingsV1alpha1NamespacedPodPreset(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readSettingsV1alpha1NamespacedPodPreset(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified PodPreset @@ -226,7 +306,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiSettingsV1alpha1PodPreset """ -function replaceSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiSettingsV1alpha1PodPreset, "/apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -235,9 +315,19 @@ function replaceSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, n Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceSettingsV1alpha1NamespacedPodPreset(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceSettingsV1alpha1NamespacedPodPreset(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -254,7 +344,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/settings.k8s.io/v1alpha1/watch/namespaces/{namespace}/podpresets/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.path, "namespace", namespace) # type String @@ -269,9 +359,19 @@ function watchSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, nam Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchSettingsV1alpha1NamespacedPodPreset(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchSettingsV1alpha1NamespacedPodPreset(_api::SettingsV1alpha1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchSettingsV1alpha1NamespacedPodPreset(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of PodPreset. deprecated: use the 'watch' parameter with a list operation instead. @@ -287,7 +387,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchSettingsV1alpha1NamespacedPodPresetList(_api::SettingsV1alpha1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchSettingsV1alpha1NamespacedPodPresetList(_api::SettingsV1alpha1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/settings.k8s.io/v1alpha1/watch/namespaces/{namespace}/podpresets", ["BearerToken"]) Swagger.set_param(_ctx.path, "namespace", namespace) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -301,9 +401,19 @@ function watchSettingsV1alpha1NamespacedPodPresetList(_api::SettingsV1alpha1Api, Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchSettingsV1alpha1NamespacedPodPresetList(_api::SettingsV1alpha1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchSettingsV1alpha1NamespacedPodPresetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchSettingsV1alpha1NamespacedPodPresetList(_api::SettingsV1alpha1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchSettingsV1alpha1NamespacedPodPresetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of PodPreset. deprecated: use the 'watch' parameter with a list operation instead. @@ -318,7 +428,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchSettingsV1alpha1PodPresetListForAllNamespaces(_api::SettingsV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchSettingsV1alpha1PodPresetListForAllNamespaces(_api::SettingsV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/settings.k8s.io/v1alpha1/watch/podpresets", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -331,7 +441,17 @@ function watchSettingsV1alpha1PodPresetListForAllNamespaces(_api::SettingsV1alph Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchSettingsV1alpha1PodPresetListForAllNamespaces(_api::SettingsV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchSettingsV1alpha1PodPresetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchSettingsV1alpha1PodPresetListForAllNamespaces(_api::SettingsV1alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchSettingsV1alpha1PodPresetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createSettingsV1alpha1NamespacedPodPreset, deleteSettingsV1alpha1CollectionNamespacedPodPreset, deleteSettingsV1alpha1NamespacedPodPreset, getSettingsV1alpha1APIResources, listSettingsV1alpha1NamespacedPodPreset, listSettingsV1alpha1PodPresetForAllNamespaces, patchSettingsV1alpha1NamespacedPodPreset, readSettingsV1alpha1NamespacedPodPreset, replaceSettingsV1alpha1NamespacedPodPreset, watchSettingsV1alpha1NamespacedPodPreset, watchSettingsV1alpha1NamespacedPodPresetList, watchSettingsV1alpha1PodPresetListForAllNamespaces diff --git a/src/api/api_StorageApi.jl b/src/api/api_StorageApi.jl index d2569729..33def9e0 100644 --- a/src/api/api_StorageApi.jl +++ b/src/api/api_StorageApi.jl @@ -10,11 +10,21 @@ end get information of a group Return: IoK8sApimachineryPkgApisMetaV1APIGroup """ -function getStorageAPIGroup(_api::StorageApi; _mediaType=nothing) +function _swaggerinternal_getStorageAPIGroup(_api::StorageApi; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIGroup, "/apis/storage.k8s.io/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getStorageAPIGroup(_api::StorageApi; _mediaType=nothing) + _ctx = _swaggerinternal_getStorageAPIGroup(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getStorageAPIGroup(_api::StorageApi, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getStorageAPIGroup(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export getStorageAPIGroup diff --git a/src/api/api_StorageV1Api.jl b/src/api/api_StorageV1Api.jl index 311f13cc..ec85fbb0 100644 --- a/src/api/api_StorageV1Api.jl +++ b/src/api/api_StorageV1Api.jl @@ -14,16 +14,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiStorageV1CSINode """ -function createStorageV1CSINode(_api::StorageV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createStorageV1CSINode(_api::StorageV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiStorageV1CSINode, "/apis/storage.k8s.io/v1/csinodes", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createStorageV1CSINode(_api::StorageV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createStorageV1CSINode(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createStorageV1CSINode(_api::StorageV1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createStorageV1CSINode(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a StorageClass @@ -33,16 +43,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiStorageV1StorageClass """ -function createStorageV1StorageClass(_api::StorageV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createStorageV1StorageClass(_api::StorageV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiStorageV1StorageClass, "/apis/storage.k8s.io/v1/storageclasses", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createStorageV1StorageClass(_api::StorageV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createStorageV1StorageClass(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createStorageV1StorageClass(_api::StorageV1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createStorageV1StorageClass(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a VolumeAttachment @@ -52,16 +72,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiStorageV1VolumeAttachment """ -function createStorageV1VolumeAttachment(_api::StorageV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createStorageV1VolumeAttachment(_api::StorageV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiStorageV1VolumeAttachment, "/apis/storage.k8s.io/v1/volumeattachments", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createStorageV1VolumeAttachment(_api::StorageV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createStorageV1VolumeAttachment(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createStorageV1VolumeAttachment(_api::StorageV1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createStorageV1VolumeAttachment(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a CSINode @@ -74,7 +104,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteStorageV1CSINode(_api::StorageV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteStorageV1CSINode(_api::StorageV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/storage.k8s.io/v1/csinodes/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -84,9 +114,19 @@ function deleteStorageV1CSINode(_api::StorageV1Api, name::String; pretty=nothing Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteStorageV1CSINode(_api::StorageV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1CSINode(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteStorageV1CSINode(_api::StorageV1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1CSINode(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of CSINode @@ -106,7 +146,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteStorageV1CollectionCSINode(_api::StorageV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteStorageV1CollectionCSINode(_api::StorageV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/storage.k8s.io/v1/csinodes", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -123,9 +163,19 @@ function deleteStorageV1CollectionCSINode(_api::StorageV1Api; pretty=nothing, al Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteStorageV1CollectionCSINode(_api::StorageV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1CollectionCSINode(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteStorageV1CollectionCSINode(_api::StorageV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1CollectionCSINode(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of StorageClass @@ -145,7 +195,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteStorageV1CollectionStorageClass(_api::StorageV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteStorageV1CollectionStorageClass(_api::StorageV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/storage.k8s.io/v1/storageclasses", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -162,9 +212,19 @@ function deleteStorageV1CollectionStorageClass(_api::StorageV1Api; pretty=nothin Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteStorageV1CollectionStorageClass(_api::StorageV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1CollectionStorageClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteStorageV1CollectionStorageClass(_api::StorageV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1CollectionStorageClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of VolumeAttachment @@ -184,7 +244,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteStorageV1CollectionVolumeAttachment(_api::StorageV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteStorageV1CollectionVolumeAttachment(_api::StorageV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/storage.k8s.io/v1/volumeattachments", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -201,9 +261,19 @@ function deleteStorageV1CollectionVolumeAttachment(_api::StorageV1Api; pretty=no Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteStorageV1CollectionVolumeAttachment(_api::StorageV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1CollectionVolumeAttachment(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteStorageV1CollectionVolumeAttachment(_api::StorageV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1CollectionVolumeAttachment(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a StorageClass @@ -216,7 +286,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteStorageV1StorageClass(_api::StorageV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteStorageV1StorageClass(_api::StorageV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/storage.k8s.io/v1/storageclasses/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -226,9 +296,19 @@ function deleteStorageV1StorageClass(_api::StorageV1Api, name::String; pretty=no Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteStorageV1StorageClass(_api::StorageV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1StorageClass(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteStorageV1StorageClass(_api::StorageV1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1StorageClass(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a VolumeAttachment @@ -241,7 +321,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteStorageV1VolumeAttachment(_api::StorageV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteStorageV1VolumeAttachment(_api::StorageV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/storage.k8s.io/v1/volumeattachments/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -251,21 +331,41 @@ function deleteStorageV1VolumeAttachment(_api::StorageV1Api, name::String; prett Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteStorageV1VolumeAttachment(_api::StorageV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1VolumeAttachment(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteStorageV1VolumeAttachment(_api::StorageV1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1VolumeAttachment(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getStorageV1APIResources(_api::StorageV1Api; _mediaType=nothing) +function _swaggerinternal_getStorageV1APIResources(_api::StorageV1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/storage.k8s.io/v1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getStorageV1APIResources(_api::StorageV1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getStorageV1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getStorageV1APIResources(_api::StorageV1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getStorageV1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind CSINode @@ -280,7 +380,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiStorageV1CSINodeList """ -function listStorageV1CSINode(_api::StorageV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listStorageV1CSINode(_api::StorageV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiStorageV1CSINodeList, "/apis/storage.k8s.io/v1/csinodes", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -293,9 +393,19 @@ function listStorageV1CSINode(_api::StorageV1Api; pretty=nothing, allowWatchBook Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listStorageV1CSINode(_api::StorageV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listStorageV1CSINode(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listStorageV1CSINode(_api::StorageV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listStorageV1CSINode(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind StorageClass @@ -310,7 +420,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiStorageV1StorageClassList """ -function listStorageV1StorageClass(_api::StorageV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listStorageV1StorageClass(_api::StorageV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiStorageV1StorageClassList, "/apis/storage.k8s.io/v1/storageclasses", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -323,9 +433,19 @@ function listStorageV1StorageClass(_api::StorageV1Api; pretty=nothing, allowWatc Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listStorageV1StorageClass(_api::StorageV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listStorageV1StorageClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listStorageV1StorageClass(_api::StorageV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listStorageV1StorageClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind VolumeAttachment @@ -340,7 +460,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiStorageV1VolumeAttachmentList """ -function listStorageV1VolumeAttachment(_api::StorageV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listStorageV1VolumeAttachment(_api::StorageV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiStorageV1VolumeAttachmentList, "/apis/storage.k8s.io/v1/volumeattachments", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -353,9 +473,19 @@ function listStorageV1VolumeAttachment(_api::StorageV1Api; pretty=nothing, allow Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listStorageV1VolumeAttachment(_api::StorageV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listStorageV1VolumeAttachment(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listStorageV1VolumeAttachment(_api::StorageV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listStorageV1VolumeAttachment(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified CSINode @@ -367,7 +497,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiStorageV1CSINode """ -function patchStorageV1CSINode(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchStorageV1CSINode(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiStorageV1CSINode, "/apis/storage.k8s.io/v1/csinodes/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -376,9 +506,19 @@ function patchStorageV1CSINode(_api::StorageV1Api, name::String, body; pretty=no Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchStorageV1CSINode(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchStorageV1CSINode(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchStorageV1CSINode(_api::StorageV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchStorageV1CSINode(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified StorageClass @@ -390,7 +530,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiStorageV1StorageClass """ -function patchStorageV1StorageClass(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchStorageV1StorageClass(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiStorageV1StorageClass, "/apis/storage.k8s.io/v1/storageclasses/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -399,9 +539,19 @@ function patchStorageV1StorageClass(_api::StorageV1Api, name::String, body; pret Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchStorageV1StorageClass(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchStorageV1StorageClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchStorageV1StorageClass(_api::StorageV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchStorageV1StorageClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified VolumeAttachment @@ -413,7 +563,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiStorageV1VolumeAttachment """ -function patchStorageV1VolumeAttachment(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchStorageV1VolumeAttachment(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiStorageV1VolumeAttachment, "/apis/storage.k8s.io/v1/volumeattachments/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -422,9 +572,19 @@ function patchStorageV1VolumeAttachment(_api::StorageV1Api, name::String, body; Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchStorageV1VolumeAttachment(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchStorageV1VolumeAttachment(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchStorageV1VolumeAttachment(_api::StorageV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchStorageV1VolumeAttachment(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update status of the specified VolumeAttachment @@ -436,7 +596,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiStorageV1VolumeAttachment """ -function patchStorageV1VolumeAttachmentStatus(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchStorageV1VolumeAttachmentStatus(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiStorageV1VolumeAttachment, "/apis/storage.k8s.io/v1/volumeattachments/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -445,9 +605,19 @@ function patchStorageV1VolumeAttachmentStatus(_api::StorageV1Api, name::String, Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchStorageV1VolumeAttachmentStatus(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchStorageV1VolumeAttachmentStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchStorageV1VolumeAttachmentStatus(_api::StorageV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchStorageV1VolumeAttachmentStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified CSINode @@ -457,7 +627,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiStorageV1CSINode """ -function readStorageV1CSINode(_api::StorageV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readStorageV1CSINode(_api::StorageV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiStorageV1CSINode, "/apis/storage.k8s.io/v1/csinodes/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -465,9 +635,19 @@ function readStorageV1CSINode(_api::StorageV1Api, name::String; pretty=nothing, Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readStorageV1CSINode(_api::StorageV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readStorageV1CSINode(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readStorageV1CSINode(_api::StorageV1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readStorageV1CSINode(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified StorageClass @@ -477,7 +657,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiStorageV1StorageClass """ -function readStorageV1StorageClass(_api::StorageV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readStorageV1StorageClass(_api::StorageV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiStorageV1StorageClass, "/apis/storage.k8s.io/v1/storageclasses/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -485,9 +665,19 @@ function readStorageV1StorageClass(_api::StorageV1Api, name::String; pretty=noth Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readStorageV1StorageClass(_api::StorageV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readStorageV1StorageClass(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readStorageV1StorageClass(_api::StorageV1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readStorageV1StorageClass(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified VolumeAttachment @@ -497,7 +687,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiStorageV1VolumeAttachment """ -function readStorageV1VolumeAttachment(_api::StorageV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readStorageV1VolumeAttachment(_api::StorageV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiStorageV1VolumeAttachment, "/apis/storage.k8s.io/v1/volumeattachments/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -505,9 +695,19 @@ function readStorageV1VolumeAttachment(_api::StorageV1Api, name::String; pretty= Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readStorageV1VolumeAttachment(_api::StorageV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readStorageV1VolumeAttachment(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readStorageV1VolumeAttachment(_api::StorageV1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readStorageV1VolumeAttachment(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read status of the specified VolumeAttachment @@ -515,15 +715,25 @@ Param: name::String (required) Param: pretty::String Return: IoK8sApiStorageV1VolumeAttachment """ -function readStorageV1VolumeAttachmentStatus(_api::StorageV1Api, name::String; pretty=nothing, _mediaType=nothing) +function _swaggerinternal_readStorageV1VolumeAttachmentStatus(_api::StorageV1Api, name::String; pretty=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiStorageV1VolumeAttachment, "/apis/storage.k8s.io/v1/volumeattachments/{name}/status", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readStorageV1VolumeAttachmentStatus(_api::StorageV1Api, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readStorageV1VolumeAttachmentStatus(_api, name; pretty=pretty, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readStorageV1VolumeAttachmentStatus(_api::StorageV1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readStorageV1VolumeAttachmentStatus(_api, name; pretty=pretty, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified CSINode @@ -534,7 +744,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiStorageV1CSINode """ -function replaceStorageV1CSINode(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceStorageV1CSINode(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiStorageV1CSINode, "/apis/storage.k8s.io/v1/csinodes/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -542,9 +752,19 @@ function replaceStorageV1CSINode(_api::StorageV1Api, name::String, body; pretty= Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceStorageV1CSINode(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceStorageV1CSINode(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceStorageV1CSINode(_api::StorageV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceStorageV1CSINode(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified StorageClass @@ -555,7 +775,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiStorageV1StorageClass """ -function replaceStorageV1StorageClass(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceStorageV1StorageClass(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiStorageV1StorageClass, "/apis/storage.k8s.io/v1/storageclasses/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -563,9 +783,19 @@ function replaceStorageV1StorageClass(_api::StorageV1Api, name::String, body; pr Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceStorageV1StorageClass(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceStorageV1StorageClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceStorageV1StorageClass(_api::StorageV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceStorageV1StorageClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified VolumeAttachment @@ -576,7 +806,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiStorageV1VolumeAttachment """ -function replaceStorageV1VolumeAttachment(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceStorageV1VolumeAttachment(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiStorageV1VolumeAttachment, "/apis/storage.k8s.io/v1/volumeattachments/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -584,9 +814,19 @@ function replaceStorageV1VolumeAttachment(_api::StorageV1Api, name::String, body Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceStorageV1VolumeAttachment(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceStorageV1VolumeAttachment(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceStorageV1VolumeAttachment(_api::StorageV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceStorageV1VolumeAttachment(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace status of the specified VolumeAttachment @@ -597,7 +837,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiStorageV1VolumeAttachment """ -function replaceStorageV1VolumeAttachmentStatus(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceStorageV1VolumeAttachmentStatus(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiStorageV1VolumeAttachment, "/apis/storage.k8s.io/v1/volumeattachments/{name}/status", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -605,9 +845,19 @@ function replaceStorageV1VolumeAttachmentStatus(_api::StorageV1Api, name::String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceStorageV1VolumeAttachmentStatus(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceStorageV1VolumeAttachmentStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceStorageV1VolumeAttachmentStatus(_api::StorageV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceStorageV1VolumeAttachmentStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -623,7 +873,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchStorageV1CSINode(_api::StorageV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchStorageV1CSINode(_api::StorageV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/storage.k8s.io/v1/watch/csinodes/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -637,9 +887,19 @@ function watchStorageV1CSINode(_api::StorageV1Api, name::String; allowWatchBookm Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchStorageV1CSINode(_api::StorageV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1CSINode(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchStorageV1CSINode(_api::StorageV1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1CSINode(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of CSINode. deprecated: use the 'watch' parameter with a list operation instead. @@ -654,7 +914,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchStorageV1CSINodeList(_api::StorageV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchStorageV1CSINodeList(_api::StorageV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/storage.k8s.io/v1/watch/csinodes", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -667,9 +927,19 @@ function watchStorageV1CSINodeList(_api::StorageV1Api; allowWatchBookmarks=nothi Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchStorageV1CSINodeList(_api::StorageV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1CSINodeList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchStorageV1CSINodeList(_api::StorageV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1CSINodeList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -685,7 +955,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchStorageV1StorageClass(_api::StorageV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchStorageV1StorageClass(_api::StorageV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/storage.k8s.io/v1/watch/storageclasses/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -699,9 +969,19 @@ function watchStorageV1StorageClass(_api::StorageV1Api, name::String; allowWatch Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchStorageV1StorageClass(_api::StorageV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1StorageClass(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchStorageV1StorageClass(_api::StorageV1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1StorageClass(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of StorageClass. deprecated: use the 'watch' parameter with a list operation instead. @@ -716,7 +996,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchStorageV1StorageClassList(_api::StorageV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchStorageV1StorageClassList(_api::StorageV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/storage.k8s.io/v1/watch/storageclasses", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -729,9 +1009,19 @@ function watchStorageV1StorageClassList(_api::StorageV1Api; allowWatchBookmarks= Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchStorageV1StorageClassList(_api::StorageV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1StorageClassList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchStorageV1StorageClassList(_api::StorageV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1StorageClassList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -747,7 +1037,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchStorageV1VolumeAttachment(_api::StorageV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchStorageV1VolumeAttachment(_api::StorageV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/storage.k8s.io/v1/watch/volumeattachments/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -761,9 +1051,19 @@ function watchStorageV1VolumeAttachment(_api::StorageV1Api, name::String; allowW Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchStorageV1VolumeAttachment(_api::StorageV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1VolumeAttachment(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchStorageV1VolumeAttachment(_api::StorageV1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1VolumeAttachment(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead. @@ -778,7 +1078,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchStorageV1VolumeAttachmentList(_api::StorageV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchStorageV1VolumeAttachmentList(_api::StorageV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/storage.k8s.io/v1/watch/volumeattachments", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -791,7 +1091,17 @@ function watchStorageV1VolumeAttachmentList(_api::StorageV1Api; allowWatchBookma Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchStorageV1VolumeAttachmentList(_api::StorageV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1VolumeAttachmentList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchStorageV1VolumeAttachmentList(_api::StorageV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1VolumeAttachmentList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createStorageV1CSINode, createStorageV1StorageClass, createStorageV1VolumeAttachment, deleteStorageV1CSINode, deleteStorageV1CollectionCSINode, deleteStorageV1CollectionStorageClass, deleteStorageV1CollectionVolumeAttachment, deleteStorageV1StorageClass, deleteStorageV1VolumeAttachment, getStorageV1APIResources, listStorageV1CSINode, listStorageV1StorageClass, listStorageV1VolumeAttachment, patchStorageV1CSINode, patchStorageV1StorageClass, patchStorageV1VolumeAttachment, patchStorageV1VolumeAttachmentStatus, readStorageV1CSINode, readStorageV1StorageClass, readStorageV1VolumeAttachment, readStorageV1VolumeAttachmentStatus, replaceStorageV1CSINode, replaceStorageV1StorageClass, replaceStorageV1VolumeAttachment, replaceStorageV1VolumeAttachmentStatus, watchStorageV1CSINode, watchStorageV1CSINodeList, watchStorageV1StorageClass, watchStorageV1StorageClassList, watchStorageV1VolumeAttachment, watchStorageV1VolumeAttachmentList diff --git a/src/api/api_StorageV1alpha1Api.jl b/src/api/api_StorageV1alpha1Api.jl index bf34439c..e08c03d7 100644 --- a/src/api/api_StorageV1alpha1Api.jl +++ b/src/api/api_StorageV1alpha1Api.jl @@ -14,16 +14,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiStorageV1alpha1VolumeAttachment """ -function createStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiStorageV1alpha1VolumeAttachment, "/apis/storage.k8s.io/v1alpha1/volumeattachments", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createStorageV1alpha1VolumeAttachment(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createStorageV1alpha1VolumeAttachment(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of VolumeAttachment @@ -43,7 +53,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteStorageV1alpha1CollectionVolumeAttachment(_api::StorageV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteStorageV1alpha1CollectionVolumeAttachment(_api::StorageV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/storage.k8s.io/v1alpha1/volumeattachments", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -60,9 +70,19 @@ function deleteStorageV1alpha1CollectionVolumeAttachment(_api::StorageV1alpha1Ap Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteStorageV1alpha1CollectionVolumeAttachment(_api::StorageV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1alpha1CollectionVolumeAttachment(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteStorageV1alpha1CollectionVolumeAttachment(_api::StorageV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1alpha1CollectionVolumeAttachment(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a VolumeAttachment @@ -75,7 +95,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/storage.k8s.io/v1alpha1/volumeattachments/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -85,21 +105,41 @@ function deleteStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, name::S Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1alpha1VolumeAttachment(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1alpha1VolumeAttachment(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getStorageV1alpha1APIResources(_api::StorageV1alpha1Api; _mediaType=nothing) +function _swaggerinternal_getStorageV1alpha1APIResources(_api::StorageV1alpha1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/storage.k8s.io/v1alpha1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getStorageV1alpha1APIResources(_api::StorageV1alpha1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getStorageV1alpha1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getStorageV1alpha1APIResources(_api::StorageV1alpha1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getStorageV1alpha1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind VolumeAttachment @@ -114,7 +154,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiStorageV1alpha1VolumeAttachmentList """ -function listStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiStorageV1alpha1VolumeAttachmentList, "/apis/storage.k8s.io/v1alpha1/volumeattachments", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -127,9 +167,19 @@ function listStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api; pretty=no Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listStorageV1alpha1VolumeAttachment(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listStorageV1alpha1VolumeAttachment(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified VolumeAttachment @@ -141,7 +191,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiStorageV1alpha1VolumeAttachment """ -function patchStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiStorageV1alpha1VolumeAttachment, "/apis/storage.k8s.io/v1alpha1/volumeattachments/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -150,9 +200,19 @@ function patchStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, name::St Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchStorageV1alpha1VolumeAttachment(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchStorageV1alpha1VolumeAttachment(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified VolumeAttachment @@ -162,7 +222,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiStorageV1alpha1VolumeAttachment """ -function readStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiStorageV1alpha1VolumeAttachment, "/apis/storage.k8s.io/v1alpha1/volumeattachments/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -170,9 +230,19 @@ function readStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, name::Str Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readStorageV1alpha1VolumeAttachment(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readStorageV1alpha1VolumeAttachment(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified VolumeAttachment @@ -183,7 +253,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiStorageV1alpha1VolumeAttachment """ -function replaceStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiStorageV1alpha1VolumeAttachment, "/apis/storage.k8s.io/v1alpha1/volumeattachments/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -191,9 +261,19 @@ function replaceStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, name:: Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceStorageV1alpha1VolumeAttachment(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceStorageV1alpha1VolumeAttachment(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -209,7 +289,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/storage.k8s.io/v1alpha1/watch/volumeattachments/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -223,9 +303,19 @@ function watchStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, name::St Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1alpha1VolumeAttachment(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchStorageV1alpha1VolumeAttachment(_api::StorageV1alpha1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1alpha1VolumeAttachment(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead. @@ -240,7 +330,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchStorageV1alpha1VolumeAttachmentList(_api::StorageV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchStorageV1alpha1VolumeAttachmentList(_api::StorageV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/storage.k8s.io/v1alpha1/watch/volumeattachments", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -253,7 +343,17 @@ function watchStorageV1alpha1VolumeAttachmentList(_api::StorageV1alpha1Api; allo Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchStorageV1alpha1VolumeAttachmentList(_api::StorageV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1alpha1VolumeAttachmentList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchStorageV1alpha1VolumeAttachmentList(_api::StorageV1alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1alpha1VolumeAttachmentList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createStorageV1alpha1VolumeAttachment, deleteStorageV1alpha1CollectionVolumeAttachment, deleteStorageV1alpha1VolumeAttachment, getStorageV1alpha1APIResources, listStorageV1alpha1VolumeAttachment, patchStorageV1alpha1VolumeAttachment, readStorageV1alpha1VolumeAttachment, replaceStorageV1alpha1VolumeAttachment, watchStorageV1alpha1VolumeAttachment, watchStorageV1alpha1VolumeAttachmentList diff --git a/src/api/api_StorageV1beta1Api.jl b/src/api/api_StorageV1beta1Api.jl index 82f6a6f7..bf9c5e08 100644 --- a/src/api/api_StorageV1beta1Api.jl +++ b/src/api/api_StorageV1beta1Api.jl @@ -14,16 +14,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiStorageV1beta1CSIDriver """ -function createStorageV1beta1CSIDriver(_api::StorageV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createStorageV1beta1CSIDriver(_api::StorageV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiStorageV1beta1CSIDriver, "/apis/storage.k8s.io/v1beta1/csidrivers", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createStorageV1beta1CSIDriver(_api::StorageV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createStorageV1beta1CSIDriver(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createStorageV1beta1CSIDriver(_api::StorageV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createStorageV1beta1CSIDriver(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a CSINode @@ -33,16 +43,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiStorageV1beta1CSINode """ -function createStorageV1beta1CSINode(_api::StorageV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createStorageV1beta1CSINode(_api::StorageV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiStorageV1beta1CSINode, "/apis/storage.k8s.io/v1beta1/csinodes", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createStorageV1beta1CSINode(_api::StorageV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createStorageV1beta1CSINode(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createStorageV1beta1CSINode(_api::StorageV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createStorageV1beta1CSINode(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a StorageClass @@ -52,16 +72,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiStorageV1beta1StorageClass """ -function createStorageV1beta1StorageClass(_api::StorageV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createStorageV1beta1StorageClass(_api::StorageV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiStorageV1beta1StorageClass, "/apis/storage.k8s.io/v1beta1/storageclasses", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createStorageV1beta1StorageClass(_api::StorageV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createStorageV1beta1StorageClass(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createStorageV1beta1StorageClass(_api::StorageV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createStorageV1beta1StorageClass(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ create a VolumeAttachment @@ -71,16 +101,26 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiStorageV1beta1VolumeAttachment """ -function createStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_createStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "POST", IoK8sApiStorageV1beta1VolumeAttachment, "/apis/storage.k8s.io/v1beta1/volumeattachments", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "dryRun", dryRun) # type String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function createStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createStorageV1beta1VolumeAttachment(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function createStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_createStorageV1beta1VolumeAttachment(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a CSIDriver @@ -93,7 +133,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteStorageV1beta1CSIDriver(_api::StorageV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteStorageV1beta1CSIDriver(_api::StorageV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/storage.k8s.io/v1beta1/csidrivers/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -103,9 +143,19 @@ function deleteStorageV1beta1CSIDriver(_api::StorageV1beta1Api, name::String; pr Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteStorageV1beta1CSIDriver(_api::StorageV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1beta1CSIDriver(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteStorageV1beta1CSIDriver(_api::StorageV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1beta1CSIDriver(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a CSINode @@ -118,7 +168,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteStorageV1beta1CSINode(_api::StorageV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteStorageV1beta1CSINode(_api::StorageV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/storage.k8s.io/v1beta1/csinodes/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -128,9 +178,19 @@ function deleteStorageV1beta1CSINode(_api::StorageV1beta1Api, name::String; pret Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteStorageV1beta1CSINode(_api::StorageV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1beta1CSINode(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteStorageV1beta1CSINode(_api::StorageV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1beta1CSINode(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of CSIDriver @@ -150,7 +210,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteStorageV1beta1CollectionCSIDriver(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteStorageV1beta1CollectionCSIDriver(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/storage.k8s.io/v1beta1/csidrivers", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -167,9 +227,19 @@ function deleteStorageV1beta1CollectionCSIDriver(_api::StorageV1beta1Api; pretty Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteStorageV1beta1CollectionCSIDriver(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1beta1CollectionCSIDriver(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteStorageV1beta1CollectionCSIDriver(_api::StorageV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1beta1CollectionCSIDriver(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of CSINode @@ -189,7 +259,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteStorageV1beta1CollectionCSINode(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteStorageV1beta1CollectionCSINode(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/storage.k8s.io/v1beta1/csinodes", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -206,9 +276,19 @@ function deleteStorageV1beta1CollectionCSINode(_api::StorageV1beta1Api; pretty=n Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteStorageV1beta1CollectionCSINode(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1beta1CollectionCSINode(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteStorageV1beta1CollectionCSINode(_api::StorageV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1beta1CollectionCSINode(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of StorageClass @@ -228,7 +308,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteStorageV1beta1CollectionStorageClass(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteStorageV1beta1CollectionStorageClass(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/storage.k8s.io/v1beta1/storageclasses", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -245,9 +325,19 @@ function deleteStorageV1beta1CollectionStorageClass(_api::StorageV1beta1Api; pre Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteStorageV1beta1CollectionStorageClass(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1beta1CollectionStorageClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteStorageV1beta1CollectionStorageClass(_api::StorageV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1beta1CollectionStorageClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete collection of VolumeAttachment @@ -267,7 +357,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteStorageV1beta1CollectionVolumeAttachment(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_deleteStorageV1beta1CollectionVolumeAttachment(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/storage.k8s.io/v1beta1/volumeattachments", ["BearerToken"], body) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -284,9 +374,19 @@ function deleteStorageV1beta1CollectionVolumeAttachment(_api::StorageV1beta1Api; Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteStorageV1beta1CollectionVolumeAttachment(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1beta1CollectionVolumeAttachment(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteStorageV1beta1CollectionVolumeAttachment(_api::StorageV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1beta1CollectionVolumeAttachment(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a StorageClass @@ -299,7 +399,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteStorageV1beta1StorageClass(_api::StorageV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteStorageV1beta1StorageClass(_api::StorageV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/storage.k8s.io/v1beta1/storageclasses/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -309,9 +409,19 @@ function deleteStorageV1beta1StorageClass(_api::StorageV1beta1Api, name::String; Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteStorageV1beta1StorageClass(_api::StorageV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1beta1StorageClass(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteStorageV1beta1StorageClass(_api::StorageV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1beta1StorageClass(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ delete a VolumeAttachment @@ -324,7 +434,7 @@ Param: orphanDependents::Bool Param: propagationPolicy::String Return: IoK8sApimachineryPkgApisMetaV1Status """ -function deleteStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) +function _swaggerinternal_deleteStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "DELETE", IoK8sApimachineryPkgApisMetaV1Status, "/apis/storage.k8s.io/v1beta1/volumeattachments/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -334,21 +444,41 @@ function deleteStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, name::Str Swagger.set_param(_ctx.query, "propagationPolicy", propagationPolicy) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function deleteStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1beta1VolumeAttachment(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) Swagger.exec(_ctx) end +function deleteStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_deleteStorageV1beta1VolumeAttachment(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ get available resources Return: IoK8sApimachineryPkgApisMetaV1APIResourceList """ -function getStorageV1beta1APIResources(_api::StorageV1beta1Api; _mediaType=nothing) +function _swaggerinternal_getStorageV1beta1APIResources(_api::StorageV1beta1Api; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1APIResourceList, "/apis/storage.k8s.io/v1beta1/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"] : [_mediaType]) + return _ctx +end + +function getStorageV1beta1APIResources(_api::StorageV1beta1Api; _mediaType=nothing) + _ctx = _swaggerinternal_getStorageV1beta1APIResources(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getStorageV1beta1APIResources(_api::StorageV1beta1Api, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getStorageV1beta1APIResources(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind CSIDriver @@ -363,7 +493,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiStorageV1beta1CSIDriverList """ -function listStorageV1beta1CSIDriver(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listStorageV1beta1CSIDriver(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiStorageV1beta1CSIDriverList, "/apis/storage.k8s.io/v1beta1/csidrivers", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -376,9 +506,19 @@ function listStorageV1beta1CSIDriver(_api::StorageV1beta1Api; pretty=nothing, al Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listStorageV1beta1CSIDriver(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listStorageV1beta1CSIDriver(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listStorageV1beta1CSIDriver(_api::StorageV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listStorageV1beta1CSIDriver(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind CSINode @@ -393,7 +533,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiStorageV1beta1CSINodeList """ -function listStorageV1beta1CSINode(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listStorageV1beta1CSINode(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiStorageV1beta1CSINodeList, "/apis/storage.k8s.io/v1beta1/csinodes", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -406,9 +546,19 @@ function listStorageV1beta1CSINode(_api::StorageV1beta1Api; pretty=nothing, allo Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listStorageV1beta1CSINode(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listStorageV1beta1CSINode(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listStorageV1beta1CSINode(_api::StorageV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listStorageV1beta1CSINode(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind StorageClass @@ -423,7 +573,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiStorageV1beta1StorageClassList """ -function listStorageV1beta1StorageClass(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listStorageV1beta1StorageClass(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiStorageV1beta1StorageClassList, "/apis/storage.k8s.io/v1beta1/storageclasses", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -436,9 +586,19 @@ function listStorageV1beta1StorageClass(_api::StorageV1beta1Api; pretty=nothing, Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listStorageV1beta1StorageClass(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listStorageV1beta1StorageClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listStorageV1beta1StorageClass(_api::StorageV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listStorageV1beta1StorageClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ list or watch objects of kind VolumeAttachment @@ -453,7 +613,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApiStorageV1beta1VolumeAttachmentList """ -function listStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_listStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiStorageV1beta1VolumeAttachmentList, "/apis/storage.k8s.io/v1beta1/volumeattachments", ["BearerToken"]) Swagger.set_param(_ctx.query, "pretty", pretty) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -466,9 +626,19 @@ function listStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api; pretty=noth Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function listStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listStorageV1beta1VolumeAttachment(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function listStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_listStorageV1beta1VolumeAttachment(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified CSIDriver @@ -480,7 +650,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiStorageV1beta1CSIDriver """ -function patchStorageV1beta1CSIDriver(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchStorageV1beta1CSIDriver(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiStorageV1beta1CSIDriver, "/apis/storage.k8s.io/v1beta1/csidrivers/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -489,9 +659,19 @@ function patchStorageV1beta1CSIDriver(_api::StorageV1beta1Api, name::String, bod Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchStorageV1beta1CSIDriver(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchStorageV1beta1CSIDriver(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchStorageV1beta1CSIDriver(_api::StorageV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchStorageV1beta1CSIDriver(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified CSINode @@ -503,7 +683,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiStorageV1beta1CSINode """ -function patchStorageV1beta1CSINode(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchStorageV1beta1CSINode(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiStorageV1beta1CSINode, "/apis/storage.k8s.io/v1beta1/csinodes/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -512,9 +692,19 @@ function patchStorageV1beta1CSINode(_api::StorageV1beta1Api, name::String, body; Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchStorageV1beta1CSINode(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchStorageV1beta1CSINode(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchStorageV1beta1CSINode(_api::StorageV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchStorageV1beta1CSINode(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified StorageClass @@ -526,7 +716,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiStorageV1beta1StorageClass """ -function patchStorageV1beta1StorageClass(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchStorageV1beta1StorageClass(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiStorageV1beta1StorageClass, "/apis/storage.k8s.io/v1beta1/storageclasses/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -535,9 +725,19 @@ function patchStorageV1beta1StorageClass(_api::StorageV1beta1Api, name::String, Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchStorageV1beta1StorageClass(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchStorageV1beta1StorageClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchStorageV1beta1StorageClass(_api::StorageV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchStorageV1beta1StorageClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ partially update the specified VolumeAttachment @@ -549,7 +749,7 @@ Param: fieldManager::String Param: force::Bool Return: IoK8sApiStorageV1beta1VolumeAttachment """ -function patchStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) +function _swaggerinternal_patchStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PATCH", IoK8sApiStorageV1beta1VolumeAttachment, "/apis/storage.k8s.io/v1beta1/volumeattachments/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -558,9 +758,19 @@ function patchStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, name::Stri Swagger.set_param(_ctx.query, "force", force) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json-patch+json", "application/merge-patch+json", "application/strategic-merge-patch+json", "application/apply-patch+yaml"] : [_mediaType]) + return _ctx +end + +function patchStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchStorageV1beta1VolumeAttachment(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) Swagger.exec(_ctx) end +function patchStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_patchStorageV1beta1VolumeAttachment(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified CSIDriver @@ -570,7 +780,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiStorageV1beta1CSIDriver """ -function readStorageV1beta1CSIDriver(_api::StorageV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readStorageV1beta1CSIDriver(_api::StorageV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiStorageV1beta1CSIDriver, "/apis/storage.k8s.io/v1beta1/csidrivers/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -578,9 +788,19 @@ function readStorageV1beta1CSIDriver(_api::StorageV1beta1Api, name::String; pret Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readStorageV1beta1CSIDriver(_api::StorageV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readStorageV1beta1CSIDriver(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readStorageV1beta1CSIDriver(_api::StorageV1beta1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readStorageV1beta1CSIDriver(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified CSINode @@ -590,7 +810,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiStorageV1beta1CSINode """ -function readStorageV1beta1CSINode(_api::StorageV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readStorageV1beta1CSINode(_api::StorageV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiStorageV1beta1CSINode, "/apis/storage.k8s.io/v1beta1/csinodes/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -598,9 +818,19 @@ function readStorageV1beta1CSINode(_api::StorageV1beta1Api, name::String; pretty Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readStorageV1beta1CSINode(_api::StorageV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readStorageV1beta1CSINode(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readStorageV1beta1CSINode(_api::StorageV1beta1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readStorageV1beta1CSINode(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified StorageClass @@ -610,7 +840,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiStorageV1beta1StorageClass """ -function readStorageV1beta1StorageClass(_api::StorageV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readStorageV1beta1StorageClass(_api::StorageV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiStorageV1beta1StorageClass, "/apis/storage.k8s.io/v1beta1/storageclasses/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -618,9 +848,19 @@ function readStorageV1beta1StorageClass(_api::StorageV1beta1Api, name::String; p Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readStorageV1beta1StorageClass(_api::StorageV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readStorageV1beta1StorageClass(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readStorageV1beta1StorageClass(_api::StorageV1beta1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readStorageV1beta1StorageClass(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ read the specified VolumeAttachment @@ -630,7 +870,7 @@ Param: exact::Bool Param: __export__::Bool Return: IoK8sApiStorageV1beta1VolumeAttachment """ -function readStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) +function _swaggerinternal_readStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApiStorageV1beta1VolumeAttachment, "/apis/storage.k8s.io/v1beta1/volumeattachments/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -638,9 +878,19 @@ function readStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, name::Strin Swagger.set_param(_ctx.query, "export", __export__) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function readStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readStorageV1beta1VolumeAttachment(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) Swagger.exec(_ctx) end +function readStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_readStorageV1beta1VolumeAttachment(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified CSIDriver @@ -651,7 +901,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiStorageV1beta1CSIDriver """ -function replaceStorageV1beta1CSIDriver(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceStorageV1beta1CSIDriver(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiStorageV1beta1CSIDriver, "/apis/storage.k8s.io/v1beta1/csidrivers/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -659,9 +909,19 @@ function replaceStorageV1beta1CSIDriver(_api::StorageV1beta1Api, name::String, b Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceStorageV1beta1CSIDriver(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceStorageV1beta1CSIDriver(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceStorageV1beta1CSIDriver(_api::StorageV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceStorageV1beta1CSIDriver(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified CSINode @@ -672,7 +932,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiStorageV1beta1CSINode """ -function replaceStorageV1beta1CSINode(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceStorageV1beta1CSINode(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiStorageV1beta1CSINode, "/apis/storage.k8s.io/v1beta1/csinodes/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -680,9 +940,19 @@ function replaceStorageV1beta1CSINode(_api::StorageV1beta1Api, name::String, bod Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceStorageV1beta1CSINode(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceStorageV1beta1CSINode(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceStorageV1beta1CSINode(_api::StorageV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceStorageV1beta1CSINode(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified StorageClass @@ -693,7 +963,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiStorageV1beta1StorageClass """ -function replaceStorageV1beta1StorageClass(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceStorageV1beta1StorageClass(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiStorageV1beta1StorageClass, "/apis/storage.k8s.io/v1beta1/storageclasses/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -701,9 +971,19 @@ function replaceStorageV1beta1StorageClass(_api::StorageV1beta1Api, name::String Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceStorageV1beta1StorageClass(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceStorageV1beta1StorageClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceStorageV1beta1StorageClass(_api::StorageV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceStorageV1beta1StorageClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ replace the specified VolumeAttachment @@ -714,7 +994,7 @@ Param: dryRun::String Param: fieldManager::String Return: IoK8sApiStorageV1beta1VolumeAttachment """ -function replaceStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) +function _swaggerinternal_replaceStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "PUT", IoK8sApiStorageV1beta1VolumeAttachment, "/apis/storage.k8s.io/v1beta1/volumeattachments/{name}", ["BearerToken"], body) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "pretty", pretty) # type String @@ -722,9 +1002,19 @@ function replaceStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, name::St Swagger.set_param(_ctx.query, "fieldManager", fieldManager) # type String Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function replaceStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceStorageV1beta1VolumeAttachment(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) Swagger.exec(_ctx) end +function replaceStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_replaceStorageV1beta1VolumeAttachment(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -740,7 +1030,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchStorageV1beta1CSIDriver(_api::StorageV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchStorageV1beta1CSIDriver(_api::StorageV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/storage.k8s.io/v1beta1/watch/csidrivers/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -754,9 +1044,19 @@ function watchStorageV1beta1CSIDriver(_api::StorageV1beta1Api, name::String; all Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchStorageV1beta1CSIDriver(_api::StorageV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1beta1CSIDriver(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchStorageV1beta1CSIDriver(_api::StorageV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1beta1CSIDriver(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of CSIDriver. deprecated: use the 'watch' parameter with a list operation instead. @@ -771,7 +1071,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchStorageV1beta1CSIDriverList(_api::StorageV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchStorageV1beta1CSIDriverList(_api::StorageV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/storage.k8s.io/v1beta1/watch/csidrivers", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -784,9 +1084,19 @@ function watchStorageV1beta1CSIDriverList(_api::StorageV1beta1Api; allowWatchBoo Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchStorageV1beta1CSIDriverList(_api::StorageV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1beta1CSIDriverList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchStorageV1beta1CSIDriverList(_api::StorageV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1beta1CSIDriverList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -802,7 +1112,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchStorageV1beta1CSINode(_api::StorageV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchStorageV1beta1CSINode(_api::StorageV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/storage.k8s.io/v1beta1/watch/csinodes/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -816,9 +1126,19 @@ function watchStorageV1beta1CSINode(_api::StorageV1beta1Api, name::String; allow Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchStorageV1beta1CSINode(_api::StorageV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1beta1CSINode(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchStorageV1beta1CSINode(_api::StorageV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1beta1CSINode(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of CSINode. deprecated: use the 'watch' parameter with a list operation instead. @@ -833,7 +1153,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchStorageV1beta1CSINodeList(_api::StorageV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchStorageV1beta1CSINodeList(_api::StorageV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/storage.k8s.io/v1beta1/watch/csinodes", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -846,9 +1166,19 @@ function watchStorageV1beta1CSINodeList(_api::StorageV1beta1Api; allowWatchBookm Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchStorageV1beta1CSINodeList(_api::StorageV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1beta1CSINodeList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchStorageV1beta1CSINodeList(_api::StorageV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1beta1CSINodeList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -864,7 +1194,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchStorageV1beta1StorageClass(_api::StorageV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchStorageV1beta1StorageClass(_api::StorageV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/storage.k8s.io/v1beta1/watch/storageclasses/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -878,9 +1208,19 @@ function watchStorageV1beta1StorageClass(_api::StorageV1beta1Api, name::String; Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchStorageV1beta1StorageClass(_api::StorageV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1beta1StorageClass(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchStorageV1beta1StorageClass(_api::StorageV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1beta1StorageClass(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of StorageClass. deprecated: use the 'watch' parameter with a list operation instead. @@ -895,7 +1235,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchStorageV1beta1StorageClassList(_api::StorageV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchStorageV1beta1StorageClassList(_api::StorageV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/storage.k8s.io/v1beta1/watch/storageclasses", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -908,9 +1248,19 @@ function watchStorageV1beta1StorageClassList(_api::StorageV1beta1Api; allowWatch Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchStorageV1beta1StorageClassList(_api::StorageV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1beta1StorageClassList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchStorageV1beta1StorageClassList(_api::StorageV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1beta1StorageClassList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ 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. @@ -926,7 +1276,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/storage.k8s.io/v1beta1/watch/volumeattachments/{name}", ["BearerToken"]) Swagger.set_param(_ctx.path, "name", name) # type String Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool @@ -940,9 +1290,19 @@ function watchStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, name::Stri Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1beta1VolumeAttachment(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchStorageV1beta1VolumeAttachment(_api::StorageV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1beta1VolumeAttachment(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + """ watch individual changes to a list of VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead. @@ -957,7 +1317,7 @@ Param: timeoutSeconds::Int32 Param: watch::Bool Return: IoK8sApimachineryPkgApisMetaV1WatchEvent """ -function watchStorageV1beta1VolumeAttachmentList(_api::StorageV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) +function _swaggerinternal_watchStorageV1beta1VolumeAttachmentList(_api::StorageV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgApisMetaV1WatchEvent, "/apis/storage.k8s.io/v1beta1/watch/volumeattachments", ["BearerToken"]) Swagger.set_param(_ctx.query, "allowWatchBookmarks", allowWatchBookmarks) # type Bool Swagger.set_param(_ctx.query, "continue", __continue__) # type String @@ -970,7 +1330,17 @@ function watchStorageV1beta1VolumeAttachmentList(_api::StorageV1beta1Api; allowW Swagger.set_param(_ctx.query, "watch", watch) # type Bool Swagger.set_header_accept(_ctx, ["application/json", "application/yaml", "application/vnd.kubernetes.protobuf", "application/json;stream=watch", "application/vnd.kubernetes.protobuf;stream=watch"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["*/*"] : [_mediaType]) + return _ctx +end + +function watchStorageV1beta1VolumeAttachmentList(_api::StorageV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1beta1VolumeAttachmentList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) Swagger.exec(_ctx) end +function watchStorageV1beta1VolumeAttachmentList(_api::StorageV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) + _ctx = _swaggerinternal_watchStorageV1beta1VolumeAttachmentList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export createStorageV1beta1CSIDriver, createStorageV1beta1CSINode, createStorageV1beta1StorageClass, createStorageV1beta1VolumeAttachment, deleteStorageV1beta1CSIDriver, deleteStorageV1beta1CSINode, deleteStorageV1beta1CollectionCSIDriver, deleteStorageV1beta1CollectionCSINode, deleteStorageV1beta1CollectionStorageClass, deleteStorageV1beta1CollectionVolumeAttachment, deleteStorageV1beta1StorageClass, deleteStorageV1beta1VolumeAttachment, getStorageV1beta1APIResources, listStorageV1beta1CSIDriver, listStorageV1beta1CSINode, listStorageV1beta1StorageClass, listStorageV1beta1VolumeAttachment, patchStorageV1beta1CSIDriver, patchStorageV1beta1CSINode, patchStorageV1beta1StorageClass, patchStorageV1beta1VolumeAttachment, readStorageV1beta1CSIDriver, readStorageV1beta1CSINode, readStorageV1beta1StorageClass, readStorageV1beta1VolumeAttachment, replaceStorageV1beta1CSIDriver, replaceStorageV1beta1CSINode, replaceStorageV1beta1StorageClass, replaceStorageV1beta1VolumeAttachment, watchStorageV1beta1CSIDriver, watchStorageV1beta1CSIDriverList, watchStorageV1beta1CSINode, watchStorageV1beta1CSINodeList, watchStorageV1beta1StorageClass, watchStorageV1beta1StorageClassList, watchStorageV1beta1VolumeAttachment, watchStorageV1beta1VolumeAttachmentList diff --git a/src/api/api_VersionApi.jl b/src/api/api_VersionApi.jl index 4ac45a42..77fc9e0b 100644 --- a/src/api/api_VersionApi.jl +++ b/src/api/api_VersionApi.jl @@ -10,11 +10,21 @@ end get the code version Return: IoK8sApimachineryPkgVersionInfo """ -function getCodeVersion(_api::VersionApi; _mediaType=nothing) +function _swaggerinternal_getCodeVersion(_api::VersionApi; _mediaType=nothing) _ctx = Swagger.Ctx(_api.client, "GET", IoK8sApimachineryPkgVersionInfo, "/version/", ["BearerToken"]) Swagger.set_header_accept(_ctx, ["application/json"]) Swagger.set_header_content_type(_ctx, (_mediaType === nothing) ? ["application/json"] : [_mediaType]) + return _ctx +end + +function getCodeVersion(_api::VersionApi; _mediaType=nothing) + _ctx = _swaggerinternal_getCodeVersion(_api; _mediaType=_mediaType) Swagger.exec(_ctx) end +function getCodeVersion(_api::VersionApi, response_stream::Channel; _mediaType=nothing) + _ctx = _swaggerinternal_getCodeVersion(_api; _mediaType=_mediaType) + Swagger.exec(_ctx, response_stream) +end + export getCodeVersion diff --git a/src/api/model_IoK8sApimachineryPkgApisMetaV1WatchEvent.jl b/src/api/model_IoK8sApimachineryPkgApisMetaV1WatchEvent.jl index 8b102136..f952a87a 100644 --- a/src/api/model_IoK8sApimachineryPkgApisMetaV1WatchEvent.jl +++ b/src/api/model_IoK8sApimachineryPkgApisMetaV1WatchEvent.jl @@ -17,7 +17,7 @@ mutable struct IoK8sApimachineryPkgApisMetaV1WatchEvent <: SwaggerModel end # type IoK8sApimachineryPkgApisMetaV1WatchEvent const _property_map_IoK8sApimachineryPkgApisMetaV1WatchEvent = Dict{Symbol,Symbol}(Symbol("object")=>Symbol("object"), Symbol("type")=>Symbol("type")) -const _property_types_IoK8sApimachineryPkgApisMetaV1WatchEvent = Dict{Symbol,String}(Symbol("object")=>"IoK8sApimachineryPkgRuntimeRawExtension", Symbol("type")=>"String") +const _property_types_IoK8sApimachineryPkgApisMetaV1WatchEvent = Dict{Symbol,String}(Symbol("object")=>"Dict{String,Any}", Symbol("type")=>"String") Base.propertynames(::Type{ IoK8sApimachineryPkgApisMetaV1WatchEvent }) = collect(keys(_property_map_IoK8sApimachineryPkgApisMetaV1WatchEvent)) Swagger.property_type(::Type{ IoK8sApimachineryPkgApisMetaV1WatchEvent }, name::Symbol) = Union{Nothing,eval(Base.Meta.parse(_property_types_IoK8sApimachineryPkgApisMetaV1WatchEvent[name]))} Swagger.field_name(::Type{ IoK8sApimachineryPkgApisMetaV1WatchEvent }, property_name::Symbol) = _property_map_IoK8sApimachineryPkgApisMetaV1WatchEvent[property_name] diff --git a/src/apialiases.jl b/src/apialiases.jl index 3baaf80b..70cba8eb 100644 --- a/src/apialiases.jl +++ b/src/apialiases.jl @@ -1,3093 +1,4257 @@ # listPodMetrics listPodMetrics(_api::MetricsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listMetricsV1beta1PodMetrics(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listPodMetrics(_api::MetricsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listMetricsV1beta1PodMetrics(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listPodMetrics # connectHeadNodeProxy connectHeadNodeProxy(_api::CoreV1Api, name::String; path=nothing, _mediaType=nothing) = connectCoreV1HeadNodeProxy(_api, name; path=path, _mediaType=_mediaType) +connectHeadNodeProxy(_api::CoreV1Api, response_stream::Channel, name::String; path=nothing, _mediaType=nothing) = connectCoreV1HeadNodeProxy(_api, response_stream, name; path=path, _mediaType=_mediaType) export connectHeadNodeProxy # replaceNamespacedCronJobStatus replaceNamespacedCronJobStatus(_api::BatchV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceBatchV1beta1NamespacedCronJobStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedCronJobStatus(_api::BatchV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceBatchV1beta1NamespacedCronJobStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedCronJobStatus(_api::BatchV2alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceBatchV2alpha1NamespacedCronJobStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedCronJobStatus(_api::BatchV2alpha1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceBatchV2alpha1NamespacedCronJobStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedCronJobStatus # deleteCollectionNamespacedDaemonSet deleteCollectionNamespacedDaemonSet(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAppsV1CollectionNamespacedDaemonSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedDaemonSet(_api::AppsV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAppsV1CollectionNamespacedDaemonSet(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionNamespacedDaemonSet(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAppsV1beta2CollectionNamespacedDaemonSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedDaemonSet(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAppsV1beta2CollectionNamespacedDaemonSet(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionNamespacedDaemonSet(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteExtensionsV1beta1CollectionNamespacedDaemonSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedDaemonSet(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteExtensionsV1beta1CollectionNamespacedDaemonSet(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionNamespacedDaemonSet # createNamespacedEndpoints createNamespacedEndpoints(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1NamespacedEndpoints(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedEndpoints(_api::CoreV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1NamespacedEndpoints(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNamespacedEndpoints # deleteClusterRole deleteClusterRole(_api::RbacAuthorizationV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1ClusterRole(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteClusterRole(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1ClusterRole(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteClusterRole(_api::RbacAuthorizationV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1alpha1ClusterRole(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteClusterRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1alpha1ClusterRole(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteClusterRole(_api::RbacAuthorizationV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1beta1ClusterRole(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteClusterRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1beta1ClusterRole(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteClusterRole # createNamespacedIngress createNamespacedIngress(_api::ExtensionsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createExtensionsV1beta1NamespacedIngress(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedIngress(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createExtensionsV1beta1NamespacedIngress(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createNamespacedIngress(_api::NetworkingV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createNetworkingV1beta1NamespacedIngress(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedIngress(_api::NetworkingV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createNetworkingV1beta1NamespacedIngress(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNamespacedIngress # deleteCollectionNamespacedLease deleteCollectionNamespacedLease(_api::CoordinationV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoordinationV1CollectionNamespacedLease(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedLease(_api::CoordinationV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoordinationV1CollectionNamespacedLease(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionNamespacedLease(_api::CoordinationV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoordinationV1beta1CollectionNamespacedLease(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedLease(_api::CoordinationV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoordinationV1beta1CollectionNamespacedLease(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionNamespacedLease # patchAPIService patchAPIService(_api::ApiregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchApiregistrationV1APIService(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchAPIService(_api::ApiregistrationV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchApiregistrationV1APIService(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchAPIService(_api::ApiregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchApiregistrationV1beta1APIService(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchAPIService(_api::ApiregistrationV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchApiregistrationV1beta1APIService(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchAPIService # deleteNamespacedRoleBinding deleteNamespacedRoleBinding(_api::RbacAuthorizationV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1NamespacedRoleBinding(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1NamespacedRoleBinding(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteNamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1alpha1NamespacedRoleBinding(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1alpha1NamespacedRoleBinding(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteNamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1beta1NamespacedRoleBinding(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1beta1NamespacedRoleBinding(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNamespacedRoleBinding # deleteStorageClass deleteStorageClass(_api::StorageV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteStorageV1StorageClass(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteStorageClass(_api::StorageV1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteStorageV1StorageClass(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteStorageClass(_api::StorageV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteStorageV1beta1StorageClass(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteStorageClass(_api::StorageV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteStorageV1beta1StorageClass(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteStorageClass # watchHorizontalPodAutoscalerListForAllNamespaces watchHorizontalPodAutoscalerListForAllNamespaces(_api::AutoscalingV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchHorizontalPodAutoscalerListForAllNamespaces(_api::AutoscalingV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchHorizontalPodAutoscalerListForAllNamespaces(_api::AutoscalingV2beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAutoscalingV2beta1HorizontalPodAutoscalerListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchHorizontalPodAutoscalerListForAllNamespaces(_api::AutoscalingV2beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAutoscalingV2beta1HorizontalPodAutoscalerListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchHorizontalPodAutoscalerListForAllNamespaces(_api::AutoscalingV2beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAutoscalingV2beta2HorizontalPodAutoscalerListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchHorizontalPodAutoscalerListForAllNamespaces(_api::AutoscalingV2beta2Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAutoscalingV2beta2HorizontalPodAutoscalerListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchHorizontalPodAutoscalerListForAllNamespaces # patchStorageClass patchStorageClass(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchStorageV1StorageClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchStorageClass(_api::StorageV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchStorageV1StorageClass(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchStorageClass(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchStorageV1beta1StorageClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchStorageClass(_api::StorageV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchStorageV1beta1StorageClass(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchStorageClass # deleteCollectionNamespacedConfigMap deleteCollectionNamespacedConfigMap(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoreV1CollectionNamespacedConfigMap(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedConfigMap(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoreV1CollectionNamespacedConfigMap(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionNamespacedConfigMap # readNamespacedDaemonSetStatus readNamespacedDaemonSetStatus(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1NamespacedDaemonSetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedDaemonSetStatus(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1NamespacedDaemonSetStatus(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) readNamespacedDaemonSetStatus(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1beta2NamespacedDaemonSetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedDaemonSetStatus(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1beta2NamespacedDaemonSetStatus(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) readNamespacedDaemonSetStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readExtensionsV1beta1NamespacedDaemonSetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedDaemonSetStatus(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readExtensionsV1beta1NamespacedDaemonSetStatus(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) export readNamespacedDaemonSetStatus # connectPutNamespacedServiceProxy connectPutNamespacedServiceProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) = connectCoreV1PutNamespacedServiceProxy(_api, name, namespace; path=path, _mediaType=_mediaType) +connectPutNamespacedServiceProxy(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; path=nothing, _mediaType=nothing) = connectCoreV1PutNamespacedServiceProxy(_api, response_stream, name, namespace; path=path, _mediaType=_mediaType) export connectPutNamespacedServiceProxy # deleteCollectionClusterRoleBinding deleteCollectionClusterRoleBinding(_api::RbacAuthorizationV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1CollectionClusterRoleBinding(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionClusterRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1CollectionClusterRoleBinding(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1alpha1CollectionClusterRoleBinding(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1alpha1CollectionClusterRoleBinding(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionClusterRoleBinding(_api::RbacAuthorizationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1beta1CollectionClusterRoleBinding(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1beta1CollectionClusterRoleBinding(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionClusterRoleBinding # createNamespacedPodEviction createNamespacedPodEviction(_api::CoreV1Api, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createCoreV1NamespacedPodEviction(_api, name, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) +createNamespacedPodEviction(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createCoreV1NamespacedPodEviction(_api, response_stream, name, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) export createNamespacedPodEviction # connectGetNamespacedPodPortforward connectGetNamespacedPodPortforward(_api::CoreV1Api, name::String, namespace::String; ports=nothing, _mediaType=nothing) = connectCoreV1GetNamespacedPodPortforward(_api, name, namespace; ports=ports, _mediaType=_mediaType) +connectGetNamespacedPodPortforward(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; ports=nothing, _mediaType=nothing) = connectCoreV1GetNamespacedPodPortforward(_api, response_stream, name, namespace; ports=ports, _mediaType=_mediaType) export connectGetNamespacedPodPortforward # createNamespacedBinding createNamespacedBinding(_api::CoreV1Api, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createCoreV1NamespacedBinding(_api, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) +createNamespacedBinding(_api::CoreV1Api, response_stream::Channel, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createCoreV1NamespacedBinding(_api, response_stream, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) export createNamespacedBinding # patchClusterRoleBinding patchClusterRoleBinding(_api::RbacAuthorizationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchRbacAuthorizationV1ClusterRoleBinding(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchClusterRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchRbacAuthorizationV1ClusterRoleBinding(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchRbacAuthorizationV1alpha1ClusterRoleBinding(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchRbacAuthorizationV1alpha1ClusterRoleBinding(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchRbacAuthorizationV1beta1ClusterRoleBinding(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchRbacAuthorizationV1beta1ClusterRoleBinding(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchClusterRoleBinding # connectGetNamespacedPodProxyWithPath connectGetNamespacedPodProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1GetNamespacedPodProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) +connectGetNamespacedPodProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1GetNamespacedPodProxyWithPath(_api, response_stream, name, namespace, path; path2=path2, _mediaType=_mediaType) export connectGetNamespacedPodProxyWithPath # patchNamespacedControllerRevision patchNamespacedControllerRevision(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1NamespacedControllerRevision(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedControllerRevision(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1NamespacedControllerRevision(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedControllerRevision(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta1NamespacedControllerRevision(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedControllerRevision(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta1NamespacedControllerRevision(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedControllerRevision(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta2NamespacedControllerRevision(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedControllerRevision(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta2NamespacedControllerRevision(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedControllerRevision # watchNamespacedRoleList watchNamespacedRoleList(_api::RbacAuthorizationV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1NamespacedRoleList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedRoleList(_api::RbacAuthorizationV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1NamespacedRoleList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedRoleList(_api::RbacAuthorizationV1alpha1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1alpha1NamespacedRoleList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedRoleList(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1alpha1NamespacedRoleList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedRoleList(_api::RbacAuthorizationV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1beta1NamespacedRoleList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedRoleList(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1beta1NamespacedRoleList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedRoleList # watchCustomResourceDefinitionList watchCustomResourceDefinitionList(_api::ApiextensionsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchApiextensionsV1CustomResourceDefinitionList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchCustomResourceDefinitionList(_api::ApiextensionsV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchApiextensionsV1CustomResourceDefinitionList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchCustomResourceDefinitionList(_api::ApiextensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchApiextensionsV1beta1CustomResourceDefinitionList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchCustomResourceDefinitionList(_api::ApiextensionsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchApiextensionsV1beta1CustomResourceDefinitionList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchCustomResourceDefinitionList # listCSIDriver listCSIDriver(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listStorageV1beta1CSIDriver(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listCSIDriver(_api::StorageV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listStorageV1beta1CSIDriver(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listCSIDriver # createNamespacedDaemonSet createNamespacedDaemonSet(_api::AppsV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAppsV1NamespacedDaemonSet(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedDaemonSet(_api::AppsV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAppsV1NamespacedDaemonSet(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createNamespacedDaemonSet(_api::AppsV1beta2Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAppsV1beta2NamespacedDaemonSet(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedDaemonSet(_api::AppsV1beta2Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAppsV1beta2NamespacedDaemonSet(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createNamespacedDaemonSet(_api::ExtensionsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createExtensionsV1beta1NamespacedDaemonSet(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedDaemonSet(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createExtensionsV1beta1NamespacedDaemonSet(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNamespacedDaemonSet # connectPostNamespacedPodProxy connectPostNamespacedPodProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) = connectCoreV1PostNamespacedPodProxy(_api, name, namespace; path=path, _mediaType=_mediaType) +connectPostNamespacedPodProxy(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; path=nothing, _mediaType=nothing) = connectCoreV1PostNamespacedPodProxy(_api, response_stream, name, namespace; path=path, _mediaType=_mediaType) export connectPostNamespacedPodProxy # readCSINode readCSINode(_api::StorageV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readStorageV1CSINode(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readCSINode(_api::StorageV1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readStorageV1CSINode(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readCSINode(_api::StorageV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readStorageV1beta1CSINode(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readCSINode(_api::StorageV1beta1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readStorageV1beta1CSINode(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readCSINode # patchPriorityLevelConfiguration patchPriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchPriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchPriorityLevelConfiguration # connectOptionsNodeProxy connectOptionsNodeProxy(_api::CoreV1Api, name::String; path=nothing, _mediaType=nothing) = connectCoreV1OptionsNodeProxy(_api, name; path=path, _mediaType=_mediaType) +connectOptionsNodeProxy(_api::CoreV1Api, response_stream::Channel, name::String; path=nothing, _mediaType=nothing) = connectCoreV1OptionsNodeProxy(_api, response_stream, name; path=path, _mediaType=_mediaType) export connectOptionsNodeProxy # watchNetworkPolicyListForAllNamespaces watchNetworkPolicyListForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1NetworkPolicyListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNetworkPolicyListForAllNamespaces(_api::ExtensionsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1NetworkPolicyListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNetworkPolicyListForAllNamespaces(_api::NetworkingV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchNetworkingV1NetworkPolicyListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNetworkPolicyListForAllNamespaces(_api::NetworkingV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchNetworkingV1NetworkPolicyListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNetworkPolicyListForAllNamespaces # replaceClusterRole replaceClusterRole(_api::RbacAuthorizationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceRbacAuthorizationV1ClusterRole(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceClusterRole(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceRbacAuthorizationV1ClusterRole(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceClusterRole(_api::RbacAuthorizationV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceRbacAuthorizationV1alpha1ClusterRole(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceClusterRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceRbacAuthorizationV1alpha1ClusterRole(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceClusterRole(_api::RbacAuthorizationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceRbacAuthorizationV1beta1ClusterRole(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceClusterRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceRbacAuthorizationV1beta1ClusterRole(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceClusterRole # listNamespacedPod listNamespacedPod(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1NamespacedPod(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedPod(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1NamespacedPod(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNamespacedPod # connectOptionsNodeProxyWithPath connectOptionsNodeProxyWithPath(_api::CoreV1Api, name::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1OptionsNodeProxyWithPath(_api, name, path; path2=path2, _mediaType=_mediaType) +connectOptionsNodeProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1OptionsNodeProxyWithPath(_api, response_stream, name, path; path2=path2, _mediaType=_mediaType) export connectOptionsNodeProxyWithPath # watchPodTemplateListForAllNamespaces watchPodTemplateListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1PodTemplateListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchPodTemplateListForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1PodTemplateListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchPodTemplateListForAllNamespaces # watchValidatingWebhookConfiguration watchValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAdmissionregistrationV1ValidatingWebhookConfiguration(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAdmissionregistrationV1ValidatingWebhookConfiguration(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchValidatingWebhookConfiguration # listNamespacedSecret listNamespacedSecret(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1NamespacedSecret(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedSecret(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1NamespacedSecret(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNamespacedSecret # watchPodSecurityPolicy watchPodSecurityPolicy(_api::ExtensionsV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1PodSecurityPolicy(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchPodSecurityPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1PodSecurityPolicy(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchPodSecurityPolicy(_api::PolicyV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchPolicyV1beta1PodSecurityPolicy(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchPodSecurityPolicy(_api::PolicyV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchPolicyV1beta1PodSecurityPolicy(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchPodSecurityPolicy # createPodSecurityPolicy createPodSecurityPolicy(_api::ExtensionsV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createExtensionsV1beta1PodSecurityPolicy(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createPodSecurityPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createExtensionsV1beta1PodSecurityPolicy(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createPodSecurityPolicy(_api::PolicyV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createPolicyV1beta1PodSecurityPolicy(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createPodSecurityPolicy(_api::PolicyV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createPolicyV1beta1PodSecurityPolicy(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createPodSecurityPolicy # patchNamespacedReplicaSetStatus patchNamespacedReplicaSetStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1NamespacedReplicaSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedReplicaSetStatus(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1NamespacedReplicaSetStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedReplicaSetStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta2NamespacedReplicaSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedReplicaSetStatus(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta2NamespacedReplicaSetStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedReplicaSetStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchExtensionsV1beta1NamespacedReplicaSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedReplicaSetStatus(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchExtensionsV1beta1NamespacedReplicaSetStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedReplicaSetStatus # connectPostNodeProxy connectPostNodeProxy(_api::CoreV1Api, name::String; path=nothing, _mediaType=nothing) = connectCoreV1PostNodeProxy(_api, name; path=path, _mediaType=_mediaType) +connectPostNodeProxy(_api::CoreV1Api, response_stream::Channel, name::String; path=nothing, _mediaType=nothing) = connectCoreV1PostNodeProxy(_api, response_stream, name; path=path, _mediaType=_mediaType) export connectPostNodeProxy # readVolumeAttachment readVolumeAttachment(_api::StorageV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readStorageV1VolumeAttachment(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readVolumeAttachment(_api::StorageV1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readStorageV1VolumeAttachment(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readVolumeAttachment(_api::StorageV1alpha1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readStorageV1alpha1VolumeAttachment(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readVolumeAttachment(_api::StorageV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readStorageV1alpha1VolumeAttachment(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readVolumeAttachment(_api::StorageV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readStorageV1beta1VolumeAttachment(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readVolumeAttachment(_api::StorageV1beta1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readStorageV1beta1VolumeAttachment(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readVolumeAttachment # watchValidatingWebhookConfigurationList watchValidatingWebhookConfigurationList(_api::AdmissionregistrationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAdmissionregistrationV1ValidatingWebhookConfigurationList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchValidatingWebhookConfigurationList(_api::AdmissionregistrationV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAdmissionregistrationV1ValidatingWebhookConfigurationList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchValidatingWebhookConfigurationList(_api::AdmissionregistrationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAdmissionregistrationV1beta1ValidatingWebhookConfigurationList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchValidatingWebhookConfigurationList(_api::AdmissionregistrationV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAdmissionregistrationV1beta1ValidatingWebhookConfigurationList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchValidatingWebhookConfigurationList # readNamespacedResourceQuota readNamespacedResourceQuota(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1NamespacedResourceQuota(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedResourceQuota(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1NamespacedResourceQuota(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNamespacedResourceQuota # readNamespacedPodTemplate readNamespacedPodTemplate(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1NamespacedPodTemplate(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedPodTemplate(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1NamespacedPodTemplate(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNamespacedPodTemplate # listComponentStatus listComponentStatus(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1ComponentStatus(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listComponentStatus(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1ComponentStatus(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listComponentStatus # deleteNamespacedEndpoints deleteNamespacedEndpoints(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1NamespacedEndpoints(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedEndpoints(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1NamespacedEndpoints(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNamespacedEndpoints # deleteCollectionNamespacedPod deleteCollectionNamespacedPod(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoreV1CollectionNamespacedPod(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedPod(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoreV1CollectionNamespacedPod(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionNamespacedPod # watchNamespacedControllerRevision watchNamespacedControllerRevision(_api::AppsV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1NamespacedControllerRevision(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedControllerRevision(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1NamespacedControllerRevision(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedControllerRevision(_api::AppsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta1NamespacedControllerRevision(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedControllerRevision(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta1NamespacedControllerRevision(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedControllerRevision(_api::AppsV1beta2Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2NamespacedControllerRevision(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedControllerRevision(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2NamespacedControllerRevision(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedControllerRevision # listDaemonSetForAllNamespaces listDaemonSetForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1DaemonSetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listDaemonSetForAllNamespaces(_api::AppsV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1DaemonSetForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listDaemonSetForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta2DaemonSetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listDaemonSetForAllNamespaces(_api::AppsV1beta2Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta2DaemonSetForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listDaemonSetForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listExtensionsV1beta1DaemonSetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listDaemonSetForAllNamespaces(_api::ExtensionsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listExtensionsV1beta1DaemonSetForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listDaemonSetForAllNamespaces # createNamespacedServiceAccountToken createNamespacedServiceAccountToken(_api::CoreV1Api, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createCoreV1NamespacedServiceAccountToken(_api, name, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) +createNamespacedServiceAccountToken(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createCoreV1NamespacedServiceAccountToken(_api, response_stream, name, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) export createNamespacedServiceAccountToken # connectPutNamespacedPodProxy connectPutNamespacedPodProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) = connectCoreV1PutNamespacedPodProxy(_api, name, namespace; path=path, _mediaType=_mediaType) +connectPutNamespacedPodProxy(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; path=nothing, _mediaType=nothing) = connectCoreV1PutNamespacedPodProxy(_api, response_stream, name, namespace; path=path, _mediaType=_mediaType) export connectPutNamespacedPodProxy # deleteCollectionNamespacedHorizontalPodAutoscaler deleteCollectionNamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAutoscalingV2beta1CollectionNamespacedHorizontalPodAutoscaler(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAutoscalingV2beta1CollectionNamespacedHorizontalPodAutoscaler(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAutoscalingV2beta2CollectionNamespacedHorizontalPodAutoscaler(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAutoscalingV2beta2CollectionNamespacedHorizontalPodAutoscaler(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionNamespacedHorizontalPodAutoscaler # watchConfigMapListForAllNamespaces watchConfigMapListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1ConfigMapListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchConfigMapListForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1ConfigMapListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchConfigMapListForAllNamespaces # deleteAuditSink deleteAuditSink(_api::AuditregistrationV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAuditregistrationV1alpha1AuditSink(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteAuditSink(_api::AuditregistrationV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAuditregistrationV1alpha1AuditSink(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteAuditSink # watchNamespacedDeployment watchNamespacedDeployment(_api::AppsV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1NamespacedDeployment(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedDeployment(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1NamespacedDeployment(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedDeployment(_api::AppsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta1NamespacedDeployment(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedDeployment(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta1NamespacedDeployment(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedDeployment(_api::AppsV1beta2Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2NamespacedDeployment(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedDeployment(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2NamespacedDeployment(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedDeployment(_api::ExtensionsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1NamespacedDeployment(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedDeployment(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1NamespacedDeployment(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedDeployment # readNamespacedRole readNamespacedRole(_api::RbacAuthorizationV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readRbacAuthorizationV1NamespacedRole(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedRole(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readRbacAuthorizationV1NamespacedRole(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) readNamespacedRole(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readRbacAuthorizationV1alpha1NamespacedRole(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readRbacAuthorizationV1alpha1NamespacedRole(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) readNamespacedRole(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readRbacAuthorizationV1beta1NamespacedRole(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readRbacAuthorizationV1beta1NamespacedRole(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) export readNamespacedRole # deleteNamespacedEvent deleteNamespacedEvent(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1NamespacedEvent(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedEvent(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1NamespacedEvent(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteNamespacedEvent(_api::EventsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteEventsV1beta1NamespacedEvent(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedEvent(_api::EventsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteEventsV1beta1NamespacedEvent(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNamespacedEvent # listNamespacedReplicaSet listNamespacedReplicaSet(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1NamespacedReplicaSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedReplicaSet(_api::AppsV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1NamespacedReplicaSet(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listNamespacedReplicaSet(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta2NamespacedReplicaSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedReplicaSet(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta2NamespacedReplicaSet(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listNamespacedReplicaSet(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listExtensionsV1beta1NamespacedReplicaSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedReplicaSet(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listExtensionsV1beta1NamespacedReplicaSet(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNamespacedReplicaSet # readFlowSchemaStatus readFlowSchemaStatus(_api::FlowcontrolApiserverV1alpha1Api, name::String; pretty=nothing, _mediaType=nothing) = readFlowcontrolApiserverV1alpha1FlowSchemaStatus(_api, name; pretty=pretty, _mediaType=_mediaType) +readFlowSchemaStatus(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) = readFlowcontrolApiserverV1alpha1FlowSchemaStatus(_api, response_stream, name; pretty=pretty, _mediaType=_mediaType) export readFlowSchemaStatus # deleteCollectionAPIService deleteCollectionAPIService(_api::ApiregistrationV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteApiregistrationV1CollectionAPIService(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionAPIService(_api::ApiregistrationV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteApiregistrationV1CollectionAPIService(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionAPIService(_api::ApiregistrationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteApiregistrationV1beta1CollectionAPIService(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionAPIService(_api::ApiregistrationV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteApiregistrationV1beta1CollectionAPIService(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionAPIService # watchCustomResourceDefinition watchCustomResourceDefinition(_api::ApiextensionsV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchApiextensionsV1CustomResourceDefinition(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchCustomResourceDefinition(_api::ApiextensionsV1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchApiextensionsV1CustomResourceDefinition(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchCustomResourceDefinition(_api::ApiextensionsV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchApiextensionsV1beta1CustomResourceDefinition(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchCustomResourceDefinition(_api::ApiextensionsV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchApiextensionsV1beta1CustomResourceDefinition(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchCustomResourceDefinition # replacePersistentVolume replacePersistentVolume(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1PersistentVolume(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replacePersistentVolume(_api::CoreV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1PersistentVolume(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replacePersistentVolume # deleteClusterRoleBinding deleteClusterRoleBinding(_api::RbacAuthorizationV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1ClusterRoleBinding(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteClusterRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1ClusterRoleBinding(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1alpha1ClusterRoleBinding(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1alpha1ClusterRoleBinding(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1beta1ClusterRoleBinding(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1beta1ClusterRoleBinding(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteClusterRoleBinding # deleteCollectionCSINode deleteCollectionCSINode(_api::StorageV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteStorageV1CollectionCSINode(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionCSINode(_api::StorageV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteStorageV1CollectionCSINode(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionCSINode(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteStorageV1beta1CollectionCSINode(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionCSINode(_api::StorageV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteStorageV1beta1CollectionCSINode(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionCSINode # watchNamespacedEventList watchNamespacedEventList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedEventList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedEventList(_api::CoreV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedEventList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedEventList(_api::EventsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchEventsV1beta1NamespacedEventList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedEventList(_api::EventsV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchEventsV1beta1NamespacedEventList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedEventList # readNamespacedLimitRange readNamespacedLimitRange(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1NamespacedLimitRange(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedLimitRange(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1NamespacedLimitRange(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNamespacedLimitRange # watchNamespacedLimitRange watchNamespacedLimitRange(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedLimitRange(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedLimitRange(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedLimitRange(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedLimitRange # patchNamespace patchNamespace(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1Namespace(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespace(_api::CoreV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1Namespace(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespace # watchAuditSinkList watchAuditSinkList(_api::AuditregistrationV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAuditregistrationV1alpha1AuditSinkList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchAuditSinkList(_api::AuditregistrationV1alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAuditregistrationV1alpha1AuditSinkList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchAuditSinkList # replaceNamespacedDaemonSetStatus replaceNamespacedDaemonSetStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1NamespacedDaemonSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedDaemonSetStatus(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1NamespacedDaemonSetStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedDaemonSetStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta2NamespacedDaemonSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedDaemonSetStatus(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta2NamespacedDaemonSetStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedDaemonSetStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceExtensionsV1beta1NamespacedDaemonSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedDaemonSetStatus(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceExtensionsV1beta1NamespacedDaemonSetStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedDaemonSetStatus # deleteAPIService deleteAPIService(_api::ApiregistrationV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteApiregistrationV1APIService(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteAPIService(_api::ApiregistrationV1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteApiregistrationV1APIService(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteAPIService(_api::ApiregistrationV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteApiregistrationV1beta1APIService(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteAPIService(_api::ApiregistrationV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteApiregistrationV1beta1APIService(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteAPIService # listNamespacedControllerRevision listNamespacedControllerRevision(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1NamespacedControllerRevision(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedControllerRevision(_api::AppsV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1NamespacedControllerRevision(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listNamespacedControllerRevision(_api::AppsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta1NamespacedControllerRevision(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedControllerRevision(_api::AppsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta1NamespacedControllerRevision(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listNamespacedControllerRevision(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta2NamespacedControllerRevision(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedControllerRevision(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta2NamespacedControllerRevision(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNamespacedControllerRevision # patchNamespacedIngressStatus patchNamespacedIngressStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchExtensionsV1beta1NamespacedIngressStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedIngressStatus(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchExtensionsV1beta1NamespacedIngressStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedIngressStatus(_api::NetworkingV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchNetworkingV1beta1NamespacedIngressStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedIngressStatus(_api::NetworkingV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchNetworkingV1beta1NamespacedIngressStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedIngressStatus # deleteCollectionNamespacedSecret deleteCollectionNamespacedSecret(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoreV1CollectionNamespacedSecret(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedSecret(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoreV1CollectionNamespacedSecret(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionNamespacedSecret # patchCSIDriver patchCSIDriver(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchStorageV1beta1CSIDriver(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchCSIDriver(_api::StorageV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchStorageV1beta1CSIDriver(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchCSIDriver # patchNamespacedStatefulSet patchNamespacedStatefulSet(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1NamespacedStatefulSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedStatefulSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1NamespacedStatefulSet(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedStatefulSet(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta1NamespacedStatefulSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedStatefulSet(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta1NamespacedStatefulSet(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedStatefulSet(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta2NamespacedStatefulSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedStatefulSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta2NamespacedStatefulSet(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedStatefulSet # watchNamespacedRoleBindingList watchNamespacedRoleBindingList(_api::RbacAuthorizationV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1NamespacedRoleBindingList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedRoleBindingList(_api::RbacAuthorizationV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1NamespacedRoleBindingList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedRoleBindingList(_api::RbacAuthorizationV1alpha1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1alpha1NamespacedRoleBindingList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedRoleBindingList(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1alpha1NamespacedRoleBindingList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedRoleBindingList(_api::RbacAuthorizationV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1beta1NamespacedRoleBindingList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedRoleBindingList(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1beta1NamespacedRoleBindingList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedRoleBindingList # watchPodPresetListForAllNamespaces watchPodPresetListForAllNamespaces(_api::SettingsV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchSettingsV1alpha1PodPresetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchPodPresetListForAllNamespaces(_api::SettingsV1alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchSettingsV1alpha1PodPresetListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchPodPresetListForAllNamespaces # watchNamespacedLeaseList watchNamespacedLeaseList(_api::CoordinationV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoordinationV1NamespacedLeaseList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedLeaseList(_api::CoordinationV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoordinationV1NamespacedLeaseList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedLeaseList(_api::CoordinationV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoordinationV1beta1NamespacedLeaseList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedLeaseList(_api::CoordinationV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoordinationV1beta1NamespacedLeaseList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedLeaseList # connectPatchNodeProxy connectPatchNodeProxy(_api::CoreV1Api, name::String; path=nothing, _mediaType=nothing) = connectCoreV1PatchNodeProxy(_api, name; path=path, _mediaType=_mediaType) +connectPatchNodeProxy(_api::CoreV1Api, response_stream::Channel, name::String; path=nothing, _mediaType=nothing) = connectCoreV1PatchNodeProxy(_api, response_stream, name; path=path, _mediaType=_mediaType) export connectPatchNodeProxy # readPriorityClass readPriorityClass(_api::SchedulingV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readSchedulingV1PriorityClass(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readPriorityClass(_api::SchedulingV1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readSchedulingV1PriorityClass(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readPriorityClass(_api::SchedulingV1alpha1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readSchedulingV1alpha1PriorityClass(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readPriorityClass(_api::SchedulingV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readSchedulingV1alpha1PriorityClass(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readPriorityClass(_api::SchedulingV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readSchedulingV1beta1PriorityClass(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readPriorityClass(_api::SchedulingV1beta1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readSchedulingV1beta1PriorityClass(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readPriorityClass # listRoleForAllNamespaces listRoleForAllNamespaces(_api::RbacAuthorizationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1RoleForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listRoleForAllNamespaces(_api::RbacAuthorizationV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1RoleForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listRoleForAllNamespaces(_api::RbacAuthorizationV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1alpha1RoleForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listRoleForAllNamespaces(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1alpha1RoleForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listRoleForAllNamespaces(_api::RbacAuthorizationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1beta1RoleForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listRoleForAllNamespaces(_api::RbacAuthorizationV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1beta1RoleForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listRoleForAllNamespaces # watchNamespacedCronJobList watchNamespacedCronJobList(_api::BatchV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchBatchV1beta1NamespacedCronJobList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedCronJobList(_api::BatchV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchBatchV1beta1NamespacedCronJobList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedCronJobList(_api::BatchV2alpha1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchBatchV2alpha1NamespacedCronJobList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedCronJobList(_api::BatchV2alpha1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchBatchV2alpha1NamespacedCronJobList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedCronJobList # createNamespacedLimitRange createNamespacedLimitRange(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1NamespacedLimitRange(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedLimitRange(_api::CoreV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1NamespacedLimitRange(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNamespacedLimitRange # connectHeadNamespacedServiceProxy connectHeadNamespacedServiceProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) = connectCoreV1HeadNamespacedServiceProxy(_api, name, namespace; path=path, _mediaType=_mediaType) +connectHeadNamespacedServiceProxy(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; path=nothing, _mediaType=nothing) = connectCoreV1HeadNamespacedServiceProxy(_api, response_stream, name, namespace; path=path, _mediaType=_mediaType) export connectHeadNamespacedServiceProxy # deleteCollectionVolumeAttachment deleteCollectionVolumeAttachment(_api::StorageV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteStorageV1CollectionVolumeAttachment(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionVolumeAttachment(_api::StorageV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteStorageV1CollectionVolumeAttachment(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionVolumeAttachment(_api::StorageV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteStorageV1alpha1CollectionVolumeAttachment(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionVolumeAttachment(_api::StorageV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteStorageV1alpha1CollectionVolumeAttachment(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionVolumeAttachment(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteStorageV1beta1CollectionVolumeAttachment(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionVolumeAttachment(_api::StorageV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteStorageV1beta1CollectionVolumeAttachment(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionVolumeAttachment # listNamespacedService listNamespacedService(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1NamespacedService(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedService(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1NamespacedService(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNamespacedService # watchReplicationControllerListForAllNamespaces watchReplicationControllerListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1ReplicationControllerListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchReplicationControllerListForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1ReplicationControllerListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchReplicationControllerListForAllNamespaces # readClusterRoleBinding readClusterRoleBinding(_api::RbacAuthorizationV1Api, name::String; pretty=nothing, _mediaType=nothing) = readRbacAuthorizationV1ClusterRoleBinding(_api, name; pretty=pretty, _mediaType=_mediaType) +readClusterRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) = readRbacAuthorizationV1ClusterRoleBinding(_api, response_stream, name; pretty=pretty, _mediaType=_mediaType) readClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String; pretty=nothing, _mediaType=nothing) = readRbacAuthorizationV1alpha1ClusterRoleBinding(_api, name; pretty=pretty, _mediaType=_mediaType) +readClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) = readRbacAuthorizationV1alpha1ClusterRoleBinding(_api, response_stream, name; pretty=pretty, _mediaType=_mediaType) readClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String; pretty=nothing, _mediaType=nothing) = readRbacAuthorizationV1beta1ClusterRoleBinding(_api, name; pretty=pretty, _mediaType=_mediaType) +readClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) = readRbacAuthorizationV1beta1ClusterRoleBinding(_api, response_stream, name; pretty=pretty, _mediaType=_mediaType) export readClusterRoleBinding # readRuntimeClass readRuntimeClass(_api::NodeV1alpha1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readNodeV1alpha1RuntimeClass(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readRuntimeClass(_api::NodeV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readNodeV1alpha1RuntimeClass(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readRuntimeClass(_api::NodeV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readNodeV1beta1RuntimeClass(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readRuntimeClass(_api::NodeV1beta1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readNodeV1beta1RuntimeClass(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readRuntimeClass # readNamespacedServiceStatus readNamespacedServiceStatus(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readCoreV1NamespacedServiceStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedServiceStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readCoreV1NamespacedServiceStatus(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) export readNamespacedServiceStatus # deleteCollectionNamespacedReplicationController deleteCollectionNamespacedReplicationController(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoreV1CollectionNamespacedReplicationController(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedReplicationController(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoreV1CollectionNamespacedReplicationController(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionNamespacedReplicationController # deleteCollectionNamespacedEndpoints deleteCollectionNamespacedEndpoints(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoreV1CollectionNamespacedEndpoints(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedEndpoints(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoreV1CollectionNamespacedEndpoints(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionNamespacedEndpoints # patchNamespacedStatefulSetStatus patchNamespacedStatefulSetStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1NamespacedStatefulSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedStatefulSetStatus(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1NamespacedStatefulSetStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedStatefulSetStatus(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta1NamespacedStatefulSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedStatefulSetStatus(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta1NamespacedStatefulSetStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedStatefulSetStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta2NamespacedStatefulSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedStatefulSetStatus(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta2NamespacedStatefulSetStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedStatefulSetStatus # replaceFlowSchemaStatus replaceFlowSchemaStatus(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceFlowcontrolApiserverV1alpha1FlowSchemaStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceFlowSchemaStatus(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceFlowcontrolApiserverV1alpha1FlowSchemaStatus(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceFlowSchemaStatus # listAPIService listAPIService(_api::ApiregistrationV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listApiregistrationV1APIService(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listAPIService(_api::ApiregistrationV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listApiregistrationV1APIService(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listAPIService(_api::ApiregistrationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listApiregistrationV1beta1APIService(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listAPIService(_api::ApiregistrationV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listApiregistrationV1beta1APIService(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listAPIService # replaceCSIDriver replaceCSIDriver(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceStorageV1beta1CSIDriver(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceCSIDriver(_api::StorageV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceStorageV1beta1CSIDriver(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceCSIDriver # patchNamespacedJob patchNamespacedJob(_api::BatchV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchBatchV1NamespacedJob(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedJob(_api::BatchV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchBatchV1NamespacedJob(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedJob # readMutatingWebhookConfiguration readMutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAdmissionregistrationV1MutatingWebhookConfiguration(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readMutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAdmissionregistrationV1MutatingWebhookConfiguration(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readMutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readMutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readMutatingWebhookConfiguration # connectDeleteNamespacedServiceProxyWithPath connectDeleteNamespacedServiceProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1DeleteNamespacedServiceProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) +connectDeleteNamespacedServiceProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1DeleteNamespacedServiceProxyWithPath(_api, response_stream, name, namespace, path; path2=path2, _mediaType=_mediaType) export connectDeleteNamespacedServiceProxyWithPath # deleteCollectionNamespacedEndpointSlice deleteCollectionNamespacedEndpointSlice(_api::DiscoveryV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteDiscoveryV1beta1CollectionNamespacedEndpointSlice(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedEndpointSlice(_api::DiscoveryV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteDiscoveryV1beta1CollectionNamespacedEndpointSlice(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionNamespacedEndpointSlice # replaceNamespacedIngress replaceNamespacedIngress(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceExtensionsV1beta1NamespacedIngress(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedIngress(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceExtensionsV1beta1NamespacedIngress(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedIngress(_api::NetworkingV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceNetworkingV1beta1NamespacedIngress(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedIngress(_api::NetworkingV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceNetworkingV1beta1NamespacedIngress(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedIngress # connectDeleteNamespacedPodProxyWithPath connectDeleteNamespacedPodProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1DeleteNamespacedPodProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) +connectDeleteNamespacedPodProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1DeleteNamespacedPodProxyWithPath(_api, response_stream, name, namespace, path; path2=path2, _mediaType=_mediaType) export connectDeleteNamespacedPodProxyWithPath # replaceVolumeAttachmentStatus replaceVolumeAttachmentStatus(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceStorageV1VolumeAttachmentStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceVolumeAttachmentStatus(_api::StorageV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceStorageV1VolumeAttachmentStatus(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceVolumeAttachmentStatus # replaceNamespacedResourceQuota replaceNamespacedResourceQuota(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedResourceQuota(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedResourceQuota(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedResourceQuota(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedResourceQuota # deleteCollectionMutatingWebhookConfiguration deleteCollectionMutatingWebhookConfiguration(_api::AdmissionregistrationV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionMutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAdmissionregistrationV1CollectionMutatingWebhookConfiguration(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionMutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAdmissionregistrationV1beta1CollectionMutatingWebhookConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionMutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAdmissionregistrationV1beta1CollectionMutatingWebhookConfiguration(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionMutatingWebhookConfiguration # patchNamespacedReplicationControllerScale patchNamespacedReplicationControllerScale(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedReplicationControllerScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedReplicationControllerScale(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedReplicationControllerScale(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedReplicationControllerScale # patchNamespacedCronJobStatus patchNamespacedCronJobStatus(_api::BatchV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchBatchV1beta1NamespacedCronJobStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedCronJobStatus(_api::BatchV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchBatchV1beta1NamespacedCronJobStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedCronJobStatus(_api::BatchV2alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchBatchV2alpha1NamespacedCronJobStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedCronJobStatus(_api::BatchV2alpha1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchBatchV2alpha1NamespacedCronJobStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedCronJobStatus # deleteCollectionPodSecurityPolicy deleteCollectionPodSecurityPolicy(_api::ExtensionsV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteExtensionsV1beta1CollectionPodSecurityPolicy(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionPodSecurityPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteExtensionsV1beta1CollectionPodSecurityPolicy(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionPodSecurityPolicy(_api::PolicyV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deletePolicyV1beta1CollectionPodSecurityPolicy(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionPodSecurityPolicy(_api::PolicyV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deletePolicyV1beta1CollectionPodSecurityPolicy(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionPodSecurityPolicy # deleteCollectionPersistentVolume deleteCollectionPersistentVolume(_api::CoreV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoreV1CollectionPersistentVolume(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionPersistentVolume(_api::CoreV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoreV1CollectionPersistentVolume(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionPersistentVolume # replaceNodeStatus replaceNodeStatus(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NodeStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNodeStatus(_api::CoreV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NodeStatus(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNodeStatus # watchStorageClassList watchStorageClassList(_api::StorageV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1StorageClassList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchStorageClassList(_api::StorageV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1StorageClassList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchStorageClassList(_api::StorageV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1beta1StorageClassList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchStorageClassList(_api::StorageV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1beta1StorageClassList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchStorageClassList # createNamespacedResourceQuota createNamespacedResourceQuota(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1NamespacedResourceQuota(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedResourceQuota(_api::CoreV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1NamespacedResourceQuota(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNamespacedResourceQuota # readNamespacedCronJobStatus readNamespacedCronJobStatus(_api::BatchV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readBatchV1beta1NamespacedCronJobStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedCronJobStatus(_api::BatchV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readBatchV1beta1NamespacedCronJobStatus(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) readNamespacedCronJobStatus(_api::BatchV2alpha1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readBatchV2alpha1NamespacedCronJobStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedCronJobStatus(_api::BatchV2alpha1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readBatchV2alpha1NamespacedCronJobStatus(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) export readNamespacedCronJobStatus # createNamespacedJob createNamespacedJob(_api::BatchV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createBatchV1NamespacedJob(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedJob(_api::BatchV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createBatchV1NamespacedJob(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNamespacedJob # deleteMutatingWebhookConfiguration deleteMutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAdmissionregistrationV1MutatingWebhookConfiguration(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteMutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAdmissionregistrationV1MutatingWebhookConfiguration(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteMutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteMutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteMutatingWebhookConfiguration # readNamespacedEndpoints readNamespacedEndpoints(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1NamespacedEndpoints(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedEndpoints(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1NamespacedEndpoints(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNamespacedEndpoints # replaceNamespacedReplicationControllerStatus replaceNamespacedReplicationControllerStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedReplicationControllerStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedReplicationControllerStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedReplicationControllerStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedReplicationControllerStatus # createNamespacedConfigMap createNamespacedConfigMap(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1NamespacedConfigMap(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedConfigMap(_api::CoreV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1NamespacedConfigMap(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNamespacedConfigMap # watchNamespacedReplicationController watchNamespacedReplicationController(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedReplicationController(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedReplicationController(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedReplicationController(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedReplicationController # deleteCollectionNamespacedPodDisruptionBudget deleteCollectionNamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deletePolicyV1beta1CollectionNamespacedPodDisruptionBudget(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deletePolicyV1beta1CollectionNamespacedPodDisruptionBudget(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionNamespacedPodDisruptionBudget # connectGetNodeProxyWithPath connectGetNodeProxyWithPath(_api::CoreV1Api, name::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1GetNodeProxyWithPath(_api, name, path; path2=path2, _mediaType=_mediaType) +connectGetNodeProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1GetNodeProxyWithPath(_api, response_stream, name, path; path2=path2, _mediaType=_mediaType) export connectGetNodeProxyWithPath # createNamespacedDeployment createNamespacedDeployment(_api::AppsV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAppsV1NamespacedDeployment(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedDeployment(_api::AppsV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAppsV1NamespacedDeployment(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createNamespacedDeployment(_api::AppsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAppsV1beta1NamespacedDeployment(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedDeployment(_api::AppsV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAppsV1beta1NamespacedDeployment(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createNamespacedDeployment(_api::AppsV1beta2Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAppsV1beta2NamespacedDeployment(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedDeployment(_api::AppsV1beta2Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAppsV1beta2NamespacedDeployment(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createNamespacedDeployment(_api::ExtensionsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createExtensionsV1beta1NamespacedDeployment(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedDeployment(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createExtensionsV1beta1NamespacedDeployment(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNamespacedDeployment # deleteCollectionPriorityClass deleteCollectionPriorityClass(_api::SchedulingV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteSchedulingV1CollectionPriorityClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionPriorityClass(_api::SchedulingV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteSchedulingV1CollectionPriorityClass(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionPriorityClass(_api::SchedulingV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteSchedulingV1alpha1CollectionPriorityClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionPriorityClass(_api::SchedulingV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteSchedulingV1alpha1CollectionPriorityClass(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionPriorityClass(_api::SchedulingV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteSchedulingV1beta1CollectionPriorityClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionPriorityClass(_api::SchedulingV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteSchedulingV1beta1CollectionPriorityClass(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionPriorityClass # connectPostNamespacedPodAttach connectPostNamespacedPodAttach(_api::CoreV1Api, name::String, namespace::String; container=nothing, stderr=nothing, stdin=nothing, stdout=nothing, tty=nothing, _mediaType=nothing) = connectCoreV1PostNamespacedPodAttach(_api, name, namespace; container=container, stderr=stderr, stdin=stdin, stdout=stdout, tty=tty, _mediaType=_mediaType) +connectPostNamespacedPodAttach(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; container=nothing, stderr=nothing, stdin=nothing, stdout=nothing, tty=nothing, _mediaType=nothing) = connectCoreV1PostNamespacedPodAttach(_api, response_stream, name, namespace; container=container, stderr=stderr, stdin=stdin, stdout=stdout, tty=tty, _mediaType=_mediaType) export connectPostNamespacedPodAttach # deleteNamespacedJob deleteNamespacedJob(_api::BatchV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteBatchV1NamespacedJob(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedJob(_api::BatchV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteBatchV1NamespacedJob(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNamespacedJob # createCSIDriver createCSIDriver(_api::StorageV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createStorageV1beta1CSIDriver(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createCSIDriver(_api::StorageV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createStorageV1beta1CSIDriver(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createCSIDriver # deleteCollectionNamespacedPodTemplate deleteCollectionNamespacedPodTemplate(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoreV1CollectionNamespacedPodTemplate(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedPodTemplate(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoreV1CollectionNamespacedPodTemplate(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionNamespacedPodTemplate # deleteCSIDriver deleteCSIDriver(_api::StorageV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteStorageV1beta1CSIDriver(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteCSIDriver(_api::StorageV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteStorageV1beta1CSIDriver(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteCSIDriver # patchNamespacedService patchNamespacedService(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedService(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedService(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedService(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedService # watchNamespacedResourceQuota watchNamespacedResourceQuota(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedResourceQuota(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedResourceQuota(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedResourceQuota(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedResourceQuota # listRuntimeClass listRuntimeClass(_api::NodeV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listNodeV1alpha1RuntimeClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listRuntimeClass(_api::NodeV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listNodeV1alpha1RuntimeClass(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listRuntimeClass(_api::NodeV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listNodeV1beta1RuntimeClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listRuntimeClass(_api::NodeV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listNodeV1beta1RuntimeClass(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listRuntimeClass # watchNamespacedPersistentVolumeClaimList watchNamespacedPersistentVolumeClaimList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedPersistentVolumeClaimList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedPersistentVolumeClaimList(_api::CoreV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedPersistentVolumeClaimList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedPersistentVolumeClaimList # patchNamespacedEndpointSlice patchNamespacedEndpointSlice(_api::DiscoveryV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchDiscoveryV1beta1NamespacedEndpointSlice(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedEndpointSlice(_api::DiscoveryV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchDiscoveryV1beta1NamespacedEndpointSlice(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedEndpointSlice # listServiceAccountForAllNamespaces listServiceAccountForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1ServiceAccountForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listServiceAccountForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1ServiceAccountForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listServiceAccountForAllNamespaces # connectPutNamespacedPodProxyWithPath connectPutNamespacedPodProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1PutNamespacedPodProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) +connectPutNamespacedPodProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1PutNamespacedPodProxyWithPath(_api, response_stream, name, namespace, path; path2=path2, _mediaType=_mediaType) export connectPutNamespacedPodProxyWithPath # patchNamespacedRole patchNamespacedRole(_api::RbacAuthorizationV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchRbacAuthorizationV1NamespacedRole(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedRole(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchRbacAuthorizationV1NamespacedRole(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedRole(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchRbacAuthorizationV1alpha1NamespacedRole(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchRbacAuthorizationV1alpha1NamespacedRole(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedRole(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchRbacAuthorizationV1beta1NamespacedRole(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchRbacAuthorizationV1beta1NamespacedRole(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedRole # patchCustomResourceDefinition patchCustomResourceDefinition(_api::ApiextensionsV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchApiextensionsV1CustomResourceDefinition(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchCustomResourceDefinition(_api::ApiextensionsV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchApiextensionsV1CustomResourceDefinition(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchCustomResourceDefinition(_api::ApiextensionsV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchApiextensionsV1beta1CustomResourceDefinition(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchCustomResourceDefinition(_api::ApiextensionsV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchApiextensionsV1beta1CustomResourceDefinition(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchCustomResourceDefinition # readFlowSchema readFlowSchema(_api::FlowcontrolApiserverV1alpha1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readFlowcontrolApiserverV1alpha1FlowSchema(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readFlowSchema(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readFlowcontrolApiserverV1alpha1FlowSchema(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readFlowSchema # readValidatingWebhookConfiguration readValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAdmissionregistrationV1ValidatingWebhookConfiguration(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAdmissionregistrationV1ValidatingWebhookConfiguration(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readValidatingWebhookConfiguration # readNamespacedDeploymentScale readNamespacedDeploymentScale(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1NamespacedDeploymentScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedDeploymentScale(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1NamespacedDeploymentScale(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) readNamespacedDeploymentScale(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1beta1NamespacedDeploymentScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedDeploymentScale(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1beta1NamespacedDeploymentScale(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) readNamespacedDeploymentScale(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1beta2NamespacedDeploymentScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedDeploymentScale(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1beta2NamespacedDeploymentScale(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) readNamespacedDeploymentScale(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readExtensionsV1beta1NamespacedDeploymentScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedDeploymentScale(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readExtensionsV1beta1NamespacedDeploymentScale(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) export readNamespacedDeploymentScale # patchNamespacedEndpoints patchNamespacedEndpoints(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedEndpoints(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedEndpoints(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedEndpoints(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedEndpoints # replacePriorityClass replacePriorityClass(_api::SchedulingV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceSchedulingV1PriorityClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replacePriorityClass(_api::SchedulingV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceSchedulingV1PriorityClass(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replacePriorityClass(_api::SchedulingV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceSchedulingV1alpha1PriorityClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replacePriorityClass(_api::SchedulingV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceSchedulingV1alpha1PriorityClass(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replacePriorityClass(_api::SchedulingV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceSchedulingV1beta1PriorityClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replacePriorityClass(_api::SchedulingV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceSchedulingV1beta1PriorityClass(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replacePriorityClass # connectDeleteNodeProxy connectDeleteNodeProxy(_api::CoreV1Api, name::String; path=nothing, _mediaType=nothing) = connectCoreV1DeleteNodeProxy(_api, name; path=path, _mediaType=_mediaType) +connectDeleteNodeProxy(_api::CoreV1Api, response_stream::Channel, name::String; path=nothing, _mediaType=nothing) = connectCoreV1DeleteNodeProxy(_api, response_stream, name; path=path, _mediaType=_mediaType) export connectDeleteNodeProxy # listServiceForAllNamespaces listServiceForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1ServiceForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listServiceForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1ServiceForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listServiceForAllNamespaces # listReplicaSetForAllNamespaces listReplicaSetForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1ReplicaSetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listReplicaSetForAllNamespaces(_api::AppsV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1ReplicaSetForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listReplicaSetForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta2ReplicaSetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listReplicaSetForAllNamespaces(_api::AppsV1beta2Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta2ReplicaSetForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listReplicaSetForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listExtensionsV1beta1ReplicaSetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listReplicaSetForAllNamespaces(_api::ExtensionsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listExtensionsV1beta1ReplicaSetForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listReplicaSetForAllNamespaces # readNamespacedLease readNamespacedLease(_api::CoordinationV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoordinationV1NamespacedLease(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedLease(_api::CoordinationV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoordinationV1NamespacedLease(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readNamespacedLease(_api::CoordinationV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoordinationV1beta1NamespacedLease(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedLease(_api::CoordinationV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoordinationV1beta1NamespacedLease(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNamespacedLease # watchNamespacedEvent watchNamespacedEvent(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedEvent(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedEvent(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedEvent(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedEvent(_api::EventsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchEventsV1beta1NamespacedEvent(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedEvent(_api::EventsV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchEventsV1beta1NamespacedEvent(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedEvent # createNamespacedPersistentVolumeClaim createNamespacedPersistentVolumeClaim(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1NamespacedPersistentVolumeClaim(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedPersistentVolumeClaim(_api::CoreV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1NamespacedPersistentVolumeClaim(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNamespacedPersistentVolumeClaim # patchNamespacedRoleBinding patchNamespacedRoleBinding(_api::RbacAuthorizationV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchRbacAuthorizationV1NamespacedRoleBinding(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchRbacAuthorizationV1NamespacedRoleBinding(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchRbacAuthorizationV1alpha1NamespacedRoleBinding(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchRbacAuthorizationV1alpha1NamespacedRoleBinding(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchRbacAuthorizationV1beta1NamespacedRoleBinding(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchRbacAuthorizationV1beta1NamespacedRoleBinding(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedRoleBinding # listJobForAllNamespaces listJobForAllNamespaces(_api::BatchV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listBatchV1JobForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listJobForAllNamespaces(_api::BatchV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listBatchV1JobForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listJobForAllNamespaces # watchPriorityLevelConfigurationList watchPriorityLevelConfigurationList(_api::FlowcontrolApiserverV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchPriorityLevelConfigurationList(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchPriorityLevelConfigurationList # replaceMutatingWebhookConfiguration replaceMutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAdmissionregistrationV1MutatingWebhookConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceMutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAdmissionregistrationV1MutatingWebhookConfiguration(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceMutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceMutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceMutatingWebhookConfiguration # createNamespacedSecret createNamespacedSecret(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1NamespacedSecret(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedSecret(_api::CoreV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1NamespacedSecret(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNamespacedSecret # watchNamespacedStatefulSetList watchNamespacedStatefulSetList(_api::AppsV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1NamespacedStatefulSetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedStatefulSetList(_api::AppsV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1NamespacedStatefulSetList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedStatefulSetList(_api::AppsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta1NamespacedStatefulSetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedStatefulSetList(_api::AppsV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta1NamespacedStatefulSetList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedStatefulSetList(_api::AppsV1beta2Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2NamespacedStatefulSetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedStatefulSetList(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2NamespacedStatefulSetList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedStatefulSetList # deletePodSecurityPolicy deletePodSecurityPolicy(_api::ExtensionsV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteExtensionsV1beta1PodSecurityPolicy(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deletePodSecurityPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteExtensionsV1beta1PodSecurityPolicy(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deletePodSecurityPolicy(_api::PolicyV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deletePolicyV1beta1PodSecurityPolicy(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deletePodSecurityPolicy(_api::PolicyV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deletePolicyV1beta1PodSecurityPolicy(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deletePodSecurityPolicy # listMetricValue listMetricValue(_api::CustomMetricsV1beta1Api, compositemetricname::String; pretty=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, _mediaType=nothing) = listCustomMetricsV1beta1MetricValue(_api, compositemetricname; pretty=pretty, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, _mediaType=_mediaType) +listMetricValue(_api::CustomMetricsV1beta1Api, response_stream::Channel, compositemetricname::String; pretty=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, _mediaType=nothing) = listCustomMetricsV1beta1MetricValue(_api, response_stream, compositemetricname; pretty=pretty, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, _mediaType=_mediaType) export listMetricValue # deleteCollectionNamespacedPersistentVolumeClaim deleteCollectionNamespacedPersistentVolumeClaim(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoreV1CollectionNamespacedPersistentVolumeClaim(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedPersistentVolumeClaim(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoreV1CollectionNamespacedPersistentVolumeClaim(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionNamespacedPersistentVolumeClaim # patchNamespacedPod patchNamespacedPod(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedPod(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedPod(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedPod(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedPod # replaceNamespacedLease replaceNamespacedLease(_api::CoordinationV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoordinationV1NamespacedLease(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedLease(_api::CoordinationV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoordinationV1NamespacedLease(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedLease(_api::CoordinationV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoordinationV1beta1NamespacedLease(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedLease(_api::CoordinationV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoordinationV1beta1NamespacedLease(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedLease # deleteNamespacedResourceQuota deleteNamespacedResourceQuota(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1NamespacedResourceQuota(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedResourceQuota(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1NamespacedResourceQuota(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNamespacedResourceQuota # deleteNamespacedService deleteNamespacedService(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1NamespacedService(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedService(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1NamespacedService(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNamespacedService # readCertificateSigningRequestStatus readCertificateSigningRequestStatus(_api::CertificatesV1beta1Api, name::String; pretty=nothing, _mediaType=nothing) = readCertificatesV1beta1CertificateSigningRequestStatus(_api, name; pretty=pretty, _mediaType=_mediaType) +readCertificateSigningRequestStatus(_api::CertificatesV1beta1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) = readCertificatesV1beta1CertificateSigningRequestStatus(_api, response_stream, name; pretty=pretty, _mediaType=_mediaType) export readCertificateSigningRequestStatus # deleteCollectionNamespacedLimitRange deleteCollectionNamespacedLimitRange(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoreV1CollectionNamespacedLimitRange(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedLimitRange(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoreV1CollectionNamespacedLimitRange(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionNamespacedLimitRange # patchNamespacedConfigMap patchNamespacedConfigMap(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedConfigMap(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedConfigMap(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedConfigMap(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedConfigMap # createClusterRoleBinding createClusterRoleBinding(_api::RbacAuthorizationV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createRbacAuthorizationV1ClusterRoleBinding(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createClusterRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createRbacAuthorizationV1ClusterRoleBinding(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createRbacAuthorizationV1alpha1ClusterRoleBinding(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createRbacAuthorizationV1alpha1ClusterRoleBinding(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createRbacAuthorizationV1beta1ClusterRoleBinding(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createRbacAuthorizationV1beta1ClusterRoleBinding(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createClusterRoleBinding # patchNamespacedPodDisruptionBudgetStatus patchNamespacedPodDisruptionBudgetStatus(_api::PolicyV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchPolicyV1beta1NamespacedPodDisruptionBudgetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedPodDisruptionBudgetStatus(_api::PolicyV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchPolicyV1beta1NamespacedPodDisruptionBudgetStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedPodDisruptionBudgetStatus # listPersistentVolumeClaimForAllNamespaces listPersistentVolumeClaimForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1PersistentVolumeClaimForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listPersistentVolumeClaimForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1PersistentVolumeClaimForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listPersistentVolumeClaimForAllNamespaces # readClusterRole readClusterRole(_api::RbacAuthorizationV1Api, name::String; pretty=nothing, _mediaType=nothing) = readRbacAuthorizationV1ClusterRole(_api, name; pretty=pretty, _mediaType=_mediaType) +readClusterRole(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) = readRbacAuthorizationV1ClusterRole(_api, response_stream, name; pretty=pretty, _mediaType=_mediaType) readClusterRole(_api::RbacAuthorizationV1alpha1Api, name::String; pretty=nothing, _mediaType=nothing) = readRbacAuthorizationV1alpha1ClusterRole(_api, name; pretty=pretty, _mediaType=_mediaType) +readClusterRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) = readRbacAuthorizationV1alpha1ClusterRole(_api, response_stream, name; pretty=pretty, _mediaType=_mediaType) readClusterRole(_api::RbacAuthorizationV1beta1Api, name::String; pretty=nothing, _mediaType=nothing) = readRbacAuthorizationV1beta1ClusterRole(_api, name; pretty=pretty, _mediaType=_mediaType) +readClusterRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) = readRbacAuthorizationV1beta1ClusterRole(_api, response_stream, name; pretty=pretty, _mediaType=_mediaType) export readClusterRole # watchNamespacedStatefulSet watchNamespacedStatefulSet(_api::AppsV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1NamespacedStatefulSet(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedStatefulSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1NamespacedStatefulSet(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedStatefulSet(_api::AppsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta1NamespacedStatefulSet(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedStatefulSet(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta1NamespacedStatefulSet(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedStatefulSet(_api::AppsV1beta2Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2NamespacedStatefulSet(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedStatefulSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2NamespacedStatefulSet(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedStatefulSet # watchDeploymentListForAllNamespaces watchDeploymentListForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1DeploymentListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchDeploymentListForAllNamespaces(_api::AppsV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1DeploymentListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchDeploymentListForAllNamespaces(_api::AppsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta1DeploymentListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchDeploymentListForAllNamespaces(_api::AppsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta1DeploymentListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchDeploymentListForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2DeploymentListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchDeploymentListForAllNamespaces(_api::AppsV1beta2Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2DeploymentListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchDeploymentListForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1DeploymentListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchDeploymentListForAllNamespaces(_api::ExtensionsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1DeploymentListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchDeploymentListForAllNamespaces # readNamespacedDeploymentStatus readNamespacedDeploymentStatus(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1NamespacedDeploymentStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedDeploymentStatus(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1NamespacedDeploymentStatus(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) readNamespacedDeploymentStatus(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1beta1NamespacedDeploymentStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedDeploymentStatus(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1beta1NamespacedDeploymentStatus(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) readNamespacedDeploymentStatus(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1beta2NamespacedDeploymentStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedDeploymentStatus(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1beta2NamespacedDeploymentStatus(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) readNamespacedDeploymentStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readExtensionsV1beta1NamespacedDeploymentStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedDeploymentStatus(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readExtensionsV1beta1NamespacedDeploymentStatus(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) export readNamespacedDeploymentStatus # listNamespacedEndpoints listNamespacedEndpoints(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1NamespacedEndpoints(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedEndpoints(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1NamespacedEndpoints(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNamespacedEndpoints # patchNamespacedReplicationControllerDummyScale patchNamespacedReplicationControllerDummyScale(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchExtensionsV1beta1NamespacedReplicationControllerDummyScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedReplicationControllerDummyScale(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchExtensionsV1beta1NamespacedReplicationControllerDummyScale(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedReplicationControllerDummyScale # deleteCollectionRuntimeClass deleteCollectionRuntimeClass(_api::NodeV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteNodeV1alpha1CollectionRuntimeClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionRuntimeClass(_api::NodeV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteNodeV1alpha1CollectionRuntimeClass(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionRuntimeClass(_api::NodeV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteNodeV1beta1CollectionRuntimeClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionRuntimeClass(_api::NodeV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteNodeV1beta1CollectionRuntimeClass(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionRuntimeClass # replaceAPIServiceStatus replaceAPIServiceStatus(_api::ApiregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceApiregistrationV1APIServiceStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceAPIServiceStatus(_api::ApiregistrationV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceApiregistrationV1APIServiceStatus(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceAPIServiceStatus(_api::ApiregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceApiregistrationV1beta1APIServiceStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceAPIServiceStatus(_api::ApiregistrationV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceApiregistrationV1beta1APIServiceStatus(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceAPIServiceStatus # watchNamespacedReplicationControllerList watchNamespacedReplicationControllerList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedReplicationControllerList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedReplicationControllerList(_api::CoreV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedReplicationControllerList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedReplicationControllerList # listEndpointsForAllNamespaces listEndpointsForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1EndpointsForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listEndpointsForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1EndpointsForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listEndpointsForAllNamespaces # listNode listNode(_api::CoreV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1Node(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNode(_api::CoreV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1Node(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNode # createPersistentVolume createPersistentVolume(_api::CoreV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1PersistentVolume(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createPersistentVolume(_api::CoreV1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1PersistentVolume(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createPersistentVolume # replaceCertificateSigningRequestApproval replaceCertificateSigningRequestApproval(_api::CertificatesV1beta1Api, name::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = replaceCertificatesV1beta1CertificateSigningRequestApproval(_api, name, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) +replaceCertificateSigningRequestApproval(_api::CertificatesV1beta1Api, response_stream::Channel, name::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = replaceCertificatesV1beta1CertificateSigningRequestApproval(_api, response_stream, name, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) export replaceCertificateSigningRequestApproval # connectPostNamespacedPodExec connectPostNamespacedPodExec(_api::CoreV1Api, name::String, namespace::String; command=nothing, container=nothing, stderr=nothing, stdin=nothing, stdout=nothing, tty=nothing, _mediaType=nothing) = connectCoreV1PostNamespacedPodExec(_api, name, namespace; command=command, container=container, stderr=stderr, stdin=stdin, stdout=stdout, tty=tty, _mediaType=_mediaType) +connectPostNamespacedPodExec(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; command=nothing, container=nothing, stderr=nothing, stdin=nothing, stdout=nothing, tty=nothing, _mediaType=nothing) = connectCoreV1PostNamespacedPodExec(_api, response_stream, name, namespace; command=command, container=container, stderr=stderr, stdin=stdin, stdout=stdout, tty=tty, _mediaType=_mediaType) export connectPostNamespacedPodExec # connectOptionsNamespacedServiceProxyWithPath connectOptionsNamespacedServiceProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1OptionsNamespacedServiceProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) +connectOptionsNamespacedServiceProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1OptionsNamespacedServiceProxyWithPath(_api, response_stream, name, namespace, path; path2=path2, _mediaType=_mediaType) export connectOptionsNamespacedServiceProxyWithPath # listNamespacedDeployment listNamespacedDeployment(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1NamespacedDeployment(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedDeployment(_api::AppsV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1NamespacedDeployment(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listNamespacedDeployment(_api::AppsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta1NamespacedDeployment(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedDeployment(_api::AppsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta1NamespacedDeployment(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listNamespacedDeployment(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta2NamespacedDeployment(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedDeployment(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta2NamespacedDeployment(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listNamespacedDeployment(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listExtensionsV1beta1NamespacedDeployment(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedDeployment(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listExtensionsV1beta1NamespacedDeployment(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNamespacedDeployment # watchNamespacedSecretList watchNamespacedSecretList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedSecretList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedSecretList(_api::CoreV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedSecretList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedSecretList # replaceNode replaceNode(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1Node(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNode(_api::CoreV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1Node(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNode # watchNamespacedControllerRevisionList watchNamespacedControllerRevisionList(_api::AppsV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1NamespacedControllerRevisionList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedControllerRevisionList(_api::AppsV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1NamespacedControllerRevisionList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedControllerRevisionList(_api::AppsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta1NamespacedControllerRevisionList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedControllerRevisionList(_api::AppsV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta1NamespacedControllerRevisionList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedControllerRevisionList(_api::AppsV1beta2Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2NamespacedControllerRevisionList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedControllerRevisionList(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2NamespacedControllerRevisionList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedControllerRevisionList # deleteCollectionFlowSchema deleteCollectionFlowSchema(_api::FlowcontrolApiserverV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteFlowcontrolApiserverV1alpha1CollectionFlowSchema(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionFlowSchema(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteFlowcontrolApiserverV1alpha1CollectionFlowSchema(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionFlowSchema # patchCertificateSigningRequestStatus patchCertificateSigningRequestStatus(_api::CertificatesV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCertificatesV1beta1CertificateSigningRequestStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchCertificateSigningRequestStatus(_api::CertificatesV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCertificatesV1beta1CertificateSigningRequestStatus(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchCertificateSigningRequestStatus # createAuditSink createAuditSink(_api::AuditregistrationV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAuditregistrationV1alpha1AuditSink(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createAuditSink(_api::AuditregistrationV1alpha1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAuditregistrationV1alpha1AuditSink(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createAuditSink # readNamespacedRoleBinding readNamespacedRoleBinding(_api::RbacAuthorizationV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readRbacAuthorizationV1NamespacedRoleBinding(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readRbacAuthorizationV1NamespacedRoleBinding(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) readNamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readRbacAuthorizationV1alpha1NamespacedRoleBinding(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readRbacAuthorizationV1alpha1NamespacedRoleBinding(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) readNamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readRbacAuthorizationV1beta1NamespacedRoleBinding(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readRbacAuthorizationV1beta1NamespacedRoleBinding(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) export readNamespacedRoleBinding # listPodTemplateForAllNamespaces listPodTemplateForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1PodTemplateForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listPodTemplateForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1PodTemplateForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listPodTemplateForAllNamespaces # createRuntimeClass createRuntimeClass(_api::NodeV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createNodeV1alpha1RuntimeClass(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createRuntimeClass(_api::NodeV1alpha1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createNodeV1alpha1RuntimeClass(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createRuntimeClass(_api::NodeV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createNodeV1beta1RuntimeClass(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createRuntimeClass(_api::NodeV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createNodeV1beta1RuntimeClass(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createRuntimeClass # listEndpointSliceForAllNamespaces listEndpointSliceForAllNamespaces(_api::DiscoveryV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listDiscoveryV1beta1EndpointSliceForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listEndpointSliceForAllNamespaces(_api::DiscoveryV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listDiscoveryV1beta1EndpointSliceForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listEndpointSliceForAllNamespaces # replaceNamespacedPodTemplate replaceNamespacedPodTemplate(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedPodTemplate(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedPodTemplate(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedPodTemplate(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedPodTemplate # createCustomResourceDefinition createCustomResourceDefinition(_api::ApiextensionsV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createApiextensionsV1CustomResourceDefinition(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createCustomResourceDefinition(_api::ApiextensionsV1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createApiextensionsV1CustomResourceDefinition(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createCustomResourceDefinition(_api::ApiextensionsV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createApiextensionsV1beta1CustomResourceDefinition(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createCustomResourceDefinition(_api::ApiextensionsV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createApiextensionsV1beta1CustomResourceDefinition(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createCustomResourceDefinition # watchNamespacedServiceAccount watchNamespacedServiceAccount(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedServiceAccount(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedServiceAccount(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedServiceAccount(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedServiceAccount # readNamespacedIngressStatus readNamespacedIngressStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readExtensionsV1beta1NamespacedIngressStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedIngressStatus(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readExtensionsV1beta1NamespacedIngressStatus(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) readNamespacedIngressStatus(_api::NetworkingV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readNetworkingV1beta1NamespacedIngressStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedIngressStatus(_api::NetworkingV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readNetworkingV1beta1NamespacedIngressStatus(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) export readNamespacedIngressStatus # replacePodSecurityPolicy replacePodSecurityPolicy(_api::ExtensionsV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceExtensionsV1beta1PodSecurityPolicy(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replacePodSecurityPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceExtensionsV1beta1PodSecurityPolicy(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replacePodSecurityPolicy(_api::PolicyV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replacePolicyV1beta1PodSecurityPolicy(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replacePodSecurityPolicy(_api::PolicyV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replacePolicyV1beta1PodSecurityPolicy(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replacePodSecurityPolicy # watchNamespacedDaemonSet watchNamespacedDaemonSet(_api::AppsV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1NamespacedDaemonSet(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedDaemonSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1NamespacedDaemonSet(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedDaemonSet(_api::AppsV1beta2Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2NamespacedDaemonSet(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedDaemonSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2NamespacedDaemonSet(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedDaemonSet(_api::ExtensionsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1NamespacedDaemonSet(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedDaemonSet(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1NamespacedDaemonSet(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedDaemonSet # replaceNamespacedConfigMap replaceNamespacedConfigMap(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedConfigMap(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedConfigMap(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedConfigMap(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedConfigMap # watchPersistentVolumeList watchPersistentVolumeList(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1PersistentVolumeList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchPersistentVolumeList(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1PersistentVolumeList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchPersistentVolumeList # watchNamespacedEndpointSliceList watchNamespacedEndpointSliceList(_api::DiscoveryV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchDiscoveryV1beta1NamespacedEndpointSliceList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedEndpointSliceList(_api::DiscoveryV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchDiscoveryV1beta1NamespacedEndpointSliceList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedEndpointSliceList # patchCertificateSigningRequest patchCertificateSigningRequest(_api::CertificatesV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCertificatesV1beta1CertificateSigningRequest(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchCertificateSigningRequest(_api::CertificatesV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCertificatesV1beta1CertificateSigningRequest(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchCertificateSigningRequest # replaceStorageClass replaceStorageClass(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceStorageV1StorageClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceStorageClass(_api::StorageV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceStorageV1StorageClass(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceStorageClass(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceStorageV1beta1StorageClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceStorageClass(_api::StorageV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceStorageV1beta1StorageClass(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceStorageClass # listHorizontalPodAutoscalerForAllNamespaces listHorizontalPodAutoscalerForAllNamespaces(_api::AutoscalingV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listHorizontalPodAutoscalerForAllNamespaces(_api::AutoscalingV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listHorizontalPodAutoscalerForAllNamespaces(_api::AutoscalingV2beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAutoscalingV2beta1HorizontalPodAutoscalerForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listHorizontalPodAutoscalerForAllNamespaces(_api::AutoscalingV2beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAutoscalingV2beta1HorizontalPodAutoscalerForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listHorizontalPodAutoscalerForAllNamespaces(_api::AutoscalingV2beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAutoscalingV2beta2HorizontalPodAutoscalerForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listHorizontalPodAutoscalerForAllNamespaces(_api::AutoscalingV2beta2Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAutoscalingV2beta2HorizontalPodAutoscalerForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listHorizontalPodAutoscalerForAllNamespaces # watchPersistentVolumeClaimListForAllNamespaces watchPersistentVolumeClaimListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1PersistentVolumeClaimListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchPersistentVolumeClaimListForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1PersistentVolumeClaimListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchPersistentVolumeClaimListForAllNamespaces # replaceNamespacedPod replaceNamespacedPod(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedPod(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedPod(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedPod(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedPod # listControllerRevisionForAllNamespaces listControllerRevisionForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1ControllerRevisionForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listControllerRevisionForAllNamespaces(_api::AppsV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1ControllerRevisionForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listControllerRevisionForAllNamespaces(_api::AppsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta1ControllerRevisionForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listControllerRevisionForAllNamespaces(_api::AppsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta1ControllerRevisionForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listControllerRevisionForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta2ControllerRevisionForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listControllerRevisionForAllNamespaces(_api::AppsV1beta2Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta2ControllerRevisionForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listControllerRevisionForAllNamespaces # createSubjectAccessReview createSubjectAccessReview(_api::AuthorizationV1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createAuthorizationV1SubjectAccessReview(_api, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) +createSubjectAccessReview(_api::AuthorizationV1Api, response_stream::Channel, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createAuthorizationV1SubjectAccessReview(_api, response_stream, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) createSubjectAccessReview(_api::AuthorizationV1beta1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createAuthorizationV1beta1SubjectAccessReview(_api, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) +createSubjectAccessReview(_api::AuthorizationV1beta1Api, response_stream::Channel, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createAuthorizationV1beta1SubjectAccessReview(_api, response_stream, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) export createSubjectAccessReview # replaceVolumeAttachment replaceVolumeAttachment(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceStorageV1VolumeAttachment(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceVolumeAttachment(_api::StorageV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceStorageV1VolumeAttachment(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceVolumeAttachment(_api::StorageV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceStorageV1alpha1VolumeAttachment(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceVolumeAttachment(_api::StorageV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceStorageV1alpha1VolumeAttachment(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceVolumeAttachment(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceStorageV1beta1VolumeAttachment(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceVolumeAttachment(_api::StorageV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceStorageV1beta1VolumeAttachment(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceVolumeAttachment # watchReplicaSetListForAllNamespaces watchReplicaSetListForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1ReplicaSetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchReplicaSetListForAllNamespaces(_api::AppsV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1ReplicaSetListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchReplicaSetListForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2ReplicaSetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchReplicaSetListForAllNamespaces(_api::AppsV1beta2Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2ReplicaSetListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchReplicaSetListForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1ReplicaSetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchReplicaSetListForAllNamespaces(_api::ExtensionsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1ReplicaSetListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchReplicaSetListForAllNamespaces # listPersistentVolume listPersistentVolume(_api::CoreV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1PersistentVolume(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listPersistentVolume(_api::CoreV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1PersistentVolume(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listPersistentVolume # readNamespacedPodLog readNamespacedPodLog(_api::CoreV1Api, name::String, namespace::String; container=nothing, follow=nothing, insecureSkipTLSVerifyBackend=nothing, limitBytes=nothing, pretty=nothing, previous=nothing, sinceSeconds=nothing, tailLines=nothing, timestamps=nothing, _mediaType=nothing) = readCoreV1NamespacedPodLog(_api, name, namespace; container=container, follow=follow, insecureSkipTLSVerifyBackend=insecureSkipTLSVerifyBackend, limitBytes=limitBytes, pretty=pretty, previous=previous, sinceSeconds=sinceSeconds, tailLines=tailLines, timestamps=timestamps, _mediaType=_mediaType) +readNamespacedPodLog(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; container=nothing, follow=nothing, insecureSkipTLSVerifyBackend=nothing, limitBytes=nothing, pretty=nothing, previous=nothing, sinceSeconds=nothing, tailLines=nothing, timestamps=nothing, _mediaType=nothing) = readCoreV1NamespacedPodLog(_api, response_stream, name, namespace; container=container, follow=follow, insecureSkipTLSVerifyBackend=insecureSkipTLSVerifyBackend, limitBytes=limitBytes, pretty=pretty, previous=previous, sinceSeconds=sinceSeconds, tailLines=tailLines, timestamps=timestamps, _mediaType=_mediaType) export readNamespacedPodLog # replaceNamespacedPodPreset replaceNamespacedPodPreset(_api::SettingsV1alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceSettingsV1alpha1NamespacedPodPreset(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedPodPreset(_api::SettingsV1alpha1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceSettingsV1alpha1NamespacedPodPreset(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedPodPreset # deleteNamespacedReplicaSet deleteNamespacedReplicaSet(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAppsV1NamespacedReplicaSet(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedReplicaSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAppsV1NamespacedReplicaSet(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteNamespacedReplicaSet(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAppsV1beta2NamespacedReplicaSet(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedReplicaSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAppsV1beta2NamespacedReplicaSet(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteNamespacedReplicaSet(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteExtensionsV1beta1NamespacedReplicaSet(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedReplicaSet(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteExtensionsV1beta1NamespacedReplicaSet(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNamespacedReplicaSet # readNamespacedReplicationController readNamespacedReplicationController(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1NamespacedReplicationController(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedReplicationController(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1NamespacedReplicationController(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNamespacedReplicationController # replaceNamespacedReplicaSet replaceNamespacedReplicaSet(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1NamespacedReplicaSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedReplicaSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1NamespacedReplicaSet(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedReplicaSet(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta2NamespacedReplicaSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedReplicaSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta2NamespacedReplicaSet(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedReplicaSet(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceExtensionsV1beta1NamespacedReplicaSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedReplicaSet(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceExtensionsV1beta1NamespacedReplicaSet(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedReplicaSet # readNamespaceStatus readNamespaceStatus(_api::CoreV1Api, name::String; pretty=nothing, _mediaType=nothing) = readCoreV1NamespaceStatus(_api, name; pretty=pretty, _mediaType=_mediaType) +readNamespaceStatus(_api::CoreV1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) = readCoreV1NamespaceStatus(_api, response_stream, name; pretty=pretty, _mediaType=_mediaType) export readNamespaceStatus # watchCSINode watchCSINode(_api::StorageV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1CSINode(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchCSINode(_api::StorageV1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1CSINode(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchCSINode(_api::StorageV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1beta1CSINode(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchCSINode(_api::StorageV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1beta1CSINode(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchCSINode # listLeaseForAllNamespaces listLeaseForAllNamespaces(_api::CoordinationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoordinationV1LeaseForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listLeaseForAllNamespaces(_api::CoordinationV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoordinationV1LeaseForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listLeaseForAllNamespaces(_api::CoordinationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoordinationV1beta1LeaseForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listLeaseForAllNamespaces(_api::CoordinationV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoordinationV1beta1LeaseForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listLeaseForAllNamespaces # patchNamespacedHorizontalPodAutoscaler patchNamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAutoscalingV1NamespacedHorizontalPodAutoscaler(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAutoscalingV1NamespacedHorizontalPodAutoscaler(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedHorizontalPodAutoscaler # watchNamespacedServiceAccountList watchNamespacedServiceAccountList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedServiceAccountList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedServiceAccountList(_api::CoreV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedServiceAccountList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedServiceAccountList # patchNamespacedJobStatus patchNamespacedJobStatus(_api::BatchV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchBatchV1NamespacedJobStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedJobStatus(_api::BatchV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchBatchV1NamespacedJobStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedJobStatus # listPodDisruptionBudgetForAllNamespaces listPodDisruptionBudgetForAllNamespaces(_api::PolicyV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listPolicyV1beta1PodDisruptionBudgetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listPodDisruptionBudgetForAllNamespaces(_api::PolicyV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listPolicyV1beta1PodDisruptionBudgetForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listPodDisruptionBudgetForAllNamespaces # replaceNamespacedJobStatus replaceNamespacedJobStatus(_api::BatchV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceBatchV1NamespacedJobStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedJobStatus(_api::BatchV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceBatchV1NamespacedJobStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedJobStatus # watchNamespacedLease watchNamespacedLease(_api::CoordinationV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoordinationV1NamespacedLease(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedLease(_api::CoordinationV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoordinationV1NamespacedLease(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedLease(_api::CoordinationV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoordinationV1beta1NamespacedLease(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedLease(_api::CoordinationV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoordinationV1beta1NamespacedLease(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedLease # listNamespacedCronJob listNamespacedCronJob(_api::BatchV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listBatchV1beta1NamespacedCronJob(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedCronJob(_api::BatchV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listBatchV1beta1NamespacedCronJob(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listNamespacedCronJob(_api::BatchV2alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listBatchV2alpha1NamespacedCronJob(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedCronJob(_api::BatchV2alpha1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listBatchV2alpha1NamespacedCronJob(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNamespacedCronJob # deleteNamespacedNetworkPolicy deleteNamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteExtensionsV1beta1NamespacedNetworkPolicy(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteExtensionsV1beta1NamespacedNetworkPolicy(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteNamespacedNetworkPolicy(_api::NetworkingV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteNetworkingV1NamespacedNetworkPolicy(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedNetworkPolicy(_api::NetworkingV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteNetworkingV1NamespacedNetworkPolicy(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNamespacedNetworkPolicy # replaceNamespacedDeploymentScale replaceNamespacedDeploymentScale(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1NamespacedDeploymentScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedDeploymentScale(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1NamespacedDeploymentScale(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedDeploymentScale(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta1NamespacedDeploymentScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedDeploymentScale(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta1NamespacedDeploymentScale(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedDeploymentScale(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta2NamespacedDeploymentScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedDeploymentScale(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta2NamespacedDeploymentScale(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedDeploymentScale(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceExtensionsV1beta1NamespacedDeploymentScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedDeploymentScale(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceExtensionsV1beta1NamespacedDeploymentScale(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedDeploymentScale # readNodeMetrics readNodeMetrics(_api::MetricsV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readMetricsV1beta1NodeMetrics(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNodeMetrics(_api::MetricsV1beta1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readMetricsV1beta1NodeMetrics(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNodeMetrics # connectGetNodeProxy connectGetNodeProxy(_api::CoreV1Api, name::String; path=nothing, _mediaType=nothing) = connectCoreV1GetNodeProxy(_api, name; path=path, _mediaType=_mediaType) +connectGetNodeProxy(_api::CoreV1Api, response_stream::Channel, name::String; path=nothing, _mediaType=nothing) = connectCoreV1GetNodeProxy(_api, response_stream, name; path=path, _mediaType=_mediaType) export connectGetNodeProxy # readNamespacedHorizontalPodAutoscalerStatus readNamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) readNamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) readNamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) export readNamespacedHorizontalPodAutoscalerStatus # createNamespacedLocalSubjectAccessReview createNamespacedLocalSubjectAccessReview(_api::AuthorizationV1Api, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createAuthorizationV1NamespacedLocalSubjectAccessReview(_api, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) +createNamespacedLocalSubjectAccessReview(_api::AuthorizationV1Api, response_stream::Channel, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createAuthorizationV1NamespacedLocalSubjectAccessReview(_api, response_stream, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) createNamespacedLocalSubjectAccessReview(_api::AuthorizationV1beta1Api, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createAuthorizationV1beta1NamespacedLocalSubjectAccessReview(_api, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) +createNamespacedLocalSubjectAccessReview(_api::AuthorizationV1beta1Api, response_stream::Channel, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createAuthorizationV1beta1NamespacedLocalSubjectAccessReview(_api, response_stream, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) export createNamespacedLocalSubjectAccessReview # watchNamespacedConfigMap watchNamespacedConfigMap(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedConfigMap(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedConfigMap(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedConfigMap(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedConfigMap # listNamespacedRoleBinding listNamespacedRoleBinding(_api::RbacAuthorizationV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1NamespacedRoleBinding(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1NamespacedRoleBinding(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listNamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1alpha1NamespacedRoleBinding(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1alpha1NamespacedRoleBinding(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listNamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1beta1NamespacedRoleBinding(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1beta1NamespacedRoleBinding(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNamespacedRoleBinding # patchNamespacedPodStatus patchNamespacedPodStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedPodStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedPodStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedPodStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedPodStatus # watchNamespacedEndpoints watchNamespacedEndpoints(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedEndpoints(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedEndpoints(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedEndpoints(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedEndpoints # watchNamespacedHorizontalPodAutoscalerList watchNamespacedHorizontalPodAutoscalerList(_api::AutoscalingV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAutoscalingV1NamespacedHorizontalPodAutoscalerList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedHorizontalPodAutoscalerList(_api::AutoscalingV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAutoscalingV1NamespacedHorizontalPodAutoscalerList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedHorizontalPodAutoscalerList(_api::AutoscalingV2beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedHorizontalPodAutoscalerList(_api::AutoscalingV2beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedHorizontalPodAutoscalerList(_api::AutoscalingV2beta2Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedHorizontalPodAutoscalerList(_api::AutoscalingV2beta2Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedHorizontalPodAutoscalerList # connectGetNamespacedPodExec connectGetNamespacedPodExec(_api::CoreV1Api, name::String, namespace::String; command=nothing, container=nothing, stderr=nothing, stdin=nothing, stdout=nothing, tty=nothing, _mediaType=nothing) = connectCoreV1GetNamespacedPodExec(_api, name, namespace; command=command, container=container, stderr=stderr, stdin=stdin, stdout=stdout, tty=tty, _mediaType=_mediaType) +connectGetNamespacedPodExec(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; command=nothing, container=nothing, stderr=nothing, stdin=nothing, stdout=nothing, tty=nothing, _mediaType=nothing) = connectCoreV1GetNamespacedPodExec(_api, response_stream, name, namespace; command=command, container=container, stderr=stderr, stdin=stdin, stdout=stdout, tty=tty, _mediaType=_mediaType) export connectGetNamespacedPodExec # deletePriorityLevelConfiguration deletePriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deletePriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deletePriorityLevelConfiguration # watchNamespacedPodDisruptionBudget watchNamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchPolicyV1beta1NamespacedPodDisruptionBudget(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchPolicyV1beta1NamespacedPodDisruptionBudget(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedPodDisruptionBudget # replaceCustomResourceDefinitionStatus replaceCustomResourceDefinitionStatus(_api::ApiextensionsV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceApiextensionsV1CustomResourceDefinitionStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceCustomResourceDefinitionStatus(_api::ApiextensionsV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceApiextensionsV1CustomResourceDefinitionStatus(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceCustomResourceDefinitionStatus(_api::ApiextensionsV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceApiextensionsV1beta1CustomResourceDefinitionStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceCustomResourceDefinitionStatus(_api::ApiextensionsV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceApiextensionsV1beta1CustomResourceDefinitionStatus(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceCustomResourceDefinitionStatus # getAPIVersions getAPIVersions(_api::CoreApi; _mediaType=nothing) = getCoreAPIVersions(_api; _mediaType=_mediaType) +getAPIVersions(_api::CoreApi, response_stream::Channel; _mediaType=nothing) = getCoreAPIVersions(_api, response_stream; _mediaType=_mediaType) export getAPIVersions # replaceNamespacedReplicaSetStatus replaceNamespacedReplicaSetStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1NamespacedReplicaSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedReplicaSetStatus(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1NamespacedReplicaSetStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedReplicaSetStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta2NamespacedReplicaSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedReplicaSetStatus(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta2NamespacedReplicaSetStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedReplicaSetStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceExtensionsV1beta1NamespacedReplicaSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedReplicaSetStatus(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceExtensionsV1beta1NamespacedReplicaSetStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedReplicaSetStatus # readNamespacedPodMetrics readNamespacedPodMetrics(_api::MetricsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readMetricsV1beta1NamespacedPodMetrics(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedPodMetrics(_api::MetricsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readMetricsV1beta1NamespacedPodMetrics(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNamespacedPodMetrics # listNamespacedLimitRange listNamespacedLimitRange(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1NamespacedLimitRange(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedLimitRange(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1NamespacedLimitRange(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNamespacedLimitRange # createNamespacedReplicationController createNamespacedReplicationController(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1NamespacedReplicationController(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedReplicationController(_api::CoreV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1NamespacedReplicationController(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNamespacedReplicationController # patchNamespacedServiceStatus patchNamespacedServiceStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedServiceStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedServiceStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedServiceStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedServiceStatus # watchNamespacedEndpointSlice watchNamespacedEndpointSlice(_api::DiscoveryV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchDiscoveryV1beta1NamespacedEndpointSlice(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedEndpointSlice(_api::DiscoveryV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchDiscoveryV1beta1NamespacedEndpointSlice(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedEndpointSlice # deleteCollectionCustomResourceDefinition deleteCollectionCustomResourceDefinition(_api::ApiextensionsV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteApiextensionsV1CollectionCustomResourceDefinition(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionCustomResourceDefinition(_api::ApiextensionsV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteApiextensionsV1CollectionCustomResourceDefinition(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionCustomResourceDefinition(_api::ApiextensionsV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteApiextensionsV1beta1CollectionCustomResourceDefinition(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionCustomResourceDefinition(_api::ApiextensionsV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteApiextensionsV1beta1CollectionCustomResourceDefinition(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionCustomResourceDefinition # watchMutatingWebhookConfigurationList watchMutatingWebhookConfigurationList(_api::AdmissionregistrationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAdmissionregistrationV1MutatingWebhookConfigurationList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchMutatingWebhookConfigurationList(_api::AdmissionregistrationV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAdmissionregistrationV1MutatingWebhookConfigurationList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchMutatingWebhookConfigurationList(_api::AdmissionregistrationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAdmissionregistrationV1beta1MutatingWebhookConfigurationList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchMutatingWebhookConfigurationList(_api::AdmissionregistrationV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAdmissionregistrationV1beta1MutatingWebhookConfigurationList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchMutatingWebhookConfigurationList # deleteNamespacedPod deleteNamespacedPod(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1NamespacedPod(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedPod(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1NamespacedPod(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNamespacedPod # readNamespacedPodDisruptionBudgetStatus readNamespacedPodDisruptionBudgetStatus(_api::PolicyV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readPolicyV1beta1NamespacedPodDisruptionBudgetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedPodDisruptionBudgetStatus(_api::PolicyV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readPolicyV1beta1NamespacedPodDisruptionBudgetStatus(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) export readNamespacedPodDisruptionBudgetStatus # createNamespacedLease createNamespacedLease(_api::CoordinationV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoordinationV1NamespacedLease(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedLease(_api::CoordinationV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoordinationV1NamespacedLease(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createNamespacedLease(_api::CoordinationV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoordinationV1beta1NamespacedLease(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedLease(_api::CoordinationV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoordinationV1beta1NamespacedLease(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNamespacedLease # watchPodDisruptionBudgetListForAllNamespaces watchPodDisruptionBudgetListForAllNamespaces(_api::PolicyV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchPolicyV1beta1PodDisruptionBudgetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchPodDisruptionBudgetListForAllNamespaces(_api::PolicyV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchPolicyV1beta1PodDisruptionBudgetListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchPodDisruptionBudgetListForAllNamespaces # watchClusterRoleBindingList watchClusterRoleBindingList(_api::RbacAuthorizationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1ClusterRoleBindingList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchClusterRoleBindingList(_api::RbacAuthorizationV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1ClusterRoleBindingList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchClusterRoleBindingList(_api::RbacAuthorizationV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1alpha1ClusterRoleBindingList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchClusterRoleBindingList(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1alpha1ClusterRoleBindingList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchClusterRoleBindingList(_api::RbacAuthorizationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1beta1ClusterRoleBindingList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchClusterRoleBindingList(_api::RbacAuthorizationV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1beta1ClusterRoleBindingList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchClusterRoleBindingList # replaceNamespaceFinalize replaceNamespaceFinalize(_api::CoreV1Api, name::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = replaceCoreV1NamespaceFinalize(_api, name, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) +replaceNamespaceFinalize(_api::CoreV1Api, response_stream::Channel, name::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = replaceCoreV1NamespaceFinalize(_api, response_stream, name, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) export replaceNamespaceFinalize # readNamespacedReplicationControllerScale readNamespacedReplicationControllerScale(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readCoreV1NamespacedReplicationControllerScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedReplicationControllerScale(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readCoreV1NamespacedReplicationControllerScale(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) export readNamespacedReplicationControllerScale # patchFlowSchemaStatus patchFlowSchemaStatus(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchFlowcontrolApiserverV1alpha1FlowSchemaStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchFlowSchemaStatus(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchFlowcontrolApiserverV1alpha1FlowSchemaStatus(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchFlowSchemaStatus # deleteNode deleteNode(_api::CoreV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1Node(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNode(_api::CoreV1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1Node(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNode # listIngressForAllNamespaces listIngressForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listExtensionsV1beta1IngressForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listIngressForAllNamespaces(_api::ExtensionsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listExtensionsV1beta1IngressForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listIngressForAllNamespaces(_api::NetworkingV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listNetworkingV1beta1IngressForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listIngressForAllNamespaces(_api::NetworkingV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listNetworkingV1beta1IngressForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listIngressForAllNamespaces # patchNamespacedDaemonSetStatus patchNamespacedDaemonSetStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1NamespacedDaemonSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedDaemonSetStatus(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1NamespacedDaemonSetStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedDaemonSetStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta2NamespacedDaemonSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedDaemonSetStatus(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta2NamespacedDaemonSetStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedDaemonSetStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchExtensionsV1beta1NamespacedDaemonSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedDaemonSetStatus(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchExtensionsV1beta1NamespacedDaemonSetStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedDaemonSetStatus # patchNamespacedNetworkPolicy patchNamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchExtensionsV1beta1NamespacedNetworkPolicy(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchExtensionsV1beta1NamespacedNetworkPolicy(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedNetworkPolicy(_api::NetworkingV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchNetworkingV1NamespacedNetworkPolicy(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedNetworkPolicy(_api::NetworkingV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchNetworkingV1NamespacedNetworkPolicy(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedNetworkPolicy # listNamespacedPodPreset listNamespacedPodPreset(_api::SettingsV1alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listSettingsV1alpha1NamespacedPodPreset(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedPodPreset(_api::SettingsV1alpha1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listSettingsV1alpha1NamespacedPodPreset(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNamespacedPodPreset # deleteNamespacedDeployment deleteNamespacedDeployment(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAppsV1NamespacedDeployment(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedDeployment(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAppsV1NamespacedDeployment(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteNamespacedDeployment(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAppsV1beta1NamespacedDeployment(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedDeployment(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAppsV1beta1NamespacedDeployment(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteNamespacedDeployment(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAppsV1beta2NamespacedDeployment(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedDeployment(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAppsV1beta2NamespacedDeployment(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteNamespacedDeployment(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteExtensionsV1beta1NamespacedDeployment(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedDeployment(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteExtensionsV1beta1NamespacedDeployment(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNamespacedDeployment # replaceNamespacedReplicationControllerDummyScale replaceNamespacedReplicationControllerDummyScale(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceExtensionsV1beta1NamespacedReplicationControllerDummyScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedReplicationControllerDummyScale(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceExtensionsV1beta1NamespacedReplicationControllerDummyScale(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedReplicationControllerDummyScale # connectDeleteNamespacedPodProxy connectDeleteNamespacedPodProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) = connectCoreV1DeleteNamespacedPodProxy(_api, name, namespace; path=path, _mediaType=_mediaType) +connectDeleteNamespacedPodProxy(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; path=nothing, _mediaType=nothing) = connectCoreV1DeleteNamespacedPodProxy(_api, response_stream, name, namespace; path=path, _mediaType=_mediaType) export connectDeleteNamespacedPodProxy # connectPostNamespacedPodPortforward connectPostNamespacedPodPortforward(_api::CoreV1Api, name::String, namespace::String; ports=nothing, _mediaType=nothing) = connectCoreV1PostNamespacedPodPortforward(_api, name, namespace; ports=ports, _mediaType=_mediaType) +connectPostNamespacedPodPortforward(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; ports=nothing, _mediaType=nothing) = connectCoreV1PostNamespacedPodPortforward(_api, response_stream, name, namespace; ports=ports, _mediaType=_mediaType) export connectPostNamespacedPodPortforward # watchCSINodeList watchCSINodeList(_api::StorageV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1CSINodeList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchCSINodeList(_api::StorageV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1CSINodeList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchCSINodeList(_api::StorageV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1beta1CSINodeList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchCSINodeList(_api::StorageV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1beta1CSINodeList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchCSINodeList # listNamespacedPodTemplate listNamespacedPodTemplate(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1NamespacedPodTemplate(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedPodTemplate(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1NamespacedPodTemplate(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNamespacedPodTemplate # patchNodeStatus patchNodeStatus(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NodeStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNodeStatus(_api::CoreV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NodeStatus(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNodeStatus # listStorageClass listStorageClass(_api::StorageV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listStorageV1StorageClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listStorageClass(_api::StorageV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listStorageV1StorageClass(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listStorageClass(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listStorageV1beta1StorageClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listStorageClass(_api::StorageV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listStorageV1beta1StorageClass(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listStorageClass # replaceNamespacedEvent replaceNamespacedEvent(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedEvent(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedEvent(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedEvent(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedEvent(_api::EventsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceEventsV1beta1NamespacedEvent(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedEvent(_api::EventsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceEventsV1beta1NamespacedEvent(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedEvent # readNamespacedJob readNamespacedJob(_api::BatchV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readBatchV1NamespacedJob(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedJob(_api::BatchV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readBatchV1NamespacedJob(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNamespacedJob # listNamespacedPersistentVolumeClaim listNamespacedPersistentVolumeClaim(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1NamespacedPersistentVolumeClaim(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedPersistentVolumeClaim(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1NamespacedPersistentVolumeClaim(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNamespacedPersistentVolumeClaim # watchNamespacedSecret watchNamespacedSecret(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedSecret(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedSecret(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedSecret(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedSecret # watchNamespacedIngressList watchNamespacedIngressList(_api::ExtensionsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1NamespacedIngressList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedIngressList(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1NamespacedIngressList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedIngressList(_api::NetworkingV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchNetworkingV1beta1NamespacedIngressList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedIngressList(_api::NetworkingV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchNetworkingV1beta1NamespacedIngressList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedIngressList # replaceNamespacedControllerRevision replaceNamespacedControllerRevision(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1NamespacedControllerRevision(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedControllerRevision(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1NamespacedControllerRevision(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedControllerRevision(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta1NamespacedControllerRevision(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedControllerRevision(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta1NamespacedControllerRevision(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedControllerRevision(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta2NamespacedControllerRevision(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedControllerRevision(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta2NamespacedControllerRevision(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedControllerRevision # createStorageClass createStorageClass(_api::StorageV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createStorageV1StorageClass(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createStorageClass(_api::StorageV1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createStorageV1StorageClass(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createStorageClass(_api::StorageV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createStorageV1beta1StorageClass(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createStorageClass(_api::StorageV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createStorageV1beta1StorageClass(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createStorageClass # listNamespacedStatefulSet listNamespacedStatefulSet(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1NamespacedStatefulSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedStatefulSet(_api::AppsV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1NamespacedStatefulSet(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listNamespacedStatefulSet(_api::AppsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta1NamespacedStatefulSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedStatefulSet(_api::AppsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta1NamespacedStatefulSet(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listNamespacedStatefulSet(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta2NamespacedStatefulSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedStatefulSet(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta2NamespacedStatefulSet(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNamespacedStatefulSet # patchNamespacedResourceQuota patchNamespacedResourceQuota(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedResourceQuota(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedResourceQuota(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedResourceQuota(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedResourceQuota # readNamespacedPersistentVolumeClaimStatus readNamespacedPersistentVolumeClaimStatus(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readCoreV1NamespacedPersistentVolumeClaimStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedPersistentVolumeClaimStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readCoreV1NamespacedPersistentVolumeClaimStatus(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) export readNamespacedPersistentVolumeClaimStatus # watchAPIServiceList watchAPIServiceList(_api::ApiregistrationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchApiregistrationV1APIServiceList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchAPIServiceList(_api::ApiregistrationV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchApiregistrationV1APIServiceList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchAPIServiceList(_api::ApiregistrationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchApiregistrationV1beta1APIServiceList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchAPIServiceList(_api::ApiregistrationV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchApiregistrationV1beta1APIServiceList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchAPIServiceList # watchNamespacedPodPresetList watchNamespacedPodPresetList(_api::SettingsV1alpha1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchSettingsV1alpha1NamespacedPodPresetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedPodPresetList(_api::SettingsV1alpha1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchSettingsV1alpha1NamespacedPodPresetList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedPodPresetList # watchNamespacedReplicaSet watchNamespacedReplicaSet(_api::AppsV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1NamespacedReplicaSet(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedReplicaSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1NamespacedReplicaSet(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedReplicaSet(_api::AppsV1beta2Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2NamespacedReplicaSet(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedReplicaSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2NamespacedReplicaSet(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedReplicaSet(_api::ExtensionsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1NamespacedReplicaSet(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedReplicaSet(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1NamespacedReplicaSet(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedReplicaSet # replaceNamespacedPodDisruptionBudget replaceNamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replacePolicyV1beta1NamespacedPodDisruptionBudget(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replacePolicyV1beta1NamespacedPodDisruptionBudget(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedPodDisruptionBudget # readVolumeAttachmentStatus readVolumeAttachmentStatus(_api::StorageV1Api, name::String; pretty=nothing, _mediaType=nothing) = readStorageV1VolumeAttachmentStatus(_api, name; pretty=pretty, _mediaType=_mediaType) +readVolumeAttachmentStatus(_api::StorageV1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) = readStorageV1VolumeAttachmentStatus(_api, response_stream, name; pretty=pretty, _mediaType=_mediaType) export readVolumeAttachmentStatus # replaceNamespacedHorizontalPodAutoscalerStatus replaceNamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedHorizontalPodAutoscalerStatus # deleteCollectionNamespacedNetworkPolicy deleteCollectionNamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteExtensionsV1beta1CollectionNamespacedNetworkPolicy(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteExtensionsV1beta1CollectionNamespacedNetworkPolicy(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionNamespacedNetworkPolicy(_api::NetworkingV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteNetworkingV1CollectionNamespacedNetworkPolicy(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedNetworkPolicy(_api::NetworkingV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteNetworkingV1CollectionNamespacedNetworkPolicy(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionNamespacedNetworkPolicy # replaceNamespacedServiceAccount replaceNamespacedServiceAccount(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedServiceAccount(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedServiceAccount(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedServiceAccount(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedServiceAccount # watchNamespace watchNamespace(_api::CoreV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1Namespace(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespace(_api::CoreV1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1Namespace(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespace # patchNamespacedReplicationController patchNamespacedReplicationController(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedReplicationController(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedReplicationController(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedReplicationController(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedReplicationController # watchNamespacedConfigMapList watchNamespacedConfigMapList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedConfigMapList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedConfigMapList(_api::CoreV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedConfigMapList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedConfigMapList # deleteFlowSchema deleteFlowSchema(_api::FlowcontrolApiserverV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteFlowcontrolApiserverV1alpha1FlowSchema(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteFlowSchema(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteFlowcontrolApiserverV1alpha1FlowSchema(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteFlowSchema # listNamespacedLease listNamespacedLease(_api::CoordinationV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoordinationV1NamespacedLease(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedLease(_api::CoordinationV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoordinationV1NamespacedLease(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listNamespacedLease(_api::CoordinationV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoordinationV1beta1NamespacedLease(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedLease(_api::CoordinationV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoordinationV1beta1NamespacedLease(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNamespacedLease # watchNamespacedPodList watchNamespacedPodList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedPodList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedPodList(_api::CoreV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedPodList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedPodList # listVolumeAttachment listVolumeAttachment(_api::StorageV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listStorageV1VolumeAttachment(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listVolumeAttachment(_api::StorageV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listStorageV1VolumeAttachment(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listVolumeAttachment(_api::StorageV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listStorageV1alpha1VolumeAttachment(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listVolumeAttachment(_api::StorageV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listStorageV1alpha1VolumeAttachment(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listVolumeAttachment(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listStorageV1beta1VolumeAttachment(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listVolumeAttachment(_api::StorageV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listStorageV1beta1VolumeAttachment(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listVolumeAttachment # listRoleBindingForAllNamespaces listRoleBindingForAllNamespaces(_api::RbacAuthorizationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1RoleBindingForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listRoleBindingForAllNamespaces(_api::RbacAuthorizationV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1RoleBindingForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listRoleBindingForAllNamespaces(_api::RbacAuthorizationV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1alpha1RoleBindingForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listRoleBindingForAllNamespaces(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1alpha1RoleBindingForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listRoleBindingForAllNamespaces(_api::RbacAuthorizationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1beta1RoleBindingForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listRoleBindingForAllNamespaces(_api::RbacAuthorizationV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1beta1RoleBindingForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listRoleBindingForAllNamespaces # listNamespacedRole listNamespacedRole(_api::RbacAuthorizationV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1NamespacedRole(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedRole(_api::RbacAuthorizationV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1NamespacedRole(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listNamespacedRole(_api::RbacAuthorizationV1alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1alpha1NamespacedRole(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1alpha1NamespacedRole(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listNamespacedRole(_api::RbacAuthorizationV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1beta1NamespacedRole(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1beta1NamespacedRole(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNamespacedRole # deleteCollectionNamespacedReplicaSet deleteCollectionNamespacedReplicaSet(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAppsV1CollectionNamespacedReplicaSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedReplicaSet(_api::AppsV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAppsV1CollectionNamespacedReplicaSet(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionNamespacedReplicaSet(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAppsV1beta2CollectionNamespacedReplicaSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedReplicaSet(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAppsV1beta2CollectionNamespacedReplicaSet(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionNamespacedReplicaSet(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteExtensionsV1beta1CollectionNamespacedReplicaSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedReplicaSet(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteExtensionsV1beta1CollectionNamespacedReplicaSet(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionNamespacedReplicaSet # connectPutNodeProxyWithPath connectPutNodeProxyWithPath(_api::CoreV1Api, name::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1PutNodeProxyWithPath(_api, name, path; path2=path2, _mediaType=_mediaType) +connectPutNodeProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1PutNodeProxyWithPath(_api, response_stream, name, path; path2=path2, _mediaType=_mediaType) export connectPutNodeProxyWithPath # patchCSINode patchCSINode(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchStorageV1CSINode(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchCSINode(_api::StorageV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchStorageV1CSINode(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchCSINode(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchStorageV1beta1CSINode(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchCSINode(_api::StorageV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchStorageV1beta1CSINode(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchCSINode # listNamespacedReplicationController listNamespacedReplicationController(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1NamespacedReplicationController(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedReplicationController(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1NamespacedReplicationController(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNamespacedReplicationController # listStatefulSetForAllNamespaces listStatefulSetForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1StatefulSetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listStatefulSetForAllNamespaces(_api::AppsV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1StatefulSetForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listStatefulSetForAllNamespaces(_api::AppsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta1StatefulSetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listStatefulSetForAllNamespaces(_api::AppsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta1StatefulSetForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listStatefulSetForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta2StatefulSetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listStatefulSetForAllNamespaces(_api::AppsV1beta2Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta2StatefulSetForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listStatefulSetForAllNamespaces # readNamespacedPodStatus readNamespacedPodStatus(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readCoreV1NamespacedPodStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedPodStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readCoreV1NamespacedPodStatus(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) export readNamespacedPodStatus # watchSecretListForAllNamespaces watchSecretListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1SecretListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchSecretListForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1SecretListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchSecretListForAllNamespaces # listNamespacedNetworkPolicy listNamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listExtensionsV1beta1NamespacedNetworkPolicy(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listExtensionsV1beta1NamespacedNetworkPolicy(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listNamespacedNetworkPolicy(_api::NetworkingV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listNetworkingV1NamespacedNetworkPolicy(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedNetworkPolicy(_api::NetworkingV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listNetworkingV1NamespacedNetworkPolicy(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNamespacedNetworkPolicy # connectHeadNamespacedPodProxy connectHeadNamespacedPodProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) = connectCoreV1HeadNamespacedPodProxy(_api, name, namespace; path=path, _mediaType=_mediaType) +connectHeadNamespacedPodProxy(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; path=nothing, _mediaType=nothing) = connectCoreV1HeadNamespacedPodProxy(_api, response_stream, name, namespace; path=path, _mediaType=_mediaType) export connectHeadNamespacedPodProxy # listValidatingWebhookConfiguration listValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAdmissionregistrationV1ValidatingWebhookConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAdmissionregistrationV1ValidatingWebhookConfiguration(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listValidatingWebhookConfiguration # watchVolumeAttachment watchVolumeAttachment(_api::StorageV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1VolumeAttachment(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchVolumeAttachment(_api::StorageV1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1VolumeAttachment(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchVolumeAttachment(_api::StorageV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1alpha1VolumeAttachment(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchVolumeAttachment(_api::StorageV1alpha1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1alpha1VolumeAttachment(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchVolumeAttachment(_api::StorageV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1beta1VolumeAttachment(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchVolumeAttachment(_api::StorageV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1beta1VolumeAttachment(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchVolumeAttachment # deleteNamespacedReplicationController deleteNamespacedReplicationController(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1NamespacedReplicationController(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedReplicationController(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1NamespacedReplicationController(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNamespacedReplicationController # readCSIDriver readCSIDriver(_api::StorageV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readStorageV1beta1CSIDriver(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readCSIDriver(_api::StorageV1beta1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readStorageV1beta1CSIDriver(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readCSIDriver # patchNamespacedEvent patchNamespacedEvent(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedEvent(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedEvent(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedEvent(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedEvent(_api::EventsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchEventsV1beta1NamespacedEvent(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedEvent(_api::EventsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchEventsV1beta1NamespacedEvent(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedEvent # listCustomResourceDefinition listCustomResourceDefinition(_api::ApiextensionsV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listApiextensionsV1CustomResourceDefinition(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listCustomResourceDefinition(_api::ApiextensionsV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listApiextensionsV1CustomResourceDefinition(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listCustomResourceDefinition(_api::ApiextensionsV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listApiextensionsV1beta1CustomResourceDefinition(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listCustomResourceDefinition(_api::ApiextensionsV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listApiextensionsV1beta1CustomResourceDefinition(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listCustomResourceDefinition # readNamespacedStatefulSetScale readNamespacedStatefulSetScale(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1NamespacedStatefulSetScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedStatefulSetScale(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1NamespacedStatefulSetScale(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) readNamespacedStatefulSetScale(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1beta1NamespacedStatefulSetScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedStatefulSetScale(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1beta1NamespacedStatefulSetScale(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) readNamespacedStatefulSetScale(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1beta2NamespacedStatefulSetScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedStatefulSetScale(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1beta2NamespacedStatefulSetScale(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) export readNamespacedStatefulSetScale # createNamespace createNamespace(_api::CoreV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1Namespace(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespace(_api::CoreV1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1Namespace(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNamespace # patchClusterRole patchClusterRole(_api::RbacAuthorizationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchRbacAuthorizationV1ClusterRole(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchClusterRole(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchRbacAuthorizationV1ClusterRole(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchClusterRole(_api::RbacAuthorizationV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchRbacAuthorizationV1alpha1ClusterRole(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchClusterRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchRbacAuthorizationV1alpha1ClusterRole(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchClusterRole(_api::RbacAuthorizationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchRbacAuthorizationV1beta1ClusterRole(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchClusterRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchRbacAuthorizationV1beta1ClusterRole(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchClusterRole # deleteValidatingWebhookConfiguration deleteValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAdmissionregistrationV1ValidatingWebhookConfiguration(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAdmissionregistrationV1ValidatingWebhookConfiguration(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteValidatingWebhookConfiguration # connectPatchNamespacedPodProxy connectPatchNamespacedPodProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) = connectCoreV1PatchNamespacedPodProxy(_api, name, namespace; path=path, _mediaType=_mediaType) +connectPatchNamespacedPodProxy(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; path=nothing, _mediaType=nothing) = connectCoreV1PatchNamespacedPodProxy(_api, response_stream, name, namespace; path=path, _mediaType=_mediaType) export connectPatchNamespacedPodProxy # createNamespacedCronJob createNamespacedCronJob(_api::BatchV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createBatchV1beta1NamespacedCronJob(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedCronJob(_api::BatchV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createBatchV1beta1NamespacedCronJob(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createNamespacedCronJob(_api::BatchV2alpha1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createBatchV2alpha1NamespacedCronJob(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedCronJob(_api::BatchV2alpha1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createBatchV2alpha1NamespacedCronJob(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNamespacedCronJob # patchValidatingWebhookConfiguration patchValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAdmissionregistrationV1ValidatingWebhookConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAdmissionregistrationV1ValidatingWebhookConfiguration(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchValidatingWebhookConfiguration # replaceNamespacedSecret replaceNamespacedSecret(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedSecret(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedSecret(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedSecret(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedSecret # patchNamespacedServiceAccount patchNamespacedServiceAccount(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedServiceAccount(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedServiceAccount(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedServiceAccount(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedServiceAccount # readNamespacedReplicaSetStatus readNamespacedReplicaSetStatus(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1NamespacedReplicaSetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedReplicaSetStatus(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1NamespacedReplicaSetStatus(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) readNamespacedReplicaSetStatus(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1beta2NamespacedReplicaSetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedReplicaSetStatus(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1beta2NamespacedReplicaSetStatus(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) readNamespacedReplicaSetStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readExtensionsV1beta1NamespacedReplicaSetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedReplicaSetStatus(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readExtensionsV1beta1NamespacedReplicaSetStatus(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) export readNamespacedReplicaSetStatus # deleteNamespacedCronJob deleteNamespacedCronJob(_api::BatchV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteBatchV1beta1NamespacedCronJob(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedCronJob(_api::BatchV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteBatchV1beta1NamespacedCronJob(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteNamespacedCronJob(_api::BatchV2alpha1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteBatchV2alpha1NamespacedCronJob(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedCronJob(_api::BatchV2alpha1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteBatchV2alpha1NamespacedCronJob(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNamespacedCronJob # replaceNamespacedStatefulSetStatus replaceNamespacedStatefulSetStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1NamespacedStatefulSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedStatefulSetStatus(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1NamespacedStatefulSetStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedStatefulSetStatus(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta1NamespacedStatefulSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedStatefulSetStatus(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta1NamespacedStatefulSetStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedStatefulSetStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta2NamespacedStatefulSetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedStatefulSetStatus(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta2NamespacedStatefulSetStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedStatefulSetStatus # replaceValidatingWebhookConfiguration replaceValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAdmissionregistrationV1ValidatingWebhookConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAdmissionregistrationV1ValidatingWebhookConfiguration(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceValidatingWebhookConfiguration # listResourceQuotaForAllNamespaces listResourceQuotaForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1ResourceQuotaForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listResourceQuotaForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1ResourceQuotaForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listResourceQuotaForAllNamespaces # deleteCollectionNamespacedServiceAccount deleteCollectionNamespacedServiceAccount(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoreV1CollectionNamespacedServiceAccount(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedServiceAccount(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoreV1CollectionNamespacedServiceAccount(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionNamespacedServiceAccount # listLimitRangeForAllNamespaces listLimitRangeForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1LimitRangeForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listLimitRangeForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1LimitRangeForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listLimitRangeForAllNamespaces # deleteNamespacedLimitRange deleteNamespacedLimitRange(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1NamespacedLimitRange(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedLimitRange(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1NamespacedLimitRange(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNamespacedLimitRange # patchNamespacedDeployment patchNamespacedDeployment(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1NamespacedDeployment(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedDeployment(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1NamespacedDeployment(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedDeployment(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta1NamespacedDeployment(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedDeployment(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta1NamespacedDeployment(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedDeployment(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta2NamespacedDeployment(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedDeployment(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta2NamespacedDeployment(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedDeployment(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchExtensionsV1beta1NamespacedDeployment(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedDeployment(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchExtensionsV1beta1NamespacedDeployment(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedDeployment # readNamespacedHorizontalPodAutoscaler readNamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAutoscalingV1NamespacedHorizontalPodAutoscaler(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAutoscalingV1NamespacedHorizontalPodAutoscaler(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNamespacedHorizontalPodAutoscaler # replacePriorityLevelConfiguration replacePriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replacePriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replacePriorityLevelConfiguration # watchDaemonSetListForAllNamespaces watchDaemonSetListForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1DaemonSetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchDaemonSetListForAllNamespaces(_api::AppsV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1DaemonSetListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchDaemonSetListForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2DaemonSetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchDaemonSetListForAllNamespaces(_api::AppsV1beta2Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2DaemonSetListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchDaemonSetListForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1DaemonSetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchDaemonSetListForAllNamespaces(_api::ExtensionsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1DaemonSetListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchDaemonSetListForAllNamespaces # deleteNamespacedLease deleteNamespacedLease(_api::CoordinationV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoordinationV1NamespacedLease(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedLease(_api::CoordinationV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoordinationV1NamespacedLease(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteNamespacedLease(_api::CoordinationV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoordinationV1beta1NamespacedLease(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedLease(_api::CoordinationV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoordinationV1beta1NamespacedLease(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNamespacedLease # deleteNamespacedServiceAccount deleteNamespacedServiceAccount(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1NamespacedServiceAccount(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedServiceAccount(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1NamespacedServiceAccount(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNamespacedServiceAccount # readNamespacedDeployment readNamespacedDeployment(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAppsV1NamespacedDeployment(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedDeployment(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAppsV1NamespacedDeployment(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readNamespacedDeployment(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAppsV1beta1NamespacedDeployment(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedDeployment(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAppsV1beta1NamespacedDeployment(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readNamespacedDeployment(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAppsV1beta2NamespacedDeployment(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedDeployment(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAppsV1beta2NamespacedDeployment(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readNamespacedDeployment(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readExtensionsV1beta1NamespacedDeployment(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedDeployment(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readExtensionsV1beta1NamespacedDeployment(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNamespacedDeployment # readNamespacedDaemonSet readNamespacedDaemonSet(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAppsV1NamespacedDaemonSet(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedDaemonSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAppsV1NamespacedDaemonSet(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readNamespacedDaemonSet(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAppsV1beta2NamespacedDaemonSet(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedDaemonSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAppsV1beta2NamespacedDaemonSet(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readNamespacedDaemonSet(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readExtensionsV1beta1NamespacedDaemonSet(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedDaemonSet(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readExtensionsV1beta1NamespacedDaemonSet(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNamespacedDaemonSet # patchNamespacedDaemonSet patchNamespacedDaemonSet(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1NamespacedDaemonSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedDaemonSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1NamespacedDaemonSet(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedDaemonSet(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta2NamespacedDaemonSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedDaemonSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta2NamespacedDaemonSet(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedDaemonSet(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchExtensionsV1beta1NamespacedDaemonSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedDaemonSet(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchExtensionsV1beta1NamespacedDaemonSet(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedDaemonSet # patchNamespacedPodDisruptionBudget patchNamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchPolicyV1beta1NamespacedPodDisruptionBudget(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchPolicyV1beta1NamespacedPodDisruptionBudget(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedPodDisruptionBudget # deletePriorityClass deletePriorityClass(_api::SchedulingV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteSchedulingV1PriorityClass(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deletePriorityClass(_api::SchedulingV1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteSchedulingV1PriorityClass(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deletePriorityClass(_api::SchedulingV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteSchedulingV1alpha1PriorityClass(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deletePriorityClass(_api::SchedulingV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteSchedulingV1alpha1PriorityClass(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deletePriorityClass(_api::SchedulingV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteSchedulingV1beta1PriorityClass(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deletePriorityClass(_api::SchedulingV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteSchedulingV1beta1PriorityClass(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deletePriorityClass # createClusterRole createClusterRole(_api::RbacAuthorizationV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createRbacAuthorizationV1ClusterRole(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createClusterRole(_api::RbacAuthorizationV1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createRbacAuthorizationV1ClusterRole(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createClusterRole(_api::RbacAuthorizationV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createRbacAuthorizationV1alpha1ClusterRole(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createClusterRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createRbacAuthorizationV1alpha1ClusterRole(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createClusterRole(_api::RbacAuthorizationV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createRbacAuthorizationV1beta1ClusterRole(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createClusterRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createRbacAuthorizationV1beta1ClusterRole(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createClusterRole # deleteCollectionPriorityLevelConfiguration deleteCollectionPriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteFlowcontrolApiserverV1alpha1CollectionPriorityLevelConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionPriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteFlowcontrolApiserverV1alpha1CollectionPriorityLevelConfiguration(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionPriorityLevelConfiguration # patchNamespacedPersistentVolumeClaimStatus patchNamespacedPersistentVolumeClaimStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedPersistentVolumeClaimStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedPersistentVolumeClaimStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedPersistentVolumeClaimStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedPersistentVolumeClaimStatus # readNamespacedEndpointSlice readNamespacedEndpointSlice(_api::DiscoveryV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readDiscoveryV1beta1NamespacedEndpointSlice(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedEndpointSlice(_api::DiscoveryV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readDiscoveryV1beta1NamespacedEndpointSlice(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNamespacedEndpointSlice # readNamespacedReplicationControllerDummyScale readNamespacedReplicationControllerDummyScale(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readExtensionsV1beta1NamespacedReplicationControllerDummyScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedReplicationControllerDummyScale(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readExtensionsV1beta1NamespacedReplicationControllerDummyScale(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) export readNamespacedReplicationControllerDummyScale # patchNamespacedPodPreset patchNamespacedPodPreset(_api::SettingsV1alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchSettingsV1alpha1NamespacedPodPreset(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedPodPreset(_api::SettingsV1alpha1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchSettingsV1alpha1NamespacedPodPreset(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedPodPreset # patchPriorityLevelConfigurationStatus patchPriorityLevelConfigurationStatus(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchPriorityLevelConfigurationStatus(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchPriorityLevelConfigurationStatus # createNamespacedNetworkPolicy createNamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createExtensionsV1beta1NamespacedNetworkPolicy(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createExtensionsV1beta1NamespacedNetworkPolicy(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createNamespacedNetworkPolicy(_api::NetworkingV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createNetworkingV1NamespacedNetworkPolicy(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedNetworkPolicy(_api::NetworkingV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createNetworkingV1NamespacedNetworkPolicy(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNamespacedNetworkPolicy # replaceNamespacedPersistentVolumeClaimStatus replaceNamespacedPersistentVolumeClaimStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedPersistentVolumeClaimStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedPersistentVolumeClaimStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedPersistentVolumeClaimStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedPersistentVolumeClaimStatus # watchPriorityLevelConfiguration watchPriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchPriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchPriorityLevelConfiguration # watchVolumeAttachmentList watchVolumeAttachmentList(_api::StorageV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1VolumeAttachmentList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchVolumeAttachmentList(_api::StorageV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1VolumeAttachmentList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchVolumeAttachmentList(_api::StorageV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1alpha1VolumeAttachmentList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchVolumeAttachmentList(_api::StorageV1alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1alpha1VolumeAttachmentList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchVolumeAttachmentList(_api::StorageV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1beta1VolumeAttachmentList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchVolumeAttachmentList(_api::StorageV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1beta1VolumeAttachmentList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchVolumeAttachmentList # patchVolumeAttachment patchVolumeAttachment(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchStorageV1VolumeAttachment(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchVolumeAttachment(_api::StorageV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchStorageV1VolumeAttachment(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchVolumeAttachment(_api::StorageV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchStorageV1alpha1VolumeAttachment(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchVolumeAttachment(_api::StorageV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchStorageV1alpha1VolumeAttachment(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchVolumeAttachment(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchStorageV1beta1VolumeAttachment(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchVolumeAttachment(_api::StorageV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchStorageV1beta1VolumeAttachment(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchVolumeAttachment # patchNamespacedHorizontalPodAutoscalerStatus patchNamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedHorizontalPodAutoscalerStatus(_api::AutoscalingV2beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAutoscalingV2beta2NamespacedHorizontalPodAutoscalerStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedHorizontalPodAutoscalerStatus # replaceNamespacedPodStatus replaceNamespacedPodStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedPodStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedPodStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedPodStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedPodStatus # readNamespacedIngress readNamespacedIngress(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readExtensionsV1beta1NamespacedIngress(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedIngress(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readExtensionsV1beta1NamespacedIngress(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readNamespacedIngress(_api::NetworkingV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readNetworkingV1beta1NamespacedIngress(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedIngress(_api::NetworkingV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readNetworkingV1beta1NamespacedIngress(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNamespacedIngress # createNamespacedPodBinding createNamespacedPodBinding(_api::CoreV1Api, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createCoreV1NamespacedPodBinding(_api, name, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) +createNamespacedPodBinding(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createCoreV1NamespacedPodBinding(_api, response_stream, name, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) export createNamespacedPodBinding # deleteCollectionNamespacedJob deleteCollectionNamespacedJob(_api::BatchV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteBatchV1CollectionNamespacedJob(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedJob(_api::BatchV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteBatchV1CollectionNamespacedJob(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionNamespacedJob # replaceAPIService replaceAPIService(_api::ApiregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceApiregistrationV1APIService(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceAPIService(_api::ApiregistrationV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceApiregistrationV1APIService(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceAPIService(_api::ApiregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceApiregistrationV1beta1APIService(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceAPIService(_api::ApiregistrationV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceApiregistrationV1beta1APIService(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceAPIService # deleteNamespacedIngress deleteNamespacedIngress(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteExtensionsV1beta1NamespacedIngress(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedIngress(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteExtensionsV1beta1NamespacedIngress(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteNamespacedIngress(_api::NetworkingV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteNetworkingV1beta1NamespacedIngress(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedIngress(_api::NetworkingV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteNetworkingV1beta1NamespacedIngress(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNamespacedIngress # deleteCollectionNamespacedControllerRevision deleteCollectionNamespacedControllerRevision(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAppsV1CollectionNamespacedControllerRevision(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedControllerRevision(_api::AppsV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAppsV1CollectionNamespacedControllerRevision(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionNamespacedControllerRevision(_api::AppsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAppsV1beta1CollectionNamespacedControllerRevision(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedControllerRevision(_api::AppsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAppsV1beta1CollectionNamespacedControllerRevision(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionNamespacedControllerRevision(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAppsV1beta2CollectionNamespacedControllerRevision(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedControllerRevision(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAppsV1beta2CollectionNamespacedControllerRevision(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionNamespacedControllerRevision # deleteRuntimeClass deleteRuntimeClass(_api::NodeV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteNodeV1alpha1RuntimeClass(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteRuntimeClass(_api::NodeV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteNodeV1alpha1RuntimeClass(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteRuntimeClass(_api::NodeV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteNodeV1beta1RuntimeClass(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteRuntimeClass(_api::NodeV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteNodeV1beta1RuntimeClass(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteRuntimeClass # deleteCollectionNode deleteCollectionNode(_api::CoreV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoreV1CollectionNode(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNode(_api::CoreV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoreV1CollectionNode(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionNode # replaceNamespacedReplicaSetScale replaceNamespacedReplicaSetScale(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1NamespacedReplicaSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedReplicaSetScale(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1NamespacedReplicaSetScale(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedReplicaSetScale(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta2NamespacedReplicaSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedReplicaSetScale(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta2NamespacedReplicaSetScale(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedReplicaSetScale(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceExtensionsV1beta1NamespacedReplicaSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedReplicaSetScale(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceExtensionsV1beta1NamespacedReplicaSetScale(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedReplicaSetScale # createPriorityLevelConfiguration createPriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createPriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createPriorityLevelConfiguration # patchNamespacedLease patchNamespacedLease(_api::CoordinationV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoordinationV1NamespacedLease(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedLease(_api::CoordinationV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoordinationV1NamespacedLease(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedLease(_api::CoordinationV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoordinationV1beta1NamespacedLease(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedLease(_api::CoordinationV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoordinationV1beta1NamespacedLease(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedLease # watchEventListForAllNamespaces watchEventListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1EventListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchEventListForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1EventListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchEventListForAllNamespaces(_api::EventsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchEventsV1beta1EventListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchEventListForAllNamespaces(_api::EventsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchEventsV1beta1EventListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchEventListForAllNamespaces # createNamespacedControllerRevision createNamespacedControllerRevision(_api::AppsV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAppsV1NamespacedControllerRevision(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedControllerRevision(_api::AppsV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAppsV1NamespacedControllerRevision(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createNamespacedControllerRevision(_api::AppsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAppsV1beta1NamespacedControllerRevision(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedControllerRevision(_api::AppsV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAppsV1beta1NamespacedControllerRevision(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createNamespacedControllerRevision(_api::AppsV1beta2Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAppsV1beta2NamespacedControllerRevision(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedControllerRevision(_api::AppsV1beta2Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAppsV1beta2NamespacedControllerRevision(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNamespacedControllerRevision # patchNamespaceStatus patchNamespaceStatus(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespaceStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespaceStatus(_api::CoreV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespaceStatus(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespaceStatus # readNamespacedReplicationControllerStatus readNamespacedReplicationControllerStatus(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readCoreV1NamespacedReplicationControllerStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedReplicationControllerStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readCoreV1NamespacedReplicationControllerStatus(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) export readNamespacedReplicationControllerStatus # watchIngressListForAllNamespaces watchIngressListForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1IngressListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchIngressListForAllNamespaces(_api::ExtensionsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1IngressListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchIngressListForAllNamespaces(_api::NetworkingV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchNetworkingV1beta1IngressListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchIngressListForAllNamespaces(_api::NetworkingV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchNetworkingV1beta1IngressListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchIngressListForAllNamespaces # createSelfSubjectAccessReview createSelfSubjectAccessReview(_api::AuthorizationV1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createAuthorizationV1SelfSubjectAccessReview(_api, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) +createSelfSubjectAccessReview(_api::AuthorizationV1Api, response_stream::Channel, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createAuthorizationV1SelfSubjectAccessReview(_api, response_stream, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) createSelfSubjectAccessReview(_api::AuthorizationV1beta1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createAuthorizationV1beta1SelfSubjectAccessReview(_api, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) +createSelfSubjectAccessReview(_api::AuthorizationV1beta1Api, response_stream::Channel, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createAuthorizationV1beta1SelfSubjectAccessReview(_api, response_stream, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) export createSelfSubjectAccessReview # patchNamespacedLimitRange patchNamespacedLimitRange(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedLimitRange(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedLimitRange(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedLimitRange(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedLimitRange # readNamespacedConfigMap readNamespacedConfigMap(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1NamespacedConfigMap(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedConfigMap(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1NamespacedConfigMap(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNamespacedConfigMap # replaceCertificateSigningRequestStatus replaceCertificateSigningRequestStatus(_api::CertificatesV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCertificatesV1beta1CertificateSigningRequestStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceCertificateSigningRequestStatus(_api::CertificatesV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCertificatesV1beta1CertificateSigningRequestStatus(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceCertificateSigningRequestStatus # listNamespacedServiceAccount listNamespacedServiceAccount(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1NamespacedServiceAccount(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedServiceAccount(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1NamespacedServiceAccount(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNamespacedServiceAccount # watchPodSecurityPolicyList watchPodSecurityPolicyList(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1PodSecurityPolicyList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchPodSecurityPolicyList(_api::ExtensionsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1PodSecurityPolicyList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchPodSecurityPolicyList(_api::PolicyV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchPolicyV1beta1PodSecurityPolicyList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchPodSecurityPolicyList(_api::PolicyV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchPolicyV1beta1PodSecurityPolicyList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchPodSecurityPolicyList # readAPIServiceStatus readAPIServiceStatus(_api::ApiregistrationV1Api, name::String; pretty=nothing, _mediaType=nothing) = readApiregistrationV1APIServiceStatus(_api, name; pretty=pretty, _mediaType=_mediaType) +readAPIServiceStatus(_api::ApiregistrationV1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) = readApiregistrationV1APIServiceStatus(_api, response_stream, name; pretty=pretty, _mediaType=_mediaType) readAPIServiceStatus(_api::ApiregistrationV1beta1Api, name::String; pretty=nothing, _mediaType=nothing) = readApiregistrationV1beta1APIServiceStatus(_api, name; pretty=pretty, _mediaType=_mediaType) +readAPIServiceStatus(_api::ApiregistrationV1beta1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) = readApiregistrationV1beta1APIServiceStatus(_api, response_stream, name; pretty=pretty, _mediaType=_mediaType) export readAPIServiceStatus # patchNamespacedReplicaSetScale patchNamespacedReplicaSetScale(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1NamespacedReplicaSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedReplicaSetScale(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1NamespacedReplicaSetScale(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedReplicaSetScale(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta2NamespacedReplicaSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedReplicaSetScale(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta2NamespacedReplicaSetScale(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedReplicaSetScale(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchExtensionsV1beta1NamespacedReplicaSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedReplicaSetScale(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchExtensionsV1beta1NamespacedReplicaSetScale(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedReplicaSetScale # replaceNamespacedDeploymentStatus replaceNamespacedDeploymentStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1NamespacedDeploymentStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedDeploymentStatus(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1NamespacedDeploymentStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedDeploymentStatus(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta1NamespacedDeploymentStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedDeploymentStatus(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta1NamespacedDeploymentStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedDeploymentStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta2NamespacedDeploymentStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedDeploymentStatus(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta2NamespacedDeploymentStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedDeploymentStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceExtensionsV1beta1NamespacedDeploymentStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedDeploymentStatus(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceExtensionsV1beta1NamespacedDeploymentStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedDeploymentStatus # watchPriorityClass watchPriorityClass(_api::SchedulingV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchSchedulingV1PriorityClass(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchPriorityClass(_api::SchedulingV1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchSchedulingV1PriorityClass(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchPriorityClass(_api::SchedulingV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchSchedulingV1alpha1PriorityClass(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchPriorityClass(_api::SchedulingV1alpha1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchSchedulingV1alpha1PriorityClass(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchPriorityClass(_api::SchedulingV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchSchedulingV1beta1PriorityClass(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchPriorityClass(_api::SchedulingV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchSchedulingV1beta1PriorityClass(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchPriorityClass # replaceCertificateSigningRequest replaceCertificateSigningRequest(_api::CertificatesV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCertificatesV1beta1CertificateSigningRequest(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceCertificateSigningRequest(_api::CertificatesV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCertificatesV1beta1CertificateSigningRequest(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceCertificateSigningRequest # watchNamespacedPodDisruptionBudgetList watchNamespacedPodDisruptionBudgetList(_api::PolicyV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchPolicyV1beta1NamespacedPodDisruptionBudgetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedPodDisruptionBudgetList(_api::PolicyV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchPolicyV1beta1NamespacedPodDisruptionBudgetList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedPodDisruptionBudgetList # readNamespacedServiceAccount readNamespacedServiceAccount(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1NamespacedServiceAccount(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedServiceAccount(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1NamespacedServiceAccount(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNamespacedServiceAccount # listPodSecurityPolicy listPodSecurityPolicy(_api::ExtensionsV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listExtensionsV1beta1PodSecurityPolicy(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listPodSecurityPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listExtensionsV1beta1PodSecurityPolicy(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listPodSecurityPolicy(_api::PolicyV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listPolicyV1beta1PodSecurityPolicy(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listPodSecurityPolicy(_api::PolicyV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listPolicyV1beta1PodSecurityPolicy(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listPodSecurityPolicy # connectGetNamespacedPodProxy connectGetNamespacedPodProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) = connectCoreV1GetNamespacedPodProxy(_api, name, namespace; path=path, _mediaType=_mediaType) +connectGetNamespacedPodProxy(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; path=nothing, _mediaType=nothing) = connectCoreV1GetNamespacedPodProxy(_api, response_stream, name, namespace; path=path, _mediaType=_mediaType) export connectGetNamespacedPodProxy # patchNamespacedStatefulSetScale patchNamespacedStatefulSetScale(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1NamespacedStatefulSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedStatefulSetScale(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1NamespacedStatefulSetScale(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedStatefulSetScale(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta1NamespacedStatefulSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedStatefulSetScale(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta1NamespacedStatefulSetScale(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedStatefulSetScale(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta2NamespacedStatefulSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedStatefulSetScale(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta2NamespacedStatefulSetScale(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedStatefulSetScale # readNamespacedSecret readNamespacedSecret(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1NamespacedSecret(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedSecret(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1NamespacedSecret(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNamespacedSecret # patchNamespacedReplicationControllerStatus patchNamespacedReplicationControllerStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedReplicationControllerStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedReplicationControllerStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedReplicationControllerStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedReplicationControllerStatus # watchEndpointSliceListForAllNamespaces watchEndpointSliceListForAllNamespaces(_api::DiscoveryV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchDiscoveryV1beta1EndpointSliceListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchEndpointSliceListForAllNamespaces(_api::DiscoveryV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchDiscoveryV1beta1EndpointSliceListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchEndpointSliceListForAllNamespaces # watchCertificateSigningRequest watchCertificateSigningRequest(_api::CertificatesV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCertificatesV1beta1CertificateSigningRequest(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchCertificateSigningRequest(_api::CertificatesV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCertificatesV1beta1CertificateSigningRequest(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchCertificateSigningRequest # watchClusterRole watchClusterRole(_api::RbacAuthorizationV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1ClusterRole(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchClusterRole(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1ClusterRole(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchClusterRole(_api::RbacAuthorizationV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1alpha1ClusterRole(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchClusterRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1alpha1ClusterRole(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchClusterRole(_api::RbacAuthorizationV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1beta1ClusterRole(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchClusterRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1beta1ClusterRole(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchClusterRole # listReplicationControllerForAllNamespaces listReplicationControllerForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1ReplicationControllerForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listReplicationControllerForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1ReplicationControllerForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listReplicationControllerForAllNamespaces # replaceNamespacedStatefulSet replaceNamespacedStatefulSet(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1NamespacedStatefulSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedStatefulSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1NamespacedStatefulSet(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedStatefulSet(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta1NamespacedStatefulSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedStatefulSet(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta1NamespacedStatefulSet(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedStatefulSet(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta2NamespacedStatefulSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedStatefulSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta2NamespacedStatefulSet(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedStatefulSet # replaceNamespacedRoleBinding replaceNamespacedRoleBinding(_api::RbacAuthorizationV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceRbacAuthorizationV1NamespacedRoleBinding(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceRbacAuthorizationV1NamespacedRoleBinding(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceRbacAuthorizationV1alpha1NamespacedRoleBinding(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceRbacAuthorizationV1alpha1NamespacedRoleBinding(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceRbacAuthorizationV1beta1NamespacedRoleBinding(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceRbacAuthorizationV1beta1NamespacedRoleBinding(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedRoleBinding # readCertificateSigningRequest readCertificateSigningRequest(_api::CertificatesV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCertificatesV1beta1CertificateSigningRequest(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readCertificateSigningRequest(_api::CertificatesV1beta1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCertificatesV1beta1CertificateSigningRequest(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readCertificateSigningRequest # listNamespacedResourceQuota listNamespacedResourceQuota(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1NamespacedResourceQuota(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedResourceQuota(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1NamespacedResourceQuota(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNamespacedResourceQuota # watchNamespacedJob watchNamespacedJob(_api::BatchV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchBatchV1NamespacedJob(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedJob(_api::BatchV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchBatchV1NamespacedJob(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedJob # readNamespacedEvent readNamespacedEvent(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1NamespacedEvent(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedEvent(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1NamespacedEvent(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readNamespacedEvent(_api::EventsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readEventsV1beta1NamespacedEvent(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedEvent(_api::EventsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readEventsV1beta1NamespacedEvent(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNamespacedEvent # connectPostNamespacedServiceProxyWithPath connectPostNamespacedServiceProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1PostNamespacedServiceProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) +connectPostNamespacedServiceProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1PostNamespacedServiceProxyWithPath(_api, response_stream, name, namespace, path; path2=path2, _mediaType=_mediaType) export connectPostNamespacedServiceProxyWithPath # watchJobListForAllNamespaces watchJobListForAllNamespaces(_api::BatchV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchBatchV1JobListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchJobListForAllNamespaces(_api::BatchV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchBatchV1JobListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchJobListForAllNamespaces # deleteCertificateSigningRequest deleteCertificateSigningRequest(_api::CertificatesV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCertificatesV1beta1CertificateSigningRequest(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteCertificateSigningRequest(_api::CertificatesV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCertificatesV1beta1CertificateSigningRequest(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteCertificateSigningRequest # readNamespacedCronJob readNamespacedCronJob(_api::BatchV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readBatchV1beta1NamespacedCronJob(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedCronJob(_api::BatchV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readBatchV1beta1NamespacedCronJob(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readNamespacedCronJob(_api::BatchV2alpha1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readBatchV2alpha1NamespacedCronJob(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedCronJob(_api::BatchV2alpha1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readBatchV2alpha1NamespacedCronJob(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNamespacedCronJob # connectGetNamespacedPodAttach connectGetNamespacedPodAttach(_api::CoreV1Api, name::String, namespace::String; container=nothing, stderr=nothing, stdin=nothing, stdout=nothing, tty=nothing, _mediaType=nothing) = connectCoreV1GetNamespacedPodAttach(_api, name, namespace; container=container, stderr=stderr, stdin=stdin, stdout=stdout, tty=tty, _mediaType=_mediaType) +connectGetNamespacedPodAttach(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; container=nothing, stderr=nothing, stdin=nothing, stdout=nothing, tty=nothing, _mediaType=nothing) = connectCoreV1GetNamespacedPodAttach(_api, response_stream, name, namespace; container=container, stderr=stderr, stdin=stdin, stdout=stdout, tty=tty, _mediaType=_mediaType) export connectGetNamespacedPodAttach # createNamespacedPodPreset createNamespacedPodPreset(_api::SettingsV1alpha1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createSettingsV1alpha1NamespacedPodPreset(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedPodPreset(_api::SettingsV1alpha1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createSettingsV1alpha1NamespacedPodPreset(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNamespacedPodPreset # watchRoleBindingListForAllNamespaces watchRoleBindingListForAllNamespaces(_api::RbacAuthorizationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1RoleBindingListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchRoleBindingListForAllNamespaces(_api::RbacAuthorizationV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1RoleBindingListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchRoleBindingListForAllNamespaces(_api::RbacAuthorizationV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1alpha1RoleBindingListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchRoleBindingListForAllNamespaces(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1alpha1RoleBindingListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchRoleBindingListForAllNamespaces(_api::RbacAuthorizationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1beta1RoleBindingListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchRoleBindingListForAllNamespaces(_api::RbacAuthorizationV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1beta1RoleBindingListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchRoleBindingListForAllNamespaces # createNode createNode(_api::CoreV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1Node(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNode(_api::CoreV1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1Node(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNode # replaceNamespace replaceNamespace(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1Namespace(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespace(_api::CoreV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1Namespace(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespace # watchFlowSchema watchFlowSchema(_api::FlowcontrolApiserverV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchFlowcontrolApiserverV1alpha1FlowSchema(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchFlowSchema(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchFlowcontrolApiserverV1alpha1FlowSchema(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchFlowSchema # patchPersistentVolumeStatus patchPersistentVolumeStatus(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1PersistentVolumeStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchPersistentVolumeStatus(_api::CoreV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1PersistentVolumeStatus(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchPersistentVolumeStatus # watchCSIDriverList watchCSIDriverList(_api::StorageV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1beta1CSIDriverList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchCSIDriverList(_api::StorageV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1beta1CSIDriverList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchCSIDriverList # deleteNamespacedPersistentVolumeClaim deleteNamespacedPersistentVolumeClaim(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1NamespacedPersistentVolumeClaim(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedPersistentVolumeClaim(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1NamespacedPersistentVolumeClaim(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNamespacedPersistentVolumeClaim # deleteNamespacedStatefulSet deleteNamespacedStatefulSet(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAppsV1NamespacedStatefulSet(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedStatefulSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAppsV1NamespacedStatefulSet(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteNamespacedStatefulSet(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAppsV1beta1NamespacedStatefulSet(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedStatefulSet(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAppsV1beta1NamespacedStatefulSet(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteNamespacedStatefulSet(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAppsV1beta2NamespacedStatefulSet(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedStatefulSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAppsV1beta2NamespacedStatefulSet(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNamespacedStatefulSet # replaceNamespacedJob replaceNamespacedJob(_api::BatchV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceBatchV1NamespacedJob(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedJob(_api::BatchV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceBatchV1NamespacedJob(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedJob # watchNamespacedPodTemplate watchNamespacedPodTemplate(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedPodTemplate(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedPodTemplate(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedPodTemplate(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedPodTemplate # connectPutNamespacedServiceProxyWithPath connectPutNamespacedServiceProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1PutNamespacedServiceProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) +connectPutNamespacedServiceProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1PutNamespacedServiceProxyWithPath(_api, response_stream, name, namespace, path; path2=path2, _mediaType=_mediaType) export connectPutNamespacedServiceProxyWithPath # listNamespacedMetricValue listNamespacedMetricValue(_api::CustomMetricsV1beta1Api, compositemetricname::String, namespace::String; pretty=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, _mediaType=nothing) = listCustomMetricsV1beta1NamespacedMetricValue(_api, compositemetricname, namespace; pretty=pretty, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, _mediaType=_mediaType) +listNamespacedMetricValue(_api::CustomMetricsV1beta1Api, response_stream::Channel, compositemetricname::String, namespace::String; pretty=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, _mediaType=nothing) = listCustomMetricsV1beta1NamespacedMetricValue(_api, response_stream, compositemetricname, namespace; pretty=pretty, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, _mediaType=_mediaType) export listNamespacedMetricValue # readPersistentVolume readPersistentVolume(_api::CoreV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1PersistentVolume(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readPersistentVolume(_api::CoreV1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1PersistentVolume(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readPersistentVolume # listNamespacedPodDisruptionBudget listNamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listPolicyV1beta1NamespacedPodDisruptionBudget(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listPolicyV1beta1NamespacedPodDisruptionBudget(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNamespacedPodDisruptionBudget # getCode getCode(_api::VersionApi; _mediaType=nothing) = getCodeVersion(_api; _mediaType=_mediaType) +getCode(_api::VersionApi, response_stream::Channel; _mediaType=nothing) = getCodeVersion(_api, response_stream; _mediaType=_mediaType) export getCode # listNamespacedIngress listNamespacedIngress(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listExtensionsV1beta1NamespacedIngress(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedIngress(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listExtensionsV1beta1NamespacedIngress(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listNamespacedIngress(_api::NetworkingV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listNetworkingV1beta1NamespacedIngress(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedIngress(_api::NetworkingV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listNetworkingV1beta1NamespacedIngress(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNamespacedIngress # deletePersistentVolume deletePersistentVolume(_api::CoreV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1PersistentVolume(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deletePersistentVolume(_api::CoreV1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1PersistentVolume(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deletePersistentVolume # listPodPresetForAllNamespaces listPodPresetForAllNamespaces(_api::SettingsV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listSettingsV1alpha1PodPresetForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listPodPresetForAllNamespaces(_api::SettingsV1alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listSettingsV1alpha1PodPresetForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listPodPresetForAllNamespaces # replaceNamespacedCronJob replaceNamespacedCronJob(_api::BatchV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceBatchV1beta1NamespacedCronJob(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedCronJob(_api::BatchV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceBatchV1beta1NamespacedCronJob(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedCronJob(_api::BatchV2alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceBatchV2alpha1NamespacedCronJob(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedCronJob(_api::BatchV2alpha1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceBatchV2alpha1NamespacedCronJob(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedCronJob # connectGetNamespacedServiceProxy connectGetNamespacedServiceProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) = connectCoreV1GetNamespacedServiceProxy(_api, name, namespace; path=path, _mediaType=_mediaType) +connectGetNamespacedServiceProxy(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; path=nothing, _mediaType=nothing) = connectCoreV1GetNamespacedServiceProxy(_api, response_stream, name, namespace; path=path, _mediaType=_mediaType) export connectGetNamespacedServiceProxy # readNamespacedStatefulSetStatus readNamespacedStatefulSetStatus(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1NamespacedStatefulSetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedStatefulSetStatus(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1NamespacedStatefulSetStatus(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) readNamespacedStatefulSetStatus(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1beta1NamespacedStatefulSetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedStatefulSetStatus(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1beta1NamespacedStatefulSetStatus(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) readNamespacedStatefulSetStatus(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1beta2NamespacedStatefulSetStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedStatefulSetStatus(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1beta2NamespacedStatefulSetStatus(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) export readNamespacedStatefulSetStatus # readNamespacedPod readNamespacedPod(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1NamespacedPod(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedPod(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1NamespacedPod(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNamespacedPod # watchStatefulSetListForAllNamespaces watchStatefulSetListForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1StatefulSetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchStatefulSetListForAllNamespaces(_api::AppsV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1StatefulSetListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchStatefulSetListForAllNamespaces(_api::AppsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta1StatefulSetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchStatefulSetListForAllNamespaces(_api::AppsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta1StatefulSetListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchStatefulSetListForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2StatefulSetListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchStatefulSetListForAllNamespaces(_api::AppsV1beta2Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2StatefulSetListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchStatefulSetListForAllNamespaces # watchRoleListForAllNamespaces watchRoleListForAllNamespaces(_api::RbacAuthorizationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1RoleListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchRoleListForAllNamespaces(_api::RbacAuthorizationV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1RoleListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchRoleListForAllNamespaces(_api::RbacAuthorizationV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1alpha1RoleListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchRoleListForAllNamespaces(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1alpha1RoleListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchRoleListForAllNamespaces(_api::RbacAuthorizationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1beta1RoleListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchRoleListForAllNamespaces(_api::RbacAuthorizationV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1beta1RoleListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchRoleListForAllNamespaces # listSecretForAllNamespaces listSecretForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1SecretForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listSecretForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1SecretForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listSecretForAllNamespaces # readPersistentVolumeStatus readPersistentVolumeStatus(_api::CoreV1Api, name::String; pretty=nothing, _mediaType=nothing) = readCoreV1PersistentVolumeStatus(_api, name; pretty=pretty, _mediaType=_mediaType) +readPersistentVolumeStatus(_api::CoreV1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) = readCoreV1PersistentVolumeStatus(_api, response_stream, name; pretty=pretty, _mediaType=_mediaType) export readPersistentVolumeStatus # replaceNamespacedNetworkPolicy replaceNamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceExtensionsV1beta1NamespacedNetworkPolicy(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceExtensionsV1beta1NamespacedNetworkPolicy(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedNetworkPolicy(_api::NetworkingV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceNetworkingV1NamespacedNetworkPolicy(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedNetworkPolicy(_api::NetworkingV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceNetworkingV1NamespacedNetworkPolicy(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedNetworkPolicy # watchNode watchNode(_api::CoreV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1Node(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNode(_api::CoreV1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1Node(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNode # watchLeaseListForAllNamespaces watchLeaseListForAllNamespaces(_api::CoordinationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoordinationV1LeaseListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchLeaseListForAllNamespaces(_api::CoordinationV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoordinationV1LeaseListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchLeaseListForAllNamespaces(_api::CoordinationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoordinationV1beta1LeaseListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchLeaseListForAllNamespaces(_api::CoordinationV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoordinationV1beta1LeaseListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchLeaseListForAllNamespaces # patchNode patchNode(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1Node(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNode(_api::CoreV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1Node(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNode # listPodForAllNamespaces listPodForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1PodForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listPodForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1PodForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listPodForAllNamespaces # watchNamespacedPersistentVolumeClaim watchNamespacedPersistentVolumeClaim(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedPersistentVolumeClaim(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedPersistentVolumeClaim(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedPersistentVolumeClaim(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedPersistentVolumeClaim # readNamespacedNetworkPolicy readNamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readExtensionsV1beta1NamespacedNetworkPolicy(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readExtensionsV1beta1NamespacedNetworkPolicy(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readNamespacedNetworkPolicy(_api::NetworkingV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readNetworkingV1NamespacedNetworkPolicy(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedNetworkPolicy(_api::NetworkingV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readNetworkingV1NamespacedNetworkPolicy(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNamespacedNetworkPolicy # deleteNamespacedPodDisruptionBudget deleteNamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deletePolicyV1beta1NamespacedPodDisruptionBudget(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deletePolicyV1beta1NamespacedPodDisruptionBudget(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNamespacedPodDisruptionBudget # replaceAuditSink replaceAuditSink(_api::AuditregistrationV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAuditregistrationV1alpha1AuditSink(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceAuditSink(_api::AuditregistrationV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAuditregistrationV1alpha1AuditSink(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceAuditSink # watchControllerRevisionListForAllNamespaces watchControllerRevisionListForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1ControllerRevisionListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchControllerRevisionListForAllNamespaces(_api::AppsV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1ControllerRevisionListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchControllerRevisionListForAllNamespaces(_api::AppsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta1ControllerRevisionListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchControllerRevisionListForAllNamespaces(_api::AppsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta1ControllerRevisionListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchControllerRevisionListForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2ControllerRevisionListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchControllerRevisionListForAllNamespaces(_api::AppsV1beta2Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2ControllerRevisionListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchControllerRevisionListForAllNamespaces # deleteCollectionCertificateSigningRequest deleteCollectionCertificateSigningRequest(_api::CertificatesV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCertificatesV1beta1CollectionCertificateSigningRequest(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionCertificateSigningRequest(_api::CertificatesV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCertificatesV1beta1CollectionCertificateSigningRequest(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionCertificateSigningRequest # replaceNamespacedRole replaceNamespacedRole(_api::RbacAuthorizationV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceRbacAuthorizationV1NamespacedRole(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedRole(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceRbacAuthorizationV1NamespacedRole(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedRole(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceRbacAuthorizationV1alpha1NamespacedRole(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceRbacAuthorizationV1alpha1NamespacedRole(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedRole(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceRbacAuthorizationV1beta1NamespacedRole(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceRbacAuthorizationV1beta1NamespacedRole(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedRole # createSelfSubjectRulesReview createSelfSubjectRulesReview(_api::AuthorizationV1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createAuthorizationV1SelfSubjectRulesReview(_api, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) +createSelfSubjectRulesReview(_api::AuthorizationV1Api, response_stream::Channel, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createAuthorizationV1SelfSubjectRulesReview(_api, response_stream, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) createSelfSubjectRulesReview(_api::AuthorizationV1beta1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createAuthorizationV1beta1SelfSubjectRulesReview(_api, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) +createSelfSubjectRulesReview(_api::AuthorizationV1beta1Api, response_stream::Channel, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createAuthorizationV1beta1SelfSubjectRulesReview(_api, response_stream, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) export createSelfSubjectRulesReview # patchNamespacedIngress patchNamespacedIngress(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchExtensionsV1beta1NamespacedIngress(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedIngress(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchExtensionsV1beta1NamespacedIngress(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedIngress(_api::NetworkingV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchNetworkingV1beta1NamespacedIngress(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedIngress(_api::NetworkingV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchNetworkingV1beta1NamespacedIngress(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedIngress # listDeploymentForAllNamespaces listDeploymentForAllNamespaces(_api::AppsV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1DeploymentForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listDeploymentForAllNamespaces(_api::AppsV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1DeploymentForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listDeploymentForAllNamespaces(_api::AppsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta1DeploymentForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listDeploymentForAllNamespaces(_api::AppsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta1DeploymentForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listDeploymentForAllNamespaces(_api::AppsV1beta2Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta2DeploymentForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listDeploymentForAllNamespaces(_api::AppsV1beta2Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta2DeploymentForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listDeploymentForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listExtensionsV1beta1DeploymentForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listDeploymentForAllNamespaces(_api::ExtensionsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listExtensionsV1beta1DeploymentForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listDeploymentForAllNamespaces # watchEndpointsListForAllNamespaces watchEndpointsListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1EndpointsListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchEndpointsListForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1EndpointsListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchEndpointsListForAllNamespaces # watchFlowSchemaList watchFlowSchemaList(_api::FlowcontrolApiserverV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchFlowcontrolApiserverV1alpha1FlowSchemaList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchFlowSchemaList(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchFlowcontrolApiserverV1alpha1FlowSchemaList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchFlowSchemaList # watchNamespacedPodPreset watchNamespacedPodPreset(_api::SettingsV1alpha1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchSettingsV1alpha1NamespacedPodPreset(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedPodPreset(_api::SettingsV1alpha1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchSettingsV1alpha1NamespacedPodPreset(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedPodPreset # listCertificateSigningRequest listCertificateSigningRequest(_api::CertificatesV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCertificatesV1beta1CertificateSigningRequest(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listCertificateSigningRequest(_api::CertificatesV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCertificatesV1beta1CertificateSigningRequest(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listCertificateSigningRequest # watchServiceListForAllNamespaces watchServiceListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1ServiceListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchServiceListForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1ServiceListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchServiceListForAllNamespaces # patchCustomResourceDefinitionStatus patchCustomResourceDefinitionStatus(_api::ApiextensionsV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchApiextensionsV1CustomResourceDefinitionStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchCustomResourceDefinitionStatus(_api::ApiextensionsV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchApiextensionsV1CustomResourceDefinitionStatus(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchCustomResourceDefinitionStatus(_api::ApiextensionsV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchApiextensionsV1beta1CustomResourceDefinitionStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchCustomResourceDefinitionStatus(_api::ApiextensionsV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchApiextensionsV1beta1CustomResourceDefinitionStatus(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchCustomResourceDefinitionStatus # listNodeMetrics listNodeMetrics(_api::MetricsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listMetricsV1beta1NodeMetrics(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNodeMetrics(_api::MetricsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listMetricsV1beta1NodeMetrics(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNodeMetrics # watchCertificateSigningRequestList watchCertificateSigningRequestList(_api::CertificatesV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCertificatesV1beta1CertificateSigningRequestList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchCertificateSigningRequestList(_api::CertificatesV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCertificatesV1beta1CertificateSigningRequestList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchCertificateSigningRequestList # getAPIGroup getAPIGroup(_api::AdmissionregistrationApi; _mediaType=nothing) = getAdmissionregistrationAPIGroup(_api; _mediaType=_mediaType) +getAPIGroup(_api::AdmissionregistrationApi, response_stream::Channel; _mediaType=nothing) = getAdmissionregistrationAPIGroup(_api, response_stream; _mediaType=_mediaType) getAPIGroup(_api::ApiextensionsApi; _mediaType=nothing) = getApiextensionsAPIGroup(_api; _mediaType=_mediaType) +getAPIGroup(_api::ApiextensionsApi, response_stream::Channel; _mediaType=nothing) = getApiextensionsAPIGroup(_api, response_stream; _mediaType=_mediaType) getAPIGroup(_api::ApiregistrationApi; _mediaType=nothing) = getApiregistrationAPIGroup(_api; _mediaType=_mediaType) +getAPIGroup(_api::ApiregistrationApi, response_stream::Channel; _mediaType=nothing) = getApiregistrationAPIGroup(_api, response_stream; _mediaType=_mediaType) getAPIGroup(_api::AppsApi; _mediaType=nothing) = getAppsAPIGroup(_api; _mediaType=_mediaType) +getAPIGroup(_api::AppsApi, response_stream::Channel; _mediaType=nothing) = getAppsAPIGroup(_api, response_stream; _mediaType=_mediaType) getAPIGroup(_api::AuditregistrationApi; _mediaType=nothing) = getAuditregistrationAPIGroup(_api; _mediaType=_mediaType) +getAPIGroup(_api::AuditregistrationApi, response_stream::Channel; _mediaType=nothing) = getAuditregistrationAPIGroup(_api, response_stream; _mediaType=_mediaType) getAPIGroup(_api::AuthenticationApi; _mediaType=nothing) = getAuthenticationAPIGroup(_api; _mediaType=_mediaType) +getAPIGroup(_api::AuthenticationApi, response_stream::Channel; _mediaType=nothing) = getAuthenticationAPIGroup(_api, response_stream; _mediaType=_mediaType) getAPIGroup(_api::AuthorizationApi; _mediaType=nothing) = getAuthorizationAPIGroup(_api; _mediaType=_mediaType) +getAPIGroup(_api::AuthorizationApi, response_stream::Channel; _mediaType=nothing) = getAuthorizationAPIGroup(_api, response_stream; _mediaType=_mediaType) getAPIGroup(_api::AutoscalingApi; _mediaType=nothing) = getAutoscalingAPIGroup(_api; _mediaType=_mediaType) +getAPIGroup(_api::AutoscalingApi, response_stream::Channel; _mediaType=nothing) = getAutoscalingAPIGroup(_api, response_stream; _mediaType=_mediaType) getAPIGroup(_api::BatchApi; _mediaType=nothing) = getBatchAPIGroup(_api; _mediaType=_mediaType) +getAPIGroup(_api::BatchApi, response_stream::Channel; _mediaType=nothing) = getBatchAPIGroup(_api, response_stream; _mediaType=_mediaType) getAPIGroup(_api::CertificatesApi; _mediaType=nothing) = getCertificatesAPIGroup(_api; _mediaType=_mediaType) +getAPIGroup(_api::CertificatesApi, response_stream::Channel; _mediaType=nothing) = getCertificatesAPIGroup(_api, response_stream; _mediaType=_mediaType) getAPIGroup(_api::CoordinationApi; _mediaType=nothing) = getCoordinationAPIGroup(_api; _mediaType=_mediaType) +getAPIGroup(_api::CoordinationApi, response_stream::Channel; _mediaType=nothing) = getCoordinationAPIGroup(_api, response_stream; _mediaType=_mediaType) getAPIGroup(_api::DiscoveryApi; _mediaType=nothing) = getDiscoveryAPIGroup(_api; _mediaType=_mediaType) +getAPIGroup(_api::DiscoveryApi, response_stream::Channel; _mediaType=nothing) = getDiscoveryAPIGroup(_api, response_stream; _mediaType=_mediaType) getAPIGroup(_api::EventsApi; _mediaType=nothing) = getEventsAPIGroup(_api; _mediaType=_mediaType) +getAPIGroup(_api::EventsApi, response_stream::Channel; _mediaType=nothing) = getEventsAPIGroup(_api, response_stream; _mediaType=_mediaType) getAPIGroup(_api::ExtensionsApi; _mediaType=nothing) = getExtensionsAPIGroup(_api; _mediaType=_mediaType) +getAPIGroup(_api::ExtensionsApi, response_stream::Channel; _mediaType=nothing) = getExtensionsAPIGroup(_api, response_stream; _mediaType=_mediaType) getAPIGroup(_api::FlowcontrolApiserverApi; _mediaType=nothing) = getFlowcontrolApiserverAPIGroup(_api; _mediaType=_mediaType) +getAPIGroup(_api::FlowcontrolApiserverApi, response_stream::Channel; _mediaType=nothing) = getFlowcontrolApiserverAPIGroup(_api, response_stream; _mediaType=_mediaType) getAPIGroup(_api::NetworkingApi; _mediaType=nothing) = getNetworkingAPIGroup(_api; _mediaType=_mediaType) +getAPIGroup(_api::NetworkingApi, response_stream::Channel; _mediaType=nothing) = getNetworkingAPIGroup(_api, response_stream; _mediaType=_mediaType) getAPIGroup(_api::NodeApi; _mediaType=nothing) = getNodeAPIGroup(_api; _mediaType=_mediaType) +getAPIGroup(_api::NodeApi, response_stream::Channel; _mediaType=nothing) = getNodeAPIGroup(_api, response_stream; _mediaType=_mediaType) getAPIGroup(_api::PolicyApi; _mediaType=nothing) = getPolicyAPIGroup(_api; _mediaType=_mediaType) +getAPIGroup(_api::PolicyApi, response_stream::Channel; _mediaType=nothing) = getPolicyAPIGroup(_api, response_stream; _mediaType=_mediaType) getAPIGroup(_api::RbacAuthorizationApi; _mediaType=nothing) = getRbacAuthorizationAPIGroup(_api; _mediaType=_mediaType) +getAPIGroup(_api::RbacAuthorizationApi, response_stream::Channel; _mediaType=nothing) = getRbacAuthorizationAPIGroup(_api, response_stream; _mediaType=_mediaType) getAPIGroup(_api::SchedulingApi; _mediaType=nothing) = getSchedulingAPIGroup(_api; _mediaType=_mediaType) +getAPIGroup(_api::SchedulingApi, response_stream::Channel; _mediaType=nothing) = getSchedulingAPIGroup(_api, response_stream; _mediaType=_mediaType) getAPIGroup(_api::SettingsApi; _mediaType=nothing) = getSettingsAPIGroup(_api; _mediaType=_mediaType) +getAPIGroup(_api::SettingsApi, response_stream::Channel; _mediaType=nothing) = getSettingsAPIGroup(_api, response_stream; _mediaType=_mediaType) getAPIGroup(_api::StorageApi; _mediaType=nothing) = getStorageAPIGroup(_api; _mediaType=_mediaType) +getAPIGroup(_api::StorageApi, response_stream::Channel; _mediaType=nothing) = getStorageAPIGroup(_api, response_stream; _mediaType=_mediaType) export getAPIGroup # deleteCollectionNamespacedIngress deleteCollectionNamespacedIngress(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteExtensionsV1beta1CollectionNamespacedIngress(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedIngress(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteExtensionsV1beta1CollectionNamespacedIngress(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionNamespacedIngress(_api::NetworkingV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteNetworkingV1beta1CollectionNamespacedIngress(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedIngress(_api::NetworkingV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteNetworkingV1beta1CollectionNamespacedIngress(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionNamespacedIngress # connectPostNamespacedServiceProxy connectPostNamespacedServiceProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) = connectCoreV1PostNamespacedServiceProxy(_api, name, namespace; path=path, _mediaType=_mediaType) +connectPostNamespacedServiceProxy(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; path=nothing, _mediaType=nothing) = connectCoreV1PostNamespacedServiceProxy(_api, response_stream, name, namespace; path=path, _mediaType=_mediaType) export connectPostNamespacedServiceProxy # deleteNamespacedRole deleteNamespacedRole(_api::RbacAuthorizationV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1NamespacedRole(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedRole(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1NamespacedRole(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteNamespacedRole(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1alpha1NamespacedRole(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1alpha1NamespacedRole(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteNamespacedRole(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1beta1NamespacedRole(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1beta1NamespacedRole(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNamespacedRole # deleteNamespacedSecret deleteNamespacedSecret(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1NamespacedSecret(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedSecret(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1NamespacedSecret(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNamespacedSecret # connectHeadNamespacedPodProxyWithPath connectHeadNamespacedPodProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1HeadNamespacedPodProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) +connectHeadNamespacedPodProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1HeadNamespacedPodProxyWithPath(_api, response_stream, name, namespace, path; path2=path2, _mediaType=_mediaType) export connectHeadNamespacedPodProxyWithPath # readNamespacedPersistentVolumeClaim readNamespacedPersistentVolumeClaim(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1NamespacedPersistentVolumeClaim(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedPersistentVolumeClaim(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1NamespacedPersistentVolumeClaim(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNamespacedPersistentVolumeClaim # connectDeleteNodeProxyWithPath connectDeleteNodeProxyWithPath(_api::CoreV1Api, name::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1DeleteNodeProxyWithPath(_api, name, path; path2=path2, _mediaType=_mediaType) +connectDeleteNodeProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1DeleteNodeProxyWithPath(_api, response_stream, name, path; path2=path2, _mediaType=_mediaType) export connectDeleteNodeProxyWithPath # patchPodSecurityPolicy patchPodSecurityPolicy(_api::ExtensionsV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchExtensionsV1beta1PodSecurityPolicy(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchPodSecurityPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchExtensionsV1beta1PodSecurityPolicy(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchPodSecurityPolicy(_api::PolicyV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchPolicyV1beta1PodSecurityPolicy(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchPodSecurityPolicy(_api::PolicyV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchPolicyV1beta1PodSecurityPolicy(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchPodSecurityPolicy # readAuditSink readAuditSink(_api::AuditregistrationV1alpha1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAuditregistrationV1alpha1AuditSink(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readAuditSink(_api::AuditregistrationV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAuditregistrationV1alpha1AuditSink(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readAuditSink # readPriorityLevelConfigurationStatus readPriorityLevelConfigurationStatus(_api::FlowcontrolApiserverV1alpha1Api, name::String; pretty=nothing, _mediaType=nothing) = readFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus(_api, name; pretty=pretty, _mediaType=_mediaType) +readPriorityLevelConfigurationStatus(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) = readFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus(_api, response_stream, name; pretty=pretty, _mediaType=_mediaType) export readPriorityLevelConfigurationStatus # deleteCollectionNamespacedStatefulSet deleteCollectionNamespacedStatefulSet(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAppsV1CollectionNamespacedStatefulSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedStatefulSet(_api::AppsV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAppsV1CollectionNamespacedStatefulSet(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionNamespacedStatefulSet(_api::AppsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAppsV1beta1CollectionNamespacedStatefulSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedStatefulSet(_api::AppsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAppsV1beta1CollectionNamespacedStatefulSet(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionNamespacedStatefulSet(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAppsV1beta2CollectionNamespacedStatefulSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedStatefulSet(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAppsV1beta2CollectionNamespacedStatefulSet(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionNamespacedStatefulSet # deleteNamespacedDaemonSet deleteNamespacedDaemonSet(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAppsV1NamespacedDaemonSet(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedDaemonSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAppsV1NamespacedDaemonSet(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteNamespacedDaemonSet(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAppsV1beta2NamespacedDaemonSet(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedDaemonSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAppsV1beta2NamespacedDaemonSet(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteNamespacedDaemonSet(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteExtensionsV1beta1NamespacedDaemonSet(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedDaemonSet(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteExtensionsV1beta1NamespacedDaemonSet(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNamespacedDaemonSet # patchMutatingWebhookConfiguration patchMutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAdmissionregistrationV1MutatingWebhookConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchMutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAdmissionregistrationV1MutatingWebhookConfiguration(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchMutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchMutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchMutatingWebhookConfiguration # connectPutNodeProxy connectPutNodeProxy(_api::CoreV1Api, name::String; path=nothing, _mediaType=nothing) = connectCoreV1PutNodeProxy(_api, name; path=path, _mediaType=_mediaType) +connectPutNodeProxy(_api::CoreV1Api, response_stream::Channel, name::String; path=nothing, _mediaType=nothing) = connectCoreV1PutNodeProxy(_api, response_stream, name; path=path, _mediaType=_mediaType) export connectPutNodeProxy # watchCronJobListForAllNamespaces watchCronJobListForAllNamespaces(_api::BatchV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchBatchV1beta1CronJobListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchCronJobListForAllNamespaces(_api::BatchV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchBatchV1beta1CronJobListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchCronJobListForAllNamespaces(_api::BatchV2alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchBatchV2alpha1CronJobListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchCronJobListForAllNamespaces(_api::BatchV2alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchBatchV2alpha1CronJobListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchCronJobListForAllNamespaces # connectDeleteNamespacedServiceProxy connectDeleteNamespacedServiceProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) = connectCoreV1DeleteNamespacedServiceProxy(_api, name, namespace; path=path, _mediaType=_mediaType) +connectDeleteNamespacedServiceProxy(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; path=nothing, _mediaType=nothing) = connectCoreV1DeleteNamespacedServiceProxy(_api, response_stream, name, namespace; path=path, _mediaType=_mediaType) export connectDeleteNamespacedServiceProxy # deleteCollectionStorageClass deleteCollectionStorageClass(_api::StorageV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteStorageV1CollectionStorageClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionStorageClass(_api::StorageV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteStorageV1CollectionStorageClass(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionStorageClass(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteStorageV1beta1CollectionStorageClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionStorageClass(_api::StorageV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteStorageV1beta1CollectionStorageClass(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionStorageClass # connectPatchNamespacedServiceProxy connectPatchNamespacedServiceProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) = connectCoreV1PatchNamespacedServiceProxy(_api, name, namespace; path=path, _mediaType=_mediaType) +connectPatchNamespacedServiceProxy(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; path=nothing, _mediaType=nothing) = connectCoreV1PatchNamespacedServiceProxy(_api, response_stream, name, namespace; path=path, _mediaType=_mediaType) export connectPatchNamespacedServiceProxy # replaceNamespacedHorizontalPodAutoscaler replaceNamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAutoscalingV1NamespacedHorizontalPodAutoscaler(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAutoscalingV1NamespacedHorizontalPodAutoscaler(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedHorizontalPodAutoscaler # listClusterRoleBinding listClusterRoleBinding(_api::RbacAuthorizationV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1ClusterRoleBinding(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listClusterRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1ClusterRoleBinding(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1alpha1ClusterRoleBinding(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1alpha1ClusterRoleBinding(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listClusterRoleBinding(_api::RbacAuthorizationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1beta1ClusterRoleBinding(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1beta1ClusterRoleBinding(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listClusterRoleBinding # readNamespacedResourceQuotaStatus readNamespacedResourceQuotaStatus(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readCoreV1NamespacedResourceQuotaStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedResourceQuotaStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readCoreV1NamespacedResourceQuotaStatus(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) export readNamespacedResourceQuotaStatus # replaceNamespacedEndpoints replaceNamespacedEndpoints(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedEndpoints(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedEndpoints(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedEndpoints(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedEndpoints # replaceNamespacedStatefulSetScale replaceNamespacedStatefulSetScale(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1NamespacedStatefulSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedStatefulSetScale(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1NamespacedStatefulSetScale(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedStatefulSetScale(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta1NamespacedStatefulSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedStatefulSetScale(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta1NamespacedStatefulSetScale(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedStatefulSetScale(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta2NamespacedStatefulSetScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedStatefulSetScale(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta2NamespacedStatefulSetScale(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedStatefulSetScale # watchNamespacedCronJob watchNamespacedCronJob(_api::BatchV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchBatchV1beta1NamespacedCronJob(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedCronJob(_api::BatchV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchBatchV1beta1NamespacedCronJob(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedCronJob(_api::BatchV2alpha1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchBatchV2alpha1NamespacedCronJob(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedCronJob(_api::BatchV2alpha1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchBatchV2alpha1NamespacedCronJob(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedCronJob # watchAuditSink watchAuditSink(_api::AuditregistrationV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAuditregistrationV1alpha1AuditSink(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchAuditSink(_api::AuditregistrationV1alpha1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAuditregistrationV1alpha1AuditSink(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchAuditSink # watchAPIService watchAPIService(_api::ApiregistrationV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchApiregistrationV1APIService(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchAPIService(_api::ApiregistrationV1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchApiregistrationV1APIService(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchAPIService(_api::ApiregistrationV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchApiregistrationV1beta1APIService(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchAPIService(_api::ApiregistrationV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchApiregistrationV1beta1APIService(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchAPIService # watchServiceAccountListForAllNamespaces watchServiceAccountListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1ServiceAccountListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchServiceAccountListForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1ServiceAccountListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchServiceAccountListForAllNamespaces # readNamespacedReplicaSet readNamespacedReplicaSet(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAppsV1NamespacedReplicaSet(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedReplicaSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAppsV1NamespacedReplicaSet(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readNamespacedReplicaSet(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAppsV1beta2NamespacedReplicaSet(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedReplicaSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAppsV1beta2NamespacedReplicaSet(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readNamespacedReplicaSet(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readExtensionsV1beta1NamespacedReplicaSet(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedReplicaSet(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readExtensionsV1beta1NamespacedReplicaSet(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNamespacedReplicaSet # patchVolumeAttachmentStatus patchVolumeAttachmentStatus(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchStorageV1VolumeAttachmentStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchVolumeAttachmentStatus(_api::StorageV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchStorageV1VolumeAttachmentStatus(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchVolumeAttachmentStatus # readNamespacedControllerRevision readNamespacedControllerRevision(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAppsV1NamespacedControllerRevision(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedControllerRevision(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAppsV1NamespacedControllerRevision(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readNamespacedControllerRevision(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAppsV1beta1NamespacedControllerRevision(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedControllerRevision(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAppsV1beta1NamespacedControllerRevision(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readNamespacedControllerRevision(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAppsV1beta2NamespacedControllerRevision(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedControllerRevision(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAppsV1beta2NamespacedControllerRevision(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNamespacedControllerRevision # watchNamespacedDaemonSetList watchNamespacedDaemonSetList(_api::AppsV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1NamespacedDaemonSetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedDaemonSetList(_api::AppsV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1NamespacedDaemonSetList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedDaemonSetList(_api::AppsV1beta2Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2NamespacedDaemonSetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedDaemonSetList(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2NamespacedDaemonSetList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedDaemonSetList(_api::ExtensionsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1NamespacedDaemonSetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedDaemonSetList(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1NamespacedDaemonSetList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedDaemonSetList # connectPostNamespacedPodProxyWithPath connectPostNamespacedPodProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1PostNamespacedPodProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) +connectPostNamespacedPodProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1PostNamespacedPodProxyWithPath(_api, response_stream, name, namespace, path; path2=path2, _mediaType=_mediaType) export connectPostNamespacedPodProxyWithPath # connectHeadNodeProxyWithPath connectHeadNodeProxyWithPath(_api::CoreV1Api, name::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1HeadNodeProxyWithPath(_api, name, path; path2=path2, _mediaType=_mediaType) +connectHeadNodeProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1HeadNodeProxyWithPath(_api, response_stream, name, path; path2=path2, _mediaType=_mediaType) export connectHeadNodeProxyWithPath # replaceNamespacedDaemonSet replaceNamespacedDaemonSet(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1NamespacedDaemonSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedDaemonSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1NamespacedDaemonSet(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedDaemonSet(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta2NamespacedDaemonSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedDaemonSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta2NamespacedDaemonSet(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedDaemonSet(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceExtensionsV1beta1NamespacedDaemonSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedDaemonSet(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceExtensionsV1beta1NamespacedDaemonSet(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedDaemonSet # replaceRuntimeClass replaceRuntimeClass(_api::NodeV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceNodeV1alpha1RuntimeClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceRuntimeClass(_api::NodeV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceNodeV1alpha1RuntimeClass(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceRuntimeClass(_api::NodeV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceNodeV1beta1RuntimeClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceRuntimeClass(_api::NodeV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceNodeV1beta1RuntimeClass(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceRuntimeClass # replaceNamespacedLimitRange replaceNamespacedLimitRange(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedLimitRange(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedLimitRange(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedLimitRange(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedLimitRange # deleteCollectionNamespacedRole deleteCollectionNamespacedRole(_api::RbacAuthorizationV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1CollectionNamespacedRole(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedRole(_api::RbacAuthorizationV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1CollectionNamespacedRole(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionNamespacedRole(_api::RbacAuthorizationV1alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1alpha1CollectionNamespacedRole(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1alpha1CollectionNamespacedRole(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionNamespacedRole(_api::RbacAuthorizationV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1beta1CollectionNamespacedRole(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1beta1CollectionNamespacedRole(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionNamespacedRole # watchNamespacedResourceQuotaList watchNamespacedResourceQuotaList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedResourceQuotaList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedResourceQuotaList(_api::CoreV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedResourceQuotaList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedResourceQuotaList # patchFlowSchema patchFlowSchema(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchFlowcontrolApiserverV1alpha1FlowSchema(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchFlowSchema(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchFlowcontrolApiserverV1alpha1FlowSchema(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchFlowSchema # readNode readNode(_api::CoreV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1Node(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNode(_api::CoreV1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1Node(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNode # deleteCollectionClusterRole deleteCollectionClusterRole(_api::RbacAuthorizationV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1CollectionClusterRole(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionClusterRole(_api::RbacAuthorizationV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1CollectionClusterRole(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionClusterRole(_api::RbacAuthorizationV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1alpha1CollectionClusterRole(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionClusterRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1alpha1CollectionClusterRole(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionClusterRole(_api::RbacAuthorizationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1beta1CollectionClusterRole(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionClusterRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1beta1CollectionClusterRole(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionClusterRole # patchNamespacedCronJob patchNamespacedCronJob(_api::BatchV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchBatchV1beta1NamespacedCronJob(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedCronJob(_api::BatchV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchBatchV1beta1NamespacedCronJob(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedCronJob(_api::BatchV2alpha1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchBatchV2alpha1NamespacedCronJob(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedCronJob(_api::BatchV2alpha1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchBatchV2alpha1NamespacedCronJob(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedCronJob # createFlowSchema createFlowSchema(_api::FlowcontrolApiserverV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createFlowcontrolApiserverV1alpha1FlowSchema(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createFlowSchema(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createFlowcontrolApiserverV1alpha1FlowSchema(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createFlowSchema # createNamespacedRoleBinding createNamespacedRoleBinding(_api::RbacAuthorizationV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createRbacAuthorizationV1NamespacedRoleBinding(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createRbacAuthorizationV1NamespacedRoleBinding(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createNamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createRbacAuthorizationV1alpha1NamespacedRoleBinding(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createRbacAuthorizationV1alpha1NamespacedRoleBinding(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createNamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createRbacAuthorizationV1beta1NamespacedRoleBinding(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createRbacAuthorizationV1beta1NamespacedRoleBinding(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNamespacedRoleBinding # listNamespacedEvent listNamespacedEvent(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1NamespacedEvent(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedEvent(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1NamespacedEvent(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listNamespacedEvent(_api::EventsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listEventsV1beta1NamespacedEvent(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedEvent(_api::EventsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listEventsV1beta1NamespacedEvent(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNamespacedEvent # deleteCollectionNamespacedEvent deleteCollectionNamespacedEvent(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoreV1CollectionNamespacedEvent(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedEvent(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoreV1CollectionNamespacedEvent(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionNamespacedEvent(_api::EventsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteEventsV1beta1CollectionNamespacedEvent(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedEvent(_api::EventsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteEventsV1beta1CollectionNamespacedEvent(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionNamespacedEvent # getAPIResources getAPIResources(_api::AdmissionregistrationV1Api; _mediaType=nothing) = getAdmissionregistrationV1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::AdmissionregistrationV1Api, response_stream::Channel; _mediaType=nothing) = getAdmissionregistrationV1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::AdmissionregistrationV1beta1Api; _mediaType=nothing) = getAdmissionregistrationV1beta1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::AdmissionregistrationV1beta1Api, response_stream::Channel; _mediaType=nothing) = getAdmissionregistrationV1beta1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::ApiextensionsV1Api; _mediaType=nothing) = getApiextensionsV1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::ApiextensionsV1Api, response_stream::Channel; _mediaType=nothing) = getApiextensionsV1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::ApiextensionsV1beta1Api; _mediaType=nothing) = getApiextensionsV1beta1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::ApiextensionsV1beta1Api, response_stream::Channel; _mediaType=nothing) = getApiextensionsV1beta1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::ApiregistrationV1Api; _mediaType=nothing) = getApiregistrationV1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::ApiregistrationV1Api, response_stream::Channel; _mediaType=nothing) = getApiregistrationV1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::ApiregistrationV1beta1Api; _mediaType=nothing) = getApiregistrationV1beta1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::ApiregistrationV1beta1Api, response_stream::Channel; _mediaType=nothing) = getApiregistrationV1beta1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::AppsV1Api; _mediaType=nothing) = getAppsV1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::AppsV1Api, response_stream::Channel; _mediaType=nothing) = getAppsV1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::AppsV1beta1Api; _mediaType=nothing) = getAppsV1beta1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::AppsV1beta1Api, response_stream::Channel; _mediaType=nothing) = getAppsV1beta1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::AppsV1beta2Api; _mediaType=nothing) = getAppsV1beta2APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::AppsV1beta2Api, response_stream::Channel; _mediaType=nothing) = getAppsV1beta2APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::AuditregistrationV1alpha1Api; _mediaType=nothing) = getAuditregistrationV1alpha1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::AuditregistrationV1alpha1Api, response_stream::Channel; _mediaType=nothing) = getAuditregistrationV1alpha1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::AuthenticationV1Api; _mediaType=nothing) = getAuthenticationV1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::AuthenticationV1Api, response_stream::Channel; _mediaType=nothing) = getAuthenticationV1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::AuthenticationV1beta1Api; _mediaType=nothing) = getAuthenticationV1beta1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::AuthenticationV1beta1Api, response_stream::Channel; _mediaType=nothing) = getAuthenticationV1beta1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::AuthorizationV1Api; _mediaType=nothing) = getAuthorizationV1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::AuthorizationV1Api, response_stream::Channel; _mediaType=nothing) = getAuthorizationV1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::AuthorizationV1beta1Api; _mediaType=nothing) = getAuthorizationV1beta1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::AuthorizationV1beta1Api, response_stream::Channel; _mediaType=nothing) = getAuthorizationV1beta1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::AutoscalingV1Api; _mediaType=nothing) = getAutoscalingV1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::AutoscalingV1Api, response_stream::Channel; _mediaType=nothing) = getAutoscalingV1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::AutoscalingV2beta1Api; _mediaType=nothing) = getAutoscalingV2beta1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::AutoscalingV2beta1Api, response_stream::Channel; _mediaType=nothing) = getAutoscalingV2beta1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::AutoscalingV2beta2Api; _mediaType=nothing) = getAutoscalingV2beta2APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::AutoscalingV2beta2Api, response_stream::Channel; _mediaType=nothing) = getAutoscalingV2beta2APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::BatchV1Api; _mediaType=nothing) = getBatchV1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::BatchV1Api, response_stream::Channel; _mediaType=nothing) = getBatchV1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::BatchV1beta1Api; _mediaType=nothing) = getBatchV1beta1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::BatchV1beta1Api, response_stream::Channel; _mediaType=nothing) = getBatchV1beta1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::BatchV2alpha1Api; _mediaType=nothing) = getBatchV2alpha1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::BatchV2alpha1Api, response_stream::Channel; _mediaType=nothing) = getBatchV2alpha1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::CertificatesV1beta1Api; _mediaType=nothing) = getCertificatesV1beta1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::CertificatesV1beta1Api, response_stream::Channel; _mediaType=nothing) = getCertificatesV1beta1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::CoordinationV1Api; _mediaType=nothing) = getCoordinationV1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::CoordinationV1Api, response_stream::Channel; _mediaType=nothing) = getCoordinationV1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::CoordinationV1beta1Api; _mediaType=nothing) = getCoordinationV1beta1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::CoordinationV1beta1Api, response_stream::Channel; _mediaType=nothing) = getCoordinationV1beta1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::CoreV1Api; _mediaType=nothing) = getCoreV1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::CoreV1Api, response_stream::Channel; _mediaType=nothing) = getCoreV1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::DiscoveryV1beta1Api; _mediaType=nothing) = getDiscoveryV1beta1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::DiscoveryV1beta1Api, response_stream::Channel; _mediaType=nothing) = getDiscoveryV1beta1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::EventsV1beta1Api; _mediaType=nothing) = getEventsV1beta1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::EventsV1beta1Api, response_stream::Channel; _mediaType=nothing) = getEventsV1beta1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::ExtensionsV1beta1Api; _mediaType=nothing) = getExtensionsV1beta1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::ExtensionsV1beta1Api, response_stream::Channel; _mediaType=nothing) = getExtensionsV1beta1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::FlowcontrolApiserverV1alpha1Api; _mediaType=nothing) = getFlowcontrolApiserverV1alpha1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel; _mediaType=nothing) = getFlowcontrolApiserverV1alpha1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::NetworkingV1Api; _mediaType=nothing) = getNetworkingV1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::NetworkingV1Api, response_stream::Channel; _mediaType=nothing) = getNetworkingV1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::NetworkingV1beta1Api; _mediaType=nothing) = getNetworkingV1beta1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::NetworkingV1beta1Api, response_stream::Channel; _mediaType=nothing) = getNetworkingV1beta1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::NodeV1alpha1Api; _mediaType=nothing) = getNodeV1alpha1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::NodeV1alpha1Api, response_stream::Channel; _mediaType=nothing) = getNodeV1alpha1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::NodeV1beta1Api; _mediaType=nothing) = getNodeV1beta1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::NodeV1beta1Api, response_stream::Channel; _mediaType=nothing) = getNodeV1beta1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::PolicyV1beta1Api; _mediaType=nothing) = getPolicyV1beta1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::PolicyV1beta1Api, response_stream::Channel; _mediaType=nothing) = getPolicyV1beta1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::RbacAuthorizationV1Api; _mediaType=nothing) = getRbacAuthorizationV1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::RbacAuthorizationV1Api, response_stream::Channel; _mediaType=nothing) = getRbacAuthorizationV1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::RbacAuthorizationV1alpha1Api; _mediaType=nothing) = getRbacAuthorizationV1alpha1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel; _mediaType=nothing) = getRbacAuthorizationV1alpha1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::RbacAuthorizationV1beta1Api; _mediaType=nothing) = getRbacAuthorizationV1beta1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::RbacAuthorizationV1beta1Api, response_stream::Channel; _mediaType=nothing) = getRbacAuthorizationV1beta1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::SchedulingV1Api; _mediaType=nothing) = getSchedulingV1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::SchedulingV1Api, response_stream::Channel; _mediaType=nothing) = getSchedulingV1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::SchedulingV1alpha1Api; _mediaType=nothing) = getSchedulingV1alpha1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::SchedulingV1alpha1Api, response_stream::Channel; _mediaType=nothing) = getSchedulingV1alpha1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::SchedulingV1beta1Api; _mediaType=nothing) = getSchedulingV1beta1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::SchedulingV1beta1Api, response_stream::Channel; _mediaType=nothing) = getSchedulingV1beta1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::SettingsV1alpha1Api; _mediaType=nothing) = getSettingsV1alpha1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::SettingsV1alpha1Api, response_stream::Channel; _mediaType=nothing) = getSettingsV1alpha1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::StorageV1Api; _mediaType=nothing) = getStorageV1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::StorageV1Api, response_stream::Channel; _mediaType=nothing) = getStorageV1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::StorageV1alpha1Api; _mediaType=nothing) = getStorageV1alpha1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::StorageV1alpha1Api, response_stream::Channel; _mediaType=nothing) = getStorageV1alpha1APIResources(_api, response_stream; _mediaType=_mediaType) getAPIResources(_api::StorageV1beta1Api; _mediaType=nothing) = getStorageV1beta1APIResources(_api; _mediaType=_mediaType) +getAPIResources(_api::StorageV1beta1Api, response_stream::Channel; _mediaType=nothing) = getStorageV1beta1APIResources(_api, response_stream; _mediaType=_mediaType) export getAPIResources # replaceNamespaceStatus replaceNamespaceStatus(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespaceStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespaceStatus(_api::CoreV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespaceStatus(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespaceStatus # replaceNamespacedIngressStatus replaceNamespacedIngressStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceExtensionsV1beta1NamespacedIngressStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedIngressStatus(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceExtensionsV1beta1NamespacedIngressStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedIngressStatus(_api::NetworkingV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceNetworkingV1beta1NamespacedIngressStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedIngressStatus(_api::NetworkingV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceNetworkingV1beta1NamespacedIngressStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedIngressStatus # connectOptionsNamespacedPodProxy connectOptionsNamespacedPodProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) = connectCoreV1OptionsNamespacedPodProxy(_api, name, namespace; path=path, _mediaType=_mediaType) +connectOptionsNamespacedPodProxy(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; path=nothing, _mediaType=nothing) = connectCoreV1OptionsNamespacedPodProxy(_api, response_stream, name, namespace; path=path, _mediaType=_mediaType) export connectOptionsNamespacedPodProxy # patchAPIServiceStatus patchAPIServiceStatus(_api::ApiregistrationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchApiregistrationV1APIServiceStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchAPIServiceStatus(_api::ApiregistrationV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchApiregistrationV1APIServiceStatus(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchAPIServiceStatus(_api::ApiregistrationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchApiregistrationV1beta1APIServiceStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchAPIServiceStatus(_api::ApiregistrationV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchApiregistrationV1beta1APIServiceStatus(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchAPIServiceStatus # connectPatchNamespacedServiceProxyWithPath connectPatchNamespacedServiceProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1PatchNamespacedServiceProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) +connectPatchNamespacedServiceProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1PatchNamespacedServiceProxyWithPath(_api, response_stream, name, namespace, path; path2=path2, _mediaType=_mediaType) export connectPatchNamespacedServiceProxyWithPath # createPriorityClass createPriorityClass(_api::SchedulingV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createSchedulingV1PriorityClass(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createPriorityClass(_api::SchedulingV1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createSchedulingV1PriorityClass(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createPriorityClass(_api::SchedulingV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createSchedulingV1alpha1PriorityClass(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createPriorityClass(_api::SchedulingV1alpha1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createSchedulingV1alpha1PriorityClass(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createPriorityClass(_api::SchedulingV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createSchedulingV1beta1PriorityClass(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createPriorityClass(_api::SchedulingV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createSchedulingV1beta1PriorityClass(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createPriorityClass # replaceNamespacedDeployment replaceNamespacedDeployment(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1NamespacedDeployment(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedDeployment(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1NamespacedDeployment(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedDeployment(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta1NamespacedDeployment(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedDeployment(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta1NamespacedDeployment(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedDeployment(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta2NamespacedDeployment(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedDeployment(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceAppsV1beta2NamespacedDeployment(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceNamespacedDeployment(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceExtensionsV1beta1NamespacedDeployment(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedDeployment(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceExtensionsV1beta1NamespacedDeployment(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedDeployment # patchNamespacedReplicaSet patchNamespacedReplicaSet(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1NamespacedReplicaSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedReplicaSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1NamespacedReplicaSet(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedReplicaSet(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta2NamespacedReplicaSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedReplicaSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta2NamespacedReplicaSet(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedReplicaSet(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchExtensionsV1beta1NamespacedReplicaSet(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedReplicaSet(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchExtensionsV1beta1NamespacedReplicaSet(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedReplicaSet # readComponentStatus readComponentStatus(_api::CoreV1Api, name::String; pretty=nothing, _mediaType=nothing) = readCoreV1ComponentStatus(_api, name; pretty=pretty, _mediaType=_mediaType) +readComponentStatus(_api::CoreV1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) = readCoreV1ComponentStatus(_api, response_stream, name; pretty=pretty, _mediaType=_mediaType) export readComponentStatus # watchNamespacedPodTemplateList watchNamespacedPodTemplateList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedPodTemplateList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedPodTemplateList(_api::CoreV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedPodTemplateList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedPodTemplateList # replacePersistentVolumeStatus replacePersistentVolumeStatus(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1PersistentVolumeStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replacePersistentVolumeStatus(_api::CoreV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1PersistentVolumeStatus(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replacePersistentVolumeStatus # connectOptionsNamespacedServiceProxy connectOptionsNamespacedServiceProxy(_api::CoreV1Api, name::String, namespace::String; path=nothing, _mediaType=nothing) = connectCoreV1OptionsNamespacedServiceProxy(_api, name, namespace; path=path, _mediaType=_mediaType) +connectOptionsNamespacedServiceProxy(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; path=nothing, _mediaType=nothing) = connectCoreV1OptionsNamespacedServiceProxy(_api, response_stream, name, namespace; path=path, _mediaType=_mediaType) export connectOptionsNamespacedServiceProxy # listNamespacedJob listNamespacedJob(_api::BatchV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listBatchV1NamespacedJob(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedJob(_api::BatchV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listBatchV1NamespacedJob(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNamespacedJob # createNamespacedService createNamespacedService(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1NamespacedService(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedService(_api::CoreV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1NamespacedService(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNamespacedService # readNamespacedService readNamespacedService(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1NamespacedService(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedService(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1NamespacedService(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNamespacedService # listNamespace listNamespace(_api::CoreV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1Namespace(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespace(_api::CoreV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1Namespace(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNamespace # createNamespacedHorizontalPodAutoscaler createNamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAutoscalingV1NamespacedHorizontalPodAutoscaler(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAutoscalingV1NamespacedHorizontalPodAutoscaler(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNamespacedHorizontalPodAutoscaler # readNamespacedPodPreset readNamespacedPodPreset(_api::SettingsV1alpha1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readSettingsV1alpha1NamespacedPodPreset(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedPodPreset(_api::SettingsV1alpha1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readSettingsV1alpha1NamespacedPodPreset(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNamespacedPodPreset # patchAuditSink patchAuditSink(_api::AuditregistrationV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAuditregistrationV1alpha1AuditSink(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchAuditSink(_api::AuditregistrationV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAuditregistrationV1alpha1AuditSink(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchAuditSink # createMutatingWebhookConfiguration createMutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAdmissionregistrationV1MutatingWebhookConfiguration(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createMutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAdmissionregistrationV1MutatingWebhookConfiguration(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createMutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createMutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createMutatingWebhookConfiguration # replaceNamespacedReplicationController replaceNamespacedReplicationController(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedReplicationController(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedReplicationController(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedReplicationController(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedReplicationController # listCSINode listCSINode(_api::StorageV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listStorageV1CSINode(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listCSINode(_api::StorageV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listStorageV1CSINode(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listCSINode(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listStorageV1beta1CSINode(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listCSINode(_api::StorageV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listStorageV1beta1CSINode(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listCSINode # createNamespacedEndpointSlice createNamespacedEndpointSlice(_api::DiscoveryV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createDiscoveryV1beta1NamespacedEndpointSlice(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedEndpointSlice(_api::DiscoveryV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createDiscoveryV1beta1NamespacedEndpointSlice(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNamespacedEndpointSlice # patchNamespacedResourceQuotaStatus patchNamespacedResourceQuotaStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedResourceQuotaStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedResourceQuotaStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedResourceQuotaStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedResourceQuotaStatus # patchPersistentVolume patchPersistentVolume(_api::CoreV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1PersistentVolume(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchPersistentVolume(_api::CoreV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1PersistentVolume(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchPersistentVolume # watchClusterRoleList watchClusterRoleList(_api::RbacAuthorizationV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1ClusterRoleList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchClusterRoleList(_api::RbacAuthorizationV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1ClusterRoleList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchClusterRoleList(_api::RbacAuthorizationV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1alpha1ClusterRoleList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchClusterRoleList(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1alpha1ClusterRoleList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchClusterRoleList(_api::RbacAuthorizationV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1beta1ClusterRoleList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchClusterRoleList(_api::RbacAuthorizationV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1beta1ClusterRoleList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchClusterRoleList # createNamespacedPodTemplate createNamespacedPodTemplate(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1NamespacedPodTemplate(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedPodTemplate(_api::CoreV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1NamespacedPodTemplate(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNamespacedPodTemplate # readNamespacedStatefulSet readNamespacedStatefulSet(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAppsV1NamespacedStatefulSet(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedStatefulSet(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAppsV1NamespacedStatefulSet(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readNamespacedStatefulSet(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAppsV1beta1NamespacedStatefulSet(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedStatefulSet(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAppsV1beta1NamespacedStatefulSet(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readNamespacedStatefulSet(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAppsV1beta2NamespacedStatefulSet(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedStatefulSet(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readAppsV1beta2NamespacedStatefulSet(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNamespacedStatefulSet # replaceNamespacedServiceStatus replaceNamespacedServiceStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedServiceStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedServiceStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedServiceStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedServiceStatus # createVolumeAttachment createVolumeAttachment(_api::StorageV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createStorageV1VolumeAttachment(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createVolumeAttachment(_api::StorageV1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createStorageV1VolumeAttachment(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createVolumeAttachment(_api::StorageV1alpha1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createStorageV1alpha1VolumeAttachment(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createVolumeAttachment(_api::StorageV1alpha1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createStorageV1alpha1VolumeAttachment(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createVolumeAttachment(_api::StorageV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createStorageV1beta1VolumeAttachment(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createVolumeAttachment(_api::StorageV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createStorageV1beta1VolumeAttachment(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createVolumeAttachment # watchNamespacedIngress watchNamespacedIngress(_api::ExtensionsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1NamespacedIngress(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedIngress(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1NamespacedIngress(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedIngress(_api::NetworkingV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchNetworkingV1beta1NamespacedIngress(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedIngress(_api::NetworkingV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchNetworkingV1beta1NamespacedIngress(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedIngress # watchResourceQuotaListForAllNamespaces watchResourceQuotaListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1ResourceQuotaListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchResourceQuotaListForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1ResourceQuotaListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchResourceQuotaListForAllNamespaces # listCronJobForAllNamespaces listCronJobForAllNamespaces(_api::BatchV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listBatchV1beta1CronJobForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listCronJobForAllNamespaces(_api::BatchV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listBatchV1beta1CronJobForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listCronJobForAllNamespaces(_api::BatchV2alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listBatchV2alpha1CronJobForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listCronJobForAllNamespaces(_api::BatchV2alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listBatchV2alpha1CronJobForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listCronJobForAllNamespaces # createCertificateSigningRequest createCertificateSigningRequest(_api::CertificatesV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCertificatesV1beta1CertificateSigningRequest(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createCertificateSigningRequest(_api::CertificatesV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCertificatesV1beta1CertificateSigningRequest(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createCertificateSigningRequest # watchMutatingWebhookConfiguration watchMutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAdmissionregistrationV1MutatingWebhookConfiguration(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchMutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAdmissionregistrationV1MutatingWebhookConfiguration(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchMutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchMutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchMutatingWebhookConfiguration # listConfigMapForAllNamespaces listConfigMapForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1ConfigMapForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listConfigMapForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1ConfigMapForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listConfigMapForAllNamespaces # replaceNamespacedPodDisruptionBudgetStatus replaceNamespacedPodDisruptionBudgetStatus(_api::PolicyV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replacePolicyV1beta1NamespacedPodDisruptionBudgetStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedPodDisruptionBudgetStatus(_api::PolicyV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replacePolicyV1beta1NamespacedPodDisruptionBudgetStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedPodDisruptionBudgetStatus # watchNamespacedRole watchNamespacedRole(_api::RbacAuthorizationV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1NamespacedRole(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedRole(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1NamespacedRole(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedRole(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1alpha1NamespacedRole(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1alpha1NamespacedRole(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedRole(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1beta1NamespacedRole(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1beta1NamespacedRole(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedRole # readCustomResourceDefinition readCustomResourceDefinition(_api::ApiextensionsV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readApiextensionsV1CustomResourceDefinition(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readCustomResourceDefinition(_api::ApiextensionsV1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readApiextensionsV1CustomResourceDefinition(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readCustomResourceDefinition(_api::ApiextensionsV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readApiextensionsV1beta1CustomResourceDefinition(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readCustomResourceDefinition(_api::ApiextensionsV1beta1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readApiextensionsV1beta1CustomResourceDefinition(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readCustomResourceDefinition # deleteCollectionNamespacedResourceQuota deleteCollectionNamespacedResourceQuota(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoreV1CollectionNamespacedResourceQuota(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedResourceQuota(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteCoreV1CollectionNamespacedResourceQuota(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionNamespacedResourceQuota # patchRuntimeClass patchRuntimeClass(_api::NodeV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchNodeV1alpha1RuntimeClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchRuntimeClass(_api::NodeV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchNodeV1alpha1RuntimeClass(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchRuntimeClass(_api::NodeV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchNodeV1beta1RuntimeClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchRuntimeClass(_api::NodeV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchNodeV1beta1RuntimeClass(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchRuntimeClass # listNamespacedHorizontalPodAutoscaler listNamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAutoscalingV1NamespacedHorizontalPodAutoscaler(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAutoscalingV1NamespacedHorizontalPodAutoscaler(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNamespacedHorizontalPodAutoscaler # createNamespacedRole createNamespacedRole(_api::RbacAuthorizationV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createRbacAuthorizationV1NamespacedRole(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedRole(_api::RbacAuthorizationV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createRbacAuthorizationV1NamespacedRole(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createNamespacedRole(_api::RbacAuthorizationV1alpha1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createRbacAuthorizationV1alpha1NamespacedRole(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createRbacAuthorizationV1alpha1NamespacedRole(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createNamespacedRole(_api::RbacAuthorizationV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createRbacAuthorizationV1beta1NamespacedRole(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createRbacAuthorizationV1beta1NamespacedRole(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNamespacedRole # watchNamespacedJobList watchNamespacedJobList(_api::BatchV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchBatchV1NamespacedJobList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedJobList(_api::BatchV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchBatchV1NamespacedJobList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedJobList # createNamespacedDeploymentRollback createNamespacedDeploymentRollback(_api::AppsV1beta1Api, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createAppsV1beta1NamespacedDeploymentRollback(_api, name, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) +createNamespacedDeploymentRollback(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createAppsV1beta1NamespacedDeploymentRollback(_api, response_stream, name, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) createNamespacedDeploymentRollback(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createExtensionsV1beta1NamespacedDeploymentRollback(_api, name, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) +createNamespacedDeploymentRollback(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createExtensionsV1beta1NamespacedDeploymentRollback(_api, response_stream, name, namespace, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) export createNamespacedDeploymentRollback # deleteCollectionNamespacedPodPreset deleteCollectionNamespacedPodPreset(_api::SettingsV1alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteSettingsV1alpha1CollectionNamespacedPodPreset(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedPodPreset(_api::SettingsV1alpha1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteSettingsV1alpha1CollectionNamespacedPodPreset(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionNamespacedPodPreset # listPriorityLevelConfiguration listPriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listPriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listPriorityLevelConfiguration # patchNamespacedDeploymentScale patchNamespacedDeploymentScale(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1NamespacedDeploymentScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedDeploymentScale(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1NamespacedDeploymentScale(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedDeploymentScale(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta1NamespacedDeploymentScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedDeploymentScale(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta1NamespacedDeploymentScale(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedDeploymentScale(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta2NamespacedDeploymentScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedDeploymentScale(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta2NamespacedDeploymentScale(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedDeploymentScale(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchExtensionsV1beta1NamespacedDeploymentScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedDeploymentScale(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchExtensionsV1beta1NamespacedDeploymentScale(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedDeploymentScale # deleteCollectionNamespacedCronJob deleteCollectionNamespacedCronJob(_api::BatchV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteBatchV1beta1CollectionNamespacedCronJob(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedCronJob(_api::BatchV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteBatchV1beta1CollectionNamespacedCronJob(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionNamespacedCronJob(_api::BatchV2alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteBatchV2alpha1CollectionNamespacedCronJob(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedCronJob(_api::BatchV2alpha1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteBatchV2alpha1CollectionNamespacedCronJob(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionNamespacedCronJob # watchNamespaceList watchNamespaceList(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespaceList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespaceList(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespaceList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespaceList # listNamespacedDaemonSet listNamespacedDaemonSet(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1NamespacedDaemonSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedDaemonSet(_api::AppsV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1NamespacedDaemonSet(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listNamespacedDaemonSet(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta2NamespacedDaemonSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedDaemonSet(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAppsV1beta2NamespacedDaemonSet(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listNamespacedDaemonSet(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listExtensionsV1beta1NamespacedDaemonSet(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedDaemonSet(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listExtensionsV1beta1NamespacedDaemonSet(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNamespacedDaemonSet # createValidatingWebhookConfiguration createValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAdmissionregistrationV1ValidatingWebhookConfiguration(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAdmissionregistrationV1ValidatingWebhookConfiguration(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAdmissionregistrationV1beta1ValidatingWebhookConfiguration(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createValidatingWebhookConfiguration # createAPIService createAPIService(_api::ApiregistrationV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createApiregistrationV1APIService(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createAPIService(_api::ApiregistrationV1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createApiregistrationV1APIService(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createAPIService(_api::ApiregistrationV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createApiregistrationV1beta1APIService(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createAPIService(_api::ApiregistrationV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createApiregistrationV1beta1APIService(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createAPIService # listPriorityClass listPriorityClass(_api::SchedulingV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listSchedulingV1PriorityClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listPriorityClass(_api::SchedulingV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listSchedulingV1PriorityClass(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listPriorityClass(_api::SchedulingV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listSchedulingV1alpha1PriorityClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listPriorityClass(_api::SchedulingV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listSchedulingV1alpha1PriorityClass(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listPriorityClass(_api::SchedulingV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listSchedulingV1beta1PriorityClass(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listPriorityClass(_api::SchedulingV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listSchedulingV1beta1PriorityClass(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listPriorityClass # readNodeStatus readNodeStatus(_api::CoreV1Api, name::String; pretty=nothing, _mediaType=nothing) = readCoreV1NodeStatus(_api, name; pretty=pretty, _mediaType=_mediaType) +readNodeStatus(_api::CoreV1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) = readCoreV1NodeStatus(_api, response_stream, name; pretty=pretty, _mediaType=_mediaType) export readNodeStatus # replaceCustomResourceDefinition replaceCustomResourceDefinition(_api::ApiextensionsV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceApiextensionsV1CustomResourceDefinition(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceCustomResourceDefinition(_api::ApiextensionsV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceApiextensionsV1CustomResourceDefinition(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceCustomResourceDefinition(_api::ApiextensionsV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceApiextensionsV1beta1CustomResourceDefinition(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceCustomResourceDefinition(_api::ApiextensionsV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceApiextensionsV1beta1CustomResourceDefinition(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceCustomResourceDefinition # deleteCSINode deleteCSINode(_api::StorageV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteStorageV1CSINode(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteCSINode(_api::StorageV1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteStorageV1CSINode(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteCSINode(_api::StorageV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteStorageV1beta1CSINode(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteCSINode(_api::StorageV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteStorageV1beta1CSINode(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteCSINode # createTokenReview createTokenReview(_api::AuthenticationV1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createAuthenticationV1TokenReview(_api, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) +createTokenReview(_api::AuthenticationV1Api, response_stream::Channel, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createAuthenticationV1TokenReview(_api, response_stream, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) createTokenReview(_api::AuthenticationV1beta1Api, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createAuthenticationV1beta1TokenReview(_api, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) +createTokenReview(_api::AuthenticationV1beta1Api, response_stream::Channel, body; dryRun=nothing, fieldManager=nothing, pretty=nothing, _mediaType=nothing) = createAuthenticationV1beta1TokenReview(_api, response_stream, body; dryRun=dryRun, fieldManager=fieldManager, pretty=pretty, _mediaType=_mediaType) export createTokenReview # listNamespacedEndpointSlice listNamespacedEndpointSlice(_api::DiscoveryV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listDiscoveryV1beta1NamespacedEndpointSlice(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedEndpointSlice(_api::DiscoveryV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listDiscoveryV1beta1NamespacedEndpointSlice(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNamespacedEndpointSlice # watchNamespacedPod watchNamespacedPod(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedPod(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedPod(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedPod(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedPod # createNamespacedStatefulSet createNamespacedStatefulSet(_api::AppsV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAppsV1NamespacedStatefulSet(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedStatefulSet(_api::AppsV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAppsV1NamespacedStatefulSet(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createNamespacedStatefulSet(_api::AppsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAppsV1beta1NamespacedStatefulSet(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedStatefulSet(_api::AppsV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAppsV1beta1NamespacedStatefulSet(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createNamespacedStatefulSet(_api::AppsV1beta2Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAppsV1beta2NamespacedStatefulSet(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedStatefulSet(_api::AppsV1beta2Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAppsV1beta2NamespacedStatefulSet(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNamespacedStatefulSet # watchPodListForAllNamespaces watchPodListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1PodListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchPodListForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1PodListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchPodListForAllNamespaces # readNamespacedReplicaSetScale readNamespacedReplicaSetScale(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1NamespacedReplicaSetScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedReplicaSetScale(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1NamespacedReplicaSetScale(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) readNamespacedReplicaSetScale(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1beta2NamespacedReplicaSetScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedReplicaSetScale(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readAppsV1beta2NamespacedReplicaSetScale(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) readNamespacedReplicaSetScale(_api::ExtensionsV1beta1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readExtensionsV1beta1NamespacedReplicaSetScale(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedReplicaSetScale(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readExtensionsV1beta1NamespacedReplicaSetScale(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) export readNamespacedReplicaSetScale # replaceCSINode replaceCSINode(_api::StorageV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceStorageV1CSINode(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceCSINode(_api::StorageV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceStorageV1CSINode(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceCSINode(_api::StorageV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceStorageV1beta1CSINode(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceCSINode(_api::StorageV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceStorageV1beta1CSINode(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceCSINode # createNamespacedPod createNamespacedPod(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1NamespacedPod(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedPod(_api::CoreV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1NamespacedPod(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNamespacedPod # listClusterRole listClusterRole(_api::RbacAuthorizationV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1ClusterRole(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listClusterRole(_api::RbacAuthorizationV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1ClusterRole(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listClusterRole(_api::RbacAuthorizationV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1alpha1ClusterRole(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listClusterRole(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1alpha1ClusterRole(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listClusterRole(_api::RbacAuthorizationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1beta1ClusterRole(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listClusterRole(_api::RbacAuthorizationV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listRbacAuthorizationV1beta1ClusterRole(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listClusterRole # listEventForAllNamespaces listEventForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1EventForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listEventForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1EventForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listEventForAllNamespaces(_api::EventsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listEventsV1beta1EventForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listEventForAllNamespaces(_api::EventsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listEventsV1beta1EventForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listEventForAllNamespaces # listMutatingWebhookConfiguration listMutatingWebhookConfiguration(_api::AdmissionregistrationV1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAdmissionregistrationV1MutatingWebhookConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listMutatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAdmissionregistrationV1MutatingWebhookConfiguration(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listMutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listMutatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAdmissionregistrationV1beta1MutatingWebhookConfiguration(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listMutatingWebhookConfiguration # watchLimitRangeListForAllNamespaces watchLimitRangeListForAllNamespaces(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1LimitRangeListForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchLimitRangeListForAllNamespaces(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1LimitRangeListForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchLimitRangeListForAllNamespaces # watchNamespacedLimitRangeList watchNamespacedLimitRangeList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedLimitRangeList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedLimitRangeList(_api::CoreV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedLimitRangeList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedLimitRangeList # readNamespacedPodDisruptionBudget readNamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readPolicyV1beta1NamespacedPodDisruptionBudget(_api, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readPolicyV1beta1NamespacedPodDisruptionBudget(_api, response_stream, name, namespace; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNamespacedPodDisruptionBudget # readStorageClass readStorageClass(_api::StorageV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readStorageV1StorageClass(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readStorageClass(_api::StorageV1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readStorageV1StorageClass(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readStorageClass(_api::StorageV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readStorageV1beta1StorageClass(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readStorageClass(_api::StorageV1beta1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readStorageV1beta1StorageClass(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readStorageClass # connectPatchNamespacedPodProxyWithPath connectPatchNamespacedPodProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1PatchNamespacedPodProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) +connectPatchNamespacedPodProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1PatchNamespacedPodProxyWithPath(_api, response_stream, name, namespace, path; path2=path2, _mediaType=_mediaType) export connectPatchNamespacedPodProxyWithPath # replacePriorityLevelConfigurationStatus replacePriorityLevelConfigurationStatus(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replacePriorityLevelConfigurationStatus(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceFlowcontrolApiserverV1alpha1PriorityLevelConfigurationStatus(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replacePriorityLevelConfigurationStatus # patchPriorityClass patchPriorityClass(_api::SchedulingV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchSchedulingV1PriorityClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchPriorityClass(_api::SchedulingV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchSchedulingV1PriorityClass(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchPriorityClass(_api::SchedulingV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchSchedulingV1alpha1PriorityClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchPriorityClass(_api::SchedulingV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchSchedulingV1alpha1PriorityClass(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchPriorityClass(_api::SchedulingV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchSchedulingV1beta1PriorityClass(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchPriorityClass(_api::SchedulingV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchSchedulingV1beta1PriorityClass(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchPriorityClass # deleteNamespacedConfigMap deleteNamespacedConfigMap(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1NamespacedConfigMap(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedConfigMap(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1NamespacedConfigMap(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNamespacedConfigMap # listNetworkPolicyForAllNamespaces listNetworkPolicyForAllNamespaces(_api::ExtensionsV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listExtensionsV1beta1NetworkPolicyForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNetworkPolicyForAllNamespaces(_api::ExtensionsV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listExtensionsV1beta1NetworkPolicyForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) listNetworkPolicyForAllNamespaces(_api::NetworkingV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listNetworkingV1NetworkPolicyForAllNamespaces(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNetworkPolicyForAllNamespaces(_api::NetworkingV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listNetworkingV1NetworkPolicyForAllNamespaces(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNetworkPolicyForAllNamespaces # watchNamespacedDeploymentList watchNamespacedDeploymentList(_api::AppsV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1NamespacedDeploymentList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedDeploymentList(_api::AppsV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1NamespacedDeploymentList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedDeploymentList(_api::AppsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta1NamespacedDeploymentList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedDeploymentList(_api::AppsV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta1NamespacedDeploymentList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedDeploymentList(_api::AppsV1beta2Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2NamespacedDeploymentList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedDeploymentList(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2NamespacedDeploymentList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedDeploymentList(_api::ExtensionsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1NamespacedDeploymentList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedDeploymentList(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1NamespacedDeploymentList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedDeploymentList # patchNamespacedPodTemplate patchNamespacedPodTemplate(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedPodTemplate(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedPodTemplate(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedPodTemplate(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedPodTemplate # createNamespacedReplicaSet createNamespacedReplicaSet(_api::AppsV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAppsV1NamespacedReplicaSet(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedReplicaSet(_api::AppsV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAppsV1NamespacedReplicaSet(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createNamespacedReplicaSet(_api::AppsV1beta2Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAppsV1beta2NamespacedReplicaSet(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedReplicaSet(_api::AppsV1beta2Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createAppsV1beta2NamespacedReplicaSet(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createNamespacedReplicaSet(_api::ExtensionsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createExtensionsV1beta1NamespacedReplicaSet(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedReplicaSet(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createExtensionsV1beta1NamespacedReplicaSet(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNamespacedReplicaSet # watchNodeList watchNodeList(_api::CoreV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NodeList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNodeList(_api::CoreV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NodeList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNodeList # watchNamespacedServiceList watchNamespacedServiceList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedServiceList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedServiceList(_api::CoreV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedServiceList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedServiceList # replaceClusterRoleBinding replaceClusterRoleBinding(_api::RbacAuthorizationV1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceRbacAuthorizationV1ClusterRoleBinding(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceClusterRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceRbacAuthorizationV1ClusterRoleBinding(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceRbacAuthorizationV1alpha1ClusterRoleBinding(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceRbacAuthorizationV1alpha1ClusterRoleBinding(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) replaceClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceRbacAuthorizationV1beta1ClusterRoleBinding(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceRbacAuthorizationV1beta1ClusterRoleBinding(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceClusterRoleBinding # watchCSIDriver watchCSIDriver(_api::StorageV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1beta1CSIDriver(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchCSIDriver(_api::StorageV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1beta1CSIDriver(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchCSIDriver # watchNamespacedHorizontalPodAutoscaler watchNamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAutoscalingV1NamespacedHorizontalPodAutoscaler(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAutoscalingV1NamespacedHorizontalPodAutoscaler(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedHorizontalPodAutoscaler # connectGetNamespacedServiceProxyWithPath connectGetNamespacedServiceProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1GetNamespacedServiceProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) +connectGetNamespacedServiceProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1GetNamespacedServiceProxyWithPath(_api, response_stream, name, namespace, path; path2=path2, _mediaType=_mediaType) export connectGetNamespacedServiceProxyWithPath # readPriorityLevelConfiguration readPriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readPriorityLevelConfiguration(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readFlowcontrolApiserverV1alpha1PriorityLevelConfiguration(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readPriorityLevelConfiguration # deleteNamespacedHorizontalPodAutoscaler deleteNamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAutoscalingV1NamespacedHorizontalPodAutoscaler(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedHorizontalPodAutoscaler(_api::AutoscalingV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAutoscalingV1NamespacedHorizontalPodAutoscaler(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedHorizontalPodAutoscaler(_api::AutoscalingV2beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAutoscalingV2beta2NamespacedHorizontalPodAutoscaler(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNamespacedHorizontalPodAutoscaler # deleteCollectionNamespacedRoleBinding deleteCollectionNamespacedRoleBinding(_api::RbacAuthorizationV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1CollectionNamespacedRoleBinding(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1CollectionNamespacedRoleBinding(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionNamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1alpha1CollectionNamespacedRoleBinding(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1alpha1CollectionNamespacedRoleBinding(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionNamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1beta1CollectionNamespacedRoleBinding(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteRbacAuthorizationV1beta1CollectionNamespacedRoleBinding(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionNamespacedRoleBinding # readNamespace readNamespace(_api::CoreV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1Namespace(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readNamespace(_api::CoreV1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readCoreV1Namespace(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readNamespace # createNamespacedEvent createNamespacedEvent(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1NamespacedEvent(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedEvent(_api::CoreV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1NamespacedEvent(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createNamespacedEvent(_api::EventsV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createEventsV1beta1NamespacedEvent(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedEvent(_api::EventsV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createEventsV1beta1NamespacedEvent(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNamespacedEvent # readAPIService readAPIService(_api::ApiregistrationV1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readApiregistrationV1APIService(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readAPIService(_api::ApiregistrationV1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readApiregistrationV1APIService(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readAPIService(_api::ApiregistrationV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readApiregistrationV1beta1APIService(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readAPIService(_api::ApiregistrationV1beta1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readApiregistrationV1beta1APIService(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readAPIService # deleteNamespacedPodTemplate deleteNamespacedPodTemplate(_api::CoreV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1NamespacedPodTemplate(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedPodTemplate(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1NamespacedPodTemplate(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNamespacedPodTemplate # watchNamespacedReplicaSetList watchNamespacedReplicaSetList(_api::AppsV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1NamespacedReplicaSetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedReplicaSetList(_api::AppsV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1NamespacedReplicaSetList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedReplicaSetList(_api::AppsV1beta2Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2NamespacedReplicaSetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedReplicaSetList(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchAppsV1beta2NamespacedReplicaSetList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedReplicaSetList(_api::ExtensionsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1NamespacedReplicaSetList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedReplicaSetList(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1NamespacedReplicaSetList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedReplicaSetList # connectPostNodeProxyWithPath connectPostNodeProxyWithPath(_api::CoreV1Api, name::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1PostNodeProxyWithPath(_api, name, path; path2=path2, _mediaType=_mediaType) +connectPostNodeProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1PostNodeProxyWithPath(_api, response_stream, name, path; path2=path2, _mediaType=_mediaType) export connectPostNodeProxyWithPath # deleteNamespacedEndpointSlice deleteNamespacedEndpointSlice(_api::DiscoveryV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteDiscoveryV1beta1NamespacedEndpointSlice(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedEndpointSlice(_api::DiscoveryV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteDiscoveryV1beta1NamespacedEndpointSlice(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNamespacedEndpointSlice # createCSINode createCSINode(_api::StorageV1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createStorageV1CSINode(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createCSINode(_api::StorageV1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createStorageV1CSINode(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) createCSINode(_api::StorageV1beta1Api, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createStorageV1beta1CSINode(_api, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createCSINode(_api::StorageV1beta1Api, response_stream::Channel, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createStorageV1beta1CSINode(_api, response_stream, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createCSINode # watchNamespacedRoleBinding watchNamespacedRoleBinding(_api::RbacAuthorizationV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1NamespacedRoleBinding(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1NamespacedRoleBinding(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1alpha1NamespacedRoleBinding(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1alpha1NamespacedRoleBinding(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1beta1NamespacedRoleBinding(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1beta1NamespacedRoleBinding(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedRoleBinding # replaceNamespacedResourceQuotaStatus replaceNamespacedResourceQuotaStatus(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedResourceQuotaStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedResourceQuotaStatus(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedResourceQuotaStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedResourceQuotaStatus # replaceNamespacedPersistentVolumeClaim replaceNamespacedPersistentVolumeClaim(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedPersistentVolumeClaim(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedPersistentVolumeClaim(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedPersistentVolumeClaim(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedPersistentVolumeClaim # patchNamespacedDeploymentStatus patchNamespacedDeploymentStatus(_api::AppsV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1NamespacedDeploymentStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedDeploymentStatus(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1NamespacedDeploymentStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedDeploymentStatus(_api::AppsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta1NamespacedDeploymentStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedDeploymentStatus(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta1NamespacedDeploymentStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedDeploymentStatus(_api::AppsV1beta2Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta2NamespacedDeploymentStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedDeploymentStatus(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchAppsV1beta2NamespacedDeploymentStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) patchNamespacedDeploymentStatus(_api::ExtensionsV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchExtensionsV1beta1NamespacedDeploymentStatus(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedDeploymentStatus(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchExtensionsV1beta1NamespacedDeploymentStatus(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedDeploymentStatus # deleteNamespacedControllerRevision deleteNamespacedControllerRevision(_api::AppsV1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAppsV1NamespacedControllerRevision(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedControllerRevision(_api::AppsV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAppsV1NamespacedControllerRevision(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteNamespacedControllerRevision(_api::AppsV1beta1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAppsV1beta1NamespacedControllerRevision(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedControllerRevision(_api::AppsV1beta1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAppsV1beta1NamespacedControllerRevision(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteNamespacedControllerRevision(_api::AppsV1beta2Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAppsV1beta2NamespacedControllerRevision(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedControllerRevision(_api::AppsV1beta2Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteAppsV1beta2NamespacedControllerRevision(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNamespacedControllerRevision # readCustomResourceDefinitionStatus readCustomResourceDefinitionStatus(_api::ApiextensionsV1Api, name::String; pretty=nothing, _mediaType=nothing) = readApiextensionsV1CustomResourceDefinitionStatus(_api, name; pretty=pretty, _mediaType=_mediaType) +readCustomResourceDefinitionStatus(_api::ApiextensionsV1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) = readApiextensionsV1CustomResourceDefinitionStatus(_api, response_stream, name; pretty=pretty, _mediaType=_mediaType) readCustomResourceDefinitionStatus(_api::ApiextensionsV1beta1Api, name::String; pretty=nothing, _mediaType=nothing) = readApiextensionsV1beta1CustomResourceDefinitionStatus(_api, name; pretty=pretty, _mediaType=_mediaType) +readCustomResourceDefinitionStatus(_api::ApiextensionsV1beta1Api, response_stream::Channel, name::String; pretty=nothing, _mediaType=nothing) = readApiextensionsV1beta1CustomResourceDefinitionStatus(_api, response_stream, name; pretty=pretty, _mediaType=_mediaType) export readCustomResourceDefinitionStatus # readNamespacedJobStatus readNamespacedJobStatus(_api::BatchV1Api, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readBatchV1NamespacedJobStatus(_api, name, namespace; pretty=pretty, _mediaType=_mediaType) +readNamespacedJobStatus(_api::BatchV1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, _mediaType=nothing) = readBatchV1NamespacedJobStatus(_api, response_stream, name, namespace; pretty=pretty, _mediaType=_mediaType) export readNamespacedJobStatus # watchClusterRoleBinding watchClusterRoleBinding(_api::RbacAuthorizationV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1ClusterRoleBinding(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchClusterRoleBinding(_api::RbacAuthorizationV1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1ClusterRoleBinding(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1alpha1ClusterRoleBinding(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchClusterRoleBinding(_api::RbacAuthorizationV1alpha1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1alpha1ClusterRoleBinding(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1beta1ClusterRoleBinding(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchClusterRoleBinding(_api::RbacAuthorizationV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchRbacAuthorizationV1beta1ClusterRoleBinding(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchClusterRoleBinding # deleteCollectionNamespacedDeployment deleteCollectionNamespacedDeployment(_api::AppsV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAppsV1CollectionNamespacedDeployment(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedDeployment(_api::AppsV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAppsV1CollectionNamespacedDeployment(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionNamespacedDeployment(_api::AppsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAppsV1beta1CollectionNamespacedDeployment(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedDeployment(_api::AppsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAppsV1beta1CollectionNamespacedDeployment(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionNamespacedDeployment(_api::AppsV1beta2Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAppsV1beta2CollectionNamespacedDeployment(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedDeployment(_api::AppsV1beta2Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAppsV1beta2CollectionNamespacedDeployment(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionNamespacedDeployment(_api::ExtensionsV1beta1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteExtensionsV1beta1CollectionNamespacedDeployment(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionNamespacedDeployment(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteExtensionsV1beta1CollectionNamespacedDeployment(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionNamespacedDeployment # patchNamespacedPersistentVolumeClaim patchNamespacedPersistentVolumeClaim(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedPersistentVolumeClaim(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedPersistentVolumeClaim(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedPersistentVolumeClaim(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedPersistentVolumeClaim # replaceFlowSchema replaceFlowSchema(_api::FlowcontrolApiserverV1alpha1Api, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceFlowcontrolApiserverV1alpha1FlowSchema(_api, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceFlowSchema(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel, name::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceFlowcontrolApiserverV1alpha1FlowSchema(_api, response_stream, name, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceFlowSchema # replaceNamespacedReplicationControllerScale replaceNamespacedReplicationControllerScale(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedReplicationControllerScale(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedReplicationControllerScale(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedReplicationControllerScale(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedReplicationControllerScale # deleteNamespacedPodPreset deleteNamespacedPodPreset(_api::SettingsV1alpha1Api, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteSettingsV1alpha1NamespacedPodPreset(_api, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespacedPodPreset(_api::SettingsV1alpha1Api, response_stream::Channel, name::String, namespace::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteSettingsV1alpha1NamespacedPodPreset(_api, response_stream, name, namespace; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNamespacedPodPreset # listNamespacedConfigMap listNamespacedConfigMap(_api::CoreV1Api, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1NamespacedConfigMap(_api, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listNamespacedConfigMap(_api::CoreV1Api, response_stream::Channel, namespace::String; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listCoreV1NamespacedConfigMap(_api, response_stream, namespace; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listNamespacedConfigMap # deleteVolumeAttachment deleteVolumeAttachment(_api::StorageV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteStorageV1VolumeAttachment(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteVolumeAttachment(_api::StorageV1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteStorageV1VolumeAttachment(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteVolumeAttachment(_api::StorageV1alpha1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteStorageV1alpha1VolumeAttachment(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteVolumeAttachment(_api::StorageV1alpha1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteStorageV1alpha1VolumeAttachment(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteVolumeAttachment(_api::StorageV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteStorageV1beta1VolumeAttachment(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteVolumeAttachment(_api::StorageV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteStorageV1beta1VolumeAttachment(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteVolumeAttachment # watchNamespacedNetworkPolicyList watchNamespacedNetworkPolicyList(_api::ExtensionsV1beta1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1NamespacedNetworkPolicyList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedNetworkPolicyList(_api::ExtensionsV1beta1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1NamespacedNetworkPolicyList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedNetworkPolicyList(_api::NetworkingV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchNetworkingV1NamespacedNetworkPolicyList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedNetworkPolicyList(_api::NetworkingV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchNetworkingV1NamespacedNetworkPolicyList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedNetworkPolicyList # watchNamespacedNetworkPolicy watchNamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1NamespacedNetworkPolicy(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedNetworkPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchExtensionsV1beta1NamespacedNetworkPolicy(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchNamespacedNetworkPolicy(_api::NetworkingV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchNetworkingV1NamespacedNetworkPolicy(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedNetworkPolicy(_api::NetworkingV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchNetworkingV1NamespacedNetworkPolicy(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedNetworkPolicy # patchNamespacedSecret patchNamespacedSecret(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedSecret(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) +patchNamespacedSecret(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, force=nothing, _mediaType=nothing) = patchCoreV1NamespacedSecret(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, force=force, _mediaType=_mediaType) export patchNamespacedSecret # replaceNamespacedService replaceNamespacedService(_api::CoreV1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedService(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedService(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceCoreV1NamespacedService(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedService # watchPriorityClassList watchPriorityClassList(_api::SchedulingV1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchSchedulingV1PriorityClassList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchPriorityClassList(_api::SchedulingV1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchSchedulingV1PriorityClassList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchPriorityClassList(_api::SchedulingV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchSchedulingV1alpha1PriorityClassList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchPriorityClassList(_api::SchedulingV1alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchSchedulingV1alpha1PriorityClassList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchPriorityClassList(_api::SchedulingV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchSchedulingV1beta1PriorityClassList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchPriorityClassList(_api::SchedulingV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchSchedulingV1beta1PriorityClassList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchPriorityClassList # deleteCollectionAuditSink deleteCollectionAuditSink(_api::AuditregistrationV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAuditregistrationV1alpha1CollectionAuditSink(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionAuditSink(_api::AuditregistrationV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAuditregistrationV1alpha1CollectionAuditSink(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionAuditSink # deleteCollectionValidatingWebhookConfiguration deleteCollectionValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionValidatingWebhookConfiguration(_api::AdmissionregistrationV1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAdmissionregistrationV1CollectionValidatingWebhookConfiguration(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) deleteCollectionValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAdmissionregistrationV1beta1CollectionValidatingWebhookConfiguration(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionValidatingWebhookConfiguration(_api::AdmissionregistrationV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteAdmissionregistrationV1beta1CollectionValidatingWebhookConfiguration(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionValidatingWebhookConfiguration # deleteCollectionCSIDriver deleteCollectionCSIDriver(_api::StorageV1beta1Api; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteStorageV1beta1CollectionCSIDriver(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +deleteCollectionCSIDriver(_api::StorageV1beta1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, body=nothing, __continue__=nothing, dryRun=nothing, fieldSelector=nothing, gracePeriodSeconds=nothing, labelSelector=nothing, limit=nothing, orphanDependents=nothing, propagationPolicy=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = deleteStorageV1beta1CollectionCSIDriver(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, body=body, __continue__=__continue__, dryRun=dryRun, fieldSelector=fieldSelector, gracePeriodSeconds=gracePeriodSeconds, labelSelector=labelSelector, limit=limit, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export deleteCollectionCSIDriver # watchNamespacedEndpointsList watchNamespacedEndpointsList(_api::CoreV1Api, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedEndpointsList(_api, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedEndpointsList(_api::CoreV1Api, response_stream::Channel, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedEndpointsList(_api, response_stream, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedEndpointsList # readPodSecurityPolicy readPodSecurityPolicy(_api::ExtensionsV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readExtensionsV1beta1PodSecurityPolicy(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readPodSecurityPolicy(_api::ExtensionsV1beta1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readExtensionsV1beta1PodSecurityPolicy(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) readPodSecurityPolicy(_api::PolicyV1beta1Api, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readPolicyV1beta1PodSecurityPolicy(_api, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) +readPodSecurityPolicy(_api::PolicyV1beta1Api, response_stream::Channel, name::String; pretty=nothing, exact=nothing, __export__=nothing, _mediaType=nothing) = readPolicyV1beta1PodSecurityPolicy(_api, response_stream, name; pretty=pretty, exact=exact, __export__=__export__, _mediaType=_mediaType) export readPodSecurityPolicy # deleteCustomResourceDefinition deleteCustomResourceDefinition(_api::ApiextensionsV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteApiextensionsV1CustomResourceDefinition(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteCustomResourceDefinition(_api::ApiextensionsV1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteApiextensionsV1CustomResourceDefinition(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) deleteCustomResourceDefinition(_api::ApiextensionsV1beta1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteApiextensionsV1beta1CustomResourceDefinition(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteCustomResourceDefinition(_api::ApiextensionsV1beta1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteApiextensionsV1beta1CustomResourceDefinition(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteCustomResourceDefinition # createNamespacedServiceAccount createNamespacedServiceAccount(_api::CoreV1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1NamespacedServiceAccount(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedServiceAccount(_api::CoreV1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createCoreV1NamespacedServiceAccount(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNamespacedServiceAccount # listFlowSchema listFlowSchema(_api::FlowcontrolApiserverV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listFlowcontrolApiserverV1alpha1FlowSchema(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listFlowSchema(_api::FlowcontrolApiserverV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listFlowcontrolApiserverV1alpha1FlowSchema(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listFlowSchema # connectPatchNodeProxyWithPath connectPatchNodeProxyWithPath(_api::CoreV1Api, name::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1PatchNodeProxyWithPath(_api, name, path; path2=path2, _mediaType=_mediaType) +connectPatchNodeProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1PatchNodeProxyWithPath(_api, response_stream, name, path; path2=path2, _mediaType=_mediaType) export connectPatchNodeProxyWithPath # watchPersistentVolume watchPersistentVolume(_api::CoreV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1PersistentVolume(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchPersistentVolume(_api::CoreV1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1PersistentVolume(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchPersistentVolume # watchStorageClass watchStorageClass(_api::StorageV1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1StorageClass(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchStorageClass(_api::StorageV1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1StorageClass(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchStorageClass(_api::StorageV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1beta1StorageClass(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchStorageClass(_api::StorageV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchStorageV1beta1StorageClass(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchStorageClass # listAuditSink listAuditSink(_api::AuditregistrationV1alpha1Api; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAuditregistrationV1alpha1AuditSink(_api; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +listAuditSink(_api::AuditregistrationV1alpha1Api, response_stream::Channel; pretty=nothing, allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = listAuditregistrationV1alpha1AuditSink(_api, response_stream; pretty=pretty, allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export listAuditSink # deleteNamespace deleteNamespace(_api::CoreV1Api, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1Namespace(_api, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) +deleteNamespace(_api::CoreV1Api, response_stream::Channel, name::String; pretty=nothing, body=nothing, dryRun=nothing, gracePeriodSeconds=nothing, orphanDependents=nothing, propagationPolicy=nothing, _mediaType=nothing) = deleteCoreV1Namespace(_api, response_stream, name; pretty=pretty, body=body, dryRun=dryRun, gracePeriodSeconds=gracePeriodSeconds, orphanDependents=orphanDependents, propagationPolicy=propagationPolicy, _mediaType=_mediaType) export deleteNamespace # connectHeadNamespacedServiceProxyWithPath connectHeadNamespacedServiceProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1HeadNamespacedServiceProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) +connectHeadNamespacedServiceProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1HeadNamespacedServiceProxyWithPath(_api, response_stream, name, namespace, path; path2=path2, _mediaType=_mediaType) export connectHeadNamespacedServiceProxyWithPath # watchNamespacedService watchNamespacedService(_api::CoreV1Api, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedService(_api, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchNamespacedService(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchCoreV1NamespacedService(_api, response_stream, name, namespace; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchNamespacedService # createNamespacedPodDisruptionBudget createNamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createPolicyV1beta1NamespacedPodDisruptionBudget(_api, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +createNamespacedPodDisruptionBudget(_api::PolicyV1beta1Api, response_stream::Channel, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = createPolicyV1beta1NamespacedPodDisruptionBudget(_api, response_stream, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export createNamespacedPodDisruptionBudget # watchRuntimeClassList watchRuntimeClassList(_api::NodeV1alpha1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchNodeV1alpha1RuntimeClassList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchRuntimeClassList(_api::NodeV1alpha1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchNodeV1alpha1RuntimeClassList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchRuntimeClassList(_api::NodeV1beta1Api; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchNodeV1beta1RuntimeClassList(_api; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchRuntimeClassList(_api::NodeV1beta1Api, response_stream::Channel; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchNodeV1beta1RuntimeClassList(_api, response_stream; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchRuntimeClassList # connectOptionsNamespacedPodProxyWithPath connectOptionsNamespacedPodProxyWithPath(_api::CoreV1Api, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1OptionsNamespacedPodProxyWithPath(_api, name, namespace, path; path2=path2, _mediaType=_mediaType) +connectOptionsNamespacedPodProxyWithPath(_api::CoreV1Api, response_stream::Channel, name::String, namespace::String, path::String; path2=nothing, _mediaType=nothing) = connectCoreV1OptionsNamespacedPodProxyWithPath(_api, response_stream, name, namespace, path; path2=path2, _mediaType=_mediaType) export connectOptionsNamespacedPodProxyWithPath # replaceNamespacedEndpointSlice replaceNamespacedEndpointSlice(_api::DiscoveryV1beta1Api, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceDiscoveryV1beta1NamespacedEndpointSlice(_api, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) +replaceNamespacedEndpointSlice(_api::DiscoveryV1beta1Api, response_stream::Channel, name::String, namespace::String, body; pretty=nothing, dryRun=nothing, fieldManager=nothing, _mediaType=nothing) = replaceDiscoveryV1beta1NamespacedEndpointSlice(_api, response_stream, name, namespace, body; pretty=pretty, dryRun=dryRun, fieldManager=fieldManager, _mediaType=_mediaType) export replaceNamespacedEndpointSlice # watchRuntimeClass watchRuntimeClass(_api::NodeV1alpha1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchNodeV1alpha1RuntimeClass(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchRuntimeClass(_api::NodeV1alpha1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchNodeV1alpha1RuntimeClass(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) watchRuntimeClass(_api::NodeV1beta1Api, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchNodeV1beta1RuntimeClass(_api, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) +watchRuntimeClass(_api::NodeV1beta1Api, response_stream::Channel, name::String; allowWatchBookmarks=nothing, __continue__=nothing, fieldSelector=nothing, labelSelector=nothing, limit=nothing, pretty=nothing, resourceVersion=nothing, timeoutSeconds=nothing, watch=nothing, _mediaType=nothing) = watchNodeV1beta1RuntimeClass(_api, response_stream, name; allowWatchBookmarks=allowWatchBookmarks, __continue__=__continue__, fieldSelector=fieldSelector, labelSelector=labelSelector, limit=limit, pretty=pretty, resourceVersion=resourceVersion, timeoutSeconds=timeoutSeconds, watch=watch, _mediaType=_mediaType) export watchRuntimeClass diff --git a/src/helpers.jl b/src/helpers.jl index 630c865e..0d95a492 100644 --- a/src/helpers.jl +++ b/src/helpers.jl @@ -1,6 +1,8 @@ const DEFAULT_NAMESPACE = "default" const DEFAULT_URI = "http://localhost:8001" +const KuberEventStream = Channel{Any} + struct KApi api::DataType types::Module @@ -14,12 +16,26 @@ mutable struct KuberContext initialized::Bool function KuberContext() - ctx = Swagger.Client(DEFAULT_URI) - ctx.headers["Connection"] = "close" - new(ctx, Dict{Symbol,Vector}(), Dict{Symbol,KApi}(), DEFAULT_NAMESPACE, false) + kctx = new() + + rtfn = (default,data)->kuber_type(kctx, default, data) + swaggerclient = Swagger.Client(DEFAULT_URI; get_return_type=rtfn) + swaggerclient.headers["Connection"] = "close" + + kctx.client = swaggerclient + kctx.apis = Dict{Symbol,Vector}() + kctx.modelapi = Dict{Symbol,KApi}() + kctx.namespace = DEFAULT_NAMESPACE + kctx.initialized = false + return kctx end end +struct KuberWatchContext + ctx::KuberContext + stream::KuberEventStream +end + convert(::Type{Vector{UInt8}}, s::T) where {T<:AbstractString} = collect(codeunits(s)) convert(::Type{T}, json::String) where {T<:SwaggerModel} = convert(T, JSON.parse(json)) convert(::Type{Dict{String,Any}}, model::T) where {T<:SwaggerModel} = JSON.parse(JSON.json(model)) @@ -42,14 +58,16 @@ function kuber_type(ctx::KuberContext, T, resp::HTTP.Response) end function kuber_type(ctx::KuberContext, T, j::Dict{String,Any}) - if ("kind" in keys(j)) && !isempty(ctx.apis) + if haskey(j, "kind") && !isempty(ctx.apis) kind = j["kind"] - version = ("apiVersion" in keys(j)) ? j["apiVersion"] : nothing + version = haskey(j, "apiVersion") ? j["apiVersion"] : nothing try T = kind_to_type(ctx, kind, version) catch ex @warn("Type not found.", kind, version) end + elseif haskey(j, "type") && haskey(j, "object") + return Kubernetes.IoK8sApimachineryPkgApisMetaV1WatchEvent end T end diff --git a/src/simpleapi.jl b/src/simpleapi.jl index 31d853a1..65b9a245 100644 --- a/src/simpleapi.jl +++ b/src/simpleapi.jl @@ -9,13 +9,19 @@ sel(cnd::String...) = join(cnd, ", ") _delopts(; kwargs...) = Typedefs.MetaV1.DeleteOptions(; preconditions=Typedefs.MetaV1.Preconditions(; kwargs...), kwargs...) -function _get_apictx(ctx::KuberContext, O::Symbol, apiversion::Union{String,Nothing}) +_kubectx(ctx::KuberContext) = ctx +_kubectx(ctx::KuberWatchContext) = ctx.ctx + +function _get_apictx(ctx::Union{KuberContext,KuberWatchContext}, O::Symbol, apiversion::Union{String,Nothing}; max_tries::Int=1) + kubectx = _kubectx(ctx) + kubectx.initialized || set_api_versions!(kubectx; max_tries=max_tries) + if apiversion !== nothing k = Kuber.api_group_type(apiversion) - apictx = k(ctx.client) + apictx = k(kubectx.client) else - kapi = ctx.modelapi[O] - apictx = kapi.api(ctx.client) + kapi = kubectx.modelapi[O] + apictx = kapi.api(kubectx.client) end apictx end @@ -23,70 +29,219 @@ end _api_function(name::Symbol) = isdefined(@__MODULE__, name) ? eval(name) : nothing _api_function(name) = _api_function(Symbol(name)) -function list(ctx::KuberContext, O::Symbol, name::String; apiversion::Union{String,Nothing}=nothing, namespace::Union{String,Nothing}=ctx.namespace, max_tries::Int=1, kwargs...) - ctx.initialized || set_api_versions!(ctx) +function watch(fn::Function, ctx::KuberContext; buffersize::Int=1024, stream::KuberEventStream=KuberEventStream(buffersize)) + watchctx = KuberWatchContext(ctx, stream) + fn(watchctx, stream) +end - apictx = _get_apictx(ctx, O, apiversion) +function watch(streamprocessor::Function, ctx::KuberContext, watched::Function, args...; kwargs...) + watch(ctx) do watchctx, stream + @sync begin + @async try + watched(watchctx, args...; kwargs...) + finally + close(stream) + end + @async streamprocessor(stream) + end + end +end + +function list(ctx::Union{KuberContext,KuberWatchContext}, O::Symbol, name::String; + apiversion::Union{String,Nothing}=nothing, + namespace::Union{String,Nothing}=_kubectx(ctx).namespace, + max_tries::Int=1, + watch=isa(ctx, KuberWatchContext), + resourceVersion=nothing, + kwargs...) + apictx = _get_apictx(ctx, O, apiversion; max_tries=max_tries) namespaced = (namespace !== nothing) && !isempty(namespace) allnamespaces = namespaced && (namespace == "*") + eventstream = isa(ctx, KuberWatchContext) ? ctx.stream : nothing + result = nothing + args = Any[name] if allnamespaces apicall = eval(Symbol("list$(O)ForAllNamespaces")) - return @retry_on_error apicall(apictx, name; kwargs...) elseif namespaced apicall = eval(Symbol("listNamespaced$O")) - return @retry_on_error apicall(apictx, name, namespace; kwargs...) + push!(args, namespace) else apicall = eval(Symbol("list$O")) - return @retry_on_error apicall(apictx, name; kwargs...) end -end -function list(ctx::KuberContext, O::Symbol; apiversion::Union{String,Nothing}=nothing, namespace::Union{String,Nothing}=ctx.namespace, max_tries::Int=1, kwargs...) - ctx.initialized || set_api_versions!(ctx) + if !watch || resourceVersion === nothing + result = @retry_on_error apicall(apictx, args...; kwargs...) + end - apictx = _get_apictx(ctx, O, apiversion) + # if not watching, retuen the first result + watch || (return result) + if result !== nothing + resourceVersion = result.metadata.resourceVersion + # push the first Event consisting of existing data + put!(eventstream, result) + end + + # start watch and return the HTTP response object on completion + return @retry_on_error apicall(apictx, eventstream, args...; watch=watch, resourceVersion=resourceVersion, kwargs...) +end + +function list(ctx::Union{KuberContext,KuberWatchContext}, O::Symbol; + apiversion::Union{String,Nothing}=nothing, + namespace::Union{String,Nothing}=_kubectx(ctx).namespace, + max_tries::Int=1, + watch=isa(ctx, KuberWatchContext), + resourceVersion=nothing, + kwargs...) + apictx = _get_apictx(ctx, O, apiversion; max_tries=max_tries) namespaced = (namespace !== nothing) && !isempty(namespace) allnamespaces = namespaced && (namespace == "*") + eventstream = isa(ctx, KuberWatchContext) ? ctx.stream : nothing + + result = nothing + args = Any[] if allnamespaces apicall = eval(Symbol("list$(O)ForAllNamespaces")) - return @retry_on_error apicall(apictx; kwargs...) elseif namespaced apicall = eval(Symbol("listNamespaced$O")) - return @retry_on_error apicall(apictx, namespace; kwargs...) + push!(args, namespace) else apicall = eval(Symbol("list$O")) - return @retry_on_error apicall(apictx; kwargs...) end + + if !watch || resourceVersion === nothing + result = @retry_on_error apicall(apictx, args...; kwargs...) + end + + # if not watching, retuen the first result + watch || (return result) + if result !== nothing + resourceVersion = result.metadata.resourceVersion + # push the first Event consisting of existing data + put!(eventstream, result) + end + + # start watch and return the HTTP response object on completion + return @retry_on_error apicall(apictx, eventstream, args...; watch=watch, resourceVersion=resourceVersion, kwargs...) end -function get(ctx::KuberContext, O::Symbol, name::String; apiversion::Union{String,Nothing}=nothing, max_tries::Integer=1, kwargs...) - ctx.initialized || set_api_versions!(ctx; max_tries=max_tries) +function get(ctx::Union{KuberContext,KuberWatchContext}, O::Symbol, name::String; + apiversion::Union{String,Nothing}=nothing, + max_tries::Integer=1, + watch=isa(ctx, KuberWatchContext), + resourceVersion=nothing, + kwargs...) + apictx = _get_apictx(ctx, O, apiversion; max_tries=max_tries) - apictx = _get_apictx(ctx, O, apiversion) + eventstream = isa(ctx, KuberWatchContext) ? ctx.stream : nothing + result = nothing + args = Any[name] if (apicall = _api_function("read$O")) !== nothing - return @retry_on_error apicall(apictx, name; kwargs...) + # nothing elseif (apicall = _api_function("readNamespaced$O")) !== nothing - return @retry_on_error apicall(apictx, name, ctx.namespace; kwargs...) + push!(args, _kubectx(ctx).namespace) else throw(ArgumentError("No API functions could be located using :$O")) end + + if !watch || resourceVersion === nothing + result = @retry_on_error apicall(apictx, args...; kwargs...) + end + + # if not watching, retuen the first result + watch || (return result) + if result !== nothing + resourceVersion = result.metadata.resourceVersion + # push the first Event consisting of existing data + put!(eventstream, result) + end + + # start watch and return the HTTP response object on completion + return @retry_on_error apicall(apictx, eventstream, args...; watch=watch, resourceVersion=resourceVersion, kwargs...) end -function get(ctx::KuberContext, O::Symbol; apiversion::Union{String,Nothing}=nothing, label_selector=nothing, namespace::Union{String,Nothing}=ctx.namespace, max_tries::Integer=1) - ctx.initialized || set_api_versions!(ctx; max_tries=max_tries) +function get(ctx::Union{KuberContext,KuberWatchContext}, O::Symbol; + apiversion::Union{String,Nothing}=nothing, + label_selector=nothing, + namespace::Union{String,Nothing}=_kubectx(ctx).namespace, + max_tries::Integer=1, + watch=isa(ctx, KuberWatchContext), + resourceVersion=nothing, + kwargs...) + apictx = _get_apictx(ctx, O, apiversion; max_tries=max_tries) - apictx = _get_apictx(ctx, O, apiversion) + eventstream = isa(ctx, KuberWatchContext) ? ctx.stream : nothing + result = nothing + args = Any[] apiname = "list$O" namespace === nothing && (apiname *= "ForAllNamespaces") if (apicall = _api_function(apiname)) !== nothing - return @retry_on_error apicall(apictx; labelSelector=label_selector) + # nothing elseif (apicall = _api_function("listNamespaced$O")) !== nothing - return @retry_on_error apicall(apictx, namespace; labelSelector=label_selector) + push!(args, namespace) else throw(ArgumentError("No API functions could be located using :$O")) end + + if !watch || resourceVersion === nothing + result = @retry_on_error apicall(apictx, args...; labelSelector=label_selector, kwargs...) + end + + # if not watching, retuen the first result + watch || (return result) + if result !== nothing + resourceVersion = result.metadata.resourceVersion + # push the first Event consisting of existing data + put!(eventstream, result) + end + + # start watch and return the HTTP response object on completion + return @retry_on_error apicall(apictx, eventstream, args...; watch=watch, resourceVersion=resourceVersion, labelSelector=label_selector, kwargs...) +end + +function watch(ctx::KuberContext, O::Symbol, outstream::Channel, name::String; + apiversion::Union{String,Nothing}=nothing, + namespace::Union{String,Nothing}=ctx.namespace, + max_tries::Int=1, + resourceVersion=nothing, + kwargs...) + apictx = _get_apictx(ctx, O, apiversion; max_tries=max_tries) + namespaced = (namespace !== nothing) && !isempty(namespace) + allnamespaces = namespaced && (namespace == "*") + + if allnamespaces + apicall = eval(Symbol("watch$(O)ForAllNamespaces")) + return @retry_on_error apicall(apictx, outstream, name; kwargs...) + elseif namespaced + apicall = eval(Symbol("watchNamespaced$O")) + return @retry_on_error apicall(apictx, outstream, name, namespace; kwargs...) + else + apicall = eval(Symbol("watch$O")) + return @retry_on_error apicall(apictx, outstream, name; kwargs...) + end +end + +function watch(ctx::KuberContext, O::Symbol, outstream::Channel; + apiversion::Union{String,Nothing}=nothing, + namespace::Union{String,Nothing}=ctx.namespace, + max_tries::Int=1, + resourceVersion=nothing, + kwargs...) + apictx = _get_apictx(ctx, O, apiversion; max_tries=max_tries) + namespaced = (namespace !== nothing) && !isempty(namespace) + allnamespaces = namespaced && (namespace == "*") + + if allnamespaces + apicall = eval(Symbol("watch$(O)ForAllNamespaces")) + return @retry_on_error apicall(apictx, outstream; kwargs...) + elseif namespaced + apicall = eval(Symbol("watchNamespaced$O")) + return @retry_on_error apicall(apictx, outstream, namespace; kwargs...) + else + apicall = eval(Symbol("watch$O")) + return @retry_on_error apicall(apictx, outstream; kwargs...) + end end function put!(ctx::KuberContext, v::T) where {T<:SwaggerModel} @@ -95,8 +250,6 @@ function put!(ctx::KuberContext, v::T) where {T<:SwaggerModel} end function put!(ctx::KuberContext, O::Symbol, d::Dict{String,Any}) - ctx.initialized || set_api_versions!(ctx) - apictx = _get_apictx(ctx, O, get(d, "apiVersion", nothing)) if (apicall = _api_function("create$O")) !== nothing return apicall(apictx, d) @@ -115,7 +268,6 @@ function delete!(ctx::KuberContext, v::T; kwargs...) where {T<:SwaggerModel} end function delete!(ctx::KuberContext, O::Symbol, name::String; apiversion::Union{String,Nothing}=nothing, kwargs...) - ctx.initialized || set_api_versions!(ctx) apictx = _get_apictx(ctx, O, apiversion) params = [apictx, name] @@ -138,8 +290,6 @@ function update!(ctx::KuberContext, v::T, patch, patch_type) where {T<:SwaggerMo end function update!(ctx::KuberContext, O::Symbol, name::String, patch, patch_type; apiversion::Union{String,Nothing}=nothing) - ctx.initialized || set_api_versions!(ctx) - apictx = _get_apictx(ctx, O, apiversion) if (apicall = _api_function("patch$O")) !== nothing diff --git a/test/runtests.jl b/test/runtests.jl index da4fabbf..3bbae744 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -256,9 +256,36 @@ function test_versioned(ctx, testid) create_versioned_models(ctx) end + # start a watch on pods + lck = ReentrantLock() + events = Any[] + @async begin + watch(ctx, list, :Pod) do stream + for event in stream + lock(lck) do + push!(events, event) + end + end + end + end + @testset "Create/Delete Objects" begin create_delete_job(ctx, testid) end + + @testset "Watch Events" begin + timedwait(10.0; pollint=1.0) do + lock(lck) do + any(isa(event, Kuber.Kubernetes.IoK8sApimachineryPkgApisMetaV1WatchEvent) && (event.type == "DELETED") for event in events) + end + end + lock(lck) do + @test !isempty(events) + for event in events + @test isa(event, Union{Kuber.Kubernetes.IoK8sApimachineryPkgApisMetaV1WatchEvent,Kuber.Kubernetes.IoK8sApiCoreV1PodList}) + end + end + end end function test_all()