github.com/kaisawind/go-swagger@v0.19.0/fixtures/canary/kubernetes/swagger.json (about)

     1  {
     2    "swagger": "2.0",
     3    "info": {
     4     "title": "Kubernetes",
     5     "version": "unversioned"
     6    },
     7    "paths": {
     8     "/api/": {
     9      "get": {
    10       "description": "get available API versions",
    11       "consumes": [
    12        "application/json",
    13        "application/yaml",
    14        "application/vnd.kubernetes.protobuf"
    15       ],
    16       "produces": [
    17        "application/json",
    18        "application/yaml",
    19        "application/vnd.kubernetes.protobuf"
    20       ],
    21       "schemes": [
    22        "https"
    23       ],
    24       "tags": [
    25        "core"
    26       ],
    27       "operationId": "getCoreAPIVersions",
    28       "responses": {
    29        "200": {
    30         "description": "OK",
    31         "schema": {
    32          "$ref": "#/definitions/unversioned.APIVersions"
    33         }
    34        },
    35        "401": {
    36         "description": "Unauthorized"
    37        }
    38       }
    39      }
    40     },
    41     "/api/v1/": {
    42      "get": {
    43       "description": "get available resources",
    44       "consumes": [
    45        "application/json",
    46        "application/yaml",
    47        "application/vnd.kubernetes.protobuf"
    48       ],
    49       "produces": [
    50        "application/json",
    51        "application/yaml",
    52        "application/vnd.kubernetes.protobuf"
    53       ],
    54       "schemes": [
    55        "https"
    56       ],
    57       "tags": [
    58        "core_v1"
    59       ],
    60       "operationId": "getCoreV1APIResources",
    61       "responses": {
    62        "200": {
    63         "description": "OK",
    64         "schema": {
    65          "$ref": "#/definitions/unversioned.APIResourceList"
    66         }
    67        },
    68        "401": {
    69         "description": "Unauthorized"
    70        }
    71       }
    72      }
    73     },
    74     "/api/v1/componentstatuses": {
    75      "get": {
    76       "description": "list objects of kind ComponentStatus",
    77       "consumes": [
    78        "*/*"
    79       ],
    80       "produces": [
    81        "application/json",
    82        "application/yaml",
    83        "application/vnd.kubernetes.protobuf",
    84        "application/json;stream=watch",
    85        "application/vnd.kubernetes.protobuf;stream=watch"
    86       ],
    87       "schemes": [
    88        "https"
    89       ],
    90       "tags": [
    91        "core_v1"
    92       ],
    93       "operationId": "listCoreV1ComponentStatus",
    94       "responses": {
    95        "200": {
    96         "description": "OK",
    97         "schema": {
    98          "$ref": "#/definitions/v1.ComponentStatusList"
    99         }
   100        },
   101        "401": {
   102         "description": "Unauthorized"
   103        }
   104       }
   105      },
   106      "parameters": [
   107       {
   108        "uniqueItems": true,
   109        "type": "string",
   110        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
   111        "name": "fieldSelector",
   112        "in": "query"
   113       },
   114       {
   115        "uniqueItems": true,
   116        "type": "string",
   117        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
   118        "name": "labelSelector",
   119        "in": "query"
   120       },
   121       {
   122        "uniqueItems": true,
   123        "type": "string",
   124        "description": "If 'true', then the output is pretty printed.",
   125        "name": "pretty",
   126        "in": "query"
   127       },
   128       {
   129        "uniqueItems": true,
   130        "type": "string",
   131        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
   132        "name": "resourceVersion",
   133        "in": "query"
   134       },
   135       {
   136        "uniqueItems": true,
   137        "type": "integer",
   138        "description": "Timeout for the list/watch call.",
   139        "name": "timeoutSeconds",
   140        "in": "query"
   141       },
   142       {
   143        "uniqueItems": true,
   144        "type": "boolean",
   145        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
   146        "name": "watch",
   147        "in": "query"
   148       }
   149      ]
   150     },
   151     "/api/v1/componentstatuses/{name}": {
   152      "get": {
   153       "description": "read the specified ComponentStatus",
   154       "consumes": [
   155        "*/*"
   156       ],
   157       "produces": [
   158        "application/json",
   159        "application/yaml",
   160        "application/vnd.kubernetes.protobuf"
   161       ],
   162       "schemes": [
   163        "https"
   164       ],
   165       "tags": [
   166        "core_v1"
   167       ],
   168       "operationId": "readCoreV1ComponentStatus",
   169       "responses": {
   170        "200": {
   171         "description": "OK",
   172         "schema": {
   173          "$ref": "#/definitions/v1.ComponentStatus"
   174         }
   175        },
   176        "401": {
   177         "description": "Unauthorized"
   178        }
   179       }
   180      },
   181      "parameters": [
   182       {
   183        "uniqueItems": true,
   184        "type": "string",
   185        "description": "name of the ComponentStatus",
   186        "name": "name",
   187        "in": "path",
   188        "required": true
   189       },
   190       {
   191        "uniqueItems": true,
   192        "type": "string",
   193        "description": "If 'true', then the output is pretty printed.",
   194        "name": "pretty",
   195        "in": "query"
   196       }
   197      ]
   198     },
   199     "/api/v1/configmaps": {
   200      "get": {
   201       "description": "list or watch objects of kind ConfigMap",
   202       "consumes": [
   203        "*/*"
   204       ],
   205       "produces": [
   206        "application/json",
   207        "application/yaml",
   208        "application/vnd.kubernetes.protobuf",
   209        "application/json;stream=watch",
   210        "application/vnd.kubernetes.protobuf;stream=watch"
   211       ],
   212       "schemes": [
   213        "https"
   214       ],
   215       "tags": [
   216        "core_v1"
   217       ],
   218       "operationId": "listCoreV1ConfigMapForAllNamespaces",
   219       "responses": {
   220        "200": {
   221         "description": "OK",
   222         "schema": {
   223          "$ref": "#/definitions/v1.ConfigMapList"
   224         }
   225        },
   226        "401": {
   227         "description": "Unauthorized"
   228        }
   229       }
   230      },
   231      "parameters": [
   232       {
   233        "uniqueItems": true,
   234        "type": "string",
   235        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
   236        "name": "fieldSelector",
   237        "in": "query"
   238       },
   239       {
   240        "uniqueItems": true,
   241        "type": "string",
   242        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
   243        "name": "labelSelector",
   244        "in": "query"
   245       },
   246       {
   247        "uniqueItems": true,
   248        "type": "string",
   249        "description": "If 'true', then the output is pretty printed.",
   250        "name": "pretty",
   251        "in": "query"
   252       },
   253       {
   254        "uniqueItems": true,
   255        "type": "string",
   256        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
   257        "name": "resourceVersion",
   258        "in": "query"
   259       },
   260       {
   261        "uniqueItems": true,
   262        "type": "integer",
   263        "description": "Timeout for the list/watch call.",
   264        "name": "timeoutSeconds",
   265        "in": "query"
   266       },
   267       {
   268        "uniqueItems": true,
   269        "type": "boolean",
   270        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
   271        "name": "watch",
   272        "in": "query"
   273       }
   274      ]
   275     },
   276     "/api/v1/endpoints": {
   277      "get": {
   278       "description": "list or watch objects of kind Endpoints",
   279       "consumes": [
   280        "*/*"
   281       ],
   282       "produces": [
   283        "application/json",
   284        "application/yaml",
   285        "application/vnd.kubernetes.protobuf",
   286        "application/json;stream=watch",
   287        "application/vnd.kubernetes.protobuf;stream=watch"
   288       ],
   289       "schemes": [
   290        "https"
   291       ],
   292       "tags": [
   293        "core_v1"
   294       ],
   295       "operationId": "listCoreV1EndpointsForAllNamespaces",
   296       "responses": {
   297        "200": {
   298         "description": "OK",
   299         "schema": {
   300          "$ref": "#/definitions/v1.EndpointsList"
   301         }
   302        },
   303        "401": {
   304         "description": "Unauthorized"
   305        }
   306       }
   307      },
   308      "parameters": [
   309       {
   310        "uniqueItems": true,
   311        "type": "string",
   312        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
   313        "name": "fieldSelector",
   314        "in": "query"
   315       },
   316       {
   317        "uniqueItems": true,
   318        "type": "string",
   319        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
   320        "name": "labelSelector",
   321        "in": "query"
   322       },
   323       {
   324        "uniqueItems": true,
   325        "type": "string",
   326        "description": "If 'true', then the output is pretty printed.",
   327        "name": "pretty",
   328        "in": "query"
   329       },
   330       {
   331        "uniqueItems": true,
   332        "type": "string",
   333        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
   334        "name": "resourceVersion",
   335        "in": "query"
   336       },
   337       {
   338        "uniqueItems": true,
   339        "type": "integer",
   340        "description": "Timeout for the list/watch call.",
   341        "name": "timeoutSeconds",
   342        "in": "query"
   343       },
   344       {
   345        "uniqueItems": true,
   346        "type": "boolean",
   347        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
   348        "name": "watch",
   349        "in": "query"
   350       }
   351      ]
   352     },
   353     "/api/v1/events": {
   354      "get": {
   355       "description": "list or watch objects of kind Event",
   356       "consumes": [
   357        "*/*"
   358       ],
   359       "produces": [
   360        "application/json",
   361        "application/yaml",
   362        "application/vnd.kubernetes.protobuf",
   363        "application/json;stream=watch",
   364        "application/vnd.kubernetes.protobuf;stream=watch"
   365       ],
   366       "schemes": [
   367        "https"
   368       ],
   369       "tags": [
   370        "core_v1"
   371       ],
   372       "operationId": "listCoreV1EventForAllNamespaces",
   373       "responses": {
   374        "200": {
   375         "description": "OK",
   376         "schema": {
   377          "$ref": "#/definitions/v1.EventList"
   378         }
   379        },
   380        "401": {
   381         "description": "Unauthorized"
   382        }
   383       }
   384      },
   385      "parameters": [
   386       {
   387        "uniqueItems": true,
   388        "type": "string",
   389        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
   390        "name": "fieldSelector",
   391        "in": "query"
   392       },
   393       {
   394        "uniqueItems": true,
   395        "type": "string",
   396        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
   397        "name": "labelSelector",
   398        "in": "query"
   399       },
   400       {
   401        "uniqueItems": true,
   402        "type": "string",
   403        "description": "If 'true', then the output is pretty printed.",
   404        "name": "pretty",
   405        "in": "query"
   406       },
   407       {
   408        "uniqueItems": true,
   409        "type": "string",
   410        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
   411        "name": "resourceVersion",
   412        "in": "query"
   413       },
   414       {
   415        "uniqueItems": true,
   416        "type": "integer",
   417        "description": "Timeout for the list/watch call.",
   418        "name": "timeoutSeconds",
   419        "in": "query"
   420       },
   421       {
   422        "uniqueItems": true,
   423        "type": "boolean",
   424        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
   425        "name": "watch",
   426        "in": "query"
   427       }
   428      ]
   429     },
   430     "/api/v1/limitranges": {
   431      "get": {
   432       "description": "list or watch objects of kind LimitRange",
   433       "consumes": [
   434        "*/*"
   435       ],
   436       "produces": [
   437        "application/json",
   438        "application/yaml",
   439        "application/vnd.kubernetes.protobuf",
   440        "application/json;stream=watch",
   441        "application/vnd.kubernetes.protobuf;stream=watch"
   442       ],
   443       "schemes": [
   444        "https"
   445       ],
   446       "tags": [
   447        "core_v1"
   448       ],
   449       "operationId": "listCoreV1LimitRangeForAllNamespaces",
   450       "responses": {
   451        "200": {
   452         "description": "OK",
   453         "schema": {
   454          "$ref": "#/definitions/v1.LimitRangeList"
   455         }
   456        },
   457        "401": {
   458         "description": "Unauthorized"
   459        }
   460       }
   461      },
   462      "parameters": [
   463       {
   464        "uniqueItems": true,
   465        "type": "string",
   466        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
   467        "name": "fieldSelector",
   468        "in": "query"
   469       },
   470       {
   471        "uniqueItems": true,
   472        "type": "string",
   473        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
   474        "name": "labelSelector",
   475        "in": "query"
   476       },
   477       {
   478        "uniqueItems": true,
   479        "type": "string",
   480        "description": "If 'true', then the output is pretty printed.",
   481        "name": "pretty",
   482        "in": "query"
   483       },
   484       {
   485        "uniqueItems": true,
   486        "type": "string",
   487        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
   488        "name": "resourceVersion",
   489        "in": "query"
   490       },
   491       {
   492        "uniqueItems": true,
   493        "type": "integer",
   494        "description": "Timeout for the list/watch call.",
   495        "name": "timeoutSeconds",
   496        "in": "query"
   497       },
   498       {
   499        "uniqueItems": true,
   500        "type": "boolean",
   501        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
   502        "name": "watch",
   503        "in": "query"
   504       }
   505      ]
   506     },
   507     "/api/v1/namespaces": {
   508      "get": {
   509       "description": "list or watch objects of kind Namespace",
   510       "consumes": [
   511        "*/*"
   512       ],
   513       "produces": [
   514        "application/json",
   515        "application/yaml",
   516        "application/vnd.kubernetes.protobuf",
   517        "application/json;stream=watch",
   518        "application/vnd.kubernetes.protobuf;stream=watch"
   519       ],
   520       "schemes": [
   521        "https"
   522       ],
   523       "tags": [
   524        "core_v1"
   525       ],
   526       "operationId": "listCoreV1Namespace",
   527       "parameters": [
   528        {
   529         "uniqueItems": true,
   530         "type": "string",
   531         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
   532         "name": "fieldSelector",
   533         "in": "query"
   534        },
   535        {
   536         "uniqueItems": true,
   537         "type": "string",
   538         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
   539         "name": "labelSelector",
   540         "in": "query"
   541        },
   542        {
   543         "uniqueItems": true,
   544         "type": "string",
   545         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
   546         "name": "resourceVersion",
   547         "in": "query"
   548        },
   549        {
   550         "uniqueItems": true,
   551         "type": "integer",
   552         "description": "Timeout for the list/watch call.",
   553         "name": "timeoutSeconds",
   554         "in": "query"
   555        },
   556        {
   557         "uniqueItems": true,
   558         "type": "boolean",
   559         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
   560         "name": "watch",
   561         "in": "query"
   562        }
   563       ],
   564       "responses": {
   565        "200": {
   566         "description": "OK",
   567         "schema": {
   568          "$ref": "#/definitions/v1.NamespaceList"
   569         }
   570        },
   571        "401": {
   572         "description": "Unauthorized"
   573        }
   574       }
   575      },
   576      "post": {
   577       "description": "create a Namespace",
   578       "consumes": [
   579        "*/*"
   580       ],
   581       "produces": [
   582        "application/json",
   583        "application/yaml",
   584        "application/vnd.kubernetes.protobuf"
   585       ],
   586       "schemes": [
   587        "https"
   588       ],
   589       "tags": [
   590        "core_v1"
   591       ],
   592       "operationId": "createCoreV1Namespace",
   593       "parameters": [
   594        {
   595         "name": "body",
   596         "in": "body",
   597         "required": true,
   598         "schema": {
   599          "$ref": "#/definitions/v1.Namespace"
   600         }
   601        }
   602       ],
   603       "responses": {
   604        "200": {
   605         "description": "OK",
   606         "schema": {
   607          "$ref": "#/definitions/v1.Namespace"
   608         }
   609        },
   610        "401": {
   611         "description": "Unauthorized"
   612        }
   613       }
   614      },
   615      "delete": {
   616       "description": "delete collection of Namespace",
   617       "consumes": [
   618        "*/*"
   619       ],
   620       "produces": [
   621        "application/json",
   622        "application/yaml",
   623        "application/vnd.kubernetes.protobuf"
   624       ],
   625       "schemes": [
   626        "https"
   627       ],
   628       "tags": [
   629        "core_v1"
   630       ],
   631       "operationId": "deleteCoreV1CollectionNamespace",
   632       "parameters": [
   633        {
   634         "uniqueItems": true,
   635         "type": "string",
   636         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
   637         "name": "fieldSelector",
   638         "in": "query"
   639        },
   640        {
   641         "uniqueItems": true,
   642         "type": "string",
   643         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
   644         "name": "labelSelector",
   645         "in": "query"
   646        },
   647        {
   648         "uniqueItems": true,
   649         "type": "string",
   650         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
   651         "name": "resourceVersion",
   652         "in": "query"
   653        },
   654        {
   655         "uniqueItems": true,
   656         "type": "integer",
   657         "description": "Timeout for the list/watch call.",
   658         "name": "timeoutSeconds",
   659         "in": "query"
   660        },
   661        {
   662         "uniqueItems": true,
   663         "type": "boolean",
   664         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
   665         "name": "watch",
   666         "in": "query"
   667        }
   668       ],
   669       "responses": {
   670        "200": {
   671         "description": "OK",
   672         "schema": {
   673          "$ref": "#/definitions/unversioned.Status"
   674         }
   675        },
   676        "401": {
   677         "description": "Unauthorized"
   678        }
   679       }
   680      },
   681      "parameters": [
   682       {
   683        "uniqueItems": true,
   684        "type": "string",
   685        "description": "If 'true', then the output is pretty printed.",
   686        "name": "pretty",
   687        "in": "query"
   688       }
   689      ]
   690     },
   691     "/api/v1/namespaces/{namespace}/bindings": {
   692      "post": {
   693       "description": "create a Binding",
   694       "consumes": [
   695        "*/*"
   696       ],
   697       "produces": [
   698        "application/json",
   699        "application/yaml",
   700        "application/vnd.kubernetes.protobuf"
   701       ],
   702       "schemes": [
   703        "https"
   704       ],
   705       "tags": [
   706        "core_v1"
   707       ],
   708       "operationId": "createCoreV1NamespacedBinding",
   709       "responses": {
   710        "200": {
   711         "description": "OK",
   712         "schema": {
   713          "$ref": "#/definitions/v1.Binding"
   714         }
   715        },
   716        "401": {
   717         "description": "Unauthorized"
   718        }
   719       }
   720      },
   721      "parameters": [
   722       {
   723        "name": "body",
   724        "in": "body",
   725        "required": true,
   726        "schema": {
   727         "$ref": "#/definitions/v1.Binding"
   728        }
   729       },
   730       {
   731        "uniqueItems": true,
   732        "type": "string",
   733        "description": "object name and auth scope, such as for teams and projects",
   734        "name": "namespace",
   735        "in": "path",
   736        "required": true
   737       },
   738       {
   739        "uniqueItems": true,
   740        "type": "string",
   741        "description": "If 'true', then the output is pretty printed.",
   742        "name": "pretty",
   743        "in": "query"
   744       }
   745      ]
   746     },
   747     "/api/v1/namespaces/{namespace}/configmaps": {
   748      "get": {
   749       "description": "list or watch objects of kind ConfigMap",
   750       "consumes": [
   751        "*/*"
   752       ],
   753       "produces": [
   754        "application/json",
   755        "application/yaml",
   756        "application/vnd.kubernetes.protobuf",
   757        "application/json;stream=watch",
   758        "application/vnd.kubernetes.protobuf;stream=watch"
   759       ],
   760       "schemes": [
   761        "https"
   762       ],
   763       "tags": [
   764        "core_v1"
   765       ],
   766       "operationId": "listCoreV1NamespacedConfigMap",
   767       "parameters": [
   768        {
   769         "uniqueItems": true,
   770         "type": "string",
   771         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
   772         "name": "fieldSelector",
   773         "in": "query"
   774        },
   775        {
   776         "uniqueItems": true,
   777         "type": "string",
   778         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
   779         "name": "labelSelector",
   780         "in": "query"
   781        },
   782        {
   783         "uniqueItems": true,
   784         "type": "string",
   785         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
   786         "name": "resourceVersion",
   787         "in": "query"
   788        },
   789        {
   790         "uniqueItems": true,
   791         "type": "integer",
   792         "description": "Timeout for the list/watch call.",
   793         "name": "timeoutSeconds",
   794         "in": "query"
   795        },
   796        {
   797         "uniqueItems": true,
   798         "type": "boolean",
   799         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
   800         "name": "watch",
   801         "in": "query"
   802        }
   803       ],
   804       "responses": {
   805        "200": {
   806         "description": "OK",
   807         "schema": {
   808          "$ref": "#/definitions/v1.ConfigMapList"
   809         }
   810        },
   811        "401": {
   812         "description": "Unauthorized"
   813        }
   814       }
   815      },
   816      "post": {
   817       "description": "create a ConfigMap",
   818       "consumes": [
   819        "*/*"
   820       ],
   821       "produces": [
   822        "application/json",
   823        "application/yaml",
   824        "application/vnd.kubernetes.protobuf"
   825       ],
   826       "schemes": [
   827        "https"
   828       ],
   829       "tags": [
   830        "core_v1"
   831       ],
   832       "operationId": "createCoreV1NamespacedConfigMap",
   833       "parameters": [
   834        {
   835         "name": "body",
   836         "in": "body",
   837         "required": true,
   838         "schema": {
   839          "$ref": "#/definitions/v1.ConfigMap"
   840         }
   841        }
   842       ],
   843       "responses": {
   844        "200": {
   845         "description": "OK",
   846         "schema": {
   847          "$ref": "#/definitions/v1.ConfigMap"
   848         }
   849        },
   850        "401": {
   851         "description": "Unauthorized"
   852        }
   853       }
   854      },
   855      "delete": {
   856       "description": "delete collection of ConfigMap",
   857       "consumes": [
   858        "*/*"
   859       ],
   860       "produces": [
   861        "application/json",
   862        "application/yaml",
   863        "application/vnd.kubernetes.protobuf"
   864       ],
   865       "schemes": [
   866        "https"
   867       ],
   868       "tags": [
   869        "core_v1"
   870       ],
   871       "operationId": "deleteCoreV1CollectionNamespacedConfigMap",
   872       "parameters": [
   873        {
   874         "uniqueItems": true,
   875         "type": "string",
   876         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
   877         "name": "fieldSelector",
   878         "in": "query"
   879        },
   880        {
   881         "uniqueItems": true,
   882         "type": "string",
   883         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
   884         "name": "labelSelector",
   885         "in": "query"
   886        },
   887        {
   888         "uniqueItems": true,
   889         "type": "string",
   890         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
   891         "name": "resourceVersion",
   892         "in": "query"
   893        },
   894        {
   895         "uniqueItems": true,
   896         "type": "integer",
   897         "description": "Timeout for the list/watch call.",
   898         "name": "timeoutSeconds",
   899         "in": "query"
   900        },
   901        {
   902         "uniqueItems": true,
   903         "type": "boolean",
   904         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
   905         "name": "watch",
   906         "in": "query"
   907        }
   908       ],
   909       "responses": {
   910        "200": {
   911         "description": "OK",
   912         "schema": {
   913          "$ref": "#/definitions/unversioned.Status"
   914         }
   915        },
   916        "401": {
   917         "description": "Unauthorized"
   918        }
   919       }
   920      },
   921      "parameters": [
   922       {
   923        "uniqueItems": true,
   924        "type": "string",
   925        "description": "object name and auth scope, such as for teams and projects",
   926        "name": "namespace",
   927        "in": "path",
   928        "required": true
   929       },
   930       {
   931        "uniqueItems": true,
   932        "type": "string",
   933        "description": "If 'true', then the output is pretty printed.",
   934        "name": "pretty",
   935        "in": "query"
   936       }
   937      ]
   938     },
   939     "/api/v1/namespaces/{namespace}/configmaps/{name}": {
   940      "get": {
   941       "description": "read the specified ConfigMap",
   942       "consumes": [
   943        "*/*"
   944       ],
   945       "produces": [
   946        "application/json",
   947        "application/yaml",
   948        "application/vnd.kubernetes.protobuf"
   949       ],
   950       "schemes": [
   951        "https"
   952       ],
   953       "tags": [
   954        "core_v1"
   955       ],
   956       "operationId": "readCoreV1NamespacedConfigMap",
   957       "parameters": [
   958        {
   959         "uniqueItems": true,
   960         "type": "boolean",
   961         "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'",
   962         "name": "exact",
   963         "in": "query"
   964        },
   965        {
   966         "uniqueItems": true,
   967         "type": "boolean",
   968         "description": "Should this value be exported.  Export strips fields that a user can not specify.",
   969         "name": "export",
   970         "in": "query"
   971        }
   972       ],
   973       "responses": {
   974        "200": {
   975         "description": "OK",
   976         "schema": {
   977          "$ref": "#/definitions/v1.ConfigMap"
   978         }
   979        },
   980        "401": {
   981         "description": "Unauthorized"
   982        }
   983       }
   984      },
   985      "put": {
   986       "description": "replace the specified ConfigMap",
   987       "consumes": [
   988        "*/*"
   989       ],
   990       "produces": [
   991        "application/json",
   992        "application/yaml",
   993        "application/vnd.kubernetes.protobuf"
   994       ],
   995       "schemes": [
   996        "https"
   997       ],
   998       "tags": [
   999        "core_v1"
  1000       ],
  1001       "operationId": "replaceCoreV1NamespacedConfigMap",
  1002       "parameters": [
  1003        {
  1004         "name": "body",
  1005         "in": "body",
  1006         "required": true,
  1007         "schema": {
  1008          "$ref": "#/definitions/v1.ConfigMap"
  1009         }
  1010        }
  1011       ],
  1012       "responses": {
  1013        "200": {
  1014         "description": "OK",
  1015         "schema": {
  1016          "$ref": "#/definitions/v1.ConfigMap"
  1017         }
  1018        },
  1019        "401": {
  1020         "description": "Unauthorized"
  1021        }
  1022       }
  1023      },
  1024      "delete": {
  1025       "description": "delete a ConfigMap",
  1026       "consumes": [
  1027        "*/*"
  1028       ],
  1029       "produces": [
  1030        "application/json",
  1031        "application/yaml",
  1032        "application/vnd.kubernetes.protobuf"
  1033       ],
  1034       "schemes": [
  1035        "https"
  1036       ],
  1037       "tags": [
  1038        "core_v1"
  1039       ],
  1040       "operationId": "deleteCoreV1NamespacedConfigMap",
  1041       "parameters": [
  1042        {
  1043         "name": "body",
  1044         "in": "body",
  1045         "required": true,
  1046         "schema": {
  1047          "$ref": "#/definitions/v1.DeleteOptions"
  1048         }
  1049        }
  1050       ],
  1051       "responses": {
  1052        "200": {
  1053         "description": "OK",
  1054         "schema": {
  1055          "$ref": "#/definitions/unversioned.Status"
  1056         }
  1057        },
  1058        "401": {
  1059         "description": "Unauthorized"
  1060        }
  1061       }
  1062      },
  1063      "patch": {
  1064       "description": "partially update the specified ConfigMap",
  1065       "consumes": [
  1066        "application/json-patch+json",
  1067        "application/merge-patch+json",
  1068        "application/strategic-merge-patch+json"
  1069       ],
  1070       "produces": [
  1071        "application/json",
  1072        "application/yaml",
  1073        "application/vnd.kubernetes.protobuf"
  1074       ],
  1075       "schemes": [
  1076        "https"
  1077       ],
  1078       "tags": [
  1079        "core_v1"
  1080       ],
  1081       "operationId": "patchCoreV1NamespacedConfigMap",
  1082       "parameters": [
  1083        {
  1084         "name": "body",
  1085         "in": "body",
  1086         "required": true,
  1087         "schema": {
  1088          "$ref": "#/definitions/unversioned.Patch"
  1089         }
  1090        }
  1091       ],
  1092       "responses": {
  1093        "200": {
  1094         "description": "OK",
  1095         "schema": {
  1096          "$ref": "#/definitions/v1.ConfigMap"
  1097         }
  1098        },
  1099        "401": {
  1100         "description": "Unauthorized"
  1101        }
  1102       }
  1103      },
  1104      "parameters": [
  1105       {
  1106        "uniqueItems": true,
  1107        "type": "string",
  1108        "description": "name of the ConfigMap",
  1109        "name": "name",
  1110        "in": "path",
  1111        "required": true
  1112       },
  1113       {
  1114        "uniqueItems": true,
  1115        "type": "string",
  1116        "description": "object name and auth scope, such as for teams and projects",
  1117        "name": "namespace",
  1118        "in": "path",
  1119        "required": true
  1120       },
  1121       {
  1122        "uniqueItems": true,
  1123        "type": "string",
  1124        "description": "If 'true', then the output is pretty printed.",
  1125        "name": "pretty",
  1126        "in": "query"
  1127       }
  1128      ]
  1129     },
  1130     "/api/v1/namespaces/{namespace}/endpoints": {
  1131      "get": {
  1132       "description": "list or watch objects of kind Endpoints",
  1133       "consumes": [
  1134        "*/*"
  1135       ],
  1136       "produces": [
  1137        "application/json",
  1138        "application/yaml",
  1139        "application/vnd.kubernetes.protobuf",
  1140        "application/json;stream=watch",
  1141        "application/vnd.kubernetes.protobuf;stream=watch"
  1142       ],
  1143       "schemes": [
  1144        "https"
  1145       ],
  1146       "tags": [
  1147        "core_v1"
  1148       ],
  1149       "operationId": "listCoreV1NamespacedEndpoints",
  1150       "parameters": [
  1151        {
  1152         "uniqueItems": true,
  1153         "type": "string",
  1154         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  1155         "name": "fieldSelector",
  1156         "in": "query"
  1157        },
  1158        {
  1159         "uniqueItems": true,
  1160         "type": "string",
  1161         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  1162         "name": "labelSelector",
  1163         "in": "query"
  1164        },
  1165        {
  1166         "uniqueItems": true,
  1167         "type": "string",
  1168         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
  1169         "name": "resourceVersion",
  1170         "in": "query"
  1171        },
  1172        {
  1173         "uniqueItems": true,
  1174         "type": "integer",
  1175         "description": "Timeout for the list/watch call.",
  1176         "name": "timeoutSeconds",
  1177         "in": "query"
  1178        },
  1179        {
  1180         "uniqueItems": true,
  1181         "type": "boolean",
  1182         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  1183         "name": "watch",
  1184         "in": "query"
  1185        }
  1186       ],
  1187       "responses": {
  1188        "200": {
  1189         "description": "OK",
  1190         "schema": {
  1191          "$ref": "#/definitions/v1.EndpointsList"
  1192         }
  1193        },
  1194        "401": {
  1195         "description": "Unauthorized"
  1196        }
  1197       }
  1198      },
  1199      "post": {
  1200       "description": "create Endpoints",
  1201       "consumes": [
  1202        "*/*"
  1203       ],
  1204       "produces": [
  1205        "application/json",
  1206        "application/yaml",
  1207        "application/vnd.kubernetes.protobuf"
  1208       ],
  1209       "schemes": [
  1210        "https"
  1211       ],
  1212       "tags": [
  1213        "core_v1"
  1214       ],
  1215       "operationId": "createCoreV1NamespacedEndpoints",
  1216       "parameters": [
  1217        {
  1218         "name": "body",
  1219         "in": "body",
  1220         "required": true,
  1221         "schema": {
  1222          "$ref": "#/definitions/v1.Endpoints"
  1223         }
  1224        }
  1225       ],
  1226       "responses": {
  1227        "200": {
  1228         "description": "OK",
  1229         "schema": {
  1230          "$ref": "#/definitions/v1.Endpoints"
  1231         }
  1232        },
  1233        "401": {
  1234         "description": "Unauthorized"
  1235        }
  1236       }
  1237      },
  1238      "delete": {
  1239       "description": "delete collection of Endpoints",
  1240       "consumes": [
  1241        "*/*"
  1242       ],
  1243       "produces": [
  1244        "application/json",
  1245        "application/yaml",
  1246        "application/vnd.kubernetes.protobuf"
  1247       ],
  1248       "schemes": [
  1249        "https"
  1250       ],
  1251       "tags": [
  1252        "core_v1"
  1253       ],
  1254       "operationId": "deleteCoreV1CollectionNamespacedEndpoints",
  1255       "parameters": [
  1256        {
  1257         "uniqueItems": true,
  1258         "type": "string",
  1259         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  1260         "name": "fieldSelector",
  1261         "in": "query"
  1262        },
  1263        {
  1264         "uniqueItems": true,
  1265         "type": "string",
  1266         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  1267         "name": "labelSelector",
  1268         "in": "query"
  1269        },
  1270        {
  1271         "uniqueItems": true,
  1272         "type": "string",
  1273         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
  1274         "name": "resourceVersion",
  1275         "in": "query"
  1276        },
  1277        {
  1278         "uniqueItems": true,
  1279         "type": "integer",
  1280         "description": "Timeout for the list/watch call.",
  1281         "name": "timeoutSeconds",
  1282         "in": "query"
  1283        },
  1284        {
  1285         "uniqueItems": true,
  1286         "type": "boolean",
  1287         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  1288         "name": "watch",
  1289         "in": "query"
  1290        }
  1291       ],
  1292       "responses": {
  1293        "200": {
  1294         "description": "OK",
  1295         "schema": {
  1296          "$ref": "#/definitions/unversioned.Status"
  1297         }
  1298        },
  1299        "401": {
  1300         "description": "Unauthorized"
  1301        }
  1302       }
  1303      },
  1304      "parameters": [
  1305       {
  1306        "uniqueItems": true,
  1307        "type": "string",
  1308        "description": "object name and auth scope, such as for teams and projects",
  1309        "name": "namespace",
  1310        "in": "path",
  1311        "required": true
  1312       },
  1313       {
  1314        "uniqueItems": true,
  1315        "type": "string",
  1316        "description": "If 'true', then the output is pretty printed.",
  1317        "name": "pretty",
  1318        "in": "query"
  1319       }
  1320      ]
  1321     },
  1322     "/api/v1/namespaces/{namespace}/endpoints/{name}": {
  1323      "get": {
  1324       "description": "read the specified Endpoints",
  1325       "consumes": [
  1326        "*/*"
  1327       ],
  1328       "produces": [
  1329        "application/json",
  1330        "application/yaml",
  1331        "application/vnd.kubernetes.protobuf"
  1332       ],
  1333       "schemes": [
  1334        "https"
  1335       ],
  1336       "tags": [
  1337        "core_v1"
  1338       ],
  1339       "operationId": "readCoreV1NamespacedEndpoints",
  1340       "parameters": [
  1341        {
  1342         "uniqueItems": true,
  1343         "type": "boolean",
  1344         "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'",
  1345         "name": "exact",
  1346         "in": "query"
  1347        },
  1348        {
  1349         "uniqueItems": true,
  1350         "type": "boolean",
  1351         "description": "Should this value be exported.  Export strips fields that a user can not specify.",
  1352         "name": "export",
  1353         "in": "query"
  1354        }
  1355       ],
  1356       "responses": {
  1357        "200": {
  1358         "description": "OK",
  1359         "schema": {
  1360          "$ref": "#/definitions/v1.Endpoints"
  1361         }
  1362        },
  1363        "401": {
  1364         "description": "Unauthorized"
  1365        }
  1366       }
  1367      },
  1368      "put": {
  1369       "description": "replace the specified Endpoints",
  1370       "consumes": [
  1371        "*/*"
  1372       ],
  1373       "produces": [
  1374        "application/json",
  1375        "application/yaml",
  1376        "application/vnd.kubernetes.protobuf"
  1377       ],
  1378       "schemes": [
  1379        "https"
  1380       ],
  1381       "tags": [
  1382        "core_v1"
  1383       ],
  1384       "operationId": "replaceCoreV1NamespacedEndpoints",
  1385       "parameters": [
  1386        {
  1387         "name": "body",
  1388         "in": "body",
  1389         "required": true,
  1390         "schema": {
  1391          "$ref": "#/definitions/v1.Endpoints"
  1392         }
  1393        }
  1394       ],
  1395       "responses": {
  1396        "200": {
  1397         "description": "OK",
  1398         "schema": {
  1399          "$ref": "#/definitions/v1.Endpoints"
  1400         }
  1401        },
  1402        "401": {
  1403         "description": "Unauthorized"
  1404        }
  1405       }
  1406      },
  1407      "delete": {
  1408       "description": "delete Endpoints",
  1409       "consumes": [
  1410        "*/*"
  1411       ],
  1412       "produces": [
  1413        "application/json",
  1414        "application/yaml",
  1415        "application/vnd.kubernetes.protobuf"
  1416       ],
  1417       "schemes": [
  1418        "https"
  1419       ],
  1420       "tags": [
  1421        "core_v1"
  1422       ],
  1423       "operationId": "deleteCoreV1NamespacedEndpoints",
  1424       "parameters": [
  1425        {
  1426         "name": "body",
  1427         "in": "body",
  1428         "required": true,
  1429         "schema": {
  1430          "$ref": "#/definitions/v1.DeleteOptions"
  1431         }
  1432        }
  1433       ],
  1434       "responses": {
  1435        "200": {
  1436         "description": "OK",
  1437         "schema": {
  1438          "$ref": "#/definitions/unversioned.Status"
  1439         }
  1440        },
  1441        "401": {
  1442         "description": "Unauthorized"
  1443        }
  1444       }
  1445      },
  1446      "patch": {
  1447       "description": "partially update the specified Endpoints",
  1448       "consumes": [
  1449        "application/json-patch+json",
  1450        "application/merge-patch+json",
  1451        "application/strategic-merge-patch+json"
  1452       ],
  1453       "produces": [
  1454        "application/json",
  1455        "application/yaml",
  1456        "application/vnd.kubernetes.protobuf"
  1457       ],
  1458       "schemes": [
  1459        "https"
  1460       ],
  1461       "tags": [
  1462        "core_v1"
  1463       ],
  1464       "operationId": "patchCoreV1NamespacedEndpoints",
  1465       "parameters": [
  1466        {
  1467         "name": "body",
  1468         "in": "body",
  1469         "required": true,
  1470         "schema": {
  1471          "$ref": "#/definitions/unversioned.Patch"
  1472         }
  1473        }
  1474       ],
  1475       "responses": {
  1476        "200": {
  1477         "description": "OK",
  1478         "schema": {
  1479          "$ref": "#/definitions/v1.Endpoints"
  1480         }
  1481        },
  1482        "401": {
  1483         "description": "Unauthorized"
  1484        }
  1485       }
  1486      },
  1487      "parameters": [
  1488       {
  1489        "uniqueItems": true,
  1490        "type": "string",
  1491        "description": "name of the Endpoints",
  1492        "name": "name",
  1493        "in": "path",
  1494        "required": true
  1495       },
  1496       {
  1497        "uniqueItems": true,
  1498        "type": "string",
  1499        "description": "object name and auth scope, such as for teams and projects",
  1500        "name": "namespace",
  1501        "in": "path",
  1502        "required": true
  1503       },
  1504       {
  1505        "uniqueItems": true,
  1506        "type": "string",
  1507        "description": "If 'true', then the output is pretty printed.",
  1508        "name": "pretty",
  1509        "in": "query"
  1510       }
  1511      ]
  1512     },
  1513     "/api/v1/namespaces/{namespace}/events": {
  1514      "get": {
  1515       "description": "list or watch objects of kind Event",
  1516       "consumes": [
  1517        "*/*"
  1518       ],
  1519       "produces": [
  1520        "application/json",
  1521        "application/yaml",
  1522        "application/vnd.kubernetes.protobuf",
  1523        "application/json;stream=watch",
  1524        "application/vnd.kubernetes.protobuf;stream=watch"
  1525       ],
  1526       "schemes": [
  1527        "https"
  1528       ],
  1529       "tags": [
  1530        "core_v1"
  1531       ],
  1532       "operationId": "listCoreV1NamespacedEvent",
  1533       "parameters": [
  1534        {
  1535         "uniqueItems": true,
  1536         "type": "string",
  1537         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  1538         "name": "fieldSelector",
  1539         "in": "query"
  1540        },
  1541        {
  1542         "uniqueItems": true,
  1543         "type": "string",
  1544         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  1545         "name": "labelSelector",
  1546         "in": "query"
  1547        },
  1548        {
  1549         "uniqueItems": true,
  1550         "type": "string",
  1551         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
  1552         "name": "resourceVersion",
  1553         "in": "query"
  1554        },
  1555        {
  1556         "uniqueItems": true,
  1557         "type": "integer",
  1558         "description": "Timeout for the list/watch call.",
  1559         "name": "timeoutSeconds",
  1560         "in": "query"
  1561        },
  1562        {
  1563         "uniqueItems": true,
  1564         "type": "boolean",
  1565         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  1566         "name": "watch",
  1567         "in": "query"
  1568        }
  1569       ],
  1570       "responses": {
  1571        "200": {
  1572         "description": "OK",
  1573         "schema": {
  1574          "$ref": "#/definitions/v1.EventList"
  1575         }
  1576        },
  1577        "401": {
  1578         "description": "Unauthorized"
  1579        }
  1580       }
  1581      },
  1582      "post": {
  1583       "description": "create an Event",
  1584       "consumes": [
  1585        "*/*"
  1586       ],
  1587       "produces": [
  1588        "application/json",
  1589        "application/yaml",
  1590        "application/vnd.kubernetes.protobuf"
  1591       ],
  1592       "schemes": [
  1593        "https"
  1594       ],
  1595       "tags": [
  1596        "core_v1"
  1597       ],
  1598       "operationId": "createCoreV1NamespacedEvent",
  1599       "parameters": [
  1600        {
  1601         "name": "body",
  1602         "in": "body",
  1603         "required": true,
  1604         "schema": {
  1605          "$ref": "#/definitions/v1.Event"
  1606         }
  1607        }
  1608       ],
  1609       "responses": {
  1610        "200": {
  1611         "description": "OK",
  1612         "schema": {
  1613          "$ref": "#/definitions/v1.Event"
  1614         }
  1615        },
  1616        "401": {
  1617         "description": "Unauthorized"
  1618        }
  1619       }
  1620      },
  1621      "delete": {
  1622       "description": "delete collection of Event",
  1623       "consumes": [
  1624        "*/*"
  1625       ],
  1626       "produces": [
  1627        "application/json",
  1628        "application/yaml",
  1629        "application/vnd.kubernetes.protobuf"
  1630       ],
  1631       "schemes": [
  1632        "https"
  1633       ],
  1634       "tags": [
  1635        "core_v1"
  1636       ],
  1637       "operationId": "deleteCoreV1CollectionNamespacedEvent",
  1638       "parameters": [
  1639        {
  1640         "uniqueItems": true,
  1641         "type": "string",
  1642         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  1643         "name": "fieldSelector",
  1644         "in": "query"
  1645        },
  1646        {
  1647         "uniqueItems": true,
  1648         "type": "string",
  1649         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  1650         "name": "labelSelector",
  1651         "in": "query"
  1652        },
  1653        {
  1654         "uniqueItems": true,
  1655         "type": "string",
  1656         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
  1657         "name": "resourceVersion",
  1658         "in": "query"
  1659        },
  1660        {
  1661         "uniqueItems": true,
  1662         "type": "integer",
  1663         "description": "Timeout for the list/watch call.",
  1664         "name": "timeoutSeconds",
  1665         "in": "query"
  1666        },
  1667        {
  1668         "uniqueItems": true,
  1669         "type": "boolean",
  1670         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  1671         "name": "watch",
  1672         "in": "query"
  1673        }
  1674       ],
  1675       "responses": {
  1676        "200": {
  1677         "description": "OK",
  1678         "schema": {
  1679          "$ref": "#/definitions/unversioned.Status"
  1680         }
  1681        },
  1682        "401": {
  1683         "description": "Unauthorized"
  1684        }
  1685       }
  1686      },
  1687      "parameters": [
  1688       {
  1689        "uniqueItems": true,
  1690        "type": "string",
  1691        "description": "object name and auth scope, such as for teams and projects",
  1692        "name": "namespace",
  1693        "in": "path",
  1694        "required": true
  1695       },
  1696       {
  1697        "uniqueItems": true,
  1698        "type": "string",
  1699        "description": "If 'true', then the output is pretty printed.",
  1700        "name": "pretty",
  1701        "in": "query"
  1702       }
  1703      ]
  1704     },
  1705     "/api/v1/namespaces/{namespace}/events/{name}": {
  1706      "get": {
  1707       "description": "read the specified Event",
  1708       "consumes": [
  1709        "*/*"
  1710       ],
  1711       "produces": [
  1712        "application/json",
  1713        "application/yaml",
  1714        "application/vnd.kubernetes.protobuf"
  1715       ],
  1716       "schemes": [
  1717        "https"
  1718       ],
  1719       "tags": [
  1720        "core_v1"
  1721       ],
  1722       "operationId": "readCoreV1NamespacedEvent",
  1723       "parameters": [
  1724        {
  1725         "uniqueItems": true,
  1726         "type": "boolean",
  1727         "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'",
  1728         "name": "exact",
  1729         "in": "query"
  1730        },
  1731        {
  1732         "uniqueItems": true,
  1733         "type": "boolean",
  1734         "description": "Should this value be exported.  Export strips fields that a user can not specify.",
  1735         "name": "export",
  1736         "in": "query"
  1737        }
  1738       ],
  1739       "responses": {
  1740        "200": {
  1741         "description": "OK",
  1742         "schema": {
  1743          "$ref": "#/definitions/v1.Event"
  1744         }
  1745        },
  1746        "401": {
  1747         "description": "Unauthorized"
  1748        }
  1749       }
  1750      },
  1751      "put": {
  1752       "description": "replace the specified Event",
  1753       "consumes": [
  1754        "*/*"
  1755       ],
  1756       "produces": [
  1757        "application/json",
  1758        "application/yaml",
  1759        "application/vnd.kubernetes.protobuf"
  1760       ],
  1761       "schemes": [
  1762        "https"
  1763       ],
  1764       "tags": [
  1765        "core_v1"
  1766       ],
  1767       "operationId": "replaceCoreV1NamespacedEvent",
  1768       "parameters": [
  1769        {
  1770         "name": "body",
  1771         "in": "body",
  1772         "required": true,
  1773         "schema": {
  1774          "$ref": "#/definitions/v1.Event"
  1775         }
  1776        }
  1777       ],
  1778       "responses": {
  1779        "200": {
  1780         "description": "OK",
  1781         "schema": {
  1782          "$ref": "#/definitions/v1.Event"
  1783         }
  1784        },
  1785        "401": {
  1786         "description": "Unauthorized"
  1787        }
  1788       }
  1789      },
  1790      "delete": {
  1791       "description": "delete an Event",
  1792       "consumes": [
  1793        "*/*"
  1794       ],
  1795       "produces": [
  1796        "application/json",
  1797        "application/yaml",
  1798        "application/vnd.kubernetes.protobuf"
  1799       ],
  1800       "schemes": [
  1801        "https"
  1802       ],
  1803       "tags": [
  1804        "core_v1"
  1805       ],
  1806       "operationId": "deleteCoreV1NamespacedEvent",
  1807       "parameters": [
  1808        {
  1809         "name": "body",
  1810         "in": "body",
  1811         "required": true,
  1812         "schema": {
  1813          "$ref": "#/definitions/v1.DeleteOptions"
  1814         }
  1815        }
  1816       ],
  1817       "responses": {
  1818        "200": {
  1819         "description": "OK",
  1820         "schema": {
  1821          "$ref": "#/definitions/unversioned.Status"
  1822         }
  1823        },
  1824        "401": {
  1825         "description": "Unauthorized"
  1826        }
  1827       }
  1828      },
  1829      "patch": {
  1830       "description": "partially update the specified Event",
  1831       "consumes": [
  1832        "application/json-patch+json",
  1833        "application/merge-patch+json",
  1834        "application/strategic-merge-patch+json"
  1835       ],
  1836       "produces": [
  1837        "application/json",
  1838        "application/yaml",
  1839        "application/vnd.kubernetes.protobuf"
  1840       ],
  1841       "schemes": [
  1842        "https"
  1843       ],
  1844       "tags": [
  1845        "core_v1"
  1846       ],
  1847       "operationId": "patchCoreV1NamespacedEvent",
  1848       "parameters": [
  1849        {
  1850         "name": "body",
  1851         "in": "body",
  1852         "required": true,
  1853         "schema": {
  1854          "$ref": "#/definitions/unversioned.Patch"
  1855         }
  1856        }
  1857       ],
  1858       "responses": {
  1859        "200": {
  1860         "description": "OK",
  1861         "schema": {
  1862          "$ref": "#/definitions/v1.Event"
  1863         }
  1864        },
  1865        "401": {
  1866         "description": "Unauthorized"
  1867        }
  1868       }
  1869      },
  1870      "parameters": [
  1871       {
  1872        "uniqueItems": true,
  1873        "type": "string",
  1874        "description": "name of the Event",
  1875        "name": "name",
  1876        "in": "path",
  1877        "required": true
  1878       },
  1879       {
  1880        "uniqueItems": true,
  1881        "type": "string",
  1882        "description": "object name and auth scope, such as for teams and projects",
  1883        "name": "namespace",
  1884        "in": "path",
  1885        "required": true
  1886       },
  1887       {
  1888        "uniqueItems": true,
  1889        "type": "string",
  1890        "description": "If 'true', then the output is pretty printed.",
  1891        "name": "pretty",
  1892        "in": "query"
  1893       }
  1894      ]
  1895     },
  1896     "/api/v1/namespaces/{namespace}/limitranges": {
  1897      "get": {
  1898       "description": "list or watch objects of kind LimitRange",
  1899       "consumes": [
  1900        "*/*"
  1901       ],
  1902       "produces": [
  1903        "application/json",
  1904        "application/yaml",
  1905        "application/vnd.kubernetes.protobuf",
  1906        "application/json;stream=watch",
  1907        "application/vnd.kubernetes.protobuf;stream=watch"
  1908       ],
  1909       "schemes": [
  1910        "https"
  1911       ],
  1912       "tags": [
  1913        "core_v1"
  1914       ],
  1915       "operationId": "listCoreV1NamespacedLimitRange",
  1916       "parameters": [
  1917        {
  1918         "uniqueItems": true,
  1919         "type": "string",
  1920         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  1921         "name": "fieldSelector",
  1922         "in": "query"
  1923        },
  1924        {
  1925         "uniqueItems": true,
  1926         "type": "string",
  1927         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  1928         "name": "labelSelector",
  1929         "in": "query"
  1930        },
  1931        {
  1932         "uniqueItems": true,
  1933         "type": "string",
  1934         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
  1935         "name": "resourceVersion",
  1936         "in": "query"
  1937        },
  1938        {
  1939         "uniqueItems": true,
  1940         "type": "integer",
  1941         "description": "Timeout for the list/watch call.",
  1942         "name": "timeoutSeconds",
  1943         "in": "query"
  1944        },
  1945        {
  1946         "uniqueItems": true,
  1947         "type": "boolean",
  1948         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  1949         "name": "watch",
  1950         "in": "query"
  1951        }
  1952       ],
  1953       "responses": {
  1954        "200": {
  1955         "description": "OK",
  1956         "schema": {
  1957          "$ref": "#/definitions/v1.LimitRangeList"
  1958         }
  1959        },
  1960        "401": {
  1961         "description": "Unauthorized"
  1962        }
  1963       }
  1964      },
  1965      "post": {
  1966       "description": "create a LimitRange",
  1967       "consumes": [
  1968        "*/*"
  1969       ],
  1970       "produces": [
  1971        "application/json",
  1972        "application/yaml",
  1973        "application/vnd.kubernetes.protobuf"
  1974       ],
  1975       "schemes": [
  1976        "https"
  1977       ],
  1978       "tags": [
  1979        "core_v1"
  1980       ],
  1981       "operationId": "createCoreV1NamespacedLimitRange",
  1982       "parameters": [
  1983        {
  1984         "name": "body",
  1985         "in": "body",
  1986         "required": true,
  1987         "schema": {
  1988          "$ref": "#/definitions/v1.LimitRange"
  1989         }
  1990        }
  1991       ],
  1992       "responses": {
  1993        "200": {
  1994         "description": "OK",
  1995         "schema": {
  1996          "$ref": "#/definitions/v1.LimitRange"
  1997         }
  1998        },
  1999        "401": {
  2000         "description": "Unauthorized"
  2001        }
  2002       }
  2003      },
  2004      "delete": {
  2005       "description": "delete collection of LimitRange",
  2006       "consumes": [
  2007        "*/*"
  2008       ],
  2009       "produces": [
  2010        "application/json",
  2011        "application/yaml",
  2012        "application/vnd.kubernetes.protobuf"
  2013       ],
  2014       "schemes": [
  2015        "https"
  2016       ],
  2017       "tags": [
  2018        "core_v1"
  2019       ],
  2020       "operationId": "deleteCoreV1CollectionNamespacedLimitRange",
  2021       "parameters": [
  2022        {
  2023         "uniqueItems": true,
  2024         "type": "string",
  2025         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  2026         "name": "fieldSelector",
  2027         "in": "query"
  2028        },
  2029        {
  2030         "uniqueItems": true,
  2031         "type": "string",
  2032         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  2033         "name": "labelSelector",
  2034         "in": "query"
  2035        },
  2036        {
  2037         "uniqueItems": true,
  2038         "type": "string",
  2039         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
  2040         "name": "resourceVersion",
  2041         "in": "query"
  2042        },
  2043        {
  2044         "uniqueItems": true,
  2045         "type": "integer",
  2046         "description": "Timeout for the list/watch call.",
  2047         "name": "timeoutSeconds",
  2048         "in": "query"
  2049        },
  2050        {
  2051         "uniqueItems": true,
  2052         "type": "boolean",
  2053         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  2054         "name": "watch",
  2055         "in": "query"
  2056        }
  2057       ],
  2058       "responses": {
  2059        "200": {
  2060         "description": "OK",
  2061         "schema": {
  2062          "$ref": "#/definitions/unversioned.Status"
  2063         }
  2064        },
  2065        "401": {
  2066         "description": "Unauthorized"
  2067        }
  2068       }
  2069      },
  2070      "parameters": [
  2071       {
  2072        "uniqueItems": true,
  2073        "type": "string",
  2074        "description": "object name and auth scope, such as for teams and projects",
  2075        "name": "namespace",
  2076        "in": "path",
  2077        "required": true
  2078       },
  2079       {
  2080        "uniqueItems": true,
  2081        "type": "string",
  2082        "description": "If 'true', then the output is pretty printed.",
  2083        "name": "pretty",
  2084        "in": "query"
  2085       }
  2086      ]
  2087     },
  2088     "/api/v1/namespaces/{namespace}/limitranges/{name}": {
  2089      "get": {
  2090       "description": "read the specified LimitRange",
  2091       "consumes": [
  2092        "*/*"
  2093       ],
  2094       "produces": [
  2095        "application/json",
  2096        "application/yaml",
  2097        "application/vnd.kubernetes.protobuf"
  2098       ],
  2099       "schemes": [
  2100        "https"
  2101       ],
  2102       "tags": [
  2103        "core_v1"
  2104       ],
  2105       "operationId": "readCoreV1NamespacedLimitRange",
  2106       "parameters": [
  2107        {
  2108         "uniqueItems": true,
  2109         "type": "boolean",
  2110         "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'",
  2111         "name": "exact",
  2112         "in": "query"
  2113        },
  2114        {
  2115         "uniqueItems": true,
  2116         "type": "boolean",
  2117         "description": "Should this value be exported.  Export strips fields that a user can not specify.",
  2118         "name": "export",
  2119         "in": "query"
  2120        }
  2121       ],
  2122       "responses": {
  2123        "200": {
  2124         "description": "OK",
  2125         "schema": {
  2126          "$ref": "#/definitions/v1.LimitRange"
  2127         }
  2128        },
  2129        "401": {
  2130         "description": "Unauthorized"
  2131        }
  2132       }
  2133      },
  2134      "put": {
  2135       "description": "replace the specified LimitRange",
  2136       "consumes": [
  2137        "*/*"
  2138       ],
  2139       "produces": [
  2140        "application/json",
  2141        "application/yaml",
  2142        "application/vnd.kubernetes.protobuf"
  2143       ],
  2144       "schemes": [
  2145        "https"
  2146       ],
  2147       "tags": [
  2148        "core_v1"
  2149       ],
  2150       "operationId": "replaceCoreV1NamespacedLimitRange",
  2151       "parameters": [
  2152        {
  2153         "name": "body",
  2154         "in": "body",
  2155         "required": true,
  2156         "schema": {
  2157          "$ref": "#/definitions/v1.LimitRange"
  2158         }
  2159        }
  2160       ],
  2161       "responses": {
  2162        "200": {
  2163         "description": "OK",
  2164         "schema": {
  2165          "$ref": "#/definitions/v1.LimitRange"
  2166         }
  2167        },
  2168        "401": {
  2169         "description": "Unauthorized"
  2170        }
  2171       }
  2172      },
  2173      "delete": {
  2174       "description": "delete a LimitRange",
  2175       "consumes": [
  2176        "*/*"
  2177       ],
  2178       "produces": [
  2179        "application/json",
  2180        "application/yaml",
  2181        "application/vnd.kubernetes.protobuf"
  2182       ],
  2183       "schemes": [
  2184        "https"
  2185       ],
  2186       "tags": [
  2187        "core_v1"
  2188       ],
  2189       "operationId": "deleteCoreV1NamespacedLimitRange",
  2190       "parameters": [
  2191        {
  2192         "name": "body",
  2193         "in": "body",
  2194         "required": true,
  2195         "schema": {
  2196          "$ref": "#/definitions/v1.DeleteOptions"
  2197         }
  2198        }
  2199       ],
  2200       "responses": {
  2201        "200": {
  2202         "description": "OK",
  2203         "schema": {
  2204          "$ref": "#/definitions/unversioned.Status"
  2205         }
  2206        },
  2207        "401": {
  2208         "description": "Unauthorized"
  2209        }
  2210       }
  2211      },
  2212      "patch": {
  2213       "description": "partially update the specified LimitRange",
  2214       "consumes": [
  2215        "application/json-patch+json",
  2216        "application/merge-patch+json",
  2217        "application/strategic-merge-patch+json"
  2218       ],
  2219       "produces": [
  2220        "application/json",
  2221        "application/yaml",
  2222        "application/vnd.kubernetes.protobuf"
  2223       ],
  2224       "schemes": [
  2225        "https"
  2226       ],
  2227       "tags": [
  2228        "core_v1"
  2229       ],
  2230       "operationId": "patchCoreV1NamespacedLimitRange",
  2231       "parameters": [
  2232        {
  2233         "name": "body",
  2234         "in": "body",
  2235         "required": true,
  2236         "schema": {
  2237          "$ref": "#/definitions/unversioned.Patch"
  2238         }
  2239        }
  2240       ],
  2241       "responses": {
  2242        "200": {
  2243         "description": "OK",
  2244         "schema": {
  2245          "$ref": "#/definitions/v1.LimitRange"
  2246         }
  2247        },
  2248        "401": {
  2249         "description": "Unauthorized"
  2250        }
  2251       }
  2252      },
  2253      "parameters": [
  2254       {
  2255        "uniqueItems": true,
  2256        "type": "string",
  2257        "description": "name of the LimitRange",
  2258        "name": "name",
  2259        "in": "path",
  2260        "required": true
  2261       },
  2262       {
  2263        "uniqueItems": true,
  2264        "type": "string",
  2265        "description": "object name and auth scope, such as for teams and projects",
  2266        "name": "namespace",
  2267        "in": "path",
  2268        "required": true
  2269       },
  2270       {
  2271        "uniqueItems": true,
  2272        "type": "string",
  2273        "description": "If 'true', then the output is pretty printed.",
  2274        "name": "pretty",
  2275        "in": "query"
  2276       }
  2277      ]
  2278     },
  2279     "/api/v1/namespaces/{namespace}/persistentvolumeclaims": {
  2280      "get": {
  2281       "description": "list or watch objects of kind PersistentVolumeClaim",
  2282       "consumes": [
  2283        "*/*"
  2284       ],
  2285       "produces": [
  2286        "application/json",
  2287        "application/yaml",
  2288        "application/vnd.kubernetes.protobuf",
  2289        "application/json;stream=watch",
  2290        "application/vnd.kubernetes.protobuf;stream=watch"
  2291       ],
  2292       "schemes": [
  2293        "https"
  2294       ],
  2295       "tags": [
  2296        "core_v1"
  2297       ],
  2298       "operationId": "listCoreV1NamespacedPersistentVolumeClaim",
  2299       "parameters": [
  2300        {
  2301         "uniqueItems": true,
  2302         "type": "string",
  2303         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  2304         "name": "fieldSelector",
  2305         "in": "query"
  2306        },
  2307        {
  2308         "uniqueItems": true,
  2309         "type": "string",
  2310         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  2311         "name": "labelSelector",
  2312         "in": "query"
  2313        },
  2314        {
  2315         "uniqueItems": true,
  2316         "type": "string",
  2317         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
  2318         "name": "resourceVersion",
  2319         "in": "query"
  2320        },
  2321        {
  2322         "uniqueItems": true,
  2323         "type": "integer",
  2324         "description": "Timeout for the list/watch call.",
  2325         "name": "timeoutSeconds",
  2326         "in": "query"
  2327        },
  2328        {
  2329         "uniqueItems": true,
  2330         "type": "boolean",
  2331         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  2332         "name": "watch",
  2333         "in": "query"
  2334        }
  2335       ],
  2336       "responses": {
  2337        "200": {
  2338         "description": "OK",
  2339         "schema": {
  2340          "$ref": "#/definitions/v1.PersistentVolumeClaimList"
  2341         }
  2342        },
  2343        "401": {
  2344         "description": "Unauthorized"
  2345        }
  2346       }
  2347      },
  2348      "post": {
  2349       "description": "create a PersistentVolumeClaim",
  2350       "consumes": [
  2351        "*/*"
  2352       ],
  2353       "produces": [
  2354        "application/json",
  2355        "application/yaml",
  2356        "application/vnd.kubernetes.protobuf"
  2357       ],
  2358       "schemes": [
  2359        "https"
  2360       ],
  2361       "tags": [
  2362        "core_v1"
  2363       ],
  2364       "operationId": "createCoreV1NamespacedPersistentVolumeClaim",
  2365       "parameters": [
  2366        {
  2367         "name": "body",
  2368         "in": "body",
  2369         "required": true,
  2370         "schema": {
  2371          "$ref": "#/definitions/v1.PersistentVolumeClaim"
  2372         }
  2373        }
  2374       ],
  2375       "responses": {
  2376        "200": {
  2377         "description": "OK",
  2378         "schema": {
  2379          "$ref": "#/definitions/v1.PersistentVolumeClaim"
  2380         }
  2381        },
  2382        "401": {
  2383         "description": "Unauthorized"
  2384        }
  2385       }
  2386      },
  2387      "delete": {
  2388       "description": "delete collection of PersistentVolumeClaim",
  2389       "consumes": [
  2390        "*/*"
  2391       ],
  2392       "produces": [
  2393        "application/json",
  2394        "application/yaml",
  2395        "application/vnd.kubernetes.protobuf"
  2396       ],
  2397       "schemes": [
  2398        "https"
  2399       ],
  2400       "tags": [
  2401        "core_v1"
  2402       ],
  2403       "operationId": "deleteCoreV1CollectionNamespacedPersistentVolumeClaim",
  2404       "parameters": [
  2405        {
  2406         "uniqueItems": true,
  2407         "type": "string",
  2408         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  2409         "name": "fieldSelector",
  2410         "in": "query"
  2411        },
  2412        {
  2413         "uniqueItems": true,
  2414         "type": "string",
  2415         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  2416         "name": "labelSelector",
  2417         "in": "query"
  2418        },
  2419        {
  2420         "uniqueItems": true,
  2421         "type": "string",
  2422         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
  2423         "name": "resourceVersion",
  2424         "in": "query"
  2425        },
  2426        {
  2427         "uniqueItems": true,
  2428         "type": "integer",
  2429         "description": "Timeout for the list/watch call.",
  2430         "name": "timeoutSeconds",
  2431         "in": "query"
  2432        },
  2433        {
  2434         "uniqueItems": true,
  2435         "type": "boolean",
  2436         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  2437         "name": "watch",
  2438         "in": "query"
  2439        }
  2440       ],
  2441       "responses": {
  2442        "200": {
  2443         "description": "OK",
  2444         "schema": {
  2445          "$ref": "#/definitions/unversioned.Status"
  2446         }
  2447        },
  2448        "401": {
  2449         "description": "Unauthorized"
  2450        }
  2451       }
  2452      },
  2453      "parameters": [
  2454       {
  2455        "uniqueItems": true,
  2456        "type": "string",
  2457        "description": "object name and auth scope, such as for teams and projects",
  2458        "name": "namespace",
  2459        "in": "path",
  2460        "required": true
  2461       },
  2462       {
  2463        "uniqueItems": true,
  2464        "type": "string",
  2465        "description": "If 'true', then the output is pretty printed.",
  2466        "name": "pretty",
  2467        "in": "query"
  2468       }
  2469      ]
  2470     },
  2471     "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}": {
  2472      "get": {
  2473       "description": "read the specified PersistentVolumeClaim",
  2474       "consumes": [
  2475        "*/*"
  2476       ],
  2477       "produces": [
  2478        "application/json",
  2479        "application/yaml",
  2480        "application/vnd.kubernetes.protobuf"
  2481       ],
  2482       "schemes": [
  2483        "https"
  2484       ],
  2485       "tags": [
  2486        "core_v1"
  2487       ],
  2488       "operationId": "readCoreV1NamespacedPersistentVolumeClaim",
  2489       "parameters": [
  2490        {
  2491         "uniqueItems": true,
  2492         "type": "boolean",
  2493         "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'",
  2494         "name": "exact",
  2495         "in": "query"
  2496        },
  2497        {
  2498         "uniqueItems": true,
  2499         "type": "boolean",
  2500         "description": "Should this value be exported.  Export strips fields that a user can not specify.",
  2501         "name": "export",
  2502         "in": "query"
  2503        }
  2504       ],
  2505       "responses": {
  2506        "200": {
  2507         "description": "OK",
  2508         "schema": {
  2509          "$ref": "#/definitions/v1.PersistentVolumeClaim"
  2510         }
  2511        },
  2512        "401": {
  2513         "description": "Unauthorized"
  2514        }
  2515       }
  2516      },
  2517      "put": {
  2518       "description": "replace the specified PersistentVolumeClaim",
  2519       "consumes": [
  2520        "*/*"
  2521       ],
  2522       "produces": [
  2523        "application/json",
  2524        "application/yaml",
  2525        "application/vnd.kubernetes.protobuf"
  2526       ],
  2527       "schemes": [
  2528        "https"
  2529       ],
  2530       "tags": [
  2531        "core_v1"
  2532       ],
  2533       "operationId": "replaceCoreV1NamespacedPersistentVolumeClaim",
  2534       "parameters": [
  2535        {
  2536         "name": "body",
  2537         "in": "body",
  2538         "required": true,
  2539         "schema": {
  2540          "$ref": "#/definitions/v1.PersistentVolumeClaim"
  2541         }
  2542        }
  2543       ],
  2544       "responses": {
  2545        "200": {
  2546         "description": "OK",
  2547         "schema": {
  2548          "$ref": "#/definitions/v1.PersistentVolumeClaim"
  2549         }
  2550        },
  2551        "401": {
  2552         "description": "Unauthorized"
  2553        }
  2554       }
  2555      },
  2556      "delete": {
  2557       "description": "delete a PersistentVolumeClaim",
  2558       "consumes": [
  2559        "*/*"
  2560       ],
  2561       "produces": [
  2562        "application/json",
  2563        "application/yaml",
  2564        "application/vnd.kubernetes.protobuf"
  2565       ],
  2566       "schemes": [
  2567        "https"
  2568       ],
  2569       "tags": [
  2570        "core_v1"
  2571       ],
  2572       "operationId": "deleteCoreV1NamespacedPersistentVolumeClaim",
  2573       "parameters": [
  2574        {
  2575         "name": "body",
  2576         "in": "body",
  2577         "required": true,
  2578         "schema": {
  2579          "$ref": "#/definitions/v1.DeleteOptions"
  2580         }
  2581        }
  2582       ],
  2583       "responses": {
  2584        "200": {
  2585         "description": "OK",
  2586         "schema": {
  2587          "$ref": "#/definitions/unversioned.Status"
  2588         }
  2589        },
  2590        "401": {
  2591         "description": "Unauthorized"
  2592        }
  2593       }
  2594      },
  2595      "patch": {
  2596       "description": "partially update the specified PersistentVolumeClaim",
  2597       "consumes": [
  2598        "application/json-patch+json",
  2599        "application/merge-patch+json",
  2600        "application/strategic-merge-patch+json"
  2601       ],
  2602       "produces": [
  2603        "application/json",
  2604        "application/yaml",
  2605        "application/vnd.kubernetes.protobuf"
  2606       ],
  2607       "schemes": [
  2608        "https"
  2609       ],
  2610       "tags": [
  2611        "core_v1"
  2612       ],
  2613       "operationId": "patchCoreV1NamespacedPersistentVolumeClaim",
  2614       "parameters": [
  2615        {
  2616         "name": "body",
  2617         "in": "body",
  2618         "required": true,
  2619         "schema": {
  2620          "$ref": "#/definitions/unversioned.Patch"
  2621         }
  2622        }
  2623       ],
  2624       "responses": {
  2625        "200": {
  2626         "description": "OK",
  2627         "schema": {
  2628          "$ref": "#/definitions/v1.PersistentVolumeClaim"
  2629         }
  2630        },
  2631        "401": {
  2632         "description": "Unauthorized"
  2633        }
  2634       }
  2635      },
  2636      "parameters": [
  2637       {
  2638        "uniqueItems": true,
  2639        "type": "string",
  2640        "description": "name of the PersistentVolumeClaim",
  2641        "name": "name",
  2642        "in": "path",
  2643        "required": true
  2644       },
  2645       {
  2646        "uniqueItems": true,
  2647        "type": "string",
  2648        "description": "object name and auth scope, such as for teams and projects",
  2649        "name": "namespace",
  2650        "in": "path",
  2651        "required": true
  2652       },
  2653       {
  2654        "uniqueItems": true,
  2655        "type": "string",
  2656        "description": "If 'true', then the output is pretty printed.",
  2657        "name": "pretty",
  2658        "in": "query"
  2659       }
  2660      ]
  2661     },
  2662     "/api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status": {
  2663      "get": {
  2664       "description": "read status of the specified PersistentVolumeClaim",
  2665       "consumes": [
  2666        "*/*"
  2667       ],
  2668       "produces": [
  2669        "application/json",
  2670        "application/yaml",
  2671        "application/vnd.kubernetes.protobuf"
  2672       ],
  2673       "schemes": [
  2674        "https"
  2675       ],
  2676       "tags": [
  2677        "core_v1"
  2678       ],
  2679       "operationId": "readCoreV1NamespacedPersistentVolumeClaimStatus",
  2680       "responses": {
  2681        "200": {
  2682         "description": "OK",
  2683         "schema": {
  2684          "$ref": "#/definitions/v1.PersistentVolumeClaim"
  2685         }
  2686        },
  2687        "401": {
  2688         "description": "Unauthorized"
  2689        }
  2690       }
  2691      },
  2692      "put": {
  2693       "description": "replace status of the specified PersistentVolumeClaim",
  2694       "consumes": [
  2695        "*/*"
  2696       ],
  2697       "produces": [
  2698        "application/json",
  2699        "application/yaml",
  2700        "application/vnd.kubernetes.protobuf"
  2701       ],
  2702       "schemes": [
  2703        "https"
  2704       ],
  2705       "tags": [
  2706        "core_v1"
  2707       ],
  2708       "operationId": "replaceCoreV1NamespacedPersistentVolumeClaimStatus",
  2709       "parameters": [
  2710        {
  2711         "name": "body",
  2712         "in": "body",
  2713         "required": true,
  2714         "schema": {
  2715          "$ref": "#/definitions/v1.PersistentVolumeClaim"
  2716         }
  2717        }
  2718       ],
  2719       "responses": {
  2720        "200": {
  2721         "description": "OK",
  2722         "schema": {
  2723          "$ref": "#/definitions/v1.PersistentVolumeClaim"
  2724         }
  2725        },
  2726        "401": {
  2727         "description": "Unauthorized"
  2728        }
  2729       }
  2730      },
  2731      "patch": {
  2732       "description": "partially update status of the specified PersistentVolumeClaim",
  2733       "consumes": [
  2734        "application/json-patch+json",
  2735        "application/merge-patch+json",
  2736        "application/strategic-merge-patch+json"
  2737       ],
  2738       "produces": [
  2739        "application/json",
  2740        "application/yaml",
  2741        "application/vnd.kubernetes.protobuf"
  2742       ],
  2743       "schemes": [
  2744        "https"
  2745       ],
  2746       "tags": [
  2747        "core_v1"
  2748       ],
  2749       "operationId": "patchCoreV1NamespacedPersistentVolumeClaimStatus",
  2750       "parameters": [
  2751        {
  2752         "name": "body",
  2753         "in": "body",
  2754         "required": true,
  2755         "schema": {
  2756          "$ref": "#/definitions/unversioned.Patch"
  2757         }
  2758        }
  2759       ],
  2760       "responses": {
  2761        "200": {
  2762         "description": "OK",
  2763         "schema": {
  2764          "$ref": "#/definitions/v1.PersistentVolumeClaim"
  2765         }
  2766        },
  2767        "401": {
  2768         "description": "Unauthorized"
  2769        }
  2770       }
  2771      },
  2772      "parameters": [
  2773       {
  2774        "uniqueItems": true,
  2775        "type": "string",
  2776        "description": "name of the PersistentVolumeClaim",
  2777        "name": "name",
  2778        "in": "path",
  2779        "required": true
  2780       },
  2781       {
  2782        "uniqueItems": true,
  2783        "type": "string",
  2784        "description": "object name and auth scope, such as for teams and projects",
  2785        "name": "namespace",
  2786        "in": "path",
  2787        "required": true
  2788       },
  2789       {
  2790        "uniqueItems": true,
  2791        "type": "string",
  2792        "description": "If 'true', then the output is pretty printed.",
  2793        "name": "pretty",
  2794        "in": "query"
  2795       }
  2796      ]
  2797     },
  2798     "/api/v1/namespaces/{namespace}/pods": {
  2799      "get": {
  2800       "description": "list or watch objects of kind Pod",
  2801       "consumes": [
  2802        "*/*"
  2803       ],
  2804       "produces": [
  2805        "application/json",
  2806        "application/yaml",
  2807        "application/vnd.kubernetes.protobuf",
  2808        "application/json;stream=watch",
  2809        "application/vnd.kubernetes.protobuf;stream=watch"
  2810       ],
  2811       "schemes": [
  2812        "https"
  2813       ],
  2814       "tags": [
  2815        "core_v1"
  2816       ],
  2817       "operationId": "listCoreV1NamespacedPod",
  2818       "parameters": [
  2819        {
  2820         "uniqueItems": true,
  2821         "type": "string",
  2822         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  2823         "name": "fieldSelector",
  2824         "in": "query"
  2825        },
  2826        {
  2827         "uniqueItems": true,
  2828         "type": "string",
  2829         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  2830         "name": "labelSelector",
  2831         "in": "query"
  2832        },
  2833        {
  2834         "uniqueItems": true,
  2835         "type": "string",
  2836         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
  2837         "name": "resourceVersion",
  2838         "in": "query"
  2839        },
  2840        {
  2841         "uniqueItems": true,
  2842         "type": "integer",
  2843         "description": "Timeout for the list/watch call.",
  2844         "name": "timeoutSeconds",
  2845         "in": "query"
  2846        },
  2847        {
  2848         "uniqueItems": true,
  2849         "type": "boolean",
  2850         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  2851         "name": "watch",
  2852         "in": "query"
  2853        }
  2854       ],
  2855       "responses": {
  2856        "200": {
  2857         "description": "OK",
  2858         "schema": {
  2859          "$ref": "#/definitions/v1.PodList"
  2860         }
  2861        },
  2862        "401": {
  2863         "description": "Unauthorized"
  2864        }
  2865       }
  2866      },
  2867      "post": {
  2868       "description": "create a Pod",
  2869       "consumes": [
  2870        "*/*"
  2871       ],
  2872       "produces": [
  2873        "application/json",
  2874        "application/yaml",
  2875        "application/vnd.kubernetes.protobuf"
  2876       ],
  2877       "schemes": [
  2878        "https"
  2879       ],
  2880       "tags": [
  2881        "core_v1"
  2882       ],
  2883       "operationId": "createCoreV1NamespacedPod",
  2884       "parameters": [
  2885        {
  2886         "name": "body",
  2887         "in": "body",
  2888         "required": true,
  2889         "schema": {
  2890          "$ref": "#/definitions/v1.Pod"
  2891         }
  2892        }
  2893       ],
  2894       "responses": {
  2895        "200": {
  2896         "description": "OK",
  2897         "schema": {
  2898          "$ref": "#/definitions/v1.Pod"
  2899         }
  2900        },
  2901        "401": {
  2902         "description": "Unauthorized"
  2903        }
  2904       }
  2905      },
  2906      "delete": {
  2907       "description": "delete collection of Pod",
  2908       "consumes": [
  2909        "*/*"
  2910       ],
  2911       "produces": [
  2912        "application/json",
  2913        "application/yaml",
  2914        "application/vnd.kubernetes.protobuf"
  2915       ],
  2916       "schemes": [
  2917        "https"
  2918       ],
  2919       "tags": [
  2920        "core_v1"
  2921       ],
  2922       "operationId": "deleteCoreV1CollectionNamespacedPod",
  2923       "parameters": [
  2924        {
  2925         "uniqueItems": true,
  2926         "type": "string",
  2927         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  2928         "name": "fieldSelector",
  2929         "in": "query"
  2930        },
  2931        {
  2932         "uniqueItems": true,
  2933         "type": "string",
  2934         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  2935         "name": "labelSelector",
  2936         "in": "query"
  2937        },
  2938        {
  2939         "uniqueItems": true,
  2940         "type": "string",
  2941         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
  2942         "name": "resourceVersion",
  2943         "in": "query"
  2944        },
  2945        {
  2946         "uniqueItems": true,
  2947         "type": "integer",
  2948         "description": "Timeout for the list/watch call.",
  2949         "name": "timeoutSeconds",
  2950         "in": "query"
  2951        },
  2952        {
  2953         "uniqueItems": true,
  2954         "type": "boolean",
  2955         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  2956         "name": "watch",
  2957         "in": "query"
  2958        }
  2959       ],
  2960       "responses": {
  2961        "200": {
  2962         "description": "OK",
  2963         "schema": {
  2964          "$ref": "#/definitions/unversioned.Status"
  2965         }
  2966        },
  2967        "401": {
  2968         "description": "Unauthorized"
  2969        }
  2970       }
  2971      },
  2972      "parameters": [
  2973       {
  2974        "uniqueItems": true,
  2975        "type": "string",
  2976        "description": "object name and auth scope, such as for teams and projects",
  2977        "name": "namespace",
  2978        "in": "path",
  2979        "required": true
  2980       },
  2981       {
  2982        "uniqueItems": true,
  2983        "type": "string",
  2984        "description": "If 'true', then the output is pretty printed.",
  2985        "name": "pretty",
  2986        "in": "query"
  2987       }
  2988      ]
  2989     },
  2990     "/api/v1/namespaces/{namespace}/pods/{name}": {
  2991      "get": {
  2992       "description": "read the specified Pod",
  2993       "consumes": [
  2994        "*/*"
  2995       ],
  2996       "produces": [
  2997        "application/json",
  2998        "application/yaml",
  2999        "application/vnd.kubernetes.protobuf"
  3000       ],
  3001       "schemes": [
  3002        "https"
  3003       ],
  3004       "tags": [
  3005        "core_v1"
  3006       ],
  3007       "operationId": "readCoreV1NamespacedPod",
  3008       "parameters": [
  3009        {
  3010         "uniqueItems": true,
  3011         "type": "boolean",
  3012         "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'",
  3013         "name": "exact",
  3014         "in": "query"
  3015        },
  3016        {
  3017         "uniqueItems": true,
  3018         "type": "boolean",
  3019         "description": "Should this value be exported.  Export strips fields that a user can not specify.",
  3020         "name": "export",
  3021         "in": "query"
  3022        }
  3023       ],
  3024       "responses": {
  3025        "200": {
  3026         "description": "OK",
  3027         "schema": {
  3028          "$ref": "#/definitions/v1.Pod"
  3029         }
  3030        },
  3031        "401": {
  3032         "description": "Unauthorized"
  3033        }
  3034       }
  3035      },
  3036      "put": {
  3037       "description": "replace the specified Pod",
  3038       "consumes": [
  3039        "*/*"
  3040       ],
  3041       "produces": [
  3042        "application/json",
  3043        "application/yaml",
  3044        "application/vnd.kubernetes.protobuf"
  3045       ],
  3046       "schemes": [
  3047        "https"
  3048       ],
  3049       "tags": [
  3050        "core_v1"
  3051       ],
  3052       "operationId": "replaceCoreV1NamespacedPod",
  3053       "parameters": [
  3054        {
  3055         "name": "body",
  3056         "in": "body",
  3057         "required": true,
  3058         "schema": {
  3059          "$ref": "#/definitions/v1.Pod"
  3060         }
  3061        }
  3062       ],
  3063       "responses": {
  3064        "200": {
  3065         "description": "OK",
  3066         "schema": {
  3067          "$ref": "#/definitions/v1.Pod"
  3068         }
  3069        },
  3070        "401": {
  3071         "description": "Unauthorized"
  3072        }
  3073       }
  3074      },
  3075      "delete": {
  3076       "description": "delete a Pod",
  3077       "consumes": [
  3078        "*/*"
  3079       ],
  3080       "produces": [
  3081        "application/json",
  3082        "application/yaml",
  3083        "application/vnd.kubernetes.protobuf"
  3084       ],
  3085       "schemes": [
  3086        "https"
  3087       ],
  3088       "tags": [
  3089        "core_v1"
  3090       ],
  3091       "operationId": "deleteCoreV1NamespacedPod",
  3092       "parameters": [
  3093        {
  3094         "name": "body",
  3095         "in": "body",
  3096         "required": true,
  3097         "schema": {
  3098          "$ref": "#/definitions/v1.DeleteOptions"
  3099         }
  3100        }
  3101       ],
  3102       "responses": {
  3103        "200": {
  3104         "description": "OK",
  3105         "schema": {
  3106          "$ref": "#/definitions/unversioned.Status"
  3107         }
  3108        },
  3109        "401": {
  3110         "description": "Unauthorized"
  3111        }
  3112       }
  3113      },
  3114      "patch": {
  3115       "description": "partially update the specified Pod",
  3116       "consumes": [
  3117        "application/json-patch+json",
  3118        "application/merge-patch+json",
  3119        "application/strategic-merge-patch+json"
  3120       ],
  3121       "produces": [
  3122        "application/json",
  3123        "application/yaml",
  3124        "application/vnd.kubernetes.protobuf"
  3125       ],
  3126       "schemes": [
  3127        "https"
  3128       ],
  3129       "tags": [
  3130        "core_v1"
  3131       ],
  3132       "operationId": "patchCoreV1NamespacedPod",
  3133       "parameters": [
  3134        {
  3135         "name": "body",
  3136         "in": "body",
  3137         "required": true,
  3138         "schema": {
  3139          "$ref": "#/definitions/unversioned.Patch"
  3140         }
  3141        }
  3142       ],
  3143       "responses": {
  3144        "200": {
  3145         "description": "OK",
  3146         "schema": {
  3147          "$ref": "#/definitions/v1.Pod"
  3148         }
  3149        },
  3150        "401": {
  3151         "description": "Unauthorized"
  3152        }
  3153       }
  3154      },
  3155      "parameters": [
  3156       {
  3157        "uniqueItems": true,
  3158        "type": "string",
  3159        "description": "name of the Pod",
  3160        "name": "name",
  3161        "in": "path",
  3162        "required": true
  3163       },
  3164       {
  3165        "uniqueItems": true,
  3166        "type": "string",
  3167        "description": "object name and auth scope, such as for teams and projects",
  3168        "name": "namespace",
  3169        "in": "path",
  3170        "required": true
  3171       },
  3172       {
  3173        "uniqueItems": true,
  3174        "type": "string",
  3175        "description": "If 'true', then the output is pretty printed.",
  3176        "name": "pretty",
  3177        "in": "query"
  3178       }
  3179      ]
  3180     },
  3181     "/api/v1/namespaces/{namespace}/pods/{name}/attach": {
  3182      "get": {
  3183       "description": "connect GET requests to attach of Pod",
  3184       "consumes": [
  3185        "*/*"
  3186       ],
  3187       "produces": [
  3188        "*/*"
  3189       ],
  3190       "schemes": [
  3191        "https"
  3192       ],
  3193       "tags": [
  3194        "core_v1"
  3195       ],
  3196       "operationId": "connectCoreV1GetNamespacedPodAttach",
  3197       "responses": {
  3198        "200": {
  3199         "description": "OK",
  3200         "schema": {
  3201          "type": "string"
  3202         }
  3203        },
  3204        "401": {
  3205         "description": "Unauthorized"
  3206        }
  3207       }
  3208      },
  3209      "post": {
  3210       "description": "connect POST requests to attach of Pod",
  3211       "consumes": [
  3212        "*/*"
  3213       ],
  3214       "produces": [
  3215        "*/*"
  3216       ],
  3217       "schemes": [
  3218        "https"
  3219       ],
  3220       "tags": [
  3221        "core_v1"
  3222       ],
  3223       "operationId": "connectCoreV1PostNamespacedPodAttach",
  3224       "responses": {
  3225        "200": {
  3226         "description": "OK",
  3227         "schema": {
  3228          "type": "string"
  3229         }
  3230        },
  3231        "401": {
  3232         "description": "Unauthorized"
  3233        }
  3234       }
  3235      },
  3236      "parameters": [
  3237       {
  3238        "uniqueItems": true,
  3239        "type": "string",
  3240        "description": "The container in which to execute the command. Defaults to only container if there is only one container in the pod.",
  3241        "name": "container",
  3242        "in": "query"
  3243       },
  3244       {
  3245        "uniqueItems": true,
  3246        "type": "string",
  3247        "description": "name of the Pod",
  3248        "name": "name",
  3249        "in": "path",
  3250        "required": true
  3251       },
  3252       {
  3253        "uniqueItems": true,
  3254        "type": "string",
  3255        "description": "object name and auth scope, such as for teams and projects",
  3256        "name": "namespace",
  3257        "in": "path",
  3258        "required": true
  3259       },
  3260       {
  3261        "uniqueItems": true,
  3262        "type": "boolean",
  3263        "description": "Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true.",
  3264        "name": "stderr",
  3265        "in": "query"
  3266       },
  3267       {
  3268        "uniqueItems": true,
  3269        "type": "boolean",
  3270        "description": "Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false.",
  3271        "name": "stdin",
  3272        "in": "query"
  3273       },
  3274       {
  3275        "uniqueItems": true,
  3276        "type": "boolean",
  3277        "description": "Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true.",
  3278        "name": "stdout",
  3279        "in": "query"
  3280       },
  3281       {
  3282        "uniqueItems": true,
  3283        "type": "boolean",
  3284        "description": "TTY if true indicates that a tty will be allocated for the attach call. This is passed through the container runtime so the tty is allocated on the worker node by the container runtime. Defaults to false.",
  3285        "name": "tty",
  3286        "in": "query"
  3287       }
  3288      ]
  3289     },
  3290     "/api/v1/namespaces/{namespace}/pods/{name}/binding": {
  3291      "post": {
  3292       "description": "create binding of a Binding",
  3293       "consumes": [
  3294        "*/*"
  3295       ],
  3296       "produces": [
  3297        "application/json",
  3298        "application/yaml",
  3299        "application/vnd.kubernetes.protobuf"
  3300       ],
  3301       "schemes": [
  3302        "https"
  3303       ],
  3304       "tags": [
  3305        "core_v1"
  3306       ],
  3307       "operationId": "createCoreV1NamespacedBindingBinding",
  3308       "responses": {
  3309        "200": {
  3310         "description": "OK",
  3311         "schema": {
  3312          "$ref": "#/definitions/v1.Binding"
  3313         }
  3314        },
  3315        "401": {
  3316         "description": "Unauthorized"
  3317        }
  3318       }
  3319      },
  3320      "parameters": [
  3321       {
  3322        "name": "body",
  3323        "in": "body",
  3324        "required": true,
  3325        "schema": {
  3326         "$ref": "#/definitions/v1.Binding"
  3327        }
  3328       },
  3329       {
  3330        "uniqueItems": true,
  3331        "type": "string",
  3332        "description": "name of the Binding",
  3333        "name": "name",
  3334        "in": "path",
  3335        "required": true
  3336       },
  3337       {
  3338        "uniqueItems": true,
  3339        "type": "string",
  3340        "description": "object name and auth scope, such as for teams and projects",
  3341        "name": "namespace",
  3342        "in": "path",
  3343        "required": true
  3344       },
  3345       {
  3346        "uniqueItems": true,
  3347        "type": "string",
  3348        "description": "If 'true', then the output is pretty printed.",
  3349        "name": "pretty",
  3350        "in": "query"
  3351       }
  3352      ]
  3353     },
  3354     "/api/v1/namespaces/{namespace}/pods/{name}/eviction": {
  3355      "post": {
  3356       "description": "create eviction of an Eviction",
  3357       "consumes": [
  3358        "*/*"
  3359       ],
  3360       "produces": [
  3361        "application/json",
  3362        "application/yaml",
  3363        "application/vnd.kubernetes.protobuf"
  3364       ],
  3365       "schemes": [
  3366        "https"
  3367       ],
  3368       "tags": [
  3369        "core_v1"
  3370       ],
  3371       "operationId": "createCoreV1NamespacedEvictionEviction",
  3372       "responses": {
  3373        "200": {
  3374         "description": "OK",
  3375         "schema": {
  3376          "$ref": "#/definitions/v1alpha1.Eviction"
  3377         }
  3378        },
  3379        "401": {
  3380         "description": "Unauthorized"
  3381        }
  3382       }
  3383      },
  3384      "parameters": [
  3385       {
  3386        "name": "body",
  3387        "in": "body",
  3388        "required": true,
  3389        "schema": {
  3390         "$ref": "#/definitions/v1alpha1.Eviction"
  3391        }
  3392       },
  3393       {
  3394        "uniqueItems": true,
  3395        "type": "string",
  3396        "description": "name of the Eviction",
  3397        "name": "name",
  3398        "in": "path",
  3399        "required": true
  3400       },
  3401       {
  3402        "uniqueItems": true,
  3403        "type": "string",
  3404        "description": "object name and auth scope, such as for teams and projects",
  3405        "name": "namespace",
  3406        "in": "path",
  3407        "required": true
  3408       },
  3409       {
  3410        "uniqueItems": true,
  3411        "type": "string",
  3412        "description": "If 'true', then the output is pretty printed.",
  3413        "name": "pretty",
  3414        "in": "query"
  3415       }
  3416      ]
  3417     },
  3418     "/api/v1/namespaces/{namespace}/pods/{name}/exec": {
  3419      "get": {
  3420       "description": "connect GET requests to exec of Pod",
  3421       "consumes": [
  3422        "*/*"
  3423       ],
  3424       "produces": [
  3425        "*/*"
  3426       ],
  3427       "schemes": [
  3428        "https"
  3429       ],
  3430       "tags": [
  3431        "core_v1"
  3432       ],
  3433       "operationId": "connectCoreV1GetNamespacedPodExec",
  3434       "responses": {
  3435        "200": {
  3436         "description": "OK",
  3437         "schema": {
  3438          "type": "string"
  3439         }
  3440        },
  3441        "401": {
  3442         "description": "Unauthorized"
  3443        }
  3444       }
  3445      },
  3446      "post": {
  3447       "description": "connect POST requests to exec of Pod",
  3448       "consumes": [
  3449        "*/*"
  3450       ],
  3451       "produces": [
  3452        "*/*"
  3453       ],
  3454       "schemes": [
  3455        "https"
  3456       ],
  3457       "tags": [
  3458        "core_v1"
  3459       ],
  3460       "operationId": "connectCoreV1PostNamespacedPodExec",
  3461       "responses": {
  3462        "200": {
  3463         "description": "OK",
  3464         "schema": {
  3465          "type": "string"
  3466         }
  3467        },
  3468        "401": {
  3469         "description": "Unauthorized"
  3470        }
  3471       }
  3472      },
  3473      "parameters": [
  3474       {
  3475        "uniqueItems": true,
  3476        "type": "string",
  3477        "description": "Command is the remote command to execute. argv array. Not executed within a shell.",
  3478        "name": "command",
  3479        "in": "query"
  3480       },
  3481       {
  3482        "uniqueItems": true,
  3483        "type": "string",
  3484        "description": "Container in which to execute the command. Defaults to only container if there is only one container in the pod.",
  3485        "name": "container",
  3486        "in": "query"
  3487       },
  3488       {
  3489        "uniqueItems": true,
  3490        "type": "string",
  3491        "description": "name of the Pod",
  3492        "name": "name",
  3493        "in": "path",
  3494        "required": true
  3495       },
  3496       {
  3497        "uniqueItems": true,
  3498        "type": "string",
  3499        "description": "object name and auth scope, such as for teams and projects",
  3500        "name": "namespace",
  3501        "in": "path",
  3502        "required": true
  3503       },
  3504       {
  3505        "uniqueItems": true,
  3506        "type": "boolean",
  3507        "description": "Redirect the standard error stream of the pod for this call. Defaults to true.",
  3508        "name": "stderr",
  3509        "in": "query"
  3510       },
  3511       {
  3512        "uniqueItems": true,
  3513        "type": "boolean",
  3514        "description": "Redirect the standard input stream of the pod for this call. Defaults to false.",
  3515        "name": "stdin",
  3516        "in": "query"
  3517       },
  3518       {
  3519        "uniqueItems": true,
  3520        "type": "boolean",
  3521        "description": "Redirect the standard output stream of the pod for this call. Defaults to true.",
  3522        "name": "stdout",
  3523        "in": "query"
  3524       },
  3525       {
  3526        "uniqueItems": true,
  3527        "type": "boolean",
  3528        "description": "TTY if true indicates that a tty will be allocated for the exec call. Defaults to false.",
  3529        "name": "tty",
  3530        "in": "query"
  3531       }
  3532      ]
  3533     },
  3534     "/api/v1/namespaces/{namespace}/pods/{name}/log": {
  3535      "get": {
  3536       "description": "read log of the specified Pod",
  3537       "consumes": [
  3538        "*/*"
  3539       ],
  3540       "produces": [
  3541        "text/plain",
  3542        "application/json",
  3543        "application/yaml",
  3544        "application/vnd.kubernetes.protobuf"
  3545       ],
  3546       "schemes": [
  3547        "https"
  3548       ],
  3549       "tags": [
  3550        "core_v1"
  3551       ],
  3552       "operationId": "readCoreV1NamespacedPodLog",
  3553       "responses": {
  3554        "200": {
  3555         "description": "OK",
  3556         "schema": {
  3557          "$ref": "#/definitions/v1.Pod"
  3558         }
  3559        },
  3560        "401": {
  3561         "description": "Unauthorized"
  3562        }
  3563       }
  3564      },
  3565      "parameters": [
  3566       {
  3567        "uniqueItems": true,
  3568        "type": "string",
  3569        "description": "The container for which to stream logs. Defaults to only container if there is one container in the pod.",
  3570        "name": "container",
  3571        "in": "query"
  3572       },
  3573       {
  3574        "uniqueItems": true,
  3575        "type": "boolean",
  3576        "description": "Follow the log stream of the pod. Defaults to false.",
  3577        "name": "follow",
  3578        "in": "query"
  3579       },
  3580       {
  3581        "uniqueItems": true,
  3582        "type": "integer",
  3583        "description": "If set, the number of bytes to read from the server before terminating the log output. This may not display a complete final line of logging, and may return slightly more or slightly less than the specified limit.",
  3584        "name": "limitBytes",
  3585        "in": "query"
  3586       },
  3587       {
  3588        "uniqueItems": true,
  3589        "type": "string",
  3590        "description": "name of the Pod",
  3591        "name": "name",
  3592        "in": "path",
  3593        "required": true
  3594       },
  3595       {
  3596        "uniqueItems": true,
  3597        "type": "string",
  3598        "description": "object name and auth scope, such as for teams and projects",
  3599        "name": "namespace",
  3600        "in": "path",
  3601        "required": true
  3602       },
  3603       {
  3604        "uniqueItems": true,
  3605        "type": "string",
  3606        "description": "If 'true', then the output is pretty printed.",
  3607        "name": "pretty",
  3608        "in": "query"
  3609       },
  3610       {
  3611        "uniqueItems": true,
  3612        "type": "boolean",
  3613        "description": "Return previous terminated container logs. Defaults to false.",
  3614        "name": "previous",
  3615        "in": "query"
  3616       },
  3617       {
  3618        "uniqueItems": true,
  3619        "type": "integer",
  3620        "description": "A relative time in seconds before the current time from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified.",
  3621        "name": "sinceSeconds",
  3622        "in": "query"
  3623       },
  3624       {
  3625        "uniqueItems": true,
  3626        "type": "string",
  3627        "description": "An RFC3339 timestamp from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified.",
  3628        "name": "sinceTime",
  3629        "in": "query"
  3630       },
  3631       {
  3632        "uniqueItems": true,
  3633        "type": "integer",
  3634        "description": "If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime",
  3635        "name": "tailLines",
  3636        "in": "query"
  3637       },
  3638       {
  3639        "uniqueItems": true,
  3640        "type": "boolean",
  3641        "description": "If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false.",
  3642        "name": "timestamps",
  3643        "in": "query"
  3644       }
  3645      ]
  3646     },
  3647     "/api/v1/namespaces/{namespace}/pods/{name}/portforward": {
  3648      "get": {
  3649       "description": "connect GET requests to portforward of Pod",
  3650       "consumes": [
  3651        "*/*"
  3652       ],
  3653       "produces": [
  3654        "*/*"
  3655       ],
  3656       "schemes": [
  3657        "https"
  3658       ],
  3659       "tags": [
  3660        "core_v1"
  3661       ],
  3662       "operationId": "connectCoreV1GetNamespacedPodPortforward",
  3663       "responses": {
  3664        "200": {
  3665         "description": "OK",
  3666         "schema": {
  3667          "type": "string"
  3668         }
  3669        },
  3670        "401": {
  3671         "description": "Unauthorized"
  3672        }
  3673       }
  3674      },
  3675      "post": {
  3676       "description": "connect POST requests to portforward of Pod",
  3677       "consumes": [
  3678        "*/*"
  3679       ],
  3680       "produces": [
  3681        "*/*"
  3682       ],
  3683       "schemes": [
  3684        "https"
  3685       ],
  3686       "tags": [
  3687        "core_v1"
  3688       ],
  3689       "operationId": "connectCoreV1PostNamespacedPodPortforward",
  3690       "responses": {
  3691        "200": {
  3692         "description": "OK",
  3693         "schema": {
  3694          "type": "string"
  3695         }
  3696        },
  3697        "401": {
  3698         "description": "Unauthorized"
  3699        }
  3700       }
  3701      },
  3702      "parameters": [
  3703       {
  3704        "uniqueItems": true,
  3705        "type": "string",
  3706        "description": "name of the Pod",
  3707        "name": "name",
  3708        "in": "path",
  3709        "required": true
  3710       },
  3711       {
  3712        "uniqueItems": true,
  3713        "type": "string",
  3714        "description": "object name and auth scope, such as for teams and projects",
  3715        "name": "namespace",
  3716        "in": "path",
  3717        "required": true
  3718       }
  3719      ]
  3720     },
  3721     "/api/v1/namespaces/{namespace}/pods/{name}/proxy": {
  3722      "get": {
  3723       "description": "connect GET requests to proxy of Pod",
  3724       "consumes": [
  3725        "*/*"
  3726       ],
  3727       "produces": [
  3728        "*/*"
  3729       ],
  3730       "schemes": [
  3731        "https"
  3732       ],
  3733       "tags": [
  3734        "core_v1"
  3735       ],
  3736       "operationId": "connectCoreV1GetNamespacedPodProxy",
  3737       "responses": {
  3738        "200": {
  3739         "description": "OK",
  3740         "schema": {
  3741          "type": "string"
  3742         }
  3743        },
  3744        "401": {
  3745         "description": "Unauthorized"
  3746        }
  3747       }
  3748      },
  3749      "put": {
  3750       "description": "connect PUT requests to proxy of Pod",
  3751       "consumes": [
  3752        "*/*"
  3753       ],
  3754       "produces": [
  3755        "*/*"
  3756       ],
  3757       "schemes": [
  3758        "https"
  3759       ],
  3760       "tags": [
  3761        "core_v1"
  3762       ],
  3763       "operationId": "connectCoreV1PutNamespacedPodProxy",
  3764       "responses": {
  3765        "200": {
  3766         "description": "OK",
  3767         "schema": {
  3768          "type": "string"
  3769         }
  3770        },
  3771        "401": {
  3772         "description": "Unauthorized"
  3773        }
  3774       }
  3775      },
  3776      "post": {
  3777       "description": "connect POST requests to proxy of Pod",
  3778       "consumes": [
  3779        "*/*"
  3780       ],
  3781       "produces": [
  3782        "*/*"
  3783       ],
  3784       "schemes": [
  3785        "https"
  3786       ],
  3787       "tags": [
  3788        "core_v1"
  3789       ],
  3790       "operationId": "connectCoreV1PostNamespacedPodProxy",
  3791       "responses": {
  3792        "200": {
  3793         "description": "OK",
  3794         "schema": {
  3795          "type": "string"
  3796         }
  3797        },
  3798        "401": {
  3799         "description": "Unauthorized"
  3800        }
  3801       }
  3802      },
  3803      "delete": {
  3804       "description": "connect DELETE requests to proxy of Pod",
  3805       "consumes": [
  3806        "*/*"
  3807       ],
  3808       "produces": [
  3809        "*/*"
  3810       ],
  3811       "schemes": [
  3812        "https"
  3813       ],
  3814       "tags": [
  3815        "core_v1"
  3816       ],
  3817       "operationId": "connectCoreV1DeleteNamespacedPodProxy",
  3818       "responses": {
  3819        "200": {
  3820         "description": "OK",
  3821         "schema": {
  3822          "type": "string"
  3823         }
  3824        },
  3825        "401": {
  3826         "description": "Unauthorized"
  3827        }
  3828       }
  3829      },
  3830      "options": {
  3831       "description": "connect OPTIONS requests to proxy of Pod",
  3832       "consumes": [
  3833        "*/*"
  3834       ],
  3835       "produces": [
  3836        "*/*"
  3837       ],
  3838       "schemes": [
  3839        "https"
  3840       ],
  3841       "tags": [
  3842        "core_v1"
  3843       ],
  3844       "operationId": "connectCoreV1OptionsNamespacedPodProxy",
  3845       "responses": {
  3846        "200": {
  3847         "description": "OK",
  3848         "schema": {
  3849          "type": "string"
  3850         }
  3851        },
  3852        "401": {
  3853         "description": "Unauthorized"
  3854        }
  3855       }
  3856      },
  3857      "head": {
  3858       "description": "connect HEAD requests to proxy of Pod",
  3859       "consumes": [
  3860        "*/*"
  3861       ],
  3862       "produces": [
  3863        "*/*"
  3864       ],
  3865       "schemes": [
  3866        "https"
  3867       ],
  3868       "tags": [
  3869        "core_v1"
  3870       ],
  3871       "operationId": "connectCoreV1HeadNamespacedPodProxy",
  3872       "responses": {
  3873        "200": {
  3874         "description": "OK",
  3875         "schema": {
  3876          "type": "string"
  3877         }
  3878        },
  3879        "401": {
  3880         "description": "Unauthorized"
  3881        }
  3882       }
  3883      },
  3884      "parameters": [
  3885       {
  3886        "uniqueItems": true,
  3887        "type": "string",
  3888        "description": "name of the Pod",
  3889        "name": "name",
  3890        "in": "path",
  3891        "required": true
  3892       },
  3893       {
  3894        "uniqueItems": true,
  3895        "type": "string",
  3896        "description": "object name and auth scope, such as for teams and projects",
  3897        "name": "namespace",
  3898        "in": "path",
  3899        "required": true
  3900       },
  3901       {
  3902        "uniqueItems": true,
  3903        "type": "string",
  3904        "description": "Path is the URL path to use for the current proxy request to pod.",
  3905        "name": "path",
  3906        "in": "query"
  3907       }
  3908      ]
  3909     },
  3910     "/api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}": {
  3911      "get": {
  3912       "description": "connect GET requests to proxy of Pod",
  3913       "consumes": [
  3914        "*/*"
  3915       ],
  3916       "produces": [
  3917        "*/*"
  3918       ],
  3919       "schemes": [
  3920        "https"
  3921       ],
  3922       "tags": [
  3923        "core_v1"
  3924       ],
  3925       "operationId": "connectCoreV1GetNamespacedPodProxyWithPath",
  3926       "responses": {
  3927        "200": {
  3928         "description": "OK",
  3929         "schema": {
  3930          "type": "string"
  3931         }
  3932        },
  3933        "401": {
  3934         "description": "Unauthorized"
  3935        }
  3936       }
  3937      },
  3938      "put": {
  3939       "description": "connect PUT requests to proxy of Pod",
  3940       "consumes": [
  3941        "*/*"
  3942       ],
  3943       "produces": [
  3944        "*/*"
  3945       ],
  3946       "schemes": [
  3947        "https"
  3948       ],
  3949       "tags": [
  3950        "core_v1"
  3951       ],
  3952       "operationId": "connectCoreV1PutNamespacedPodProxyWithPath",
  3953       "responses": {
  3954        "200": {
  3955         "description": "OK",
  3956         "schema": {
  3957          "type": "string"
  3958         }
  3959        },
  3960        "401": {
  3961         "description": "Unauthorized"
  3962        }
  3963       }
  3964      },
  3965      "post": {
  3966       "description": "connect POST requests to proxy of Pod",
  3967       "consumes": [
  3968        "*/*"
  3969       ],
  3970       "produces": [
  3971        "*/*"
  3972       ],
  3973       "schemes": [
  3974        "https"
  3975       ],
  3976       "tags": [
  3977        "core_v1"
  3978       ],
  3979       "operationId": "connectCoreV1PostNamespacedPodProxyWithPath",
  3980       "responses": {
  3981        "200": {
  3982         "description": "OK",
  3983         "schema": {
  3984          "type": "string"
  3985         }
  3986        },
  3987        "401": {
  3988         "description": "Unauthorized"
  3989        }
  3990       }
  3991      },
  3992      "delete": {
  3993       "description": "connect DELETE requests to proxy of Pod",
  3994       "consumes": [
  3995        "*/*"
  3996       ],
  3997       "produces": [
  3998        "*/*"
  3999       ],
  4000       "schemes": [
  4001        "https"
  4002       ],
  4003       "tags": [
  4004        "core_v1"
  4005       ],
  4006       "operationId": "connectCoreV1DeleteNamespacedPodProxyWithPath",
  4007       "responses": {
  4008        "200": {
  4009         "description": "OK",
  4010         "schema": {
  4011          "type": "string"
  4012         }
  4013        },
  4014        "401": {
  4015         "description": "Unauthorized"
  4016        }
  4017       }
  4018      },
  4019      "options": {
  4020       "description": "connect OPTIONS requests to proxy of Pod",
  4021       "consumes": [
  4022        "*/*"
  4023       ],
  4024       "produces": [
  4025        "*/*"
  4026       ],
  4027       "schemes": [
  4028        "https"
  4029       ],
  4030       "tags": [
  4031        "core_v1"
  4032       ],
  4033       "operationId": "connectCoreV1OptionsNamespacedPodProxyWithPath",
  4034       "responses": {
  4035        "200": {
  4036         "description": "OK",
  4037         "schema": {
  4038          "type": "string"
  4039         }
  4040        },
  4041        "401": {
  4042         "description": "Unauthorized"
  4043        }
  4044       }
  4045      },
  4046      "head": {
  4047       "description": "connect HEAD requests to proxy of Pod",
  4048       "consumes": [
  4049        "*/*"
  4050       ],
  4051       "produces": [
  4052        "*/*"
  4053       ],
  4054       "schemes": [
  4055        "https"
  4056       ],
  4057       "tags": [
  4058        "core_v1"
  4059       ],
  4060       "operationId": "connectCoreV1HeadNamespacedPodProxyWithPath",
  4061       "responses": {
  4062        "200": {
  4063         "description": "OK",
  4064         "schema": {
  4065          "type": "string"
  4066         }
  4067        },
  4068        "401": {
  4069         "description": "Unauthorized"
  4070        }
  4071       }
  4072      },
  4073      "parameters": [
  4074       {
  4075        "uniqueItems": true,
  4076        "type": "string",
  4077        "description": "name of the Pod",
  4078        "name": "name",
  4079        "in": "path",
  4080        "required": true
  4081       },
  4082       {
  4083        "uniqueItems": true,
  4084        "type": "string",
  4085        "description": "object name and auth scope, such as for teams and projects",
  4086        "name": "namespace",
  4087        "in": "path",
  4088        "required": true
  4089       },
  4090       {
  4091        "uniqueItems": true,
  4092        "type": "string",
  4093        "description": "path to the resource",
  4094        "name": "path",
  4095        "in": "path",
  4096        "required": true
  4097       },
  4098       {
  4099        "uniqueItems": true,
  4100        "type": "string",
  4101        "description": "Path is the URL path to use for the current proxy request to pod.",
  4102        "name": "path",
  4103        "in": "query"
  4104       }
  4105      ]
  4106     },
  4107     "/api/v1/namespaces/{namespace}/pods/{name}/status": {
  4108      "get": {
  4109       "description": "read status of the specified Pod",
  4110       "consumes": [
  4111        "*/*"
  4112       ],
  4113       "produces": [
  4114        "application/json",
  4115        "application/yaml",
  4116        "application/vnd.kubernetes.protobuf"
  4117       ],
  4118       "schemes": [
  4119        "https"
  4120       ],
  4121       "tags": [
  4122        "core_v1"
  4123       ],
  4124       "operationId": "readCoreV1NamespacedPodStatus",
  4125       "responses": {
  4126        "200": {
  4127         "description": "OK",
  4128         "schema": {
  4129          "$ref": "#/definitions/v1.Pod"
  4130         }
  4131        },
  4132        "401": {
  4133         "description": "Unauthorized"
  4134        }
  4135       }
  4136      },
  4137      "put": {
  4138       "description": "replace status of the specified Pod",
  4139       "consumes": [
  4140        "*/*"
  4141       ],
  4142       "produces": [
  4143        "application/json",
  4144        "application/yaml",
  4145        "application/vnd.kubernetes.protobuf"
  4146       ],
  4147       "schemes": [
  4148        "https"
  4149       ],
  4150       "tags": [
  4151        "core_v1"
  4152       ],
  4153       "operationId": "replaceCoreV1NamespacedPodStatus",
  4154       "parameters": [
  4155        {
  4156         "name": "body",
  4157         "in": "body",
  4158         "required": true,
  4159         "schema": {
  4160          "$ref": "#/definitions/v1.Pod"
  4161         }
  4162        }
  4163       ],
  4164       "responses": {
  4165        "200": {
  4166         "description": "OK",
  4167         "schema": {
  4168          "$ref": "#/definitions/v1.Pod"
  4169         }
  4170        },
  4171        "401": {
  4172         "description": "Unauthorized"
  4173        }
  4174       }
  4175      },
  4176      "patch": {
  4177       "description": "partially update status of the specified Pod",
  4178       "consumes": [
  4179        "application/json-patch+json",
  4180        "application/merge-patch+json",
  4181        "application/strategic-merge-patch+json"
  4182       ],
  4183       "produces": [
  4184        "application/json",
  4185        "application/yaml",
  4186        "application/vnd.kubernetes.protobuf"
  4187       ],
  4188       "schemes": [
  4189        "https"
  4190       ],
  4191       "tags": [
  4192        "core_v1"
  4193       ],
  4194       "operationId": "patchCoreV1NamespacedPodStatus",
  4195       "parameters": [
  4196        {
  4197         "name": "body",
  4198         "in": "body",
  4199         "required": true,
  4200         "schema": {
  4201          "$ref": "#/definitions/unversioned.Patch"
  4202         }
  4203        }
  4204       ],
  4205       "responses": {
  4206        "200": {
  4207         "description": "OK",
  4208         "schema": {
  4209          "$ref": "#/definitions/v1.Pod"
  4210         }
  4211        },
  4212        "401": {
  4213         "description": "Unauthorized"
  4214        }
  4215       }
  4216      },
  4217      "parameters": [
  4218       {
  4219        "uniqueItems": true,
  4220        "type": "string",
  4221        "description": "name of the Pod",
  4222        "name": "name",
  4223        "in": "path",
  4224        "required": true
  4225       },
  4226       {
  4227        "uniqueItems": true,
  4228        "type": "string",
  4229        "description": "object name and auth scope, such as for teams and projects",
  4230        "name": "namespace",
  4231        "in": "path",
  4232        "required": true
  4233       },
  4234       {
  4235        "uniqueItems": true,
  4236        "type": "string",
  4237        "description": "If 'true', then the output is pretty printed.",
  4238        "name": "pretty",
  4239        "in": "query"
  4240       }
  4241      ]
  4242     },
  4243     "/api/v1/namespaces/{namespace}/podtemplates": {
  4244      "get": {
  4245       "description": "list or watch objects of kind PodTemplate",
  4246       "consumes": [
  4247        "*/*"
  4248       ],
  4249       "produces": [
  4250        "application/json",
  4251        "application/yaml",
  4252        "application/vnd.kubernetes.protobuf",
  4253        "application/json;stream=watch",
  4254        "application/vnd.kubernetes.protobuf;stream=watch"
  4255       ],
  4256       "schemes": [
  4257        "https"
  4258       ],
  4259       "tags": [
  4260        "core_v1"
  4261       ],
  4262       "operationId": "listCoreV1NamespacedPodTemplate",
  4263       "parameters": [
  4264        {
  4265         "uniqueItems": true,
  4266         "type": "string",
  4267         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  4268         "name": "fieldSelector",
  4269         "in": "query"
  4270        },
  4271        {
  4272         "uniqueItems": true,
  4273         "type": "string",
  4274         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  4275         "name": "labelSelector",
  4276         "in": "query"
  4277        },
  4278        {
  4279         "uniqueItems": true,
  4280         "type": "string",
  4281         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
  4282         "name": "resourceVersion",
  4283         "in": "query"
  4284        },
  4285        {
  4286         "uniqueItems": true,
  4287         "type": "integer",
  4288         "description": "Timeout for the list/watch call.",
  4289         "name": "timeoutSeconds",
  4290         "in": "query"
  4291        },
  4292        {
  4293         "uniqueItems": true,
  4294         "type": "boolean",
  4295         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  4296         "name": "watch",
  4297         "in": "query"
  4298        }
  4299       ],
  4300       "responses": {
  4301        "200": {
  4302         "description": "OK",
  4303         "schema": {
  4304          "$ref": "#/definitions/v1.PodTemplateList"
  4305         }
  4306        },
  4307        "401": {
  4308         "description": "Unauthorized"
  4309        }
  4310       }
  4311      },
  4312      "post": {
  4313       "description": "create a PodTemplate",
  4314       "consumes": [
  4315        "*/*"
  4316       ],
  4317       "produces": [
  4318        "application/json",
  4319        "application/yaml",
  4320        "application/vnd.kubernetes.protobuf"
  4321       ],
  4322       "schemes": [
  4323        "https"
  4324       ],
  4325       "tags": [
  4326        "core_v1"
  4327       ],
  4328       "operationId": "createCoreV1NamespacedPodTemplate",
  4329       "parameters": [
  4330        {
  4331         "name": "body",
  4332         "in": "body",
  4333         "required": true,
  4334         "schema": {
  4335          "$ref": "#/definitions/v1.PodTemplate"
  4336         }
  4337        }
  4338       ],
  4339       "responses": {
  4340        "200": {
  4341         "description": "OK",
  4342         "schema": {
  4343          "$ref": "#/definitions/v1.PodTemplate"
  4344         }
  4345        },
  4346        "401": {
  4347         "description": "Unauthorized"
  4348        }
  4349       }
  4350      },
  4351      "delete": {
  4352       "description": "delete collection of PodTemplate",
  4353       "consumes": [
  4354        "*/*"
  4355       ],
  4356       "produces": [
  4357        "application/json",
  4358        "application/yaml",
  4359        "application/vnd.kubernetes.protobuf"
  4360       ],
  4361       "schemes": [
  4362        "https"
  4363       ],
  4364       "tags": [
  4365        "core_v1"
  4366       ],
  4367       "operationId": "deleteCoreV1CollectionNamespacedPodTemplate",
  4368       "parameters": [
  4369        {
  4370         "uniqueItems": true,
  4371         "type": "string",
  4372         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  4373         "name": "fieldSelector",
  4374         "in": "query"
  4375        },
  4376        {
  4377         "uniqueItems": true,
  4378         "type": "string",
  4379         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  4380         "name": "labelSelector",
  4381         "in": "query"
  4382        },
  4383        {
  4384         "uniqueItems": true,
  4385         "type": "string",
  4386         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
  4387         "name": "resourceVersion",
  4388         "in": "query"
  4389        },
  4390        {
  4391         "uniqueItems": true,
  4392         "type": "integer",
  4393         "description": "Timeout for the list/watch call.",
  4394         "name": "timeoutSeconds",
  4395         "in": "query"
  4396        },
  4397        {
  4398         "uniqueItems": true,
  4399         "type": "boolean",
  4400         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  4401         "name": "watch",
  4402         "in": "query"
  4403        }
  4404       ],
  4405       "responses": {
  4406        "200": {
  4407         "description": "OK",
  4408         "schema": {
  4409          "$ref": "#/definitions/unversioned.Status"
  4410         }
  4411        },
  4412        "401": {
  4413         "description": "Unauthorized"
  4414        }
  4415       }
  4416      },
  4417      "parameters": [
  4418       {
  4419        "uniqueItems": true,
  4420        "type": "string",
  4421        "description": "object name and auth scope, such as for teams and projects",
  4422        "name": "namespace",
  4423        "in": "path",
  4424        "required": true
  4425       },
  4426       {
  4427        "uniqueItems": true,
  4428        "type": "string",
  4429        "description": "If 'true', then the output is pretty printed.",
  4430        "name": "pretty",
  4431        "in": "query"
  4432       }
  4433      ]
  4434     },
  4435     "/api/v1/namespaces/{namespace}/podtemplates/{name}": {
  4436      "get": {
  4437       "description": "read the specified PodTemplate",
  4438       "consumes": [
  4439        "*/*"
  4440       ],
  4441       "produces": [
  4442        "application/json",
  4443        "application/yaml",
  4444        "application/vnd.kubernetes.protobuf"
  4445       ],
  4446       "schemes": [
  4447        "https"
  4448       ],
  4449       "tags": [
  4450        "core_v1"
  4451       ],
  4452       "operationId": "readCoreV1NamespacedPodTemplate",
  4453       "parameters": [
  4454        {
  4455         "uniqueItems": true,
  4456         "type": "boolean",
  4457         "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'",
  4458         "name": "exact",
  4459         "in": "query"
  4460        },
  4461        {
  4462         "uniqueItems": true,
  4463         "type": "boolean",
  4464         "description": "Should this value be exported.  Export strips fields that a user can not specify.",
  4465         "name": "export",
  4466         "in": "query"
  4467        }
  4468       ],
  4469       "responses": {
  4470        "200": {
  4471         "description": "OK",
  4472         "schema": {
  4473          "$ref": "#/definitions/v1.PodTemplate"
  4474         }
  4475        },
  4476        "401": {
  4477         "description": "Unauthorized"
  4478        }
  4479       }
  4480      },
  4481      "put": {
  4482       "description": "replace the specified PodTemplate",
  4483       "consumes": [
  4484        "*/*"
  4485       ],
  4486       "produces": [
  4487        "application/json",
  4488        "application/yaml",
  4489        "application/vnd.kubernetes.protobuf"
  4490       ],
  4491       "schemes": [
  4492        "https"
  4493       ],
  4494       "tags": [
  4495        "core_v1"
  4496       ],
  4497       "operationId": "replaceCoreV1NamespacedPodTemplate",
  4498       "parameters": [
  4499        {
  4500         "name": "body",
  4501         "in": "body",
  4502         "required": true,
  4503         "schema": {
  4504          "$ref": "#/definitions/v1.PodTemplate"
  4505         }
  4506        }
  4507       ],
  4508       "responses": {
  4509        "200": {
  4510         "description": "OK",
  4511         "schema": {
  4512          "$ref": "#/definitions/v1.PodTemplate"
  4513         }
  4514        },
  4515        "401": {
  4516         "description": "Unauthorized"
  4517        }
  4518       }
  4519      },
  4520      "delete": {
  4521       "description": "delete a PodTemplate",
  4522       "consumes": [
  4523        "*/*"
  4524       ],
  4525       "produces": [
  4526        "application/json",
  4527        "application/yaml",
  4528        "application/vnd.kubernetes.protobuf"
  4529       ],
  4530       "schemes": [
  4531        "https"
  4532       ],
  4533       "tags": [
  4534        "core_v1"
  4535       ],
  4536       "operationId": "deleteCoreV1NamespacedPodTemplate",
  4537       "parameters": [
  4538        {
  4539         "name": "body",
  4540         "in": "body",
  4541         "required": true,
  4542         "schema": {
  4543          "$ref": "#/definitions/v1.DeleteOptions"
  4544         }
  4545        }
  4546       ],
  4547       "responses": {
  4548        "200": {
  4549         "description": "OK",
  4550         "schema": {
  4551          "$ref": "#/definitions/unversioned.Status"
  4552         }
  4553        },
  4554        "401": {
  4555         "description": "Unauthorized"
  4556        }
  4557       }
  4558      },
  4559      "patch": {
  4560       "description": "partially update the specified PodTemplate",
  4561       "consumes": [
  4562        "application/json-patch+json",
  4563        "application/merge-patch+json",
  4564        "application/strategic-merge-patch+json"
  4565       ],
  4566       "produces": [
  4567        "application/json",
  4568        "application/yaml",
  4569        "application/vnd.kubernetes.protobuf"
  4570       ],
  4571       "schemes": [
  4572        "https"
  4573       ],
  4574       "tags": [
  4575        "core_v1"
  4576       ],
  4577       "operationId": "patchCoreV1NamespacedPodTemplate",
  4578       "parameters": [
  4579        {
  4580         "name": "body",
  4581         "in": "body",
  4582         "required": true,
  4583         "schema": {
  4584          "$ref": "#/definitions/unversioned.Patch"
  4585         }
  4586        }
  4587       ],
  4588       "responses": {
  4589        "200": {
  4590         "description": "OK",
  4591         "schema": {
  4592          "$ref": "#/definitions/v1.PodTemplate"
  4593         }
  4594        },
  4595        "401": {
  4596         "description": "Unauthorized"
  4597        }
  4598       }
  4599      },
  4600      "parameters": [
  4601       {
  4602        "uniqueItems": true,
  4603        "type": "string",
  4604        "description": "name of the PodTemplate",
  4605        "name": "name",
  4606        "in": "path",
  4607        "required": true
  4608       },
  4609       {
  4610        "uniqueItems": true,
  4611        "type": "string",
  4612        "description": "object name and auth scope, such as for teams and projects",
  4613        "name": "namespace",
  4614        "in": "path",
  4615        "required": true
  4616       },
  4617       {
  4618        "uniqueItems": true,
  4619        "type": "string",
  4620        "description": "If 'true', then the output is pretty printed.",
  4621        "name": "pretty",
  4622        "in": "query"
  4623       }
  4624      ]
  4625     },
  4626     "/api/v1/namespaces/{namespace}/replicationcontrollers": {
  4627      "get": {
  4628       "description": "list or watch objects of kind ReplicationController",
  4629       "consumes": [
  4630        "*/*"
  4631       ],
  4632       "produces": [
  4633        "application/json",
  4634        "application/yaml",
  4635        "application/vnd.kubernetes.protobuf",
  4636        "application/json;stream=watch",
  4637        "application/vnd.kubernetes.protobuf;stream=watch"
  4638       ],
  4639       "schemes": [
  4640        "https"
  4641       ],
  4642       "tags": [
  4643        "core_v1"
  4644       ],
  4645       "operationId": "listCoreV1NamespacedReplicationController",
  4646       "parameters": [
  4647        {
  4648         "uniqueItems": true,
  4649         "type": "string",
  4650         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  4651         "name": "fieldSelector",
  4652         "in": "query"
  4653        },
  4654        {
  4655         "uniqueItems": true,
  4656         "type": "string",
  4657         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  4658         "name": "labelSelector",
  4659         "in": "query"
  4660        },
  4661        {
  4662         "uniqueItems": true,
  4663         "type": "string",
  4664         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
  4665         "name": "resourceVersion",
  4666         "in": "query"
  4667        },
  4668        {
  4669         "uniqueItems": true,
  4670         "type": "integer",
  4671         "description": "Timeout for the list/watch call.",
  4672         "name": "timeoutSeconds",
  4673         "in": "query"
  4674        },
  4675        {
  4676         "uniqueItems": true,
  4677         "type": "boolean",
  4678         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  4679         "name": "watch",
  4680         "in": "query"
  4681        }
  4682       ],
  4683       "responses": {
  4684        "200": {
  4685         "description": "OK",
  4686         "schema": {
  4687          "$ref": "#/definitions/v1.ReplicationControllerList"
  4688         }
  4689        },
  4690        "401": {
  4691         "description": "Unauthorized"
  4692        }
  4693       }
  4694      },
  4695      "post": {
  4696       "description": "create a ReplicationController",
  4697       "consumes": [
  4698        "*/*"
  4699       ],
  4700       "produces": [
  4701        "application/json",
  4702        "application/yaml",
  4703        "application/vnd.kubernetes.protobuf"
  4704       ],
  4705       "schemes": [
  4706        "https"
  4707       ],
  4708       "tags": [
  4709        "core_v1"
  4710       ],
  4711       "operationId": "createCoreV1NamespacedReplicationController",
  4712       "parameters": [
  4713        {
  4714         "name": "body",
  4715         "in": "body",
  4716         "required": true,
  4717         "schema": {
  4718          "$ref": "#/definitions/v1.ReplicationController"
  4719         }
  4720        }
  4721       ],
  4722       "responses": {
  4723        "200": {
  4724         "description": "OK",
  4725         "schema": {
  4726          "$ref": "#/definitions/v1.ReplicationController"
  4727         }
  4728        },
  4729        "401": {
  4730         "description": "Unauthorized"
  4731        }
  4732       }
  4733      },
  4734      "delete": {
  4735       "description": "delete collection of ReplicationController",
  4736       "consumes": [
  4737        "*/*"
  4738       ],
  4739       "produces": [
  4740        "application/json",
  4741        "application/yaml",
  4742        "application/vnd.kubernetes.protobuf"
  4743       ],
  4744       "schemes": [
  4745        "https"
  4746       ],
  4747       "tags": [
  4748        "core_v1"
  4749       ],
  4750       "operationId": "deleteCoreV1CollectionNamespacedReplicationController",
  4751       "parameters": [
  4752        {
  4753         "uniqueItems": true,
  4754         "type": "string",
  4755         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  4756         "name": "fieldSelector",
  4757         "in": "query"
  4758        },
  4759        {
  4760         "uniqueItems": true,
  4761         "type": "string",
  4762         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  4763         "name": "labelSelector",
  4764         "in": "query"
  4765        },
  4766        {
  4767         "uniqueItems": true,
  4768         "type": "string",
  4769         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
  4770         "name": "resourceVersion",
  4771         "in": "query"
  4772        },
  4773        {
  4774         "uniqueItems": true,
  4775         "type": "integer",
  4776         "description": "Timeout for the list/watch call.",
  4777         "name": "timeoutSeconds",
  4778         "in": "query"
  4779        },
  4780        {
  4781         "uniqueItems": true,
  4782         "type": "boolean",
  4783         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  4784         "name": "watch",
  4785         "in": "query"
  4786        }
  4787       ],
  4788       "responses": {
  4789        "200": {
  4790         "description": "OK",
  4791         "schema": {
  4792          "$ref": "#/definitions/unversioned.Status"
  4793         }
  4794        },
  4795        "401": {
  4796         "description": "Unauthorized"
  4797        }
  4798       }
  4799      },
  4800      "parameters": [
  4801       {
  4802        "uniqueItems": true,
  4803        "type": "string",
  4804        "description": "object name and auth scope, such as for teams and projects",
  4805        "name": "namespace",
  4806        "in": "path",
  4807        "required": true
  4808       },
  4809       {
  4810        "uniqueItems": true,
  4811        "type": "string",
  4812        "description": "If 'true', then the output is pretty printed.",
  4813        "name": "pretty",
  4814        "in": "query"
  4815       }
  4816      ]
  4817     },
  4818     "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}": {
  4819      "get": {
  4820       "description": "read the specified ReplicationController",
  4821       "consumes": [
  4822        "*/*"
  4823       ],
  4824       "produces": [
  4825        "application/json",
  4826        "application/yaml",
  4827        "application/vnd.kubernetes.protobuf"
  4828       ],
  4829       "schemes": [
  4830        "https"
  4831       ],
  4832       "tags": [
  4833        "core_v1"
  4834       ],
  4835       "operationId": "readCoreV1NamespacedReplicationController",
  4836       "parameters": [
  4837        {
  4838         "uniqueItems": true,
  4839         "type": "boolean",
  4840         "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'",
  4841         "name": "exact",
  4842         "in": "query"
  4843        },
  4844        {
  4845         "uniqueItems": true,
  4846         "type": "boolean",
  4847         "description": "Should this value be exported.  Export strips fields that a user can not specify.",
  4848         "name": "export",
  4849         "in": "query"
  4850        }
  4851       ],
  4852       "responses": {
  4853        "200": {
  4854         "description": "OK",
  4855         "schema": {
  4856          "$ref": "#/definitions/v1.ReplicationController"
  4857         }
  4858        },
  4859        "401": {
  4860         "description": "Unauthorized"
  4861        }
  4862       }
  4863      },
  4864      "put": {
  4865       "description": "replace the specified ReplicationController",
  4866       "consumes": [
  4867        "*/*"
  4868       ],
  4869       "produces": [
  4870        "application/json",
  4871        "application/yaml",
  4872        "application/vnd.kubernetes.protobuf"
  4873       ],
  4874       "schemes": [
  4875        "https"
  4876       ],
  4877       "tags": [
  4878        "core_v1"
  4879       ],
  4880       "operationId": "replaceCoreV1NamespacedReplicationController",
  4881       "parameters": [
  4882        {
  4883         "name": "body",
  4884         "in": "body",
  4885         "required": true,
  4886         "schema": {
  4887          "$ref": "#/definitions/v1.ReplicationController"
  4888         }
  4889        }
  4890       ],
  4891       "responses": {
  4892        "200": {
  4893         "description": "OK",
  4894         "schema": {
  4895          "$ref": "#/definitions/v1.ReplicationController"
  4896         }
  4897        },
  4898        "401": {
  4899         "description": "Unauthorized"
  4900        }
  4901       }
  4902      },
  4903      "delete": {
  4904       "description": "delete a ReplicationController",
  4905       "consumes": [
  4906        "*/*"
  4907       ],
  4908       "produces": [
  4909        "application/json",
  4910        "application/yaml",
  4911        "application/vnd.kubernetes.protobuf"
  4912       ],
  4913       "schemes": [
  4914        "https"
  4915       ],
  4916       "tags": [
  4917        "core_v1"
  4918       ],
  4919       "operationId": "deleteCoreV1NamespacedReplicationController",
  4920       "parameters": [
  4921        {
  4922         "name": "body",
  4923         "in": "body",
  4924         "required": true,
  4925         "schema": {
  4926          "$ref": "#/definitions/v1.DeleteOptions"
  4927         }
  4928        }
  4929       ],
  4930       "responses": {
  4931        "200": {
  4932         "description": "OK",
  4933         "schema": {
  4934          "$ref": "#/definitions/unversioned.Status"
  4935         }
  4936        },
  4937        "401": {
  4938         "description": "Unauthorized"
  4939        }
  4940       }
  4941      },
  4942      "patch": {
  4943       "description": "partially update the specified ReplicationController",
  4944       "consumes": [
  4945        "application/json-patch+json",
  4946        "application/merge-patch+json",
  4947        "application/strategic-merge-patch+json"
  4948       ],
  4949       "produces": [
  4950        "application/json",
  4951        "application/yaml",
  4952        "application/vnd.kubernetes.protobuf"
  4953       ],
  4954       "schemes": [
  4955        "https"
  4956       ],
  4957       "tags": [
  4958        "core_v1"
  4959       ],
  4960       "operationId": "patchCoreV1NamespacedReplicationController",
  4961       "parameters": [
  4962        {
  4963         "name": "body",
  4964         "in": "body",
  4965         "required": true,
  4966         "schema": {
  4967          "$ref": "#/definitions/unversioned.Patch"
  4968         }
  4969        }
  4970       ],
  4971       "responses": {
  4972        "200": {
  4973         "description": "OK",
  4974         "schema": {
  4975          "$ref": "#/definitions/v1.ReplicationController"
  4976         }
  4977        },
  4978        "401": {
  4979         "description": "Unauthorized"
  4980        }
  4981       }
  4982      },
  4983      "parameters": [
  4984       {
  4985        "uniqueItems": true,
  4986        "type": "string",
  4987        "description": "name of the ReplicationController",
  4988        "name": "name",
  4989        "in": "path",
  4990        "required": true
  4991       },
  4992       {
  4993        "uniqueItems": true,
  4994        "type": "string",
  4995        "description": "object name and auth scope, such as for teams and projects",
  4996        "name": "namespace",
  4997        "in": "path",
  4998        "required": true
  4999       },
  5000       {
  5001        "uniqueItems": true,
  5002        "type": "string",
  5003        "description": "If 'true', then the output is pretty printed.",
  5004        "name": "pretty",
  5005        "in": "query"
  5006       }
  5007      ]
  5008     },
  5009     "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale": {
  5010      "get": {
  5011       "description": "read scale of the specified Scale",
  5012       "consumes": [
  5013        "*/*"
  5014       ],
  5015       "produces": [
  5016        "application/json",
  5017        "application/yaml",
  5018        "application/vnd.kubernetes.protobuf"
  5019       ],
  5020       "schemes": [
  5021        "https"
  5022       ],
  5023       "tags": [
  5024        "core_v1"
  5025       ],
  5026       "operationId": "readCoreV1NamespacedScaleScale",
  5027       "responses": {
  5028        "200": {
  5029         "description": "OK",
  5030         "schema": {
  5031          "$ref": "#/definitions/v1.Scale"
  5032         }
  5033        },
  5034        "401": {
  5035         "description": "Unauthorized"
  5036        }
  5037       }
  5038      },
  5039      "put": {
  5040       "description": "replace scale of the specified Scale",
  5041       "consumes": [
  5042        "*/*"
  5043       ],
  5044       "produces": [
  5045        "application/json",
  5046        "application/yaml",
  5047        "application/vnd.kubernetes.protobuf"
  5048       ],
  5049       "schemes": [
  5050        "https"
  5051       ],
  5052       "tags": [
  5053        "core_v1"
  5054       ],
  5055       "operationId": "replaceCoreV1NamespacedScaleScale",
  5056       "parameters": [
  5057        {
  5058         "name": "body",
  5059         "in": "body",
  5060         "required": true,
  5061         "schema": {
  5062          "$ref": "#/definitions/v1.Scale"
  5063         }
  5064        }
  5065       ],
  5066       "responses": {
  5067        "200": {
  5068         "description": "OK",
  5069         "schema": {
  5070          "$ref": "#/definitions/v1.Scale"
  5071         }
  5072        },
  5073        "401": {
  5074         "description": "Unauthorized"
  5075        }
  5076       }
  5077      },
  5078      "patch": {
  5079       "description": "partially update scale of the specified Scale",
  5080       "consumes": [
  5081        "application/json-patch+json",
  5082        "application/merge-patch+json",
  5083        "application/strategic-merge-patch+json"
  5084       ],
  5085       "produces": [
  5086        "application/json",
  5087        "application/yaml",
  5088        "application/vnd.kubernetes.protobuf"
  5089       ],
  5090       "schemes": [
  5091        "https"
  5092       ],
  5093       "tags": [
  5094        "core_v1"
  5095       ],
  5096       "operationId": "patchCoreV1NamespacedScaleScale",
  5097       "parameters": [
  5098        {
  5099         "name": "body",
  5100         "in": "body",
  5101         "required": true,
  5102         "schema": {
  5103          "$ref": "#/definitions/unversioned.Patch"
  5104         }
  5105        }
  5106       ],
  5107       "responses": {
  5108        "200": {
  5109         "description": "OK",
  5110         "schema": {
  5111          "$ref": "#/definitions/v1.Scale"
  5112         }
  5113        },
  5114        "401": {
  5115         "description": "Unauthorized"
  5116        }
  5117       }
  5118      },
  5119      "parameters": [
  5120       {
  5121        "uniqueItems": true,
  5122        "type": "string",
  5123        "description": "name of the Scale",
  5124        "name": "name",
  5125        "in": "path",
  5126        "required": true
  5127       },
  5128       {
  5129        "uniqueItems": true,
  5130        "type": "string",
  5131        "description": "object name and auth scope, such as for teams and projects",
  5132        "name": "namespace",
  5133        "in": "path",
  5134        "required": true
  5135       },
  5136       {
  5137        "uniqueItems": true,
  5138        "type": "string",
  5139        "description": "If 'true', then the output is pretty printed.",
  5140        "name": "pretty",
  5141        "in": "query"
  5142       }
  5143      ]
  5144     },
  5145     "/api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status": {
  5146      "get": {
  5147       "description": "read status of the specified ReplicationController",
  5148       "consumes": [
  5149        "*/*"
  5150       ],
  5151       "produces": [
  5152        "application/json",
  5153        "application/yaml",
  5154        "application/vnd.kubernetes.protobuf"
  5155       ],
  5156       "schemes": [
  5157        "https"
  5158       ],
  5159       "tags": [
  5160        "core_v1"
  5161       ],
  5162       "operationId": "readCoreV1NamespacedReplicationControllerStatus",
  5163       "responses": {
  5164        "200": {
  5165         "description": "OK",
  5166         "schema": {
  5167          "$ref": "#/definitions/v1.ReplicationController"
  5168         }
  5169        },
  5170        "401": {
  5171         "description": "Unauthorized"
  5172        }
  5173       }
  5174      },
  5175      "put": {
  5176       "description": "replace status of the specified ReplicationController",
  5177       "consumes": [
  5178        "*/*"
  5179       ],
  5180       "produces": [
  5181        "application/json",
  5182        "application/yaml",
  5183        "application/vnd.kubernetes.protobuf"
  5184       ],
  5185       "schemes": [
  5186        "https"
  5187       ],
  5188       "tags": [
  5189        "core_v1"
  5190       ],
  5191       "operationId": "replaceCoreV1NamespacedReplicationControllerStatus",
  5192       "parameters": [
  5193        {
  5194         "name": "body",
  5195         "in": "body",
  5196         "required": true,
  5197         "schema": {
  5198          "$ref": "#/definitions/v1.ReplicationController"
  5199         }
  5200        }
  5201       ],
  5202       "responses": {
  5203        "200": {
  5204         "description": "OK",
  5205         "schema": {
  5206          "$ref": "#/definitions/v1.ReplicationController"
  5207         }
  5208        },
  5209        "401": {
  5210         "description": "Unauthorized"
  5211        }
  5212       }
  5213      },
  5214      "patch": {
  5215       "description": "partially update status of the specified ReplicationController",
  5216       "consumes": [
  5217        "application/json-patch+json",
  5218        "application/merge-patch+json",
  5219        "application/strategic-merge-patch+json"
  5220       ],
  5221       "produces": [
  5222        "application/json",
  5223        "application/yaml",
  5224        "application/vnd.kubernetes.protobuf"
  5225       ],
  5226       "schemes": [
  5227        "https"
  5228       ],
  5229       "tags": [
  5230        "core_v1"
  5231       ],
  5232       "operationId": "patchCoreV1NamespacedReplicationControllerStatus",
  5233       "parameters": [
  5234        {
  5235         "name": "body",
  5236         "in": "body",
  5237         "required": true,
  5238         "schema": {
  5239          "$ref": "#/definitions/unversioned.Patch"
  5240         }
  5241        }
  5242       ],
  5243       "responses": {
  5244        "200": {
  5245         "description": "OK",
  5246         "schema": {
  5247          "$ref": "#/definitions/v1.ReplicationController"
  5248         }
  5249        },
  5250        "401": {
  5251         "description": "Unauthorized"
  5252        }
  5253       }
  5254      },
  5255      "parameters": [
  5256       {
  5257        "uniqueItems": true,
  5258        "type": "string",
  5259        "description": "name of the ReplicationController",
  5260        "name": "name",
  5261        "in": "path",
  5262        "required": true
  5263       },
  5264       {
  5265        "uniqueItems": true,
  5266        "type": "string",
  5267        "description": "object name and auth scope, such as for teams and projects",
  5268        "name": "namespace",
  5269        "in": "path",
  5270        "required": true
  5271       },
  5272       {
  5273        "uniqueItems": true,
  5274        "type": "string",
  5275        "description": "If 'true', then the output is pretty printed.",
  5276        "name": "pretty",
  5277        "in": "query"
  5278       }
  5279      ]
  5280     },
  5281     "/api/v1/namespaces/{namespace}/resourcequotas": {
  5282      "get": {
  5283       "description": "list or watch objects of kind ResourceQuota",
  5284       "consumes": [
  5285        "*/*"
  5286       ],
  5287       "produces": [
  5288        "application/json",
  5289        "application/yaml",
  5290        "application/vnd.kubernetes.protobuf",
  5291        "application/json;stream=watch",
  5292        "application/vnd.kubernetes.protobuf;stream=watch"
  5293       ],
  5294       "schemes": [
  5295        "https"
  5296       ],
  5297       "tags": [
  5298        "core_v1"
  5299       ],
  5300       "operationId": "listCoreV1NamespacedResourceQuota",
  5301       "parameters": [
  5302        {
  5303         "uniqueItems": true,
  5304         "type": "string",
  5305         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  5306         "name": "fieldSelector",
  5307         "in": "query"
  5308        },
  5309        {
  5310         "uniqueItems": true,
  5311         "type": "string",
  5312         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  5313         "name": "labelSelector",
  5314         "in": "query"
  5315        },
  5316        {
  5317         "uniqueItems": true,
  5318         "type": "string",
  5319         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
  5320         "name": "resourceVersion",
  5321         "in": "query"
  5322        },
  5323        {
  5324         "uniqueItems": true,
  5325         "type": "integer",
  5326         "description": "Timeout for the list/watch call.",
  5327         "name": "timeoutSeconds",
  5328         "in": "query"
  5329        },
  5330        {
  5331         "uniqueItems": true,
  5332         "type": "boolean",
  5333         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  5334         "name": "watch",
  5335         "in": "query"
  5336        }
  5337       ],
  5338       "responses": {
  5339        "200": {
  5340         "description": "OK",
  5341         "schema": {
  5342          "$ref": "#/definitions/v1.ResourceQuotaList"
  5343         }
  5344        },
  5345        "401": {
  5346         "description": "Unauthorized"
  5347        }
  5348       }
  5349      },
  5350      "post": {
  5351       "description": "create a ResourceQuota",
  5352       "consumes": [
  5353        "*/*"
  5354       ],
  5355       "produces": [
  5356        "application/json",
  5357        "application/yaml",
  5358        "application/vnd.kubernetes.protobuf"
  5359       ],
  5360       "schemes": [
  5361        "https"
  5362       ],
  5363       "tags": [
  5364        "core_v1"
  5365       ],
  5366       "operationId": "createCoreV1NamespacedResourceQuota",
  5367       "parameters": [
  5368        {
  5369         "name": "body",
  5370         "in": "body",
  5371         "required": true,
  5372         "schema": {
  5373          "$ref": "#/definitions/v1.ResourceQuota"
  5374         }
  5375        }
  5376       ],
  5377       "responses": {
  5378        "200": {
  5379         "description": "OK",
  5380         "schema": {
  5381          "$ref": "#/definitions/v1.ResourceQuota"
  5382         }
  5383        },
  5384        "401": {
  5385         "description": "Unauthorized"
  5386        }
  5387       }
  5388      },
  5389      "delete": {
  5390       "description": "delete collection of ResourceQuota",
  5391       "consumes": [
  5392        "*/*"
  5393       ],
  5394       "produces": [
  5395        "application/json",
  5396        "application/yaml",
  5397        "application/vnd.kubernetes.protobuf"
  5398       ],
  5399       "schemes": [
  5400        "https"
  5401       ],
  5402       "tags": [
  5403        "core_v1"
  5404       ],
  5405       "operationId": "deleteCoreV1CollectionNamespacedResourceQuota",
  5406       "parameters": [
  5407        {
  5408         "uniqueItems": true,
  5409         "type": "string",
  5410         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  5411         "name": "fieldSelector",
  5412         "in": "query"
  5413        },
  5414        {
  5415         "uniqueItems": true,
  5416         "type": "string",
  5417         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  5418         "name": "labelSelector",
  5419         "in": "query"
  5420        },
  5421        {
  5422         "uniqueItems": true,
  5423         "type": "string",
  5424         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
  5425         "name": "resourceVersion",
  5426         "in": "query"
  5427        },
  5428        {
  5429         "uniqueItems": true,
  5430         "type": "integer",
  5431         "description": "Timeout for the list/watch call.",
  5432         "name": "timeoutSeconds",
  5433         "in": "query"
  5434        },
  5435        {
  5436         "uniqueItems": true,
  5437         "type": "boolean",
  5438         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  5439         "name": "watch",
  5440         "in": "query"
  5441        }
  5442       ],
  5443       "responses": {
  5444        "200": {
  5445         "description": "OK",
  5446         "schema": {
  5447          "$ref": "#/definitions/unversioned.Status"
  5448         }
  5449        },
  5450        "401": {
  5451         "description": "Unauthorized"
  5452        }
  5453       }
  5454      },
  5455      "parameters": [
  5456       {
  5457        "uniqueItems": true,
  5458        "type": "string",
  5459        "description": "object name and auth scope, such as for teams and projects",
  5460        "name": "namespace",
  5461        "in": "path",
  5462        "required": true
  5463       },
  5464       {
  5465        "uniqueItems": true,
  5466        "type": "string",
  5467        "description": "If 'true', then the output is pretty printed.",
  5468        "name": "pretty",
  5469        "in": "query"
  5470       }
  5471      ]
  5472     },
  5473     "/api/v1/namespaces/{namespace}/resourcequotas/{name}": {
  5474      "get": {
  5475       "description": "read the specified ResourceQuota",
  5476       "consumes": [
  5477        "*/*"
  5478       ],
  5479       "produces": [
  5480        "application/json",
  5481        "application/yaml",
  5482        "application/vnd.kubernetes.protobuf"
  5483       ],
  5484       "schemes": [
  5485        "https"
  5486       ],
  5487       "tags": [
  5488        "core_v1"
  5489       ],
  5490       "operationId": "readCoreV1NamespacedResourceQuota",
  5491       "parameters": [
  5492        {
  5493         "uniqueItems": true,
  5494         "type": "boolean",
  5495         "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'",
  5496         "name": "exact",
  5497         "in": "query"
  5498        },
  5499        {
  5500         "uniqueItems": true,
  5501         "type": "boolean",
  5502         "description": "Should this value be exported.  Export strips fields that a user can not specify.",
  5503         "name": "export",
  5504         "in": "query"
  5505        }
  5506       ],
  5507       "responses": {
  5508        "200": {
  5509         "description": "OK",
  5510         "schema": {
  5511          "$ref": "#/definitions/v1.ResourceQuota"
  5512         }
  5513        },
  5514        "401": {
  5515         "description": "Unauthorized"
  5516        }
  5517       }
  5518      },
  5519      "put": {
  5520       "description": "replace the specified ResourceQuota",
  5521       "consumes": [
  5522        "*/*"
  5523       ],
  5524       "produces": [
  5525        "application/json",
  5526        "application/yaml",
  5527        "application/vnd.kubernetes.protobuf"
  5528       ],
  5529       "schemes": [
  5530        "https"
  5531       ],
  5532       "tags": [
  5533        "core_v1"
  5534       ],
  5535       "operationId": "replaceCoreV1NamespacedResourceQuota",
  5536       "parameters": [
  5537        {
  5538         "name": "body",
  5539         "in": "body",
  5540         "required": true,
  5541         "schema": {
  5542          "$ref": "#/definitions/v1.ResourceQuota"
  5543         }
  5544        }
  5545       ],
  5546       "responses": {
  5547        "200": {
  5548         "description": "OK",
  5549         "schema": {
  5550          "$ref": "#/definitions/v1.ResourceQuota"
  5551         }
  5552        },
  5553        "401": {
  5554         "description": "Unauthorized"
  5555        }
  5556       }
  5557      },
  5558      "delete": {
  5559       "description": "delete a ResourceQuota",
  5560       "consumes": [
  5561        "*/*"
  5562       ],
  5563       "produces": [
  5564        "application/json",
  5565        "application/yaml",
  5566        "application/vnd.kubernetes.protobuf"
  5567       ],
  5568       "schemes": [
  5569        "https"
  5570       ],
  5571       "tags": [
  5572        "core_v1"
  5573       ],
  5574       "operationId": "deleteCoreV1NamespacedResourceQuota",
  5575       "parameters": [
  5576        {
  5577         "name": "body",
  5578         "in": "body",
  5579         "required": true,
  5580         "schema": {
  5581          "$ref": "#/definitions/v1.DeleteOptions"
  5582         }
  5583        }
  5584       ],
  5585       "responses": {
  5586        "200": {
  5587         "description": "OK",
  5588         "schema": {
  5589          "$ref": "#/definitions/unversioned.Status"
  5590         }
  5591        },
  5592        "401": {
  5593         "description": "Unauthorized"
  5594        }
  5595       }
  5596      },
  5597      "patch": {
  5598       "description": "partially update the specified ResourceQuota",
  5599       "consumes": [
  5600        "application/json-patch+json",
  5601        "application/merge-patch+json",
  5602        "application/strategic-merge-patch+json"
  5603       ],
  5604       "produces": [
  5605        "application/json",
  5606        "application/yaml",
  5607        "application/vnd.kubernetes.protobuf"
  5608       ],
  5609       "schemes": [
  5610        "https"
  5611       ],
  5612       "tags": [
  5613        "core_v1"
  5614       ],
  5615       "operationId": "patchCoreV1NamespacedResourceQuota",
  5616       "parameters": [
  5617        {
  5618         "name": "body",
  5619         "in": "body",
  5620         "required": true,
  5621         "schema": {
  5622          "$ref": "#/definitions/unversioned.Patch"
  5623         }
  5624        }
  5625       ],
  5626       "responses": {
  5627        "200": {
  5628         "description": "OK",
  5629         "schema": {
  5630          "$ref": "#/definitions/v1.ResourceQuota"
  5631         }
  5632        },
  5633        "401": {
  5634         "description": "Unauthorized"
  5635        }
  5636       }
  5637      },
  5638      "parameters": [
  5639       {
  5640        "uniqueItems": true,
  5641        "type": "string",
  5642        "description": "name of the ResourceQuota",
  5643        "name": "name",
  5644        "in": "path",
  5645        "required": true
  5646       },
  5647       {
  5648        "uniqueItems": true,
  5649        "type": "string",
  5650        "description": "object name and auth scope, such as for teams and projects",
  5651        "name": "namespace",
  5652        "in": "path",
  5653        "required": true
  5654       },
  5655       {
  5656        "uniqueItems": true,
  5657        "type": "string",
  5658        "description": "If 'true', then the output is pretty printed.",
  5659        "name": "pretty",
  5660        "in": "query"
  5661       }
  5662      ]
  5663     },
  5664     "/api/v1/namespaces/{namespace}/resourcequotas/{name}/status": {
  5665      "get": {
  5666       "description": "read status of the specified ResourceQuota",
  5667       "consumes": [
  5668        "*/*"
  5669       ],
  5670       "produces": [
  5671        "application/json",
  5672        "application/yaml",
  5673        "application/vnd.kubernetes.protobuf"
  5674       ],
  5675       "schemes": [
  5676        "https"
  5677       ],
  5678       "tags": [
  5679        "core_v1"
  5680       ],
  5681       "operationId": "readCoreV1NamespacedResourceQuotaStatus",
  5682       "responses": {
  5683        "200": {
  5684         "description": "OK",
  5685         "schema": {
  5686          "$ref": "#/definitions/v1.ResourceQuota"
  5687         }
  5688        },
  5689        "401": {
  5690         "description": "Unauthorized"
  5691        }
  5692       }
  5693      },
  5694      "put": {
  5695       "description": "replace status of the specified ResourceQuota",
  5696       "consumes": [
  5697        "*/*"
  5698       ],
  5699       "produces": [
  5700        "application/json",
  5701        "application/yaml",
  5702        "application/vnd.kubernetes.protobuf"
  5703       ],
  5704       "schemes": [
  5705        "https"
  5706       ],
  5707       "tags": [
  5708        "core_v1"
  5709       ],
  5710       "operationId": "replaceCoreV1NamespacedResourceQuotaStatus",
  5711       "parameters": [
  5712        {
  5713         "name": "body",
  5714         "in": "body",
  5715         "required": true,
  5716         "schema": {
  5717          "$ref": "#/definitions/v1.ResourceQuota"
  5718         }
  5719        }
  5720       ],
  5721       "responses": {
  5722        "200": {
  5723         "description": "OK",
  5724         "schema": {
  5725          "$ref": "#/definitions/v1.ResourceQuota"
  5726         }
  5727        },
  5728        "401": {
  5729         "description": "Unauthorized"
  5730        }
  5731       }
  5732      },
  5733      "patch": {
  5734       "description": "partially update status of the specified ResourceQuota",
  5735       "consumes": [
  5736        "application/json-patch+json",
  5737        "application/merge-patch+json",
  5738        "application/strategic-merge-patch+json"
  5739       ],
  5740       "produces": [
  5741        "application/json",
  5742        "application/yaml",
  5743        "application/vnd.kubernetes.protobuf"
  5744       ],
  5745       "schemes": [
  5746        "https"
  5747       ],
  5748       "tags": [
  5749        "core_v1"
  5750       ],
  5751       "operationId": "patchCoreV1NamespacedResourceQuotaStatus",
  5752       "parameters": [
  5753        {
  5754         "name": "body",
  5755         "in": "body",
  5756         "required": true,
  5757         "schema": {
  5758          "$ref": "#/definitions/unversioned.Patch"
  5759         }
  5760        }
  5761       ],
  5762       "responses": {
  5763        "200": {
  5764         "description": "OK",
  5765         "schema": {
  5766          "$ref": "#/definitions/v1.ResourceQuota"
  5767         }
  5768        },
  5769        "401": {
  5770         "description": "Unauthorized"
  5771        }
  5772       }
  5773      },
  5774      "parameters": [
  5775       {
  5776        "uniqueItems": true,
  5777        "type": "string",
  5778        "description": "name of the ResourceQuota",
  5779        "name": "name",
  5780        "in": "path",
  5781        "required": true
  5782       },
  5783       {
  5784        "uniqueItems": true,
  5785        "type": "string",
  5786        "description": "object name and auth scope, such as for teams and projects",
  5787        "name": "namespace",
  5788        "in": "path",
  5789        "required": true
  5790       },
  5791       {
  5792        "uniqueItems": true,
  5793        "type": "string",
  5794        "description": "If 'true', then the output is pretty printed.",
  5795        "name": "pretty",
  5796        "in": "query"
  5797       }
  5798      ]
  5799     },
  5800     "/api/v1/namespaces/{namespace}/secrets": {
  5801      "get": {
  5802       "description": "list or watch objects of kind Secret",
  5803       "consumes": [
  5804        "*/*"
  5805       ],
  5806       "produces": [
  5807        "application/json",
  5808        "application/yaml",
  5809        "application/vnd.kubernetes.protobuf",
  5810        "application/json;stream=watch",
  5811        "application/vnd.kubernetes.protobuf;stream=watch"
  5812       ],
  5813       "schemes": [
  5814        "https"
  5815       ],
  5816       "tags": [
  5817        "core_v1"
  5818       ],
  5819       "operationId": "listCoreV1NamespacedSecret",
  5820       "parameters": [
  5821        {
  5822         "uniqueItems": true,
  5823         "type": "string",
  5824         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  5825         "name": "fieldSelector",
  5826         "in": "query"
  5827        },
  5828        {
  5829         "uniqueItems": true,
  5830         "type": "string",
  5831         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  5832         "name": "labelSelector",
  5833         "in": "query"
  5834        },
  5835        {
  5836         "uniqueItems": true,
  5837         "type": "string",
  5838         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
  5839         "name": "resourceVersion",
  5840         "in": "query"
  5841        },
  5842        {
  5843         "uniqueItems": true,
  5844         "type": "integer",
  5845         "description": "Timeout for the list/watch call.",
  5846         "name": "timeoutSeconds",
  5847         "in": "query"
  5848        },
  5849        {
  5850         "uniqueItems": true,
  5851         "type": "boolean",
  5852         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  5853         "name": "watch",
  5854         "in": "query"
  5855        }
  5856       ],
  5857       "responses": {
  5858        "200": {
  5859         "description": "OK",
  5860         "schema": {
  5861          "$ref": "#/definitions/v1.SecretList"
  5862         }
  5863        },
  5864        "401": {
  5865         "description": "Unauthorized"
  5866        }
  5867       }
  5868      },
  5869      "post": {
  5870       "description": "create a Secret",
  5871       "consumes": [
  5872        "*/*"
  5873       ],
  5874       "produces": [
  5875        "application/json",
  5876        "application/yaml",
  5877        "application/vnd.kubernetes.protobuf"
  5878       ],
  5879       "schemes": [
  5880        "https"
  5881       ],
  5882       "tags": [
  5883        "core_v1"
  5884       ],
  5885       "operationId": "createCoreV1NamespacedSecret",
  5886       "parameters": [
  5887        {
  5888         "name": "body",
  5889         "in": "body",
  5890         "required": true,
  5891         "schema": {
  5892          "$ref": "#/definitions/v1.Secret"
  5893         }
  5894        }
  5895       ],
  5896       "responses": {
  5897        "200": {
  5898         "description": "OK",
  5899         "schema": {
  5900          "$ref": "#/definitions/v1.Secret"
  5901         }
  5902        },
  5903        "401": {
  5904         "description": "Unauthorized"
  5905        }
  5906       }
  5907      },
  5908      "delete": {
  5909       "description": "delete collection of Secret",
  5910       "consumes": [
  5911        "*/*"
  5912       ],
  5913       "produces": [
  5914        "application/json",
  5915        "application/yaml",
  5916        "application/vnd.kubernetes.protobuf"
  5917       ],
  5918       "schemes": [
  5919        "https"
  5920       ],
  5921       "tags": [
  5922        "core_v1"
  5923       ],
  5924       "operationId": "deleteCoreV1CollectionNamespacedSecret",
  5925       "parameters": [
  5926        {
  5927         "uniqueItems": true,
  5928         "type": "string",
  5929         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  5930         "name": "fieldSelector",
  5931         "in": "query"
  5932        },
  5933        {
  5934         "uniqueItems": true,
  5935         "type": "string",
  5936         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  5937         "name": "labelSelector",
  5938         "in": "query"
  5939        },
  5940        {
  5941         "uniqueItems": true,
  5942         "type": "string",
  5943         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
  5944         "name": "resourceVersion",
  5945         "in": "query"
  5946        },
  5947        {
  5948         "uniqueItems": true,
  5949         "type": "integer",
  5950         "description": "Timeout for the list/watch call.",
  5951         "name": "timeoutSeconds",
  5952         "in": "query"
  5953        },
  5954        {
  5955         "uniqueItems": true,
  5956         "type": "boolean",
  5957         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  5958         "name": "watch",
  5959         "in": "query"
  5960        }
  5961       ],
  5962       "responses": {
  5963        "200": {
  5964         "description": "OK",
  5965         "schema": {
  5966          "$ref": "#/definitions/unversioned.Status"
  5967         }
  5968        },
  5969        "401": {
  5970         "description": "Unauthorized"
  5971        }
  5972       }
  5973      },
  5974      "parameters": [
  5975       {
  5976        "uniqueItems": true,
  5977        "type": "string",
  5978        "description": "object name and auth scope, such as for teams and projects",
  5979        "name": "namespace",
  5980        "in": "path",
  5981        "required": true
  5982       },
  5983       {
  5984        "uniqueItems": true,
  5985        "type": "string",
  5986        "description": "If 'true', then the output is pretty printed.",
  5987        "name": "pretty",
  5988        "in": "query"
  5989       }
  5990      ]
  5991     },
  5992     "/api/v1/namespaces/{namespace}/secrets/{name}": {
  5993      "get": {
  5994       "description": "read the specified Secret",
  5995       "consumes": [
  5996        "*/*"
  5997       ],
  5998       "produces": [
  5999        "application/json",
  6000        "application/yaml",
  6001        "application/vnd.kubernetes.protobuf"
  6002       ],
  6003       "schemes": [
  6004        "https"
  6005       ],
  6006       "tags": [
  6007        "core_v1"
  6008       ],
  6009       "operationId": "readCoreV1NamespacedSecret",
  6010       "parameters": [
  6011        {
  6012         "uniqueItems": true,
  6013         "type": "boolean",
  6014         "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'",
  6015         "name": "exact",
  6016         "in": "query"
  6017        },
  6018        {
  6019         "uniqueItems": true,
  6020         "type": "boolean",
  6021         "description": "Should this value be exported.  Export strips fields that a user can not specify.",
  6022         "name": "export",
  6023         "in": "query"
  6024        }
  6025       ],
  6026       "responses": {
  6027        "200": {
  6028         "description": "OK",
  6029         "schema": {
  6030          "$ref": "#/definitions/v1.Secret"
  6031         }
  6032        },
  6033        "401": {
  6034         "description": "Unauthorized"
  6035        }
  6036       }
  6037      },
  6038      "put": {
  6039       "description": "replace the specified Secret",
  6040       "consumes": [
  6041        "*/*"
  6042       ],
  6043       "produces": [
  6044        "application/json",
  6045        "application/yaml",
  6046        "application/vnd.kubernetes.protobuf"
  6047       ],
  6048       "schemes": [
  6049        "https"
  6050       ],
  6051       "tags": [
  6052        "core_v1"
  6053       ],
  6054       "operationId": "replaceCoreV1NamespacedSecret",
  6055       "parameters": [
  6056        {
  6057         "name": "body",
  6058         "in": "body",
  6059         "required": true,
  6060         "schema": {
  6061          "$ref": "#/definitions/v1.Secret"
  6062         }
  6063        }
  6064       ],
  6065       "responses": {
  6066        "200": {
  6067         "description": "OK",
  6068         "schema": {
  6069          "$ref": "#/definitions/v1.Secret"
  6070         }
  6071        },
  6072        "401": {
  6073         "description": "Unauthorized"
  6074        }
  6075       }
  6076      },
  6077      "delete": {
  6078       "description": "delete a Secret",
  6079       "consumes": [
  6080        "*/*"
  6081       ],
  6082       "produces": [
  6083        "application/json",
  6084        "application/yaml",
  6085        "application/vnd.kubernetes.protobuf"
  6086       ],
  6087       "schemes": [
  6088        "https"
  6089       ],
  6090       "tags": [
  6091        "core_v1"
  6092       ],
  6093       "operationId": "deleteCoreV1NamespacedSecret",
  6094       "parameters": [
  6095        {
  6096         "name": "body",
  6097         "in": "body",
  6098         "required": true,
  6099         "schema": {
  6100          "$ref": "#/definitions/v1.DeleteOptions"
  6101         }
  6102        }
  6103       ],
  6104       "responses": {
  6105        "200": {
  6106         "description": "OK",
  6107         "schema": {
  6108          "$ref": "#/definitions/unversioned.Status"
  6109         }
  6110        },
  6111        "401": {
  6112         "description": "Unauthorized"
  6113        }
  6114       }
  6115      },
  6116      "patch": {
  6117       "description": "partially update the specified Secret",
  6118       "consumes": [
  6119        "application/json-patch+json",
  6120        "application/merge-patch+json",
  6121        "application/strategic-merge-patch+json"
  6122       ],
  6123       "produces": [
  6124        "application/json",
  6125        "application/yaml",
  6126        "application/vnd.kubernetes.protobuf"
  6127       ],
  6128       "schemes": [
  6129        "https"
  6130       ],
  6131       "tags": [
  6132        "core_v1"
  6133       ],
  6134       "operationId": "patchCoreV1NamespacedSecret",
  6135       "parameters": [
  6136        {
  6137         "name": "body",
  6138         "in": "body",
  6139         "required": true,
  6140         "schema": {
  6141          "$ref": "#/definitions/unversioned.Patch"
  6142         }
  6143        }
  6144       ],
  6145       "responses": {
  6146        "200": {
  6147         "description": "OK",
  6148         "schema": {
  6149          "$ref": "#/definitions/v1.Secret"
  6150         }
  6151        },
  6152        "401": {
  6153         "description": "Unauthorized"
  6154        }
  6155       }
  6156      },
  6157      "parameters": [
  6158       {
  6159        "uniqueItems": true,
  6160        "type": "string",
  6161        "description": "name of the Secret",
  6162        "name": "name",
  6163        "in": "path",
  6164        "required": true
  6165       },
  6166       {
  6167        "uniqueItems": true,
  6168        "type": "string",
  6169        "description": "object name and auth scope, such as for teams and projects",
  6170        "name": "namespace",
  6171        "in": "path",
  6172        "required": true
  6173       },
  6174       {
  6175        "uniqueItems": true,
  6176        "type": "string",
  6177        "description": "If 'true', then the output is pretty printed.",
  6178        "name": "pretty",
  6179        "in": "query"
  6180       }
  6181      ]
  6182     },
  6183     "/api/v1/namespaces/{namespace}/serviceaccounts": {
  6184      "get": {
  6185       "description": "list or watch objects of kind ServiceAccount",
  6186       "consumes": [
  6187        "*/*"
  6188       ],
  6189       "produces": [
  6190        "application/json",
  6191        "application/yaml",
  6192        "application/vnd.kubernetes.protobuf",
  6193        "application/json;stream=watch",
  6194        "application/vnd.kubernetes.protobuf;stream=watch"
  6195       ],
  6196       "schemes": [
  6197        "https"
  6198       ],
  6199       "tags": [
  6200        "core_v1"
  6201       ],
  6202       "operationId": "listCoreV1NamespacedServiceAccount",
  6203       "parameters": [
  6204        {
  6205         "uniqueItems": true,
  6206         "type": "string",
  6207         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  6208         "name": "fieldSelector",
  6209         "in": "query"
  6210        },
  6211        {
  6212         "uniqueItems": true,
  6213         "type": "string",
  6214         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  6215         "name": "labelSelector",
  6216         "in": "query"
  6217        },
  6218        {
  6219         "uniqueItems": true,
  6220         "type": "string",
  6221         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
  6222         "name": "resourceVersion",
  6223         "in": "query"
  6224        },
  6225        {
  6226         "uniqueItems": true,
  6227         "type": "integer",
  6228         "description": "Timeout for the list/watch call.",
  6229         "name": "timeoutSeconds",
  6230         "in": "query"
  6231        },
  6232        {
  6233         "uniqueItems": true,
  6234         "type": "boolean",
  6235         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  6236         "name": "watch",
  6237         "in": "query"
  6238        }
  6239       ],
  6240       "responses": {
  6241        "200": {
  6242         "description": "OK",
  6243         "schema": {
  6244          "$ref": "#/definitions/v1.ServiceAccountList"
  6245         }
  6246        },
  6247        "401": {
  6248         "description": "Unauthorized"
  6249        }
  6250       }
  6251      },
  6252      "post": {
  6253       "description": "create a ServiceAccount",
  6254       "consumes": [
  6255        "*/*"
  6256       ],
  6257       "produces": [
  6258        "application/json",
  6259        "application/yaml",
  6260        "application/vnd.kubernetes.protobuf"
  6261       ],
  6262       "schemes": [
  6263        "https"
  6264       ],
  6265       "tags": [
  6266        "core_v1"
  6267       ],
  6268       "operationId": "createCoreV1NamespacedServiceAccount",
  6269       "parameters": [
  6270        {
  6271         "name": "body",
  6272         "in": "body",
  6273         "required": true,
  6274         "schema": {
  6275          "$ref": "#/definitions/v1.ServiceAccount"
  6276         }
  6277        }
  6278       ],
  6279       "responses": {
  6280        "200": {
  6281         "description": "OK",
  6282         "schema": {
  6283          "$ref": "#/definitions/v1.ServiceAccount"
  6284         }
  6285        },
  6286        "401": {
  6287         "description": "Unauthorized"
  6288        }
  6289       }
  6290      },
  6291      "delete": {
  6292       "description": "delete collection of ServiceAccount",
  6293       "consumes": [
  6294        "*/*"
  6295       ],
  6296       "produces": [
  6297        "application/json",
  6298        "application/yaml",
  6299        "application/vnd.kubernetes.protobuf"
  6300       ],
  6301       "schemes": [
  6302        "https"
  6303       ],
  6304       "tags": [
  6305        "core_v1"
  6306       ],
  6307       "operationId": "deleteCoreV1CollectionNamespacedServiceAccount",
  6308       "parameters": [
  6309        {
  6310         "uniqueItems": true,
  6311         "type": "string",
  6312         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  6313         "name": "fieldSelector",
  6314         "in": "query"
  6315        },
  6316        {
  6317         "uniqueItems": true,
  6318         "type": "string",
  6319         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  6320         "name": "labelSelector",
  6321         "in": "query"
  6322        },
  6323        {
  6324         "uniqueItems": true,
  6325         "type": "string",
  6326         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
  6327         "name": "resourceVersion",
  6328         "in": "query"
  6329        },
  6330        {
  6331         "uniqueItems": true,
  6332         "type": "integer",
  6333         "description": "Timeout for the list/watch call.",
  6334         "name": "timeoutSeconds",
  6335         "in": "query"
  6336        },
  6337        {
  6338         "uniqueItems": true,
  6339         "type": "boolean",
  6340         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  6341         "name": "watch",
  6342         "in": "query"
  6343        }
  6344       ],
  6345       "responses": {
  6346        "200": {
  6347         "description": "OK",
  6348         "schema": {
  6349          "$ref": "#/definitions/unversioned.Status"
  6350         }
  6351        },
  6352        "401": {
  6353         "description": "Unauthorized"
  6354        }
  6355       }
  6356      },
  6357      "parameters": [
  6358       {
  6359        "uniqueItems": true,
  6360        "type": "string",
  6361        "description": "object name and auth scope, such as for teams and projects",
  6362        "name": "namespace",
  6363        "in": "path",
  6364        "required": true
  6365       },
  6366       {
  6367        "uniqueItems": true,
  6368        "type": "string",
  6369        "description": "If 'true', then the output is pretty printed.",
  6370        "name": "pretty",
  6371        "in": "query"
  6372       }
  6373      ]
  6374     },
  6375     "/api/v1/namespaces/{namespace}/serviceaccounts/{name}": {
  6376      "get": {
  6377       "description": "read the specified ServiceAccount",
  6378       "consumes": [
  6379        "*/*"
  6380       ],
  6381       "produces": [
  6382        "application/json",
  6383        "application/yaml",
  6384        "application/vnd.kubernetes.protobuf"
  6385       ],
  6386       "schemes": [
  6387        "https"
  6388       ],
  6389       "tags": [
  6390        "core_v1"
  6391       ],
  6392       "operationId": "readCoreV1NamespacedServiceAccount",
  6393       "parameters": [
  6394        {
  6395         "uniqueItems": true,
  6396         "type": "boolean",
  6397         "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'",
  6398         "name": "exact",
  6399         "in": "query"
  6400        },
  6401        {
  6402         "uniqueItems": true,
  6403         "type": "boolean",
  6404         "description": "Should this value be exported.  Export strips fields that a user can not specify.",
  6405         "name": "export",
  6406         "in": "query"
  6407        }
  6408       ],
  6409       "responses": {
  6410        "200": {
  6411         "description": "OK",
  6412         "schema": {
  6413          "$ref": "#/definitions/v1.ServiceAccount"
  6414         }
  6415        },
  6416        "401": {
  6417         "description": "Unauthorized"
  6418        }
  6419       }
  6420      },
  6421      "put": {
  6422       "description": "replace the specified ServiceAccount",
  6423       "consumes": [
  6424        "*/*"
  6425       ],
  6426       "produces": [
  6427        "application/json",
  6428        "application/yaml",
  6429        "application/vnd.kubernetes.protobuf"
  6430       ],
  6431       "schemes": [
  6432        "https"
  6433       ],
  6434       "tags": [
  6435        "core_v1"
  6436       ],
  6437       "operationId": "replaceCoreV1NamespacedServiceAccount",
  6438       "parameters": [
  6439        {
  6440         "name": "body",
  6441         "in": "body",
  6442         "required": true,
  6443         "schema": {
  6444          "$ref": "#/definitions/v1.ServiceAccount"
  6445         }
  6446        }
  6447       ],
  6448       "responses": {
  6449        "200": {
  6450         "description": "OK",
  6451         "schema": {
  6452          "$ref": "#/definitions/v1.ServiceAccount"
  6453         }
  6454        },
  6455        "401": {
  6456         "description": "Unauthorized"
  6457        }
  6458       }
  6459      },
  6460      "delete": {
  6461       "description": "delete a ServiceAccount",
  6462       "consumes": [
  6463        "*/*"
  6464       ],
  6465       "produces": [
  6466        "application/json",
  6467        "application/yaml",
  6468        "application/vnd.kubernetes.protobuf"
  6469       ],
  6470       "schemes": [
  6471        "https"
  6472       ],
  6473       "tags": [
  6474        "core_v1"
  6475       ],
  6476       "operationId": "deleteCoreV1NamespacedServiceAccount",
  6477       "parameters": [
  6478        {
  6479         "name": "body",
  6480         "in": "body",
  6481         "required": true,
  6482         "schema": {
  6483          "$ref": "#/definitions/v1.DeleteOptions"
  6484         }
  6485        }
  6486       ],
  6487       "responses": {
  6488        "200": {
  6489         "description": "OK",
  6490         "schema": {
  6491          "$ref": "#/definitions/unversioned.Status"
  6492         }
  6493        },
  6494        "401": {
  6495         "description": "Unauthorized"
  6496        }
  6497       }
  6498      },
  6499      "patch": {
  6500       "description": "partially update the specified ServiceAccount",
  6501       "consumes": [
  6502        "application/json-patch+json",
  6503        "application/merge-patch+json",
  6504        "application/strategic-merge-patch+json"
  6505       ],
  6506       "produces": [
  6507        "application/json",
  6508        "application/yaml",
  6509        "application/vnd.kubernetes.protobuf"
  6510       ],
  6511       "schemes": [
  6512        "https"
  6513       ],
  6514       "tags": [
  6515        "core_v1"
  6516       ],
  6517       "operationId": "patchCoreV1NamespacedServiceAccount",
  6518       "parameters": [
  6519        {
  6520         "name": "body",
  6521         "in": "body",
  6522         "required": true,
  6523         "schema": {
  6524          "$ref": "#/definitions/unversioned.Patch"
  6525         }
  6526        }
  6527       ],
  6528       "responses": {
  6529        "200": {
  6530         "description": "OK",
  6531         "schema": {
  6532          "$ref": "#/definitions/v1.ServiceAccount"
  6533         }
  6534        },
  6535        "401": {
  6536         "description": "Unauthorized"
  6537        }
  6538       }
  6539      },
  6540      "parameters": [
  6541       {
  6542        "uniqueItems": true,
  6543        "type": "string",
  6544        "description": "name of the ServiceAccount",
  6545        "name": "name",
  6546        "in": "path",
  6547        "required": true
  6548       },
  6549       {
  6550        "uniqueItems": true,
  6551        "type": "string",
  6552        "description": "object name and auth scope, such as for teams and projects",
  6553        "name": "namespace",
  6554        "in": "path",
  6555        "required": true
  6556       },
  6557       {
  6558        "uniqueItems": true,
  6559        "type": "string",
  6560        "description": "If 'true', then the output is pretty printed.",
  6561        "name": "pretty",
  6562        "in": "query"
  6563       }
  6564      ]
  6565     },
  6566     "/api/v1/namespaces/{namespace}/services": {
  6567      "get": {
  6568       "description": "list or watch objects of kind Service",
  6569       "consumes": [
  6570        "*/*"
  6571       ],
  6572       "produces": [
  6573        "application/json",
  6574        "application/yaml",
  6575        "application/vnd.kubernetes.protobuf",
  6576        "application/json;stream=watch",
  6577        "application/vnd.kubernetes.protobuf;stream=watch"
  6578       ],
  6579       "schemes": [
  6580        "https"
  6581       ],
  6582       "tags": [
  6583        "core_v1"
  6584       ],
  6585       "operationId": "listCoreV1NamespacedService",
  6586       "parameters": [
  6587        {
  6588         "uniqueItems": true,
  6589         "type": "string",
  6590         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  6591         "name": "fieldSelector",
  6592         "in": "query"
  6593        },
  6594        {
  6595         "uniqueItems": true,
  6596         "type": "string",
  6597         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  6598         "name": "labelSelector",
  6599         "in": "query"
  6600        },
  6601        {
  6602         "uniqueItems": true,
  6603         "type": "string",
  6604         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
  6605         "name": "resourceVersion",
  6606         "in": "query"
  6607        },
  6608        {
  6609         "uniqueItems": true,
  6610         "type": "integer",
  6611         "description": "Timeout for the list/watch call.",
  6612         "name": "timeoutSeconds",
  6613         "in": "query"
  6614        },
  6615        {
  6616         "uniqueItems": true,
  6617         "type": "boolean",
  6618         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  6619         "name": "watch",
  6620         "in": "query"
  6621        }
  6622       ],
  6623       "responses": {
  6624        "200": {
  6625         "description": "OK",
  6626         "schema": {
  6627          "$ref": "#/definitions/v1.ServiceList"
  6628         }
  6629        },
  6630        "401": {
  6631         "description": "Unauthorized"
  6632        }
  6633       }
  6634      },
  6635      "post": {
  6636       "description": "create a Service",
  6637       "consumes": [
  6638        "*/*"
  6639       ],
  6640       "produces": [
  6641        "application/json",
  6642        "application/yaml",
  6643        "application/vnd.kubernetes.protobuf"
  6644       ],
  6645       "schemes": [
  6646        "https"
  6647       ],
  6648       "tags": [
  6649        "core_v1"
  6650       ],
  6651       "operationId": "createCoreV1NamespacedService",
  6652       "parameters": [
  6653        {
  6654         "name": "body",
  6655         "in": "body",
  6656         "required": true,
  6657         "schema": {
  6658          "$ref": "#/definitions/v1.Service"
  6659         }
  6660        }
  6661       ],
  6662       "responses": {
  6663        "200": {
  6664         "description": "OK",
  6665         "schema": {
  6666          "$ref": "#/definitions/v1.Service"
  6667         }
  6668        },
  6669        "401": {
  6670         "description": "Unauthorized"
  6671        }
  6672       }
  6673      },
  6674      "parameters": [
  6675       {
  6676        "uniqueItems": true,
  6677        "type": "string",
  6678        "description": "object name and auth scope, such as for teams and projects",
  6679        "name": "namespace",
  6680        "in": "path",
  6681        "required": true
  6682       },
  6683       {
  6684        "uniqueItems": true,
  6685        "type": "string",
  6686        "description": "If 'true', then the output is pretty printed.",
  6687        "name": "pretty",
  6688        "in": "query"
  6689       }
  6690      ]
  6691     },
  6692     "/api/v1/namespaces/{namespace}/services/{name}": {
  6693      "get": {
  6694       "description": "read the specified Service",
  6695       "consumes": [
  6696        "*/*"
  6697       ],
  6698       "produces": [
  6699        "application/json",
  6700        "application/yaml",
  6701        "application/vnd.kubernetes.protobuf"
  6702       ],
  6703       "schemes": [
  6704        "https"
  6705       ],
  6706       "tags": [
  6707        "core_v1"
  6708       ],
  6709       "operationId": "readCoreV1NamespacedService",
  6710       "parameters": [
  6711        {
  6712         "uniqueItems": true,
  6713         "type": "boolean",
  6714         "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'",
  6715         "name": "exact",
  6716         "in": "query"
  6717        },
  6718        {
  6719         "uniqueItems": true,
  6720         "type": "boolean",
  6721         "description": "Should this value be exported.  Export strips fields that a user can not specify.",
  6722         "name": "export",
  6723         "in": "query"
  6724        }
  6725       ],
  6726       "responses": {
  6727        "200": {
  6728         "description": "OK",
  6729         "schema": {
  6730          "$ref": "#/definitions/v1.Service"
  6731         }
  6732        },
  6733        "401": {
  6734         "description": "Unauthorized"
  6735        }
  6736       }
  6737      },
  6738      "put": {
  6739       "description": "replace the specified Service",
  6740       "consumes": [
  6741        "*/*"
  6742       ],
  6743       "produces": [
  6744        "application/json",
  6745        "application/yaml",
  6746        "application/vnd.kubernetes.protobuf"
  6747       ],
  6748       "schemes": [
  6749        "https"
  6750       ],
  6751       "tags": [
  6752        "core_v1"
  6753       ],
  6754       "operationId": "replaceCoreV1NamespacedService",
  6755       "parameters": [
  6756        {
  6757         "name": "body",
  6758         "in": "body",
  6759         "required": true,
  6760         "schema": {
  6761          "$ref": "#/definitions/v1.Service"
  6762         }
  6763        }
  6764       ],
  6765       "responses": {
  6766        "200": {
  6767         "description": "OK",
  6768         "schema": {
  6769          "$ref": "#/definitions/v1.Service"
  6770         }
  6771        },
  6772        "401": {
  6773         "description": "Unauthorized"
  6774        }
  6775       }
  6776      },
  6777      "delete": {
  6778       "description": "delete a Service",
  6779       "consumes": [
  6780        "*/*"
  6781       ],
  6782       "produces": [
  6783        "application/json",
  6784        "application/yaml",
  6785        "application/vnd.kubernetes.protobuf"
  6786       ],
  6787       "schemes": [
  6788        "https"
  6789       ],
  6790       "tags": [
  6791        "core_v1"
  6792       ],
  6793       "operationId": "deleteCoreV1NamespacedService",
  6794       "responses": {
  6795        "200": {
  6796         "description": "OK",
  6797         "schema": {
  6798          "$ref": "#/definitions/unversioned.Status"
  6799         }
  6800        },
  6801        "401": {
  6802         "description": "Unauthorized"
  6803        }
  6804       }
  6805      },
  6806      "patch": {
  6807       "description": "partially update the specified Service",
  6808       "consumes": [
  6809        "application/json-patch+json",
  6810        "application/merge-patch+json",
  6811        "application/strategic-merge-patch+json"
  6812       ],
  6813       "produces": [
  6814        "application/json",
  6815        "application/yaml",
  6816        "application/vnd.kubernetes.protobuf"
  6817       ],
  6818       "schemes": [
  6819        "https"
  6820       ],
  6821       "tags": [
  6822        "core_v1"
  6823       ],
  6824       "operationId": "patchCoreV1NamespacedService",
  6825       "parameters": [
  6826        {
  6827         "name": "body",
  6828         "in": "body",
  6829         "required": true,
  6830         "schema": {
  6831          "$ref": "#/definitions/unversioned.Patch"
  6832         }
  6833        }
  6834       ],
  6835       "responses": {
  6836        "200": {
  6837         "description": "OK",
  6838         "schema": {
  6839          "$ref": "#/definitions/v1.Service"
  6840         }
  6841        },
  6842        "401": {
  6843         "description": "Unauthorized"
  6844        }
  6845       }
  6846      },
  6847      "parameters": [
  6848       {
  6849        "uniqueItems": true,
  6850        "type": "string",
  6851        "description": "name of the Service",
  6852        "name": "name",
  6853        "in": "path",
  6854        "required": true
  6855       },
  6856       {
  6857        "uniqueItems": true,
  6858        "type": "string",
  6859        "description": "object name and auth scope, such as for teams and projects",
  6860        "name": "namespace",
  6861        "in": "path",
  6862        "required": true
  6863       },
  6864       {
  6865        "uniqueItems": true,
  6866        "type": "string",
  6867        "description": "If 'true', then the output is pretty printed.",
  6868        "name": "pretty",
  6869        "in": "query"
  6870       }
  6871      ]
  6872     },
  6873     "/api/v1/namespaces/{namespace}/services/{name}/proxy": {
  6874      "get": {
  6875       "description": "connect GET requests to proxy of Service",
  6876       "consumes": [
  6877        "*/*"
  6878       ],
  6879       "produces": [
  6880        "*/*"
  6881       ],
  6882       "schemes": [
  6883        "https"
  6884       ],
  6885       "tags": [
  6886        "core_v1"
  6887       ],
  6888       "operationId": "connectCoreV1GetNamespacedServiceProxy",
  6889       "responses": {
  6890        "200": {
  6891         "description": "OK",
  6892         "schema": {
  6893          "type": "string"
  6894         }
  6895        },
  6896        "401": {
  6897         "description": "Unauthorized"
  6898        }
  6899       }
  6900      },
  6901      "put": {
  6902       "description": "connect PUT requests to proxy of Service",
  6903       "consumes": [
  6904        "*/*"
  6905       ],
  6906       "produces": [
  6907        "*/*"
  6908       ],
  6909       "schemes": [
  6910        "https"
  6911       ],
  6912       "tags": [
  6913        "core_v1"
  6914       ],
  6915       "operationId": "connectCoreV1PutNamespacedServiceProxy",
  6916       "responses": {
  6917        "200": {
  6918         "description": "OK",
  6919         "schema": {
  6920          "type": "string"
  6921         }
  6922        },
  6923        "401": {
  6924         "description": "Unauthorized"
  6925        }
  6926       }
  6927      },
  6928      "post": {
  6929       "description": "connect POST requests to proxy of Service",
  6930       "consumes": [
  6931        "*/*"
  6932       ],
  6933       "produces": [
  6934        "*/*"
  6935       ],
  6936       "schemes": [
  6937        "https"
  6938       ],
  6939       "tags": [
  6940        "core_v1"
  6941       ],
  6942       "operationId": "connectCoreV1PostNamespacedServiceProxy",
  6943       "responses": {
  6944        "200": {
  6945         "description": "OK",
  6946         "schema": {
  6947          "type": "string"
  6948         }
  6949        },
  6950        "401": {
  6951         "description": "Unauthorized"
  6952        }
  6953       }
  6954      },
  6955      "delete": {
  6956       "description": "connect DELETE requests to proxy of Service",
  6957       "consumes": [
  6958        "*/*"
  6959       ],
  6960       "produces": [
  6961        "*/*"
  6962       ],
  6963       "schemes": [
  6964        "https"
  6965       ],
  6966       "tags": [
  6967        "core_v1"
  6968       ],
  6969       "operationId": "connectCoreV1DeleteNamespacedServiceProxy",
  6970       "responses": {
  6971        "200": {
  6972         "description": "OK",
  6973         "schema": {
  6974          "type": "string"
  6975         }
  6976        },
  6977        "401": {
  6978         "description": "Unauthorized"
  6979        }
  6980       }
  6981      },
  6982      "options": {
  6983       "description": "connect OPTIONS requests to proxy of Service",
  6984       "consumes": [
  6985        "*/*"
  6986       ],
  6987       "produces": [
  6988        "*/*"
  6989       ],
  6990       "schemes": [
  6991        "https"
  6992       ],
  6993       "tags": [
  6994        "core_v1"
  6995       ],
  6996       "operationId": "connectCoreV1OptionsNamespacedServiceProxy",
  6997       "responses": {
  6998        "200": {
  6999         "description": "OK",
  7000         "schema": {
  7001          "type": "string"
  7002         }
  7003        },
  7004        "401": {
  7005         "description": "Unauthorized"
  7006        }
  7007       }
  7008      },
  7009      "head": {
  7010       "description": "connect HEAD requests to proxy of Service",
  7011       "consumes": [
  7012        "*/*"
  7013       ],
  7014       "produces": [
  7015        "*/*"
  7016       ],
  7017       "schemes": [
  7018        "https"
  7019       ],
  7020       "tags": [
  7021        "core_v1"
  7022       ],
  7023       "operationId": "connectCoreV1HeadNamespacedServiceProxy",
  7024       "responses": {
  7025        "200": {
  7026         "description": "OK",
  7027         "schema": {
  7028          "type": "string"
  7029         }
  7030        },
  7031        "401": {
  7032         "description": "Unauthorized"
  7033        }
  7034       }
  7035      },
  7036      "parameters": [
  7037       {
  7038        "uniqueItems": true,
  7039        "type": "string",
  7040        "description": "name of the Service",
  7041        "name": "name",
  7042        "in": "path",
  7043        "required": true
  7044       },
  7045       {
  7046        "uniqueItems": true,
  7047        "type": "string",
  7048        "description": "object name and auth scope, such as for teams and projects",
  7049        "name": "namespace",
  7050        "in": "path",
  7051        "required": true
  7052       },
  7053       {
  7054        "uniqueItems": true,
  7055        "type": "string",
  7056        "description": "Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.",
  7057        "name": "path",
  7058        "in": "query"
  7059       }
  7060      ]
  7061     },
  7062     "/api/v1/namespaces/{namespace}/services/{name}/proxy/{path}": {
  7063      "get": {
  7064       "description": "connect GET requests to proxy of Service",
  7065       "consumes": [
  7066        "*/*"
  7067       ],
  7068       "produces": [
  7069        "*/*"
  7070       ],
  7071       "schemes": [
  7072        "https"
  7073       ],
  7074       "tags": [
  7075        "core_v1"
  7076       ],
  7077       "operationId": "connectCoreV1GetNamespacedServiceProxyWithPath",
  7078       "responses": {
  7079        "200": {
  7080         "description": "OK",
  7081         "schema": {
  7082          "type": "string"
  7083         }
  7084        },
  7085        "401": {
  7086         "description": "Unauthorized"
  7087        }
  7088       }
  7089      },
  7090      "put": {
  7091       "description": "connect PUT requests to proxy of Service",
  7092       "consumes": [
  7093        "*/*"
  7094       ],
  7095       "produces": [
  7096        "*/*"
  7097       ],
  7098       "schemes": [
  7099        "https"
  7100       ],
  7101       "tags": [
  7102        "core_v1"
  7103       ],
  7104       "operationId": "connectCoreV1PutNamespacedServiceProxyWithPath",
  7105       "responses": {
  7106        "200": {
  7107         "description": "OK",
  7108         "schema": {
  7109          "type": "string"
  7110         }
  7111        },
  7112        "401": {
  7113         "description": "Unauthorized"
  7114        }
  7115       }
  7116      },
  7117      "post": {
  7118       "description": "connect POST requests to proxy of Service",
  7119       "consumes": [
  7120        "*/*"
  7121       ],
  7122       "produces": [
  7123        "*/*"
  7124       ],
  7125       "schemes": [
  7126        "https"
  7127       ],
  7128       "tags": [
  7129        "core_v1"
  7130       ],
  7131       "operationId": "connectCoreV1PostNamespacedServiceProxyWithPath",
  7132       "responses": {
  7133        "200": {
  7134         "description": "OK",
  7135         "schema": {
  7136          "type": "string"
  7137         }
  7138        },
  7139        "401": {
  7140         "description": "Unauthorized"
  7141        }
  7142       }
  7143      },
  7144      "delete": {
  7145       "description": "connect DELETE requests to proxy of Service",
  7146       "consumes": [
  7147        "*/*"
  7148       ],
  7149       "produces": [
  7150        "*/*"
  7151       ],
  7152       "schemes": [
  7153        "https"
  7154       ],
  7155       "tags": [
  7156        "core_v1"
  7157       ],
  7158       "operationId": "connectCoreV1DeleteNamespacedServiceProxyWithPath",
  7159       "responses": {
  7160        "200": {
  7161         "description": "OK",
  7162         "schema": {
  7163          "type": "string"
  7164         }
  7165        },
  7166        "401": {
  7167         "description": "Unauthorized"
  7168        }
  7169       }
  7170      },
  7171      "options": {
  7172       "description": "connect OPTIONS requests to proxy of Service",
  7173       "consumes": [
  7174        "*/*"
  7175       ],
  7176       "produces": [
  7177        "*/*"
  7178       ],
  7179       "schemes": [
  7180        "https"
  7181       ],
  7182       "tags": [
  7183        "core_v1"
  7184       ],
  7185       "operationId": "connectCoreV1OptionsNamespacedServiceProxyWithPath",
  7186       "responses": {
  7187        "200": {
  7188         "description": "OK",
  7189         "schema": {
  7190          "type": "string"
  7191         }
  7192        },
  7193        "401": {
  7194         "description": "Unauthorized"
  7195        }
  7196       }
  7197      },
  7198      "head": {
  7199       "description": "connect HEAD requests to proxy of Service",
  7200       "consumes": [
  7201        "*/*"
  7202       ],
  7203       "produces": [
  7204        "*/*"
  7205       ],
  7206       "schemes": [
  7207        "https"
  7208       ],
  7209       "tags": [
  7210        "core_v1"
  7211       ],
  7212       "operationId": "connectCoreV1HeadNamespacedServiceProxyWithPath",
  7213       "responses": {
  7214        "200": {
  7215         "description": "OK",
  7216         "schema": {
  7217          "type": "string"
  7218         }
  7219        },
  7220        "401": {
  7221         "description": "Unauthorized"
  7222        }
  7223       }
  7224      },
  7225      "parameters": [
  7226       {
  7227        "uniqueItems": true,
  7228        "type": "string",
  7229        "description": "name of the Service",
  7230        "name": "name",
  7231        "in": "path",
  7232        "required": true
  7233       },
  7234       {
  7235        "uniqueItems": true,
  7236        "type": "string",
  7237        "description": "object name and auth scope, such as for teams and projects",
  7238        "name": "namespace",
  7239        "in": "path",
  7240        "required": true
  7241       },
  7242       {
  7243        "uniqueItems": true,
  7244        "type": "string",
  7245        "description": "path to the resource",
  7246        "name": "path",
  7247        "in": "path",
  7248        "required": true
  7249       },
  7250       {
  7251        "uniqueItems": true,
  7252        "type": "string",
  7253        "description": "Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.",
  7254        "name": "path",
  7255        "in": "query"
  7256       }
  7257      ]
  7258     },
  7259     "/api/v1/namespaces/{namespace}/services/{name}/status": {
  7260      "get": {
  7261       "description": "read status of the specified Service",
  7262       "consumes": [
  7263        "*/*"
  7264       ],
  7265       "produces": [
  7266        "application/json",
  7267        "application/yaml",
  7268        "application/vnd.kubernetes.protobuf"
  7269       ],
  7270       "schemes": [
  7271        "https"
  7272       ],
  7273       "tags": [
  7274        "core_v1"
  7275       ],
  7276       "operationId": "readCoreV1NamespacedServiceStatus",
  7277       "responses": {
  7278        "200": {
  7279         "description": "OK",
  7280         "schema": {
  7281          "$ref": "#/definitions/v1.Service"
  7282         }
  7283        },
  7284        "401": {
  7285         "description": "Unauthorized"
  7286        }
  7287       }
  7288      },
  7289      "put": {
  7290       "description": "replace status of the specified Service",
  7291       "consumes": [
  7292        "*/*"
  7293       ],
  7294       "produces": [
  7295        "application/json",
  7296        "application/yaml",
  7297        "application/vnd.kubernetes.protobuf"
  7298       ],
  7299       "schemes": [
  7300        "https"
  7301       ],
  7302       "tags": [
  7303        "core_v1"
  7304       ],
  7305       "operationId": "replaceCoreV1NamespacedServiceStatus",
  7306       "parameters": [
  7307        {
  7308         "name": "body",
  7309         "in": "body",
  7310         "required": true,
  7311         "schema": {
  7312          "$ref": "#/definitions/v1.Service"
  7313         }
  7314        }
  7315       ],
  7316       "responses": {
  7317        "200": {
  7318         "description": "OK",
  7319         "schema": {
  7320          "$ref": "#/definitions/v1.Service"
  7321         }
  7322        },
  7323        "401": {
  7324         "description": "Unauthorized"
  7325        }
  7326       }
  7327      },
  7328      "patch": {
  7329       "description": "partially update status of the specified Service",
  7330       "consumes": [
  7331        "application/json-patch+json",
  7332        "application/merge-patch+json",
  7333        "application/strategic-merge-patch+json"
  7334       ],
  7335       "produces": [
  7336        "application/json",
  7337        "application/yaml",
  7338        "application/vnd.kubernetes.protobuf"
  7339       ],
  7340       "schemes": [
  7341        "https"
  7342       ],
  7343       "tags": [
  7344        "core_v1"
  7345       ],
  7346       "operationId": "patchCoreV1NamespacedServiceStatus",
  7347       "parameters": [
  7348        {
  7349         "name": "body",
  7350         "in": "body",
  7351         "required": true,
  7352         "schema": {
  7353          "$ref": "#/definitions/unversioned.Patch"
  7354         }
  7355        }
  7356       ],
  7357       "responses": {
  7358        "200": {
  7359         "description": "OK",
  7360         "schema": {
  7361          "$ref": "#/definitions/v1.Service"
  7362         }
  7363        },
  7364        "401": {
  7365         "description": "Unauthorized"
  7366        }
  7367       }
  7368      },
  7369      "parameters": [
  7370       {
  7371        "uniqueItems": true,
  7372        "type": "string",
  7373        "description": "name of the Service",
  7374        "name": "name",
  7375        "in": "path",
  7376        "required": true
  7377       },
  7378       {
  7379        "uniqueItems": true,
  7380        "type": "string",
  7381        "description": "object name and auth scope, such as for teams and projects",
  7382        "name": "namespace",
  7383        "in": "path",
  7384        "required": true
  7385       },
  7386       {
  7387        "uniqueItems": true,
  7388        "type": "string",
  7389        "description": "If 'true', then the output is pretty printed.",
  7390        "name": "pretty",
  7391        "in": "query"
  7392       }
  7393      ]
  7394     },
  7395     "/api/v1/namespaces/{name}": {
  7396      "get": {
  7397       "description": "read the specified Namespace",
  7398       "consumes": [
  7399        "*/*"
  7400       ],
  7401       "produces": [
  7402        "application/json",
  7403        "application/yaml",
  7404        "application/vnd.kubernetes.protobuf"
  7405       ],
  7406       "schemes": [
  7407        "https"
  7408       ],
  7409       "tags": [
  7410        "core_v1"
  7411       ],
  7412       "operationId": "readCoreV1Namespace",
  7413       "parameters": [
  7414        {
  7415         "uniqueItems": true,
  7416         "type": "boolean",
  7417         "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'",
  7418         "name": "exact",
  7419         "in": "query"
  7420        },
  7421        {
  7422         "uniqueItems": true,
  7423         "type": "boolean",
  7424         "description": "Should this value be exported.  Export strips fields that a user can not specify.",
  7425         "name": "export",
  7426         "in": "query"
  7427        }
  7428       ],
  7429       "responses": {
  7430        "200": {
  7431         "description": "OK",
  7432         "schema": {
  7433          "$ref": "#/definitions/v1.Namespace"
  7434         }
  7435        },
  7436        "401": {
  7437         "description": "Unauthorized"
  7438        }
  7439       }
  7440      },
  7441      "put": {
  7442       "description": "replace the specified Namespace",
  7443       "consumes": [
  7444        "*/*"
  7445       ],
  7446       "produces": [
  7447        "application/json",
  7448        "application/yaml",
  7449        "application/vnd.kubernetes.protobuf"
  7450       ],
  7451       "schemes": [
  7452        "https"
  7453       ],
  7454       "tags": [
  7455        "core_v1"
  7456       ],
  7457       "operationId": "replaceCoreV1Namespace",
  7458       "parameters": [
  7459        {
  7460         "name": "body",
  7461         "in": "body",
  7462         "required": true,
  7463         "schema": {
  7464          "$ref": "#/definitions/v1.Namespace"
  7465         }
  7466        }
  7467       ],
  7468       "responses": {
  7469        "200": {
  7470         "description": "OK",
  7471         "schema": {
  7472          "$ref": "#/definitions/v1.Namespace"
  7473         }
  7474        },
  7475        "401": {
  7476         "description": "Unauthorized"
  7477        }
  7478       }
  7479      },
  7480      "delete": {
  7481       "description": "delete a Namespace",
  7482       "consumes": [
  7483        "*/*"
  7484       ],
  7485       "produces": [
  7486        "application/json",
  7487        "application/yaml",
  7488        "application/vnd.kubernetes.protobuf"
  7489       ],
  7490       "schemes": [
  7491        "https"
  7492       ],
  7493       "tags": [
  7494        "core_v1"
  7495       ],
  7496       "operationId": "deleteCoreV1Namespace",
  7497       "parameters": [
  7498        {
  7499         "name": "body",
  7500         "in": "body",
  7501         "required": true,
  7502         "schema": {
  7503          "$ref": "#/definitions/v1.DeleteOptions"
  7504         }
  7505        }
  7506       ],
  7507       "responses": {
  7508        "200": {
  7509         "description": "OK",
  7510         "schema": {
  7511          "$ref": "#/definitions/unversioned.Status"
  7512         }
  7513        },
  7514        "401": {
  7515         "description": "Unauthorized"
  7516        }
  7517       }
  7518      },
  7519      "patch": {
  7520       "description": "partially update the specified Namespace",
  7521       "consumes": [
  7522        "application/json-patch+json",
  7523        "application/merge-patch+json",
  7524        "application/strategic-merge-patch+json"
  7525       ],
  7526       "produces": [
  7527        "application/json",
  7528        "application/yaml",
  7529        "application/vnd.kubernetes.protobuf"
  7530       ],
  7531       "schemes": [
  7532        "https"
  7533       ],
  7534       "tags": [
  7535        "core_v1"
  7536       ],
  7537       "operationId": "patchCoreV1Namespace",
  7538       "parameters": [
  7539        {
  7540         "name": "body",
  7541         "in": "body",
  7542         "required": true,
  7543         "schema": {
  7544          "$ref": "#/definitions/unversioned.Patch"
  7545         }
  7546        }
  7547       ],
  7548       "responses": {
  7549        "200": {
  7550         "description": "OK",
  7551         "schema": {
  7552          "$ref": "#/definitions/v1.Namespace"
  7553         }
  7554        },
  7555        "401": {
  7556         "description": "Unauthorized"
  7557        }
  7558       }
  7559      },
  7560      "parameters": [
  7561       {
  7562        "uniqueItems": true,
  7563        "type": "string",
  7564        "description": "name of the Namespace",
  7565        "name": "name",
  7566        "in": "path",
  7567        "required": true
  7568       },
  7569       {
  7570        "uniqueItems": true,
  7571        "type": "string",
  7572        "description": "If 'true', then the output is pretty printed.",
  7573        "name": "pretty",
  7574        "in": "query"
  7575       }
  7576      ]
  7577     },
  7578     "/api/v1/namespaces/{name}/finalize": {
  7579      "put": {
  7580       "description": "replace finalize of the specified Namespace",
  7581       "consumes": [
  7582        "*/*"
  7583       ],
  7584       "produces": [
  7585        "application/json",
  7586        "application/yaml",
  7587        "application/vnd.kubernetes.protobuf"
  7588       ],
  7589       "schemes": [
  7590        "https"
  7591       ],
  7592       "tags": [
  7593        "core_v1"
  7594       ],
  7595       "operationId": "replaceCoreV1NamespaceFinalize",
  7596       "responses": {
  7597        "200": {
  7598         "description": "OK",
  7599         "schema": {
  7600          "$ref": "#/definitions/v1.Namespace"
  7601         }
  7602        },
  7603        "401": {
  7604         "description": "Unauthorized"
  7605        }
  7606       }
  7607      },
  7608      "parameters": [
  7609       {
  7610        "name": "body",
  7611        "in": "body",
  7612        "required": true,
  7613        "schema": {
  7614         "$ref": "#/definitions/v1.Namespace"
  7615        }
  7616       },
  7617       {
  7618        "uniqueItems": true,
  7619        "type": "string",
  7620        "description": "name of the Namespace",
  7621        "name": "name",
  7622        "in": "path",
  7623        "required": true
  7624       },
  7625       {
  7626        "uniqueItems": true,
  7627        "type": "string",
  7628        "description": "If 'true', then the output is pretty printed.",
  7629        "name": "pretty",
  7630        "in": "query"
  7631       }
  7632      ]
  7633     },
  7634     "/api/v1/namespaces/{name}/status": {
  7635      "get": {
  7636       "description": "read status of the specified Namespace",
  7637       "consumes": [
  7638        "*/*"
  7639       ],
  7640       "produces": [
  7641        "application/json",
  7642        "application/yaml",
  7643        "application/vnd.kubernetes.protobuf"
  7644       ],
  7645       "schemes": [
  7646        "https"
  7647       ],
  7648       "tags": [
  7649        "core_v1"
  7650       ],
  7651       "operationId": "readCoreV1NamespaceStatus",
  7652       "responses": {
  7653        "200": {
  7654         "description": "OK",
  7655         "schema": {
  7656          "$ref": "#/definitions/v1.Namespace"
  7657         }
  7658        },
  7659        "401": {
  7660         "description": "Unauthorized"
  7661        }
  7662       }
  7663      },
  7664      "put": {
  7665       "description": "replace status of the specified Namespace",
  7666       "consumes": [
  7667        "*/*"
  7668       ],
  7669       "produces": [
  7670        "application/json",
  7671        "application/yaml",
  7672        "application/vnd.kubernetes.protobuf"
  7673       ],
  7674       "schemes": [
  7675        "https"
  7676       ],
  7677       "tags": [
  7678        "core_v1"
  7679       ],
  7680       "operationId": "replaceCoreV1NamespaceStatus",
  7681       "parameters": [
  7682        {
  7683         "name": "body",
  7684         "in": "body",
  7685         "required": true,
  7686         "schema": {
  7687          "$ref": "#/definitions/v1.Namespace"
  7688         }
  7689        }
  7690       ],
  7691       "responses": {
  7692        "200": {
  7693         "description": "OK",
  7694         "schema": {
  7695          "$ref": "#/definitions/v1.Namespace"
  7696         }
  7697        },
  7698        "401": {
  7699         "description": "Unauthorized"
  7700        }
  7701       }
  7702      },
  7703      "patch": {
  7704       "description": "partially update status of the specified Namespace",
  7705       "consumes": [
  7706        "application/json-patch+json",
  7707        "application/merge-patch+json",
  7708        "application/strategic-merge-patch+json"
  7709       ],
  7710       "produces": [
  7711        "application/json",
  7712        "application/yaml",
  7713        "application/vnd.kubernetes.protobuf"
  7714       ],
  7715       "schemes": [
  7716        "https"
  7717       ],
  7718       "tags": [
  7719        "core_v1"
  7720       ],
  7721       "operationId": "patchCoreV1NamespaceStatus",
  7722       "parameters": [
  7723        {
  7724         "name": "body",
  7725         "in": "body",
  7726         "required": true,
  7727         "schema": {
  7728          "$ref": "#/definitions/unversioned.Patch"
  7729         }
  7730        }
  7731       ],
  7732       "responses": {
  7733        "200": {
  7734         "description": "OK",
  7735         "schema": {
  7736          "$ref": "#/definitions/v1.Namespace"
  7737         }
  7738        },
  7739        "401": {
  7740         "description": "Unauthorized"
  7741        }
  7742       }
  7743      },
  7744      "parameters": [
  7745       {
  7746        "uniqueItems": true,
  7747        "type": "string",
  7748        "description": "name of the Namespace",
  7749        "name": "name",
  7750        "in": "path",
  7751        "required": true
  7752       },
  7753       {
  7754        "uniqueItems": true,
  7755        "type": "string",
  7756        "description": "If 'true', then the output is pretty printed.",
  7757        "name": "pretty",
  7758        "in": "query"
  7759       }
  7760      ]
  7761     },
  7762     "/api/v1/nodes": {
  7763      "get": {
  7764       "description": "list or watch objects of kind Node",
  7765       "consumes": [
  7766        "*/*"
  7767       ],
  7768       "produces": [
  7769        "application/json",
  7770        "application/yaml",
  7771        "application/vnd.kubernetes.protobuf",
  7772        "application/json;stream=watch",
  7773        "application/vnd.kubernetes.protobuf;stream=watch"
  7774       ],
  7775       "schemes": [
  7776        "https"
  7777       ],
  7778       "tags": [
  7779        "core_v1"
  7780       ],
  7781       "operationId": "listCoreV1Node",
  7782       "parameters": [
  7783        {
  7784         "uniqueItems": true,
  7785         "type": "string",
  7786         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  7787         "name": "fieldSelector",
  7788         "in": "query"
  7789        },
  7790        {
  7791         "uniqueItems": true,
  7792         "type": "string",
  7793         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  7794         "name": "labelSelector",
  7795         "in": "query"
  7796        },
  7797        {
  7798         "uniqueItems": true,
  7799         "type": "string",
  7800         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
  7801         "name": "resourceVersion",
  7802         "in": "query"
  7803        },
  7804        {
  7805         "uniqueItems": true,
  7806         "type": "integer",
  7807         "description": "Timeout for the list/watch call.",
  7808         "name": "timeoutSeconds",
  7809         "in": "query"
  7810        },
  7811        {
  7812         "uniqueItems": true,
  7813         "type": "boolean",
  7814         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  7815         "name": "watch",
  7816         "in": "query"
  7817        }
  7818       ],
  7819       "responses": {
  7820        "200": {
  7821         "description": "OK",
  7822         "schema": {
  7823          "$ref": "#/definitions/v1.NodeList"
  7824         }
  7825        },
  7826        "401": {
  7827         "description": "Unauthorized"
  7828        }
  7829       }
  7830      },
  7831      "post": {
  7832       "description": "create a Node",
  7833       "consumes": [
  7834        "*/*"
  7835       ],
  7836       "produces": [
  7837        "application/json",
  7838        "application/yaml",
  7839        "application/vnd.kubernetes.protobuf"
  7840       ],
  7841       "schemes": [
  7842        "https"
  7843       ],
  7844       "tags": [
  7845        "core_v1"
  7846       ],
  7847       "operationId": "createCoreV1Node",
  7848       "parameters": [
  7849        {
  7850         "name": "body",
  7851         "in": "body",
  7852         "required": true,
  7853         "schema": {
  7854          "$ref": "#/definitions/v1.Node"
  7855         }
  7856        }
  7857       ],
  7858       "responses": {
  7859        "200": {
  7860         "description": "OK",
  7861         "schema": {
  7862          "$ref": "#/definitions/v1.Node"
  7863         }
  7864        },
  7865        "401": {
  7866         "description": "Unauthorized"
  7867        }
  7868       }
  7869      },
  7870      "delete": {
  7871       "description": "delete collection of Node",
  7872       "consumes": [
  7873        "*/*"
  7874       ],
  7875       "produces": [
  7876        "application/json",
  7877        "application/yaml",
  7878        "application/vnd.kubernetes.protobuf"
  7879       ],
  7880       "schemes": [
  7881        "https"
  7882       ],
  7883       "tags": [
  7884        "core_v1"
  7885       ],
  7886       "operationId": "deleteCoreV1CollectionNode",
  7887       "parameters": [
  7888        {
  7889         "uniqueItems": true,
  7890         "type": "string",
  7891         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  7892         "name": "fieldSelector",
  7893         "in": "query"
  7894        },
  7895        {
  7896         "uniqueItems": true,
  7897         "type": "string",
  7898         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  7899         "name": "labelSelector",
  7900         "in": "query"
  7901        },
  7902        {
  7903         "uniqueItems": true,
  7904         "type": "string",
  7905         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
  7906         "name": "resourceVersion",
  7907         "in": "query"
  7908        },
  7909        {
  7910         "uniqueItems": true,
  7911         "type": "integer",
  7912         "description": "Timeout for the list/watch call.",
  7913         "name": "timeoutSeconds",
  7914         "in": "query"
  7915        },
  7916        {
  7917         "uniqueItems": true,
  7918         "type": "boolean",
  7919         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  7920         "name": "watch",
  7921         "in": "query"
  7922        }
  7923       ],
  7924       "responses": {
  7925        "200": {
  7926         "description": "OK",
  7927         "schema": {
  7928          "$ref": "#/definitions/unversioned.Status"
  7929         }
  7930        },
  7931        "401": {
  7932         "description": "Unauthorized"
  7933        }
  7934       }
  7935      },
  7936      "parameters": [
  7937       {
  7938        "uniqueItems": true,
  7939        "type": "string",
  7940        "description": "If 'true', then the output is pretty printed.",
  7941        "name": "pretty",
  7942        "in": "query"
  7943       }
  7944      ]
  7945     },
  7946     "/api/v1/nodes/{name}": {
  7947      "get": {
  7948       "description": "read the specified Node",
  7949       "consumes": [
  7950        "*/*"
  7951       ],
  7952       "produces": [
  7953        "application/json",
  7954        "application/yaml",
  7955        "application/vnd.kubernetes.protobuf"
  7956       ],
  7957       "schemes": [
  7958        "https"
  7959       ],
  7960       "tags": [
  7961        "core_v1"
  7962       ],
  7963       "operationId": "readCoreV1Node",
  7964       "parameters": [
  7965        {
  7966         "uniqueItems": true,
  7967         "type": "boolean",
  7968         "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'",
  7969         "name": "exact",
  7970         "in": "query"
  7971        },
  7972        {
  7973         "uniqueItems": true,
  7974         "type": "boolean",
  7975         "description": "Should this value be exported.  Export strips fields that a user can not specify.",
  7976         "name": "export",
  7977         "in": "query"
  7978        }
  7979       ],
  7980       "responses": {
  7981        "200": {
  7982         "description": "OK",
  7983         "schema": {
  7984          "$ref": "#/definitions/v1.Node"
  7985         }
  7986        },
  7987        "401": {
  7988         "description": "Unauthorized"
  7989        }
  7990       }
  7991      },
  7992      "put": {
  7993       "description": "replace the specified Node",
  7994       "consumes": [
  7995        "*/*"
  7996       ],
  7997       "produces": [
  7998        "application/json",
  7999        "application/yaml",
  8000        "application/vnd.kubernetes.protobuf"
  8001       ],
  8002       "schemes": [
  8003        "https"
  8004       ],
  8005       "tags": [
  8006        "core_v1"
  8007       ],
  8008       "operationId": "replaceCoreV1Node",
  8009       "parameters": [
  8010        {
  8011         "name": "body",
  8012         "in": "body",
  8013         "required": true,
  8014         "schema": {
  8015          "$ref": "#/definitions/v1.Node"
  8016         }
  8017        }
  8018       ],
  8019       "responses": {
  8020        "200": {
  8021         "description": "OK",
  8022         "schema": {
  8023          "$ref": "#/definitions/v1.Node"
  8024         }
  8025        },
  8026        "401": {
  8027         "description": "Unauthorized"
  8028        }
  8029       }
  8030      },
  8031      "delete": {
  8032       "description": "delete a Node",
  8033       "consumes": [
  8034        "*/*"
  8035       ],
  8036       "produces": [
  8037        "application/json",
  8038        "application/yaml",
  8039        "application/vnd.kubernetes.protobuf"
  8040       ],
  8041       "schemes": [
  8042        "https"
  8043       ],
  8044       "tags": [
  8045        "core_v1"
  8046       ],
  8047       "operationId": "deleteCoreV1Node",
  8048       "parameters": [
  8049        {
  8050         "name": "body",
  8051         "in": "body",
  8052         "required": true,
  8053         "schema": {
  8054          "$ref": "#/definitions/v1.DeleteOptions"
  8055         }
  8056        }
  8057       ],
  8058       "responses": {
  8059        "200": {
  8060         "description": "OK",
  8061         "schema": {
  8062          "$ref": "#/definitions/unversioned.Status"
  8063         }
  8064        },
  8065        "401": {
  8066         "description": "Unauthorized"
  8067        }
  8068       }
  8069      },
  8070      "patch": {
  8071       "description": "partially update the specified Node",
  8072       "consumes": [
  8073        "application/json-patch+json",
  8074        "application/merge-patch+json",
  8075        "application/strategic-merge-patch+json"
  8076       ],
  8077       "produces": [
  8078        "application/json",
  8079        "application/yaml",
  8080        "application/vnd.kubernetes.protobuf"
  8081       ],
  8082       "schemes": [
  8083        "https"
  8084       ],
  8085       "tags": [
  8086        "core_v1"
  8087       ],
  8088       "operationId": "patchCoreV1Node",
  8089       "parameters": [
  8090        {
  8091         "name": "body",
  8092         "in": "body",
  8093         "required": true,
  8094         "schema": {
  8095          "$ref": "#/definitions/unversioned.Patch"
  8096         }
  8097        }
  8098       ],
  8099       "responses": {
  8100        "200": {
  8101         "description": "OK",
  8102         "schema": {
  8103          "$ref": "#/definitions/v1.Node"
  8104         }
  8105        },
  8106        "401": {
  8107         "description": "Unauthorized"
  8108        }
  8109       }
  8110      },
  8111      "parameters": [
  8112       {
  8113        "uniqueItems": true,
  8114        "type": "string",
  8115        "description": "name of the Node",
  8116        "name": "name",
  8117        "in": "path",
  8118        "required": true
  8119       },
  8120       {
  8121        "uniqueItems": true,
  8122        "type": "string",
  8123        "description": "If 'true', then the output is pretty printed.",
  8124        "name": "pretty",
  8125        "in": "query"
  8126       }
  8127      ]
  8128     },
  8129     "/api/v1/nodes/{name}/proxy": {
  8130      "get": {
  8131       "description": "connect GET requests to proxy of Node",
  8132       "consumes": [
  8133        "*/*"
  8134       ],
  8135       "produces": [
  8136        "*/*"
  8137       ],
  8138       "schemes": [
  8139        "https"
  8140       ],
  8141       "tags": [
  8142        "core_v1"
  8143       ],
  8144       "operationId": "connectCoreV1GetNodeProxy",
  8145       "responses": {
  8146        "200": {
  8147         "description": "OK",
  8148         "schema": {
  8149          "type": "string"
  8150         }
  8151        },
  8152        "401": {
  8153         "description": "Unauthorized"
  8154        }
  8155       }
  8156      },
  8157      "put": {
  8158       "description": "connect PUT requests to proxy of Node",
  8159       "consumes": [
  8160        "*/*"
  8161       ],
  8162       "produces": [
  8163        "*/*"
  8164       ],
  8165       "schemes": [
  8166        "https"
  8167       ],
  8168       "tags": [
  8169        "core_v1"
  8170       ],
  8171       "operationId": "connectCoreV1PutNodeProxy",
  8172       "responses": {
  8173        "200": {
  8174         "description": "OK",
  8175         "schema": {
  8176          "type": "string"
  8177         }
  8178        },
  8179        "401": {
  8180         "description": "Unauthorized"
  8181        }
  8182       }
  8183      },
  8184      "post": {
  8185       "description": "connect POST requests to proxy of Node",
  8186       "consumes": [
  8187        "*/*"
  8188       ],
  8189       "produces": [
  8190        "*/*"
  8191       ],
  8192       "schemes": [
  8193        "https"
  8194       ],
  8195       "tags": [
  8196        "core_v1"
  8197       ],
  8198       "operationId": "connectCoreV1PostNodeProxy",
  8199       "responses": {
  8200        "200": {
  8201         "description": "OK",
  8202         "schema": {
  8203          "type": "string"
  8204         }
  8205        },
  8206        "401": {
  8207         "description": "Unauthorized"
  8208        }
  8209       }
  8210      },
  8211      "delete": {
  8212       "description": "connect DELETE requests to proxy of Node",
  8213       "consumes": [
  8214        "*/*"
  8215       ],
  8216       "produces": [
  8217        "*/*"
  8218       ],
  8219       "schemes": [
  8220        "https"
  8221       ],
  8222       "tags": [
  8223        "core_v1"
  8224       ],
  8225       "operationId": "connectCoreV1DeleteNodeProxy",
  8226       "responses": {
  8227        "200": {
  8228         "description": "OK",
  8229         "schema": {
  8230          "type": "string"
  8231         }
  8232        },
  8233        "401": {
  8234         "description": "Unauthorized"
  8235        }
  8236       }
  8237      },
  8238      "options": {
  8239       "description": "connect OPTIONS requests to proxy of Node",
  8240       "consumes": [
  8241        "*/*"
  8242       ],
  8243       "produces": [
  8244        "*/*"
  8245       ],
  8246       "schemes": [
  8247        "https"
  8248       ],
  8249       "tags": [
  8250        "core_v1"
  8251       ],
  8252       "operationId": "connectCoreV1OptionsNodeProxy",
  8253       "responses": {
  8254        "200": {
  8255         "description": "OK",
  8256         "schema": {
  8257          "type": "string"
  8258         }
  8259        },
  8260        "401": {
  8261         "description": "Unauthorized"
  8262        }
  8263       }
  8264      },
  8265      "head": {
  8266       "description": "connect HEAD requests to proxy of Node",
  8267       "consumes": [
  8268        "*/*"
  8269       ],
  8270       "produces": [
  8271        "*/*"
  8272       ],
  8273       "schemes": [
  8274        "https"
  8275       ],
  8276       "tags": [
  8277        "core_v1"
  8278       ],
  8279       "operationId": "connectCoreV1HeadNodeProxy",
  8280       "responses": {
  8281        "200": {
  8282         "description": "OK",
  8283         "schema": {
  8284          "type": "string"
  8285         }
  8286        },
  8287        "401": {
  8288         "description": "Unauthorized"
  8289        }
  8290       }
  8291      },
  8292      "parameters": [
  8293       {
  8294        "uniqueItems": true,
  8295        "type": "string",
  8296        "description": "name of the Node",
  8297        "name": "name",
  8298        "in": "path",
  8299        "required": true
  8300       },
  8301       {
  8302        "uniqueItems": true,
  8303        "type": "string",
  8304        "description": "Path is the URL path to use for the current proxy request to node.",
  8305        "name": "path",
  8306        "in": "query"
  8307       }
  8308      ]
  8309     },
  8310     "/api/v1/nodes/{name}/proxy/{path}": {
  8311      "get": {
  8312       "description": "connect GET requests to proxy of Node",
  8313       "consumes": [
  8314        "*/*"
  8315       ],
  8316       "produces": [
  8317        "*/*"
  8318       ],
  8319       "schemes": [
  8320        "https"
  8321       ],
  8322       "tags": [
  8323        "core_v1"
  8324       ],
  8325       "operationId": "connectCoreV1GetNodeProxyWithPath",
  8326       "responses": {
  8327        "200": {
  8328         "description": "OK",
  8329         "schema": {
  8330          "type": "string"
  8331         }
  8332        },
  8333        "401": {
  8334         "description": "Unauthorized"
  8335        }
  8336       }
  8337      },
  8338      "put": {
  8339       "description": "connect PUT requests to proxy of Node",
  8340       "consumes": [
  8341        "*/*"
  8342       ],
  8343       "produces": [
  8344        "*/*"
  8345       ],
  8346       "schemes": [
  8347        "https"
  8348       ],
  8349       "tags": [
  8350        "core_v1"
  8351       ],
  8352       "operationId": "connectCoreV1PutNodeProxyWithPath",
  8353       "responses": {
  8354        "200": {
  8355         "description": "OK",
  8356         "schema": {
  8357          "type": "string"
  8358         }
  8359        },
  8360        "401": {
  8361         "description": "Unauthorized"
  8362        }
  8363       }
  8364      },
  8365      "post": {
  8366       "description": "connect POST requests to proxy of Node",
  8367       "consumes": [
  8368        "*/*"
  8369       ],
  8370       "produces": [
  8371        "*/*"
  8372       ],
  8373       "schemes": [
  8374        "https"
  8375       ],
  8376       "tags": [
  8377        "core_v1"
  8378       ],
  8379       "operationId": "connectCoreV1PostNodeProxyWithPath",
  8380       "responses": {
  8381        "200": {
  8382         "description": "OK",
  8383         "schema": {
  8384          "type": "string"
  8385         }
  8386        },
  8387        "401": {
  8388         "description": "Unauthorized"
  8389        }
  8390       }
  8391      },
  8392      "delete": {
  8393       "description": "connect DELETE requests to proxy of Node",
  8394       "consumes": [
  8395        "*/*"
  8396       ],
  8397       "produces": [
  8398        "*/*"
  8399       ],
  8400       "schemes": [
  8401        "https"
  8402       ],
  8403       "tags": [
  8404        "core_v1"
  8405       ],
  8406       "operationId": "connectCoreV1DeleteNodeProxyWithPath",
  8407       "responses": {
  8408        "200": {
  8409         "description": "OK",
  8410         "schema": {
  8411          "type": "string"
  8412         }
  8413        },
  8414        "401": {
  8415         "description": "Unauthorized"
  8416        }
  8417       }
  8418      },
  8419      "options": {
  8420       "description": "connect OPTIONS requests to proxy of Node",
  8421       "consumes": [
  8422        "*/*"
  8423       ],
  8424       "produces": [
  8425        "*/*"
  8426       ],
  8427       "schemes": [
  8428        "https"
  8429       ],
  8430       "tags": [
  8431        "core_v1"
  8432       ],
  8433       "operationId": "connectCoreV1OptionsNodeProxyWithPath",
  8434       "responses": {
  8435        "200": {
  8436         "description": "OK",
  8437         "schema": {
  8438          "type": "string"
  8439         }
  8440        },
  8441        "401": {
  8442         "description": "Unauthorized"
  8443        }
  8444       }
  8445      },
  8446      "head": {
  8447       "description": "connect HEAD requests to proxy of Node",
  8448       "consumes": [
  8449        "*/*"
  8450       ],
  8451       "produces": [
  8452        "*/*"
  8453       ],
  8454       "schemes": [
  8455        "https"
  8456       ],
  8457       "tags": [
  8458        "core_v1"
  8459       ],
  8460       "operationId": "connectCoreV1HeadNodeProxyWithPath",
  8461       "responses": {
  8462        "200": {
  8463         "description": "OK",
  8464         "schema": {
  8465          "type": "string"
  8466         }
  8467        },
  8468        "401": {
  8469         "description": "Unauthorized"
  8470        }
  8471       }
  8472      },
  8473      "parameters": [
  8474       {
  8475        "uniqueItems": true,
  8476        "type": "string",
  8477        "description": "name of the Node",
  8478        "name": "name",
  8479        "in": "path",
  8480        "required": true
  8481       },
  8482       {
  8483        "uniqueItems": true,
  8484        "type": "string",
  8485        "description": "path to the resource",
  8486        "name": "path",
  8487        "in": "path",
  8488        "required": true
  8489       },
  8490       {
  8491        "uniqueItems": true,
  8492        "type": "string",
  8493        "description": "Path is the URL path to use for the current proxy request to node.",
  8494        "name": "path",
  8495        "in": "query"
  8496       }
  8497      ]
  8498     },
  8499     "/api/v1/nodes/{name}/status": {
  8500      "get": {
  8501       "description": "read status of the specified Node",
  8502       "consumes": [
  8503        "*/*"
  8504       ],
  8505       "produces": [
  8506        "application/json",
  8507        "application/yaml",
  8508        "application/vnd.kubernetes.protobuf"
  8509       ],
  8510       "schemes": [
  8511        "https"
  8512       ],
  8513       "tags": [
  8514        "core_v1"
  8515       ],
  8516       "operationId": "readCoreV1NodeStatus",
  8517       "responses": {
  8518        "200": {
  8519         "description": "OK",
  8520         "schema": {
  8521          "$ref": "#/definitions/v1.Node"
  8522         }
  8523        },
  8524        "401": {
  8525         "description": "Unauthorized"
  8526        }
  8527       }
  8528      },
  8529      "put": {
  8530       "description": "replace status of the specified Node",
  8531       "consumes": [
  8532        "*/*"
  8533       ],
  8534       "produces": [
  8535        "application/json",
  8536        "application/yaml",
  8537        "application/vnd.kubernetes.protobuf"
  8538       ],
  8539       "schemes": [
  8540        "https"
  8541       ],
  8542       "tags": [
  8543        "core_v1"
  8544       ],
  8545       "operationId": "replaceCoreV1NodeStatus",
  8546       "parameters": [
  8547        {
  8548         "name": "body",
  8549         "in": "body",
  8550         "required": true,
  8551         "schema": {
  8552          "$ref": "#/definitions/v1.Node"
  8553         }
  8554        }
  8555       ],
  8556       "responses": {
  8557        "200": {
  8558         "description": "OK",
  8559         "schema": {
  8560          "$ref": "#/definitions/v1.Node"
  8561         }
  8562        },
  8563        "401": {
  8564         "description": "Unauthorized"
  8565        }
  8566       }
  8567      },
  8568      "patch": {
  8569       "description": "partially update status of the specified Node",
  8570       "consumes": [
  8571        "application/json-patch+json",
  8572        "application/merge-patch+json",
  8573        "application/strategic-merge-patch+json"
  8574       ],
  8575       "produces": [
  8576        "application/json",
  8577        "application/yaml",
  8578        "application/vnd.kubernetes.protobuf"
  8579       ],
  8580       "schemes": [
  8581        "https"
  8582       ],
  8583       "tags": [
  8584        "core_v1"
  8585       ],
  8586       "operationId": "patchCoreV1NodeStatus",
  8587       "parameters": [
  8588        {
  8589         "name": "body",
  8590         "in": "body",
  8591         "required": true,
  8592         "schema": {
  8593          "$ref": "#/definitions/unversioned.Patch"
  8594         }
  8595        }
  8596       ],
  8597       "responses": {
  8598        "200": {
  8599         "description": "OK",
  8600         "schema": {
  8601          "$ref": "#/definitions/v1.Node"
  8602         }
  8603        },
  8604        "401": {
  8605         "description": "Unauthorized"
  8606        }
  8607       }
  8608      },
  8609      "parameters": [
  8610       {
  8611        "uniqueItems": true,
  8612        "type": "string",
  8613        "description": "name of the Node",
  8614        "name": "name",
  8615        "in": "path",
  8616        "required": true
  8617       },
  8618       {
  8619        "uniqueItems": true,
  8620        "type": "string",
  8621        "description": "If 'true', then the output is pretty printed.",
  8622        "name": "pretty",
  8623        "in": "query"
  8624       }
  8625      ]
  8626     },
  8627     "/api/v1/persistentvolumeclaims": {
  8628      "get": {
  8629       "description": "list or watch objects of kind PersistentVolumeClaim",
  8630       "consumes": [
  8631        "*/*"
  8632       ],
  8633       "produces": [
  8634        "application/json",
  8635        "application/yaml",
  8636        "application/vnd.kubernetes.protobuf",
  8637        "application/json;stream=watch",
  8638        "application/vnd.kubernetes.protobuf;stream=watch"
  8639       ],
  8640       "schemes": [
  8641        "https"
  8642       ],
  8643       "tags": [
  8644        "core_v1"
  8645       ],
  8646       "operationId": "listCoreV1PersistentVolumeClaimForAllNamespaces",
  8647       "responses": {
  8648        "200": {
  8649         "description": "OK",
  8650         "schema": {
  8651          "$ref": "#/definitions/v1.PersistentVolumeClaimList"
  8652         }
  8653        },
  8654        "401": {
  8655         "description": "Unauthorized"
  8656        }
  8657       }
  8658      },
  8659      "parameters": [
  8660       {
  8661        "uniqueItems": true,
  8662        "type": "string",
  8663        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  8664        "name": "fieldSelector",
  8665        "in": "query"
  8666       },
  8667       {
  8668        "uniqueItems": true,
  8669        "type": "string",
  8670        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  8671        "name": "labelSelector",
  8672        "in": "query"
  8673       },
  8674       {
  8675        "uniqueItems": true,
  8676        "type": "string",
  8677        "description": "If 'true', then the output is pretty printed.",
  8678        "name": "pretty",
  8679        "in": "query"
  8680       },
  8681       {
  8682        "uniqueItems": true,
  8683        "type": "string",
  8684        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
  8685        "name": "resourceVersion",
  8686        "in": "query"
  8687       },
  8688       {
  8689        "uniqueItems": true,
  8690        "type": "integer",
  8691        "description": "Timeout for the list/watch call.",
  8692        "name": "timeoutSeconds",
  8693        "in": "query"
  8694       },
  8695       {
  8696        "uniqueItems": true,
  8697        "type": "boolean",
  8698        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  8699        "name": "watch",
  8700        "in": "query"
  8701       }
  8702      ]
  8703     },
  8704     "/api/v1/persistentvolumes": {
  8705      "get": {
  8706       "description": "list or watch objects of kind PersistentVolume",
  8707       "consumes": [
  8708        "*/*"
  8709       ],
  8710       "produces": [
  8711        "application/json",
  8712        "application/yaml",
  8713        "application/vnd.kubernetes.protobuf",
  8714        "application/json;stream=watch",
  8715        "application/vnd.kubernetes.protobuf;stream=watch"
  8716       ],
  8717       "schemes": [
  8718        "https"
  8719       ],
  8720       "tags": [
  8721        "core_v1"
  8722       ],
  8723       "operationId": "listCoreV1PersistentVolume",
  8724       "parameters": [
  8725        {
  8726         "uniqueItems": true,
  8727         "type": "string",
  8728         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  8729         "name": "fieldSelector",
  8730         "in": "query"
  8731        },
  8732        {
  8733         "uniqueItems": true,
  8734         "type": "string",
  8735         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  8736         "name": "labelSelector",
  8737         "in": "query"
  8738        },
  8739        {
  8740         "uniqueItems": true,
  8741         "type": "string",
  8742         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
  8743         "name": "resourceVersion",
  8744         "in": "query"
  8745        },
  8746        {
  8747         "uniqueItems": true,
  8748         "type": "integer",
  8749         "description": "Timeout for the list/watch call.",
  8750         "name": "timeoutSeconds",
  8751         "in": "query"
  8752        },
  8753        {
  8754         "uniqueItems": true,
  8755         "type": "boolean",
  8756         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  8757         "name": "watch",
  8758         "in": "query"
  8759        }
  8760       ],
  8761       "responses": {
  8762        "200": {
  8763         "description": "OK",
  8764         "schema": {
  8765          "$ref": "#/definitions/v1.PersistentVolumeList"
  8766         }
  8767        },
  8768        "401": {
  8769         "description": "Unauthorized"
  8770        }
  8771       }
  8772      },
  8773      "post": {
  8774       "description": "create a PersistentVolume",
  8775       "consumes": [
  8776        "*/*"
  8777       ],
  8778       "produces": [
  8779        "application/json",
  8780        "application/yaml",
  8781        "application/vnd.kubernetes.protobuf"
  8782       ],
  8783       "schemes": [
  8784        "https"
  8785       ],
  8786       "tags": [
  8787        "core_v1"
  8788       ],
  8789       "operationId": "createCoreV1PersistentVolume",
  8790       "parameters": [
  8791        {
  8792         "name": "body",
  8793         "in": "body",
  8794         "required": true,
  8795         "schema": {
  8796          "$ref": "#/definitions/v1.PersistentVolume"
  8797         }
  8798        }
  8799       ],
  8800       "responses": {
  8801        "200": {
  8802         "description": "OK",
  8803         "schema": {
  8804          "$ref": "#/definitions/v1.PersistentVolume"
  8805         }
  8806        },
  8807        "401": {
  8808         "description": "Unauthorized"
  8809        }
  8810       }
  8811      },
  8812      "delete": {
  8813       "description": "delete collection of PersistentVolume",
  8814       "consumes": [
  8815        "*/*"
  8816       ],
  8817       "produces": [
  8818        "application/json",
  8819        "application/yaml",
  8820        "application/vnd.kubernetes.protobuf"
  8821       ],
  8822       "schemes": [
  8823        "https"
  8824       ],
  8825       "tags": [
  8826        "core_v1"
  8827       ],
  8828       "operationId": "deleteCoreV1CollectionPersistentVolume",
  8829       "parameters": [
  8830        {
  8831         "uniqueItems": true,
  8832         "type": "string",
  8833         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  8834         "name": "fieldSelector",
  8835         "in": "query"
  8836        },
  8837        {
  8838         "uniqueItems": true,
  8839         "type": "string",
  8840         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  8841         "name": "labelSelector",
  8842         "in": "query"
  8843        },
  8844        {
  8845         "uniqueItems": true,
  8846         "type": "string",
  8847         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
  8848         "name": "resourceVersion",
  8849         "in": "query"
  8850        },
  8851        {
  8852         "uniqueItems": true,
  8853         "type": "integer",
  8854         "description": "Timeout for the list/watch call.",
  8855         "name": "timeoutSeconds",
  8856         "in": "query"
  8857        },
  8858        {
  8859         "uniqueItems": true,
  8860         "type": "boolean",
  8861         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  8862         "name": "watch",
  8863         "in": "query"
  8864        }
  8865       ],
  8866       "responses": {
  8867        "200": {
  8868         "description": "OK",
  8869         "schema": {
  8870          "$ref": "#/definitions/unversioned.Status"
  8871         }
  8872        },
  8873        "401": {
  8874         "description": "Unauthorized"
  8875        }
  8876       }
  8877      },
  8878      "parameters": [
  8879       {
  8880        "uniqueItems": true,
  8881        "type": "string",
  8882        "description": "If 'true', then the output is pretty printed.",
  8883        "name": "pretty",
  8884        "in": "query"
  8885       }
  8886      ]
  8887     },
  8888     "/api/v1/persistentvolumes/{name}": {
  8889      "get": {
  8890       "description": "read the specified PersistentVolume",
  8891       "consumes": [
  8892        "*/*"
  8893       ],
  8894       "produces": [
  8895        "application/json",
  8896        "application/yaml",
  8897        "application/vnd.kubernetes.protobuf"
  8898       ],
  8899       "schemes": [
  8900        "https"
  8901       ],
  8902       "tags": [
  8903        "core_v1"
  8904       ],
  8905       "operationId": "readCoreV1PersistentVolume",
  8906       "parameters": [
  8907        {
  8908         "uniqueItems": true,
  8909         "type": "boolean",
  8910         "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'",
  8911         "name": "exact",
  8912         "in": "query"
  8913        },
  8914        {
  8915         "uniqueItems": true,
  8916         "type": "boolean",
  8917         "description": "Should this value be exported.  Export strips fields that a user can not specify.",
  8918         "name": "export",
  8919         "in": "query"
  8920        }
  8921       ],
  8922       "responses": {
  8923        "200": {
  8924         "description": "OK",
  8925         "schema": {
  8926          "$ref": "#/definitions/v1.PersistentVolume"
  8927         }
  8928        },
  8929        "401": {
  8930         "description": "Unauthorized"
  8931        }
  8932       }
  8933      },
  8934      "put": {
  8935       "description": "replace the specified PersistentVolume",
  8936       "consumes": [
  8937        "*/*"
  8938       ],
  8939       "produces": [
  8940        "application/json",
  8941        "application/yaml",
  8942        "application/vnd.kubernetes.protobuf"
  8943       ],
  8944       "schemes": [
  8945        "https"
  8946       ],
  8947       "tags": [
  8948        "core_v1"
  8949       ],
  8950       "operationId": "replaceCoreV1PersistentVolume",
  8951       "parameters": [
  8952        {
  8953         "name": "body",
  8954         "in": "body",
  8955         "required": true,
  8956         "schema": {
  8957          "$ref": "#/definitions/v1.PersistentVolume"
  8958         }
  8959        }
  8960       ],
  8961       "responses": {
  8962        "200": {
  8963         "description": "OK",
  8964         "schema": {
  8965          "$ref": "#/definitions/v1.PersistentVolume"
  8966         }
  8967        },
  8968        "401": {
  8969         "description": "Unauthorized"
  8970        }
  8971       }
  8972      },
  8973      "delete": {
  8974       "description": "delete a PersistentVolume",
  8975       "consumes": [
  8976        "*/*"
  8977       ],
  8978       "produces": [
  8979        "application/json",
  8980        "application/yaml",
  8981        "application/vnd.kubernetes.protobuf"
  8982       ],
  8983       "schemes": [
  8984        "https"
  8985       ],
  8986       "tags": [
  8987        "core_v1"
  8988       ],
  8989       "operationId": "deleteCoreV1PersistentVolume",
  8990       "parameters": [
  8991        {
  8992         "name": "body",
  8993         "in": "body",
  8994         "required": true,
  8995         "schema": {
  8996          "$ref": "#/definitions/v1.DeleteOptions"
  8997         }
  8998        }
  8999       ],
  9000       "responses": {
  9001        "200": {
  9002         "description": "OK",
  9003         "schema": {
  9004          "$ref": "#/definitions/unversioned.Status"
  9005         }
  9006        },
  9007        "401": {
  9008         "description": "Unauthorized"
  9009        }
  9010       }
  9011      },
  9012      "patch": {
  9013       "description": "partially update the specified PersistentVolume",
  9014       "consumes": [
  9015        "application/json-patch+json",
  9016        "application/merge-patch+json",
  9017        "application/strategic-merge-patch+json"
  9018       ],
  9019       "produces": [
  9020        "application/json",
  9021        "application/yaml",
  9022        "application/vnd.kubernetes.protobuf"
  9023       ],
  9024       "schemes": [
  9025        "https"
  9026       ],
  9027       "tags": [
  9028        "core_v1"
  9029       ],
  9030       "operationId": "patchCoreV1PersistentVolume",
  9031       "parameters": [
  9032        {
  9033         "name": "body",
  9034         "in": "body",
  9035         "required": true,
  9036         "schema": {
  9037          "$ref": "#/definitions/unversioned.Patch"
  9038         }
  9039        }
  9040       ],
  9041       "responses": {
  9042        "200": {
  9043         "description": "OK",
  9044         "schema": {
  9045          "$ref": "#/definitions/v1.PersistentVolume"
  9046         }
  9047        },
  9048        "401": {
  9049         "description": "Unauthorized"
  9050        }
  9051       }
  9052      },
  9053      "parameters": [
  9054       {
  9055        "uniqueItems": true,
  9056        "type": "string",
  9057        "description": "name of the PersistentVolume",
  9058        "name": "name",
  9059        "in": "path",
  9060        "required": true
  9061       },
  9062       {
  9063        "uniqueItems": true,
  9064        "type": "string",
  9065        "description": "If 'true', then the output is pretty printed.",
  9066        "name": "pretty",
  9067        "in": "query"
  9068       }
  9069      ]
  9070     },
  9071     "/api/v1/persistentvolumes/{name}/status": {
  9072      "get": {
  9073       "description": "read status of the specified PersistentVolume",
  9074       "consumes": [
  9075        "*/*"
  9076       ],
  9077       "produces": [
  9078        "application/json",
  9079        "application/yaml",
  9080        "application/vnd.kubernetes.protobuf"
  9081       ],
  9082       "schemes": [
  9083        "https"
  9084       ],
  9085       "tags": [
  9086        "core_v1"
  9087       ],
  9088       "operationId": "readCoreV1PersistentVolumeStatus",
  9089       "responses": {
  9090        "200": {
  9091         "description": "OK",
  9092         "schema": {
  9093          "$ref": "#/definitions/v1.PersistentVolume"
  9094         }
  9095        },
  9096        "401": {
  9097         "description": "Unauthorized"
  9098        }
  9099       }
  9100      },
  9101      "put": {
  9102       "description": "replace status of the specified PersistentVolume",
  9103       "consumes": [
  9104        "*/*"
  9105       ],
  9106       "produces": [
  9107        "application/json",
  9108        "application/yaml",
  9109        "application/vnd.kubernetes.protobuf"
  9110       ],
  9111       "schemes": [
  9112        "https"
  9113       ],
  9114       "tags": [
  9115        "core_v1"
  9116       ],
  9117       "operationId": "replaceCoreV1PersistentVolumeStatus",
  9118       "parameters": [
  9119        {
  9120         "name": "body",
  9121         "in": "body",
  9122         "required": true,
  9123         "schema": {
  9124          "$ref": "#/definitions/v1.PersistentVolume"
  9125         }
  9126        }
  9127       ],
  9128       "responses": {
  9129        "200": {
  9130         "description": "OK",
  9131         "schema": {
  9132          "$ref": "#/definitions/v1.PersistentVolume"
  9133         }
  9134        },
  9135        "401": {
  9136         "description": "Unauthorized"
  9137        }
  9138       }
  9139      },
  9140      "patch": {
  9141       "description": "partially update status of the specified PersistentVolume",
  9142       "consumes": [
  9143        "application/json-patch+json",
  9144        "application/merge-patch+json",
  9145        "application/strategic-merge-patch+json"
  9146       ],
  9147       "produces": [
  9148        "application/json",
  9149        "application/yaml",
  9150        "application/vnd.kubernetes.protobuf"
  9151       ],
  9152       "schemes": [
  9153        "https"
  9154       ],
  9155       "tags": [
  9156        "core_v1"
  9157       ],
  9158       "operationId": "patchCoreV1PersistentVolumeStatus",
  9159       "parameters": [
  9160        {
  9161         "name": "body",
  9162         "in": "body",
  9163         "required": true,
  9164         "schema": {
  9165          "$ref": "#/definitions/unversioned.Patch"
  9166         }
  9167        }
  9168       ],
  9169       "responses": {
  9170        "200": {
  9171         "description": "OK",
  9172         "schema": {
  9173          "$ref": "#/definitions/v1.PersistentVolume"
  9174         }
  9175        },
  9176        "401": {
  9177         "description": "Unauthorized"
  9178        }
  9179       }
  9180      },
  9181      "parameters": [
  9182       {
  9183        "uniqueItems": true,
  9184        "type": "string",
  9185        "description": "name of the PersistentVolume",
  9186        "name": "name",
  9187        "in": "path",
  9188        "required": true
  9189       },
  9190       {
  9191        "uniqueItems": true,
  9192        "type": "string",
  9193        "description": "If 'true', then the output is pretty printed.",
  9194        "name": "pretty",
  9195        "in": "query"
  9196       }
  9197      ]
  9198     },
  9199     "/api/v1/pods": {
  9200      "get": {
  9201       "description": "list or watch objects of kind Pod",
  9202       "consumes": [
  9203        "*/*"
  9204       ],
  9205       "produces": [
  9206        "application/json",
  9207        "application/yaml",
  9208        "application/vnd.kubernetes.protobuf",
  9209        "application/json;stream=watch",
  9210        "application/vnd.kubernetes.protobuf;stream=watch"
  9211       ],
  9212       "schemes": [
  9213        "https"
  9214       ],
  9215       "tags": [
  9216        "core_v1"
  9217       ],
  9218       "operationId": "listCoreV1PodForAllNamespaces",
  9219       "responses": {
  9220        "200": {
  9221         "description": "OK",
  9222         "schema": {
  9223          "$ref": "#/definitions/v1.PodList"
  9224         }
  9225        },
  9226        "401": {
  9227         "description": "Unauthorized"
  9228        }
  9229       }
  9230      },
  9231      "parameters": [
  9232       {
  9233        "uniqueItems": true,
  9234        "type": "string",
  9235        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  9236        "name": "fieldSelector",
  9237        "in": "query"
  9238       },
  9239       {
  9240        "uniqueItems": true,
  9241        "type": "string",
  9242        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  9243        "name": "labelSelector",
  9244        "in": "query"
  9245       },
  9246       {
  9247        "uniqueItems": true,
  9248        "type": "string",
  9249        "description": "If 'true', then the output is pretty printed.",
  9250        "name": "pretty",
  9251        "in": "query"
  9252       },
  9253       {
  9254        "uniqueItems": true,
  9255        "type": "string",
  9256        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
  9257        "name": "resourceVersion",
  9258        "in": "query"
  9259       },
  9260       {
  9261        "uniqueItems": true,
  9262        "type": "integer",
  9263        "description": "Timeout for the list/watch call.",
  9264        "name": "timeoutSeconds",
  9265        "in": "query"
  9266       },
  9267       {
  9268        "uniqueItems": true,
  9269        "type": "boolean",
  9270        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  9271        "name": "watch",
  9272        "in": "query"
  9273       }
  9274      ]
  9275     },
  9276     "/api/v1/podtemplates": {
  9277      "get": {
  9278       "description": "list or watch objects of kind PodTemplate",
  9279       "consumes": [
  9280        "*/*"
  9281       ],
  9282       "produces": [
  9283        "application/json",
  9284        "application/yaml",
  9285        "application/vnd.kubernetes.protobuf",
  9286        "application/json;stream=watch",
  9287        "application/vnd.kubernetes.protobuf;stream=watch"
  9288       ],
  9289       "schemes": [
  9290        "https"
  9291       ],
  9292       "tags": [
  9293        "core_v1"
  9294       ],
  9295       "operationId": "listCoreV1PodTemplateForAllNamespaces",
  9296       "responses": {
  9297        "200": {
  9298         "description": "OK",
  9299         "schema": {
  9300          "$ref": "#/definitions/v1.PodTemplateList"
  9301         }
  9302        },
  9303        "401": {
  9304         "description": "Unauthorized"
  9305        }
  9306       }
  9307      },
  9308      "parameters": [
  9309       {
  9310        "uniqueItems": true,
  9311        "type": "string",
  9312        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  9313        "name": "fieldSelector",
  9314        "in": "query"
  9315       },
  9316       {
  9317        "uniqueItems": true,
  9318        "type": "string",
  9319        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  9320        "name": "labelSelector",
  9321        "in": "query"
  9322       },
  9323       {
  9324        "uniqueItems": true,
  9325        "type": "string",
  9326        "description": "If 'true', then the output is pretty printed.",
  9327        "name": "pretty",
  9328        "in": "query"
  9329       },
  9330       {
  9331        "uniqueItems": true,
  9332        "type": "string",
  9333        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
  9334        "name": "resourceVersion",
  9335        "in": "query"
  9336       },
  9337       {
  9338        "uniqueItems": true,
  9339        "type": "integer",
  9340        "description": "Timeout for the list/watch call.",
  9341        "name": "timeoutSeconds",
  9342        "in": "query"
  9343       },
  9344       {
  9345        "uniqueItems": true,
  9346        "type": "boolean",
  9347        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  9348        "name": "watch",
  9349        "in": "query"
  9350       }
  9351      ]
  9352     },
  9353     "/api/v1/proxy/namespaces/{namespace}/pods/{name}": {
  9354      "get": {
  9355       "description": "proxy GET requests to Pod",
  9356       "consumes": [
  9357        "*/*"
  9358       ],
  9359       "produces": [
  9360        "*/*"
  9361       ],
  9362       "schemes": [
  9363        "https"
  9364       ],
  9365       "tags": [
  9366        "core_v1"
  9367       ],
  9368       "operationId": "proxyCoreV1GETNamespacedPod",
  9369       "responses": {
  9370        "200": {
  9371         "description": "OK",
  9372         "schema": {
  9373          "type": "string"
  9374         }
  9375        },
  9376        "401": {
  9377         "description": "Unauthorized"
  9378        }
  9379       }
  9380      },
  9381      "put": {
  9382       "description": "proxy PUT requests to Pod",
  9383       "consumes": [
  9384        "*/*"
  9385       ],
  9386       "produces": [
  9387        "*/*"
  9388       ],
  9389       "schemes": [
  9390        "https"
  9391       ],
  9392       "tags": [
  9393        "core_v1"
  9394       ],
  9395       "operationId": "proxyCoreV1PUTNamespacedPod",
  9396       "responses": {
  9397        "200": {
  9398         "description": "OK",
  9399         "schema": {
  9400          "type": "string"
  9401         }
  9402        },
  9403        "401": {
  9404         "description": "Unauthorized"
  9405        }
  9406       }
  9407      },
  9408      "post": {
  9409       "description": "proxy POST requests to Pod",
  9410       "consumes": [
  9411        "*/*"
  9412       ],
  9413       "produces": [
  9414        "*/*"
  9415       ],
  9416       "schemes": [
  9417        "https"
  9418       ],
  9419       "tags": [
  9420        "core_v1"
  9421       ],
  9422       "operationId": "proxyCoreV1POSTNamespacedPod",
  9423       "responses": {
  9424        "200": {
  9425         "description": "OK",
  9426         "schema": {
  9427          "type": "string"
  9428         }
  9429        },
  9430        "401": {
  9431         "description": "Unauthorized"
  9432        }
  9433       }
  9434      },
  9435      "delete": {
  9436       "description": "proxy DELETE requests to Pod",
  9437       "consumes": [
  9438        "*/*"
  9439       ],
  9440       "produces": [
  9441        "*/*"
  9442       ],
  9443       "schemes": [
  9444        "https"
  9445       ],
  9446       "tags": [
  9447        "core_v1"
  9448       ],
  9449       "operationId": "proxyCoreV1DELETENamespacedPod",
  9450       "responses": {
  9451        "200": {
  9452         "description": "OK",
  9453         "schema": {
  9454          "type": "string"
  9455         }
  9456        },
  9457        "401": {
  9458         "description": "Unauthorized"
  9459        }
  9460       }
  9461      },
  9462      "options": {
  9463       "description": "proxy OPTIONS requests to Pod",
  9464       "consumes": [
  9465        "*/*"
  9466       ],
  9467       "produces": [
  9468        "*/*"
  9469       ],
  9470       "schemes": [
  9471        "https"
  9472       ],
  9473       "tags": [
  9474        "core_v1"
  9475       ],
  9476       "operationId": "proxyCoreV1OPTIONSNamespacedPod",
  9477       "responses": {
  9478        "200": {
  9479         "description": "OK",
  9480         "schema": {
  9481          "type": "string"
  9482         }
  9483        },
  9484        "401": {
  9485         "description": "Unauthorized"
  9486        }
  9487       }
  9488      },
  9489      "head": {
  9490       "description": "proxy HEAD requests to Pod",
  9491       "consumes": [
  9492        "*/*"
  9493       ],
  9494       "produces": [
  9495        "*/*"
  9496       ],
  9497       "schemes": [
  9498        "https"
  9499       ],
  9500       "tags": [
  9501        "core_v1"
  9502       ],
  9503       "operationId": "proxyCoreV1HEADNamespacedPod",
  9504       "responses": {
  9505        "200": {
  9506         "description": "OK",
  9507         "schema": {
  9508          "type": "string"
  9509         }
  9510        },
  9511        "401": {
  9512         "description": "Unauthorized"
  9513        }
  9514       }
  9515      },
  9516      "parameters": [
  9517       {
  9518        "uniqueItems": true,
  9519        "type": "string",
  9520        "description": "name of the Pod",
  9521        "name": "name",
  9522        "in": "path",
  9523        "required": true
  9524       },
  9525       {
  9526        "uniqueItems": true,
  9527        "type": "string",
  9528        "description": "object name and auth scope, such as for teams and projects",
  9529        "name": "namespace",
  9530        "in": "path",
  9531        "required": true
  9532       }
  9533      ]
  9534     },
  9535     "/api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}": {
  9536      "get": {
  9537       "description": "proxy GET requests to Pod",
  9538       "consumes": [
  9539        "*/*"
  9540       ],
  9541       "produces": [
  9542        "*/*"
  9543       ],
  9544       "schemes": [
  9545        "https"
  9546       ],
  9547       "tags": [
  9548        "core_v1"
  9549       ],
  9550       "operationId": "proxyCoreV1GETNamespacedPodWithPath",
  9551       "responses": {
  9552        "200": {
  9553         "description": "OK",
  9554         "schema": {
  9555          "type": "string"
  9556         }
  9557        },
  9558        "401": {
  9559         "description": "Unauthorized"
  9560        }
  9561       }
  9562      },
  9563      "put": {
  9564       "description": "proxy PUT requests to Pod",
  9565       "consumes": [
  9566        "*/*"
  9567       ],
  9568       "produces": [
  9569        "*/*"
  9570       ],
  9571       "schemes": [
  9572        "https"
  9573       ],
  9574       "tags": [
  9575        "core_v1"
  9576       ],
  9577       "operationId": "proxyCoreV1PUTNamespacedPodWithPath",
  9578       "responses": {
  9579        "200": {
  9580         "description": "OK",
  9581         "schema": {
  9582          "type": "string"
  9583         }
  9584        },
  9585        "401": {
  9586         "description": "Unauthorized"
  9587        }
  9588       }
  9589      },
  9590      "post": {
  9591       "description": "proxy POST requests to Pod",
  9592       "consumes": [
  9593        "*/*"
  9594       ],
  9595       "produces": [
  9596        "*/*"
  9597       ],
  9598       "schemes": [
  9599        "https"
  9600       ],
  9601       "tags": [
  9602        "core_v1"
  9603       ],
  9604       "operationId": "proxyCoreV1POSTNamespacedPodWithPath",
  9605       "responses": {
  9606        "200": {
  9607         "description": "OK",
  9608         "schema": {
  9609          "type": "string"
  9610         }
  9611        },
  9612        "401": {
  9613         "description": "Unauthorized"
  9614        }
  9615       }
  9616      },
  9617      "delete": {
  9618       "description": "proxy DELETE requests to Pod",
  9619       "consumes": [
  9620        "*/*"
  9621       ],
  9622       "produces": [
  9623        "*/*"
  9624       ],
  9625       "schemes": [
  9626        "https"
  9627       ],
  9628       "tags": [
  9629        "core_v1"
  9630       ],
  9631       "operationId": "proxyCoreV1DELETENamespacedPodWithPath",
  9632       "responses": {
  9633        "200": {
  9634         "description": "OK",
  9635         "schema": {
  9636          "type": "string"
  9637         }
  9638        },
  9639        "401": {
  9640         "description": "Unauthorized"
  9641        }
  9642       }
  9643      },
  9644      "options": {
  9645       "description": "proxy OPTIONS requests to Pod",
  9646       "consumes": [
  9647        "*/*"
  9648       ],
  9649       "produces": [
  9650        "*/*"
  9651       ],
  9652       "schemes": [
  9653        "https"
  9654       ],
  9655       "tags": [
  9656        "core_v1"
  9657       ],
  9658       "operationId": "proxyCoreV1OPTIONSNamespacedPodWithPath",
  9659       "responses": {
  9660        "200": {
  9661         "description": "OK",
  9662         "schema": {
  9663          "type": "string"
  9664         }
  9665        },
  9666        "401": {
  9667         "description": "Unauthorized"
  9668        }
  9669       }
  9670      },
  9671      "head": {
  9672       "description": "proxy HEAD requests to Pod",
  9673       "consumes": [
  9674        "*/*"
  9675       ],
  9676       "produces": [
  9677        "*/*"
  9678       ],
  9679       "schemes": [
  9680        "https"
  9681       ],
  9682       "tags": [
  9683        "core_v1"
  9684       ],
  9685       "operationId": "proxyCoreV1HEADNamespacedPodWithPath",
  9686       "responses": {
  9687        "200": {
  9688         "description": "OK",
  9689         "schema": {
  9690          "type": "string"
  9691         }
  9692        },
  9693        "401": {
  9694         "description": "Unauthorized"
  9695        }
  9696       }
  9697      },
  9698      "parameters": [
  9699       {
  9700        "uniqueItems": true,
  9701        "type": "string",
  9702        "description": "name of the Pod",
  9703        "name": "name",
  9704        "in": "path",
  9705        "required": true
  9706       },
  9707       {
  9708        "uniqueItems": true,
  9709        "type": "string",
  9710        "description": "object name and auth scope, such as for teams and projects",
  9711        "name": "namespace",
  9712        "in": "path",
  9713        "required": true
  9714       },
  9715       {
  9716        "uniqueItems": true,
  9717        "type": "string",
  9718        "description": "path to the resource",
  9719        "name": "path",
  9720        "in": "path",
  9721        "required": true
  9722       }
  9723      ]
  9724     },
  9725     "/api/v1/proxy/namespaces/{namespace}/services/{name}": {
  9726      "get": {
  9727       "description": "proxy GET requests to Service",
  9728       "consumes": [
  9729        "*/*"
  9730       ],
  9731       "produces": [
  9732        "*/*"
  9733       ],
  9734       "schemes": [
  9735        "https"
  9736       ],
  9737       "tags": [
  9738        "core_v1"
  9739       ],
  9740       "operationId": "proxyCoreV1GETNamespacedService",
  9741       "responses": {
  9742        "200": {
  9743         "description": "OK",
  9744         "schema": {
  9745          "type": "string"
  9746         }
  9747        },
  9748        "401": {
  9749         "description": "Unauthorized"
  9750        }
  9751       }
  9752      },
  9753      "put": {
  9754       "description": "proxy PUT requests to Service",
  9755       "consumes": [
  9756        "*/*"
  9757       ],
  9758       "produces": [
  9759        "*/*"
  9760       ],
  9761       "schemes": [
  9762        "https"
  9763       ],
  9764       "tags": [
  9765        "core_v1"
  9766       ],
  9767       "operationId": "proxyCoreV1PUTNamespacedService",
  9768       "responses": {
  9769        "200": {
  9770         "description": "OK",
  9771         "schema": {
  9772          "type": "string"
  9773         }
  9774        },
  9775        "401": {
  9776         "description": "Unauthorized"
  9777        }
  9778       }
  9779      },
  9780      "post": {
  9781       "description": "proxy POST requests to Service",
  9782       "consumes": [
  9783        "*/*"
  9784       ],
  9785       "produces": [
  9786        "*/*"
  9787       ],
  9788       "schemes": [
  9789        "https"
  9790       ],
  9791       "tags": [
  9792        "core_v1"
  9793       ],
  9794       "operationId": "proxyCoreV1POSTNamespacedService",
  9795       "responses": {
  9796        "200": {
  9797         "description": "OK",
  9798         "schema": {
  9799          "type": "string"
  9800         }
  9801        },
  9802        "401": {
  9803         "description": "Unauthorized"
  9804        }
  9805       }
  9806      },
  9807      "delete": {
  9808       "description": "proxy DELETE requests to Service",
  9809       "consumes": [
  9810        "*/*"
  9811       ],
  9812       "produces": [
  9813        "*/*"
  9814       ],
  9815       "schemes": [
  9816        "https"
  9817       ],
  9818       "tags": [
  9819        "core_v1"
  9820       ],
  9821       "operationId": "proxyCoreV1DELETENamespacedService",
  9822       "responses": {
  9823        "200": {
  9824         "description": "OK",
  9825         "schema": {
  9826          "type": "string"
  9827         }
  9828        },
  9829        "401": {
  9830         "description": "Unauthorized"
  9831        }
  9832       }
  9833      },
  9834      "options": {
  9835       "description": "proxy OPTIONS requests to Service",
  9836       "consumes": [
  9837        "*/*"
  9838       ],
  9839       "produces": [
  9840        "*/*"
  9841       ],
  9842       "schemes": [
  9843        "https"
  9844       ],
  9845       "tags": [
  9846        "core_v1"
  9847       ],
  9848       "operationId": "proxyCoreV1OPTIONSNamespacedService",
  9849       "responses": {
  9850        "200": {
  9851         "description": "OK",
  9852         "schema": {
  9853          "type": "string"
  9854         }
  9855        },
  9856        "401": {
  9857         "description": "Unauthorized"
  9858        }
  9859       }
  9860      },
  9861      "head": {
  9862       "description": "proxy HEAD requests to Service",
  9863       "consumes": [
  9864        "*/*"
  9865       ],
  9866       "produces": [
  9867        "*/*"
  9868       ],
  9869       "schemes": [
  9870        "https"
  9871       ],
  9872       "tags": [
  9873        "core_v1"
  9874       ],
  9875       "operationId": "proxyCoreV1HEADNamespacedService",
  9876       "responses": {
  9877        "200": {
  9878         "description": "OK",
  9879         "schema": {
  9880          "type": "string"
  9881         }
  9882        },
  9883        "401": {
  9884         "description": "Unauthorized"
  9885        }
  9886       }
  9887      },
  9888      "parameters": [
  9889       {
  9890        "uniqueItems": true,
  9891        "type": "string",
  9892        "description": "name of the Service",
  9893        "name": "name",
  9894        "in": "path",
  9895        "required": true
  9896       },
  9897       {
  9898        "uniqueItems": true,
  9899        "type": "string",
  9900        "description": "object name and auth scope, such as for teams and projects",
  9901        "name": "namespace",
  9902        "in": "path",
  9903        "required": true
  9904       }
  9905      ]
  9906     },
  9907     "/api/v1/proxy/namespaces/{namespace}/services/{name}/{path}": {
  9908      "get": {
  9909       "description": "proxy GET requests to Service",
  9910       "consumes": [
  9911        "*/*"
  9912       ],
  9913       "produces": [
  9914        "*/*"
  9915       ],
  9916       "schemes": [
  9917        "https"
  9918       ],
  9919       "tags": [
  9920        "core_v1"
  9921       ],
  9922       "operationId": "proxyCoreV1GETNamespacedServiceWithPath",
  9923       "responses": {
  9924        "200": {
  9925         "description": "OK",
  9926         "schema": {
  9927          "type": "string"
  9928         }
  9929        },
  9930        "401": {
  9931         "description": "Unauthorized"
  9932        }
  9933       }
  9934      },
  9935      "put": {
  9936       "description": "proxy PUT requests to Service",
  9937       "consumes": [
  9938        "*/*"
  9939       ],
  9940       "produces": [
  9941        "*/*"
  9942       ],
  9943       "schemes": [
  9944        "https"
  9945       ],
  9946       "tags": [
  9947        "core_v1"
  9948       ],
  9949       "operationId": "proxyCoreV1PUTNamespacedServiceWithPath",
  9950       "responses": {
  9951        "200": {
  9952         "description": "OK",
  9953         "schema": {
  9954          "type": "string"
  9955         }
  9956        },
  9957        "401": {
  9958         "description": "Unauthorized"
  9959        }
  9960       }
  9961      },
  9962      "post": {
  9963       "description": "proxy POST requests to Service",
  9964       "consumes": [
  9965        "*/*"
  9966       ],
  9967       "produces": [
  9968        "*/*"
  9969       ],
  9970       "schemes": [
  9971        "https"
  9972       ],
  9973       "tags": [
  9974        "core_v1"
  9975       ],
  9976       "operationId": "proxyCoreV1POSTNamespacedServiceWithPath",
  9977       "responses": {
  9978        "200": {
  9979         "description": "OK",
  9980         "schema": {
  9981          "type": "string"
  9982         }
  9983        },
  9984        "401": {
  9985         "description": "Unauthorized"
  9986        }
  9987       }
  9988      },
  9989      "delete": {
  9990       "description": "proxy DELETE requests to Service",
  9991       "consumes": [
  9992        "*/*"
  9993       ],
  9994       "produces": [
  9995        "*/*"
  9996       ],
  9997       "schemes": [
  9998        "https"
  9999       ],
 10000       "tags": [
 10001        "core_v1"
 10002       ],
 10003       "operationId": "proxyCoreV1DELETENamespacedServiceWithPath",
 10004       "responses": {
 10005        "200": {
 10006         "description": "OK",
 10007         "schema": {
 10008          "type": "string"
 10009         }
 10010        },
 10011        "401": {
 10012         "description": "Unauthorized"
 10013        }
 10014       }
 10015      },
 10016      "options": {
 10017       "description": "proxy OPTIONS requests to Service",
 10018       "consumes": [
 10019        "*/*"
 10020       ],
 10021       "produces": [
 10022        "*/*"
 10023       ],
 10024       "schemes": [
 10025        "https"
 10026       ],
 10027       "tags": [
 10028        "core_v1"
 10029       ],
 10030       "operationId": "proxyCoreV1OPTIONSNamespacedServiceWithPath",
 10031       "responses": {
 10032        "200": {
 10033         "description": "OK",
 10034         "schema": {
 10035          "type": "string"
 10036         }
 10037        },
 10038        "401": {
 10039         "description": "Unauthorized"
 10040        }
 10041       }
 10042      },
 10043      "head": {
 10044       "description": "proxy HEAD requests to Service",
 10045       "consumes": [
 10046        "*/*"
 10047       ],
 10048       "produces": [
 10049        "*/*"
 10050       ],
 10051       "schemes": [
 10052        "https"
 10053       ],
 10054       "tags": [
 10055        "core_v1"
 10056       ],
 10057       "operationId": "proxyCoreV1HEADNamespacedServiceWithPath",
 10058       "responses": {
 10059        "200": {
 10060         "description": "OK",
 10061         "schema": {
 10062          "type": "string"
 10063         }
 10064        },
 10065        "401": {
 10066         "description": "Unauthorized"
 10067        }
 10068       }
 10069      },
 10070      "parameters": [
 10071       {
 10072        "uniqueItems": true,
 10073        "type": "string",
 10074        "description": "name of the Service",
 10075        "name": "name",
 10076        "in": "path",
 10077        "required": true
 10078       },
 10079       {
 10080        "uniqueItems": true,
 10081        "type": "string",
 10082        "description": "object name and auth scope, such as for teams and projects",
 10083        "name": "namespace",
 10084        "in": "path",
 10085        "required": true
 10086       },
 10087       {
 10088        "uniqueItems": true,
 10089        "type": "string",
 10090        "description": "path to the resource",
 10091        "name": "path",
 10092        "in": "path",
 10093        "required": true
 10094       }
 10095      ]
 10096     },
 10097     "/api/v1/proxy/nodes/{name}": {
 10098      "get": {
 10099       "description": "proxy GET requests to Node",
 10100       "consumes": [
 10101        "*/*"
 10102       ],
 10103       "produces": [
 10104        "*/*"
 10105       ],
 10106       "schemes": [
 10107        "https"
 10108       ],
 10109       "tags": [
 10110        "core_v1"
 10111       ],
 10112       "operationId": "proxyCoreV1GETNode",
 10113       "responses": {
 10114        "200": {
 10115         "description": "OK",
 10116         "schema": {
 10117          "type": "string"
 10118         }
 10119        },
 10120        "401": {
 10121         "description": "Unauthorized"
 10122        }
 10123       }
 10124      },
 10125      "put": {
 10126       "description": "proxy PUT requests to Node",
 10127       "consumes": [
 10128        "*/*"
 10129       ],
 10130       "produces": [
 10131        "*/*"
 10132       ],
 10133       "schemes": [
 10134        "https"
 10135       ],
 10136       "tags": [
 10137        "core_v1"
 10138       ],
 10139       "operationId": "proxyCoreV1PUTNode",
 10140       "responses": {
 10141        "200": {
 10142         "description": "OK",
 10143         "schema": {
 10144          "type": "string"
 10145         }
 10146        },
 10147        "401": {
 10148         "description": "Unauthorized"
 10149        }
 10150       }
 10151      },
 10152      "post": {
 10153       "description": "proxy POST requests to Node",
 10154       "consumes": [
 10155        "*/*"
 10156       ],
 10157       "produces": [
 10158        "*/*"
 10159       ],
 10160       "schemes": [
 10161        "https"
 10162       ],
 10163       "tags": [
 10164        "core_v1"
 10165       ],
 10166       "operationId": "proxyCoreV1POSTNode",
 10167       "responses": {
 10168        "200": {
 10169         "description": "OK",
 10170         "schema": {
 10171          "type": "string"
 10172         }
 10173        },
 10174        "401": {
 10175         "description": "Unauthorized"
 10176        }
 10177       }
 10178      },
 10179      "delete": {
 10180       "description": "proxy DELETE requests to Node",
 10181       "consumes": [
 10182        "*/*"
 10183       ],
 10184       "produces": [
 10185        "*/*"
 10186       ],
 10187       "schemes": [
 10188        "https"
 10189       ],
 10190       "tags": [
 10191        "core_v1"
 10192       ],
 10193       "operationId": "proxyCoreV1DELETENode",
 10194       "responses": {
 10195        "200": {
 10196         "description": "OK",
 10197         "schema": {
 10198          "type": "string"
 10199         }
 10200        },
 10201        "401": {
 10202         "description": "Unauthorized"
 10203        }
 10204       }
 10205      },
 10206      "options": {
 10207       "description": "proxy OPTIONS requests to Node",
 10208       "consumes": [
 10209        "*/*"
 10210       ],
 10211       "produces": [
 10212        "*/*"
 10213       ],
 10214       "schemes": [
 10215        "https"
 10216       ],
 10217       "tags": [
 10218        "core_v1"
 10219       ],
 10220       "operationId": "proxyCoreV1OPTIONSNode",
 10221       "responses": {
 10222        "200": {
 10223         "description": "OK",
 10224         "schema": {
 10225          "type": "string"
 10226         }
 10227        },
 10228        "401": {
 10229         "description": "Unauthorized"
 10230        }
 10231       }
 10232      },
 10233      "head": {
 10234       "description": "proxy HEAD requests to Node",
 10235       "consumes": [
 10236        "*/*"
 10237       ],
 10238       "produces": [
 10239        "*/*"
 10240       ],
 10241       "schemes": [
 10242        "https"
 10243       ],
 10244       "tags": [
 10245        "core_v1"
 10246       ],
 10247       "operationId": "proxyCoreV1HEADNode",
 10248       "responses": {
 10249        "200": {
 10250         "description": "OK",
 10251         "schema": {
 10252          "type": "string"
 10253         }
 10254        },
 10255        "401": {
 10256         "description": "Unauthorized"
 10257        }
 10258       }
 10259      },
 10260      "parameters": [
 10261       {
 10262        "uniqueItems": true,
 10263        "type": "string",
 10264        "description": "name of the Node",
 10265        "name": "name",
 10266        "in": "path",
 10267        "required": true
 10268       }
 10269      ]
 10270     },
 10271     "/api/v1/proxy/nodes/{name}/{path}": {
 10272      "get": {
 10273       "description": "proxy GET requests to Node",
 10274       "consumes": [
 10275        "*/*"
 10276       ],
 10277       "produces": [
 10278        "*/*"
 10279       ],
 10280       "schemes": [
 10281        "https"
 10282       ],
 10283       "tags": [
 10284        "core_v1"
 10285       ],
 10286       "operationId": "proxyCoreV1GETNodeWithPath",
 10287       "responses": {
 10288        "200": {
 10289         "description": "OK",
 10290         "schema": {
 10291          "type": "string"
 10292         }
 10293        },
 10294        "401": {
 10295         "description": "Unauthorized"
 10296        }
 10297       }
 10298      },
 10299      "put": {
 10300       "description": "proxy PUT requests to Node",
 10301       "consumes": [
 10302        "*/*"
 10303       ],
 10304       "produces": [
 10305        "*/*"
 10306       ],
 10307       "schemes": [
 10308        "https"
 10309       ],
 10310       "tags": [
 10311        "core_v1"
 10312       ],
 10313       "operationId": "proxyCoreV1PUTNodeWithPath",
 10314       "responses": {
 10315        "200": {
 10316         "description": "OK",
 10317         "schema": {
 10318          "type": "string"
 10319         }
 10320        },
 10321        "401": {
 10322         "description": "Unauthorized"
 10323        }
 10324       }
 10325      },
 10326      "post": {
 10327       "description": "proxy POST requests to Node",
 10328       "consumes": [
 10329        "*/*"
 10330       ],
 10331       "produces": [
 10332        "*/*"
 10333       ],
 10334       "schemes": [
 10335        "https"
 10336       ],
 10337       "tags": [
 10338        "core_v1"
 10339       ],
 10340       "operationId": "proxyCoreV1POSTNodeWithPath",
 10341       "responses": {
 10342        "200": {
 10343         "description": "OK",
 10344         "schema": {
 10345          "type": "string"
 10346         }
 10347        },
 10348        "401": {
 10349         "description": "Unauthorized"
 10350        }
 10351       }
 10352      },
 10353      "delete": {
 10354       "description": "proxy DELETE requests to Node",
 10355       "consumes": [
 10356        "*/*"
 10357       ],
 10358       "produces": [
 10359        "*/*"
 10360       ],
 10361       "schemes": [
 10362        "https"
 10363       ],
 10364       "tags": [
 10365        "core_v1"
 10366       ],
 10367       "operationId": "proxyCoreV1DELETENodeWithPath",
 10368       "responses": {
 10369        "200": {
 10370         "description": "OK",
 10371         "schema": {
 10372          "type": "string"
 10373         }
 10374        },
 10375        "401": {
 10376         "description": "Unauthorized"
 10377        }
 10378       }
 10379      },
 10380      "options": {
 10381       "description": "proxy OPTIONS requests to Node",
 10382       "consumes": [
 10383        "*/*"
 10384       ],
 10385       "produces": [
 10386        "*/*"
 10387       ],
 10388       "schemes": [
 10389        "https"
 10390       ],
 10391       "tags": [
 10392        "core_v1"
 10393       ],
 10394       "operationId": "proxyCoreV1OPTIONSNodeWithPath",
 10395       "responses": {
 10396        "200": {
 10397         "description": "OK",
 10398         "schema": {
 10399          "type": "string"
 10400         }
 10401        },
 10402        "401": {
 10403         "description": "Unauthorized"
 10404        }
 10405       }
 10406      },
 10407      "head": {
 10408       "description": "proxy HEAD requests to Node",
 10409       "consumes": [
 10410        "*/*"
 10411       ],
 10412       "produces": [
 10413        "*/*"
 10414       ],
 10415       "schemes": [
 10416        "https"
 10417       ],
 10418       "tags": [
 10419        "core_v1"
 10420       ],
 10421       "operationId": "proxyCoreV1HEADNodeWithPath",
 10422       "responses": {
 10423        "200": {
 10424         "description": "OK",
 10425         "schema": {
 10426          "type": "string"
 10427         }
 10428        },
 10429        "401": {
 10430         "description": "Unauthorized"
 10431        }
 10432       }
 10433      },
 10434      "parameters": [
 10435       {
 10436        "uniqueItems": true,
 10437        "type": "string",
 10438        "description": "name of the Node",
 10439        "name": "name",
 10440        "in": "path",
 10441        "required": true
 10442       },
 10443       {
 10444        "uniqueItems": true,
 10445        "type": "string",
 10446        "description": "path to the resource",
 10447        "name": "path",
 10448        "in": "path",
 10449        "required": true
 10450       }
 10451      ]
 10452     },
 10453     "/api/v1/replicationcontrollers": {
 10454      "get": {
 10455       "description": "list or watch objects of kind ReplicationController",
 10456       "consumes": [
 10457        "*/*"
 10458       ],
 10459       "produces": [
 10460        "application/json",
 10461        "application/yaml",
 10462        "application/vnd.kubernetes.protobuf",
 10463        "application/json;stream=watch",
 10464        "application/vnd.kubernetes.protobuf;stream=watch"
 10465       ],
 10466       "schemes": [
 10467        "https"
 10468       ],
 10469       "tags": [
 10470        "core_v1"
 10471       ],
 10472       "operationId": "listCoreV1ReplicationControllerForAllNamespaces",
 10473       "responses": {
 10474        "200": {
 10475         "description": "OK",
 10476         "schema": {
 10477          "$ref": "#/definitions/v1.ReplicationControllerList"
 10478         }
 10479        },
 10480        "401": {
 10481         "description": "Unauthorized"
 10482        }
 10483       }
 10484      },
 10485      "parameters": [
 10486       {
 10487        "uniqueItems": true,
 10488        "type": "string",
 10489        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 10490        "name": "fieldSelector",
 10491        "in": "query"
 10492       },
 10493       {
 10494        "uniqueItems": true,
 10495        "type": "string",
 10496        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 10497        "name": "labelSelector",
 10498        "in": "query"
 10499       },
 10500       {
 10501        "uniqueItems": true,
 10502        "type": "string",
 10503        "description": "If 'true', then the output is pretty printed.",
 10504        "name": "pretty",
 10505        "in": "query"
 10506       },
 10507       {
 10508        "uniqueItems": true,
 10509        "type": "string",
 10510        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 10511        "name": "resourceVersion",
 10512        "in": "query"
 10513       },
 10514       {
 10515        "uniqueItems": true,
 10516        "type": "integer",
 10517        "description": "Timeout for the list/watch call.",
 10518        "name": "timeoutSeconds",
 10519        "in": "query"
 10520       },
 10521       {
 10522        "uniqueItems": true,
 10523        "type": "boolean",
 10524        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 10525        "name": "watch",
 10526        "in": "query"
 10527       }
 10528      ]
 10529     },
 10530     "/api/v1/resourcequotas": {
 10531      "get": {
 10532       "description": "list or watch objects of kind ResourceQuota",
 10533       "consumes": [
 10534        "*/*"
 10535       ],
 10536       "produces": [
 10537        "application/json",
 10538        "application/yaml",
 10539        "application/vnd.kubernetes.protobuf",
 10540        "application/json;stream=watch",
 10541        "application/vnd.kubernetes.protobuf;stream=watch"
 10542       ],
 10543       "schemes": [
 10544        "https"
 10545       ],
 10546       "tags": [
 10547        "core_v1"
 10548       ],
 10549       "operationId": "listCoreV1ResourceQuotaForAllNamespaces",
 10550       "responses": {
 10551        "200": {
 10552         "description": "OK",
 10553         "schema": {
 10554          "$ref": "#/definitions/v1.ResourceQuotaList"
 10555         }
 10556        },
 10557        "401": {
 10558         "description": "Unauthorized"
 10559        }
 10560       }
 10561      },
 10562      "parameters": [
 10563       {
 10564        "uniqueItems": true,
 10565        "type": "string",
 10566        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 10567        "name": "fieldSelector",
 10568        "in": "query"
 10569       },
 10570       {
 10571        "uniqueItems": true,
 10572        "type": "string",
 10573        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 10574        "name": "labelSelector",
 10575        "in": "query"
 10576       },
 10577       {
 10578        "uniqueItems": true,
 10579        "type": "string",
 10580        "description": "If 'true', then the output is pretty printed.",
 10581        "name": "pretty",
 10582        "in": "query"
 10583       },
 10584       {
 10585        "uniqueItems": true,
 10586        "type": "string",
 10587        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 10588        "name": "resourceVersion",
 10589        "in": "query"
 10590       },
 10591       {
 10592        "uniqueItems": true,
 10593        "type": "integer",
 10594        "description": "Timeout for the list/watch call.",
 10595        "name": "timeoutSeconds",
 10596        "in": "query"
 10597       },
 10598       {
 10599        "uniqueItems": true,
 10600        "type": "boolean",
 10601        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 10602        "name": "watch",
 10603        "in": "query"
 10604       }
 10605      ]
 10606     },
 10607     "/api/v1/secrets": {
 10608      "get": {
 10609       "description": "list or watch objects of kind Secret",
 10610       "consumes": [
 10611        "*/*"
 10612       ],
 10613       "produces": [
 10614        "application/json",
 10615        "application/yaml",
 10616        "application/vnd.kubernetes.protobuf",
 10617        "application/json;stream=watch",
 10618        "application/vnd.kubernetes.protobuf;stream=watch"
 10619       ],
 10620       "schemes": [
 10621        "https"
 10622       ],
 10623       "tags": [
 10624        "core_v1"
 10625       ],
 10626       "operationId": "listCoreV1SecretForAllNamespaces",
 10627       "responses": {
 10628        "200": {
 10629         "description": "OK",
 10630         "schema": {
 10631          "$ref": "#/definitions/v1.SecretList"
 10632         }
 10633        },
 10634        "401": {
 10635         "description": "Unauthorized"
 10636        }
 10637       }
 10638      },
 10639      "parameters": [
 10640       {
 10641        "uniqueItems": true,
 10642        "type": "string",
 10643        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 10644        "name": "fieldSelector",
 10645        "in": "query"
 10646       },
 10647       {
 10648        "uniqueItems": true,
 10649        "type": "string",
 10650        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 10651        "name": "labelSelector",
 10652        "in": "query"
 10653       },
 10654       {
 10655        "uniqueItems": true,
 10656        "type": "string",
 10657        "description": "If 'true', then the output is pretty printed.",
 10658        "name": "pretty",
 10659        "in": "query"
 10660       },
 10661       {
 10662        "uniqueItems": true,
 10663        "type": "string",
 10664        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 10665        "name": "resourceVersion",
 10666        "in": "query"
 10667       },
 10668       {
 10669        "uniqueItems": true,
 10670        "type": "integer",
 10671        "description": "Timeout for the list/watch call.",
 10672        "name": "timeoutSeconds",
 10673        "in": "query"
 10674       },
 10675       {
 10676        "uniqueItems": true,
 10677        "type": "boolean",
 10678        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 10679        "name": "watch",
 10680        "in": "query"
 10681       }
 10682      ]
 10683     },
 10684     "/api/v1/serviceaccounts": {
 10685      "get": {
 10686       "description": "list or watch objects of kind ServiceAccount",
 10687       "consumes": [
 10688        "*/*"
 10689       ],
 10690       "produces": [
 10691        "application/json",
 10692        "application/yaml",
 10693        "application/vnd.kubernetes.protobuf",
 10694        "application/json;stream=watch",
 10695        "application/vnd.kubernetes.protobuf;stream=watch"
 10696       ],
 10697       "schemes": [
 10698        "https"
 10699       ],
 10700       "tags": [
 10701        "core_v1"
 10702       ],
 10703       "operationId": "listCoreV1ServiceAccountForAllNamespaces",
 10704       "responses": {
 10705        "200": {
 10706         "description": "OK",
 10707         "schema": {
 10708          "$ref": "#/definitions/v1.ServiceAccountList"
 10709         }
 10710        },
 10711        "401": {
 10712         "description": "Unauthorized"
 10713        }
 10714       }
 10715      },
 10716      "parameters": [
 10717       {
 10718        "uniqueItems": true,
 10719        "type": "string",
 10720        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 10721        "name": "fieldSelector",
 10722        "in": "query"
 10723       },
 10724       {
 10725        "uniqueItems": true,
 10726        "type": "string",
 10727        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 10728        "name": "labelSelector",
 10729        "in": "query"
 10730       },
 10731       {
 10732        "uniqueItems": true,
 10733        "type": "string",
 10734        "description": "If 'true', then the output is pretty printed.",
 10735        "name": "pretty",
 10736        "in": "query"
 10737       },
 10738       {
 10739        "uniqueItems": true,
 10740        "type": "string",
 10741        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 10742        "name": "resourceVersion",
 10743        "in": "query"
 10744       },
 10745       {
 10746        "uniqueItems": true,
 10747        "type": "integer",
 10748        "description": "Timeout for the list/watch call.",
 10749        "name": "timeoutSeconds",
 10750        "in": "query"
 10751       },
 10752       {
 10753        "uniqueItems": true,
 10754        "type": "boolean",
 10755        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 10756        "name": "watch",
 10757        "in": "query"
 10758       }
 10759      ]
 10760     },
 10761     "/api/v1/services": {
 10762      "get": {
 10763       "description": "list or watch objects of kind Service",
 10764       "consumes": [
 10765        "*/*"
 10766       ],
 10767       "produces": [
 10768        "application/json",
 10769        "application/yaml",
 10770        "application/vnd.kubernetes.protobuf",
 10771        "application/json;stream=watch",
 10772        "application/vnd.kubernetes.protobuf;stream=watch"
 10773       ],
 10774       "schemes": [
 10775        "https"
 10776       ],
 10777       "tags": [
 10778        "core_v1"
 10779       ],
 10780       "operationId": "listCoreV1ServiceForAllNamespaces",
 10781       "responses": {
 10782        "200": {
 10783         "description": "OK",
 10784         "schema": {
 10785          "$ref": "#/definitions/v1.ServiceList"
 10786         }
 10787        },
 10788        "401": {
 10789         "description": "Unauthorized"
 10790        }
 10791       }
 10792      },
 10793      "parameters": [
 10794       {
 10795        "uniqueItems": true,
 10796        "type": "string",
 10797        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 10798        "name": "fieldSelector",
 10799        "in": "query"
 10800       },
 10801       {
 10802        "uniqueItems": true,
 10803        "type": "string",
 10804        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 10805        "name": "labelSelector",
 10806        "in": "query"
 10807       },
 10808       {
 10809        "uniqueItems": true,
 10810        "type": "string",
 10811        "description": "If 'true', then the output is pretty printed.",
 10812        "name": "pretty",
 10813        "in": "query"
 10814       },
 10815       {
 10816        "uniqueItems": true,
 10817        "type": "string",
 10818        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 10819        "name": "resourceVersion",
 10820        "in": "query"
 10821       },
 10822       {
 10823        "uniqueItems": true,
 10824        "type": "integer",
 10825        "description": "Timeout for the list/watch call.",
 10826        "name": "timeoutSeconds",
 10827        "in": "query"
 10828       },
 10829       {
 10830        "uniqueItems": true,
 10831        "type": "boolean",
 10832        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 10833        "name": "watch",
 10834        "in": "query"
 10835       }
 10836      ]
 10837     },
 10838     "/api/v1/watch/configmaps": {
 10839      "get": {
 10840       "description": "watch individual changes to a list of ConfigMap",
 10841       "consumes": [
 10842        "*/*"
 10843       ],
 10844       "produces": [
 10845        "application/json",
 10846        "application/yaml",
 10847        "application/vnd.kubernetes.protobuf",
 10848        "application/json;stream=watch",
 10849        "application/vnd.kubernetes.protobuf;stream=watch"
 10850       ],
 10851       "schemes": [
 10852        "https"
 10853       ],
 10854       "tags": [
 10855        "core_v1"
 10856       ],
 10857       "operationId": "watchCoreV1ConfigMapListForAllNamespaces",
 10858       "responses": {
 10859        "200": {
 10860         "description": "OK",
 10861         "schema": {
 10862          "$ref": "#/definitions/versioned.Event"
 10863         }
 10864        },
 10865        "401": {
 10866         "description": "Unauthorized"
 10867        }
 10868       }
 10869      },
 10870      "parameters": [
 10871       {
 10872        "uniqueItems": true,
 10873        "type": "string",
 10874        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 10875        "name": "fieldSelector",
 10876        "in": "query"
 10877       },
 10878       {
 10879        "uniqueItems": true,
 10880        "type": "string",
 10881        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 10882        "name": "labelSelector",
 10883        "in": "query"
 10884       },
 10885       {
 10886        "uniqueItems": true,
 10887        "type": "string",
 10888        "description": "If 'true', then the output is pretty printed.",
 10889        "name": "pretty",
 10890        "in": "query"
 10891       },
 10892       {
 10893        "uniqueItems": true,
 10894        "type": "string",
 10895        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 10896        "name": "resourceVersion",
 10897        "in": "query"
 10898       },
 10899       {
 10900        "uniqueItems": true,
 10901        "type": "integer",
 10902        "description": "Timeout for the list/watch call.",
 10903        "name": "timeoutSeconds",
 10904        "in": "query"
 10905       },
 10906       {
 10907        "uniqueItems": true,
 10908        "type": "boolean",
 10909        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 10910        "name": "watch",
 10911        "in": "query"
 10912       }
 10913      ]
 10914     },
 10915     "/api/v1/watch/endpoints": {
 10916      "get": {
 10917       "description": "watch individual changes to a list of Endpoints",
 10918       "consumes": [
 10919        "*/*"
 10920       ],
 10921       "produces": [
 10922        "application/json",
 10923        "application/yaml",
 10924        "application/vnd.kubernetes.protobuf",
 10925        "application/json;stream=watch",
 10926        "application/vnd.kubernetes.protobuf;stream=watch"
 10927       ],
 10928       "schemes": [
 10929        "https"
 10930       ],
 10931       "tags": [
 10932        "core_v1"
 10933       ],
 10934       "operationId": "watchCoreV1EndpointsListForAllNamespaces",
 10935       "responses": {
 10936        "200": {
 10937         "description": "OK",
 10938         "schema": {
 10939          "$ref": "#/definitions/versioned.Event"
 10940         }
 10941        },
 10942        "401": {
 10943         "description": "Unauthorized"
 10944        }
 10945       }
 10946      },
 10947      "parameters": [
 10948       {
 10949        "uniqueItems": true,
 10950        "type": "string",
 10951        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 10952        "name": "fieldSelector",
 10953        "in": "query"
 10954       },
 10955       {
 10956        "uniqueItems": true,
 10957        "type": "string",
 10958        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 10959        "name": "labelSelector",
 10960        "in": "query"
 10961       },
 10962       {
 10963        "uniqueItems": true,
 10964        "type": "string",
 10965        "description": "If 'true', then the output is pretty printed.",
 10966        "name": "pretty",
 10967        "in": "query"
 10968       },
 10969       {
 10970        "uniqueItems": true,
 10971        "type": "string",
 10972        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 10973        "name": "resourceVersion",
 10974        "in": "query"
 10975       },
 10976       {
 10977        "uniqueItems": true,
 10978        "type": "integer",
 10979        "description": "Timeout for the list/watch call.",
 10980        "name": "timeoutSeconds",
 10981        "in": "query"
 10982       },
 10983       {
 10984        "uniqueItems": true,
 10985        "type": "boolean",
 10986        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 10987        "name": "watch",
 10988        "in": "query"
 10989       }
 10990      ]
 10991     },
 10992     "/api/v1/watch/events": {
 10993      "get": {
 10994       "description": "watch individual changes to a list of Event",
 10995       "consumes": [
 10996        "*/*"
 10997       ],
 10998       "produces": [
 10999        "application/json",
 11000        "application/yaml",
 11001        "application/vnd.kubernetes.protobuf",
 11002        "application/json;stream=watch",
 11003        "application/vnd.kubernetes.protobuf;stream=watch"
 11004       ],
 11005       "schemes": [
 11006        "https"
 11007       ],
 11008       "tags": [
 11009        "core_v1"
 11010       ],
 11011       "operationId": "watchCoreV1EventListForAllNamespaces",
 11012       "responses": {
 11013        "200": {
 11014         "description": "OK",
 11015         "schema": {
 11016          "$ref": "#/definitions/versioned.Event"
 11017         }
 11018        },
 11019        "401": {
 11020         "description": "Unauthorized"
 11021        }
 11022       }
 11023      },
 11024      "parameters": [
 11025       {
 11026        "uniqueItems": true,
 11027        "type": "string",
 11028        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 11029        "name": "fieldSelector",
 11030        "in": "query"
 11031       },
 11032       {
 11033        "uniqueItems": true,
 11034        "type": "string",
 11035        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 11036        "name": "labelSelector",
 11037        "in": "query"
 11038       },
 11039       {
 11040        "uniqueItems": true,
 11041        "type": "string",
 11042        "description": "If 'true', then the output is pretty printed.",
 11043        "name": "pretty",
 11044        "in": "query"
 11045       },
 11046       {
 11047        "uniqueItems": true,
 11048        "type": "string",
 11049        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 11050        "name": "resourceVersion",
 11051        "in": "query"
 11052       },
 11053       {
 11054        "uniqueItems": true,
 11055        "type": "integer",
 11056        "description": "Timeout for the list/watch call.",
 11057        "name": "timeoutSeconds",
 11058        "in": "query"
 11059       },
 11060       {
 11061        "uniqueItems": true,
 11062        "type": "boolean",
 11063        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 11064        "name": "watch",
 11065        "in": "query"
 11066       }
 11067      ]
 11068     },
 11069     "/api/v1/watch/limitranges": {
 11070      "get": {
 11071       "description": "watch individual changes to a list of LimitRange",
 11072       "consumes": [
 11073        "*/*"
 11074       ],
 11075       "produces": [
 11076        "application/json",
 11077        "application/yaml",
 11078        "application/vnd.kubernetes.protobuf",
 11079        "application/json;stream=watch",
 11080        "application/vnd.kubernetes.protobuf;stream=watch"
 11081       ],
 11082       "schemes": [
 11083        "https"
 11084       ],
 11085       "tags": [
 11086        "core_v1"
 11087       ],
 11088       "operationId": "watchCoreV1LimitRangeListForAllNamespaces",
 11089       "responses": {
 11090        "200": {
 11091         "description": "OK",
 11092         "schema": {
 11093          "$ref": "#/definitions/versioned.Event"
 11094         }
 11095        },
 11096        "401": {
 11097         "description": "Unauthorized"
 11098        }
 11099       }
 11100      },
 11101      "parameters": [
 11102       {
 11103        "uniqueItems": true,
 11104        "type": "string",
 11105        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 11106        "name": "fieldSelector",
 11107        "in": "query"
 11108       },
 11109       {
 11110        "uniqueItems": true,
 11111        "type": "string",
 11112        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 11113        "name": "labelSelector",
 11114        "in": "query"
 11115       },
 11116       {
 11117        "uniqueItems": true,
 11118        "type": "string",
 11119        "description": "If 'true', then the output is pretty printed.",
 11120        "name": "pretty",
 11121        "in": "query"
 11122       },
 11123       {
 11124        "uniqueItems": true,
 11125        "type": "string",
 11126        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 11127        "name": "resourceVersion",
 11128        "in": "query"
 11129       },
 11130       {
 11131        "uniqueItems": true,
 11132        "type": "integer",
 11133        "description": "Timeout for the list/watch call.",
 11134        "name": "timeoutSeconds",
 11135        "in": "query"
 11136       },
 11137       {
 11138        "uniqueItems": true,
 11139        "type": "boolean",
 11140        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 11141        "name": "watch",
 11142        "in": "query"
 11143       }
 11144      ]
 11145     },
 11146     "/api/v1/watch/namespaces": {
 11147      "get": {
 11148       "description": "watch individual changes to a list of Namespace",
 11149       "consumes": [
 11150        "*/*"
 11151       ],
 11152       "produces": [
 11153        "application/json",
 11154        "application/yaml",
 11155        "application/vnd.kubernetes.protobuf",
 11156        "application/json;stream=watch",
 11157        "application/vnd.kubernetes.protobuf;stream=watch"
 11158       ],
 11159       "schemes": [
 11160        "https"
 11161       ],
 11162       "tags": [
 11163        "core_v1"
 11164       ],
 11165       "operationId": "watchCoreV1NamespaceList",
 11166       "responses": {
 11167        "200": {
 11168         "description": "OK",
 11169         "schema": {
 11170          "$ref": "#/definitions/versioned.Event"
 11171         }
 11172        },
 11173        "401": {
 11174         "description": "Unauthorized"
 11175        }
 11176       }
 11177      },
 11178      "parameters": [
 11179       {
 11180        "uniqueItems": true,
 11181        "type": "string",
 11182        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 11183        "name": "fieldSelector",
 11184        "in": "query"
 11185       },
 11186       {
 11187        "uniqueItems": true,
 11188        "type": "string",
 11189        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 11190        "name": "labelSelector",
 11191        "in": "query"
 11192       },
 11193       {
 11194        "uniqueItems": true,
 11195        "type": "string",
 11196        "description": "If 'true', then the output is pretty printed.",
 11197        "name": "pretty",
 11198        "in": "query"
 11199       },
 11200       {
 11201        "uniqueItems": true,
 11202        "type": "string",
 11203        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 11204        "name": "resourceVersion",
 11205        "in": "query"
 11206       },
 11207       {
 11208        "uniqueItems": true,
 11209        "type": "integer",
 11210        "description": "Timeout for the list/watch call.",
 11211        "name": "timeoutSeconds",
 11212        "in": "query"
 11213       },
 11214       {
 11215        "uniqueItems": true,
 11216        "type": "boolean",
 11217        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 11218        "name": "watch",
 11219        "in": "query"
 11220       }
 11221      ]
 11222     },
 11223     "/api/v1/watch/namespaces/{namespace}/configmaps": {
 11224      "get": {
 11225       "description": "watch individual changes to a list of ConfigMap",
 11226       "consumes": [
 11227        "*/*"
 11228       ],
 11229       "produces": [
 11230        "application/json",
 11231        "application/yaml",
 11232        "application/vnd.kubernetes.protobuf",
 11233        "application/json;stream=watch",
 11234        "application/vnd.kubernetes.protobuf;stream=watch"
 11235       ],
 11236       "schemes": [
 11237        "https"
 11238       ],
 11239       "tags": [
 11240        "core_v1"
 11241       ],
 11242       "operationId": "watchCoreV1NamespacedConfigMapList",
 11243       "responses": {
 11244        "200": {
 11245         "description": "OK",
 11246         "schema": {
 11247          "$ref": "#/definitions/versioned.Event"
 11248         }
 11249        },
 11250        "401": {
 11251         "description": "Unauthorized"
 11252        }
 11253       }
 11254      },
 11255      "parameters": [
 11256       {
 11257        "uniqueItems": true,
 11258        "type": "string",
 11259        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 11260        "name": "fieldSelector",
 11261        "in": "query"
 11262       },
 11263       {
 11264        "uniqueItems": true,
 11265        "type": "string",
 11266        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 11267        "name": "labelSelector",
 11268        "in": "query"
 11269       },
 11270       {
 11271        "uniqueItems": true,
 11272        "type": "string",
 11273        "description": "object name and auth scope, such as for teams and projects",
 11274        "name": "namespace",
 11275        "in": "path",
 11276        "required": true
 11277       },
 11278       {
 11279        "uniqueItems": true,
 11280        "type": "string",
 11281        "description": "If 'true', then the output is pretty printed.",
 11282        "name": "pretty",
 11283        "in": "query"
 11284       },
 11285       {
 11286        "uniqueItems": true,
 11287        "type": "string",
 11288        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 11289        "name": "resourceVersion",
 11290        "in": "query"
 11291       },
 11292       {
 11293        "uniqueItems": true,
 11294        "type": "integer",
 11295        "description": "Timeout for the list/watch call.",
 11296        "name": "timeoutSeconds",
 11297        "in": "query"
 11298       },
 11299       {
 11300        "uniqueItems": true,
 11301        "type": "boolean",
 11302        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 11303        "name": "watch",
 11304        "in": "query"
 11305       }
 11306      ]
 11307     },
 11308     "/api/v1/watch/namespaces/{namespace}/configmaps/{name}": {
 11309      "get": {
 11310       "description": "watch changes to an object of kind ConfigMap",
 11311       "consumes": [
 11312        "*/*"
 11313       ],
 11314       "produces": [
 11315        "application/json",
 11316        "application/yaml",
 11317        "application/vnd.kubernetes.protobuf",
 11318        "application/json;stream=watch",
 11319        "application/vnd.kubernetes.protobuf;stream=watch"
 11320       ],
 11321       "schemes": [
 11322        "https"
 11323       ],
 11324       "tags": [
 11325        "core_v1"
 11326       ],
 11327       "operationId": "watchCoreV1NamespacedConfigMap",
 11328       "responses": {
 11329        "200": {
 11330         "description": "OK",
 11331         "schema": {
 11332          "$ref": "#/definitions/versioned.Event"
 11333         }
 11334        },
 11335        "401": {
 11336         "description": "Unauthorized"
 11337        }
 11338       }
 11339      },
 11340      "parameters": [
 11341       {
 11342        "uniqueItems": true,
 11343        "type": "string",
 11344        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 11345        "name": "fieldSelector",
 11346        "in": "query"
 11347       },
 11348       {
 11349        "uniqueItems": true,
 11350        "type": "string",
 11351        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 11352        "name": "labelSelector",
 11353        "in": "query"
 11354       },
 11355       {
 11356        "uniqueItems": true,
 11357        "type": "string",
 11358        "description": "name of the ConfigMap",
 11359        "name": "name",
 11360        "in": "path",
 11361        "required": true
 11362       },
 11363       {
 11364        "uniqueItems": true,
 11365        "type": "string",
 11366        "description": "object name and auth scope, such as for teams and projects",
 11367        "name": "namespace",
 11368        "in": "path",
 11369        "required": true
 11370       },
 11371       {
 11372        "uniqueItems": true,
 11373        "type": "string",
 11374        "description": "If 'true', then the output is pretty printed.",
 11375        "name": "pretty",
 11376        "in": "query"
 11377       },
 11378       {
 11379        "uniqueItems": true,
 11380        "type": "string",
 11381        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 11382        "name": "resourceVersion",
 11383        "in": "query"
 11384       },
 11385       {
 11386        "uniqueItems": true,
 11387        "type": "integer",
 11388        "description": "Timeout for the list/watch call.",
 11389        "name": "timeoutSeconds",
 11390        "in": "query"
 11391       },
 11392       {
 11393        "uniqueItems": true,
 11394        "type": "boolean",
 11395        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 11396        "name": "watch",
 11397        "in": "query"
 11398       }
 11399      ]
 11400     },
 11401     "/api/v1/watch/namespaces/{namespace}/endpoints": {
 11402      "get": {
 11403       "description": "watch individual changes to a list of Endpoints",
 11404       "consumes": [
 11405        "*/*"
 11406       ],
 11407       "produces": [
 11408        "application/json",
 11409        "application/yaml",
 11410        "application/vnd.kubernetes.protobuf",
 11411        "application/json;stream=watch",
 11412        "application/vnd.kubernetes.protobuf;stream=watch"
 11413       ],
 11414       "schemes": [
 11415        "https"
 11416       ],
 11417       "tags": [
 11418        "core_v1"
 11419       ],
 11420       "operationId": "watchCoreV1NamespacedEndpointsList",
 11421       "responses": {
 11422        "200": {
 11423         "description": "OK",
 11424         "schema": {
 11425          "$ref": "#/definitions/versioned.Event"
 11426         }
 11427        },
 11428        "401": {
 11429         "description": "Unauthorized"
 11430        }
 11431       }
 11432      },
 11433      "parameters": [
 11434       {
 11435        "uniqueItems": true,
 11436        "type": "string",
 11437        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 11438        "name": "fieldSelector",
 11439        "in": "query"
 11440       },
 11441       {
 11442        "uniqueItems": true,
 11443        "type": "string",
 11444        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 11445        "name": "labelSelector",
 11446        "in": "query"
 11447       },
 11448       {
 11449        "uniqueItems": true,
 11450        "type": "string",
 11451        "description": "object name and auth scope, such as for teams and projects",
 11452        "name": "namespace",
 11453        "in": "path",
 11454        "required": true
 11455       },
 11456       {
 11457        "uniqueItems": true,
 11458        "type": "string",
 11459        "description": "If 'true', then the output is pretty printed.",
 11460        "name": "pretty",
 11461        "in": "query"
 11462       },
 11463       {
 11464        "uniqueItems": true,
 11465        "type": "string",
 11466        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 11467        "name": "resourceVersion",
 11468        "in": "query"
 11469       },
 11470       {
 11471        "uniqueItems": true,
 11472        "type": "integer",
 11473        "description": "Timeout for the list/watch call.",
 11474        "name": "timeoutSeconds",
 11475        "in": "query"
 11476       },
 11477       {
 11478        "uniqueItems": true,
 11479        "type": "boolean",
 11480        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 11481        "name": "watch",
 11482        "in": "query"
 11483       }
 11484      ]
 11485     },
 11486     "/api/v1/watch/namespaces/{namespace}/endpoints/{name}": {
 11487      "get": {
 11488       "description": "watch changes to an object of kind Endpoints",
 11489       "consumes": [
 11490        "*/*"
 11491       ],
 11492       "produces": [
 11493        "application/json",
 11494        "application/yaml",
 11495        "application/vnd.kubernetes.protobuf",
 11496        "application/json;stream=watch",
 11497        "application/vnd.kubernetes.protobuf;stream=watch"
 11498       ],
 11499       "schemes": [
 11500        "https"
 11501       ],
 11502       "tags": [
 11503        "core_v1"
 11504       ],
 11505       "operationId": "watchCoreV1NamespacedEndpoints",
 11506       "responses": {
 11507        "200": {
 11508         "description": "OK",
 11509         "schema": {
 11510          "$ref": "#/definitions/versioned.Event"
 11511         }
 11512        },
 11513        "401": {
 11514         "description": "Unauthorized"
 11515        }
 11516       }
 11517      },
 11518      "parameters": [
 11519       {
 11520        "uniqueItems": true,
 11521        "type": "string",
 11522        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 11523        "name": "fieldSelector",
 11524        "in": "query"
 11525       },
 11526       {
 11527        "uniqueItems": true,
 11528        "type": "string",
 11529        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 11530        "name": "labelSelector",
 11531        "in": "query"
 11532       },
 11533       {
 11534        "uniqueItems": true,
 11535        "type": "string",
 11536        "description": "name of the Endpoints",
 11537        "name": "name",
 11538        "in": "path",
 11539        "required": true
 11540       },
 11541       {
 11542        "uniqueItems": true,
 11543        "type": "string",
 11544        "description": "object name and auth scope, such as for teams and projects",
 11545        "name": "namespace",
 11546        "in": "path",
 11547        "required": true
 11548       },
 11549       {
 11550        "uniqueItems": true,
 11551        "type": "string",
 11552        "description": "If 'true', then the output is pretty printed.",
 11553        "name": "pretty",
 11554        "in": "query"
 11555       },
 11556       {
 11557        "uniqueItems": true,
 11558        "type": "string",
 11559        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 11560        "name": "resourceVersion",
 11561        "in": "query"
 11562       },
 11563       {
 11564        "uniqueItems": true,
 11565        "type": "integer",
 11566        "description": "Timeout for the list/watch call.",
 11567        "name": "timeoutSeconds",
 11568        "in": "query"
 11569       },
 11570       {
 11571        "uniqueItems": true,
 11572        "type": "boolean",
 11573        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 11574        "name": "watch",
 11575        "in": "query"
 11576       }
 11577      ]
 11578     },
 11579     "/api/v1/watch/namespaces/{namespace}/events": {
 11580      "get": {
 11581       "description": "watch individual changes to a list of Event",
 11582       "consumes": [
 11583        "*/*"
 11584       ],
 11585       "produces": [
 11586        "application/json",
 11587        "application/yaml",
 11588        "application/vnd.kubernetes.protobuf",
 11589        "application/json;stream=watch",
 11590        "application/vnd.kubernetes.protobuf;stream=watch"
 11591       ],
 11592       "schemes": [
 11593        "https"
 11594       ],
 11595       "tags": [
 11596        "core_v1"
 11597       ],
 11598       "operationId": "watchCoreV1NamespacedEventList",
 11599       "responses": {
 11600        "200": {
 11601         "description": "OK",
 11602         "schema": {
 11603          "$ref": "#/definitions/versioned.Event"
 11604         }
 11605        },
 11606        "401": {
 11607         "description": "Unauthorized"
 11608        }
 11609       }
 11610      },
 11611      "parameters": [
 11612       {
 11613        "uniqueItems": true,
 11614        "type": "string",
 11615        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 11616        "name": "fieldSelector",
 11617        "in": "query"
 11618       },
 11619       {
 11620        "uniqueItems": true,
 11621        "type": "string",
 11622        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 11623        "name": "labelSelector",
 11624        "in": "query"
 11625       },
 11626       {
 11627        "uniqueItems": true,
 11628        "type": "string",
 11629        "description": "object name and auth scope, such as for teams and projects",
 11630        "name": "namespace",
 11631        "in": "path",
 11632        "required": true
 11633       },
 11634       {
 11635        "uniqueItems": true,
 11636        "type": "string",
 11637        "description": "If 'true', then the output is pretty printed.",
 11638        "name": "pretty",
 11639        "in": "query"
 11640       },
 11641       {
 11642        "uniqueItems": true,
 11643        "type": "string",
 11644        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 11645        "name": "resourceVersion",
 11646        "in": "query"
 11647       },
 11648       {
 11649        "uniqueItems": true,
 11650        "type": "integer",
 11651        "description": "Timeout for the list/watch call.",
 11652        "name": "timeoutSeconds",
 11653        "in": "query"
 11654       },
 11655       {
 11656        "uniqueItems": true,
 11657        "type": "boolean",
 11658        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 11659        "name": "watch",
 11660        "in": "query"
 11661       }
 11662      ]
 11663     },
 11664     "/api/v1/watch/namespaces/{namespace}/events/{name}": {
 11665      "get": {
 11666       "description": "watch changes to an object of kind Event",
 11667       "consumes": [
 11668        "*/*"
 11669       ],
 11670       "produces": [
 11671        "application/json",
 11672        "application/yaml",
 11673        "application/vnd.kubernetes.protobuf",
 11674        "application/json;stream=watch",
 11675        "application/vnd.kubernetes.protobuf;stream=watch"
 11676       ],
 11677       "schemes": [
 11678        "https"
 11679       ],
 11680       "tags": [
 11681        "core_v1"
 11682       ],
 11683       "operationId": "watchCoreV1NamespacedEvent",
 11684       "responses": {
 11685        "200": {
 11686         "description": "OK",
 11687         "schema": {
 11688          "$ref": "#/definitions/versioned.Event"
 11689         }
 11690        },
 11691        "401": {
 11692         "description": "Unauthorized"
 11693        }
 11694       }
 11695      },
 11696      "parameters": [
 11697       {
 11698        "uniqueItems": true,
 11699        "type": "string",
 11700        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 11701        "name": "fieldSelector",
 11702        "in": "query"
 11703       },
 11704       {
 11705        "uniqueItems": true,
 11706        "type": "string",
 11707        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 11708        "name": "labelSelector",
 11709        "in": "query"
 11710       },
 11711       {
 11712        "uniqueItems": true,
 11713        "type": "string",
 11714        "description": "name of the Event",
 11715        "name": "name",
 11716        "in": "path",
 11717        "required": true
 11718       },
 11719       {
 11720        "uniqueItems": true,
 11721        "type": "string",
 11722        "description": "object name and auth scope, such as for teams and projects",
 11723        "name": "namespace",
 11724        "in": "path",
 11725        "required": true
 11726       },
 11727       {
 11728        "uniqueItems": true,
 11729        "type": "string",
 11730        "description": "If 'true', then the output is pretty printed.",
 11731        "name": "pretty",
 11732        "in": "query"
 11733       },
 11734       {
 11735        "uniqueItems": true,
 11736        "type": "string",
 11737        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 11738        "name": "resourceVersion",
 11739        "in": "query"
 11740       },
 11741       {
 11742        "uniqueItems": true,
 11743        "type": "integer",
 11744        "description": "Timeout for the list/watch call.",
 11745        "name": "timeoutSeconds",
 11746        "in": "query"
 11747       },
 11748       {
 11749        "uniqueItems": true,
 11750        "type": "boolean",
 11751        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 11752        "name": "watch",
 11753        "in": "query"
 11754       }
 11755      ]
 11756     },
 11757     "/api/v1/watch/namespaces/{namespace}/limitranges": {
 11758      "get": {
 11759       "description": "watch individual changes to a list of LimitRange",
 11760       "consumes": [
 11761        "*/*"
 11762       ],
 11763       "produces": [
 11764        "application/json",
 11765        "application/yaml",
 11766        "application/vnd.kubernetes.protobuf",
 11767        "application/json;stream=watch",
 11768        "application/vnd.kubernetes.protobuf;stream=watch"
 11769       ],
 11770       "schemes": [
 11771        "https"
 11772       ],
 11773       "tags": [
 11774        "core_v1"
 11775       ],
 11776       "operationId": "watchCoreV1NamespacedLimitRangeList",
 11777       "responses": {
 11778        "200": {
 11779         "description": "OK",
 11780         "schema": {
 11781          "$ref": "#/definitions/versioned.Event"
 11782         }
 11783        },
 11784        "401": {
 11785         "description": "Unauthorized"
 11786        }
 11787       }
 11788      },
 11789      "parameters": [
 11790       {
 11791        "uniqueItems": true,
 11792        "type": "string",
 11793        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 11794        "name": "fieldSelector",
 11795        "in": "query"
 11796       },
 11797       {
 11798        "uniqueItems": true,
 11799        "type": "string",
 11800        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 11801        "name": "labelSelector",
 11802        "in": "query"
 11803       },
 11804       {
 11805        "uniqueItems": true,
 11806        "type": "string",
 11807        "description": "object name and auth scope, such as for teams and projects",
 11808        "name": "namespace",
 11809        "in": "path",
 11810        "required": true
 11811       },
 11812       {
 11813        "uniqueItems": true,
 11814        "type": "string",
 11815        "description": "If 'true', then the output is pretty printed.",
 11816        "name": "pretty",
 11817        "in": "query"
 11818       },
 11819       {
 11820        "uniqueItems": true,
 11821        "type": "string",
 11822        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 11823        "name": "resourceVersion",
 11824        "in": "query"
 11825       },
 11826       {
 11827        "uniqueItems": true,
 11828        "type": "integer",
 11829        "description": "Timeout for the list/watch call.",
 11830        "name": "timeoutSeconds",
 11831        "in": "query"
 11832       },
 11833       {
 11834        "uniqueItems": true,
 11835        "type": "boolean",
 11836        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 11837        "name": "watch",
 11838        "in": "query"
 11839       }
 11840      ]
 11841     },
 11842     "/api/v1/watch/namespaces/{namespace}/limitranges/{name}": {
 11843      "get": {
 11844       "description": "watch changes to an object of kind LimitRange",
 11845       "consumes": [
 11846        "*/*"
 11847       ],
 11848       "produces": [
 11849        "application/json",
 11850        "application/yaml",
 11851        "application/vnd.kubernetes.protobuf",
 11852        "application/json;stream=watch",
 11853        "application/vnd.kubernetes.protobuf;stream=watch"
 11854       ],
 11855       "schemes": [
 11856        "https"
 11857       ],
 11858       "tags": [
 11859        "core_v1"
 11860       ],
 11861       "operationId": "watchCoreV1NamespacedLimitRange",
 11862       "responses": {
 11863        "200": {
 11864         "description": "OK",
 11865         "schema": {
 11866          "$ref": "#/definitions/versioned.Event"
 11867         }
 11868        },
 11869        "401": {
 11870         "description": "Unauthorized"
 11871        }
 11872       }
 11873      },
 11874      "parameters": [
 11875       {
 11876        "uniqueItems": true,
 11877        "type": "string",
 11878        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 11879        "name": "fieldSelector",
 11880        "in": "query"
 11881       },
 11882       {
 11883        "uniqueItems": true,
 11884        "type": "string",
 11885        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 11886        "name": "labelSelector",
 11887        "in": "query"
 11888       },
 11889       {
 11890        "uniqueItems": true,
 11891        "type": "string",
 11892        "description": "name of the LimitRange",
 11893        "name": "name",
 11894        "in": "path",
 11895        "required": true
 11896       },
 11897       {
 11898        "uniqueItems": true,
 11899        "type": "string",
 11900        "description": "object name and auth scope, such as for teams and projects",
 11901        "name": "namespace",
 11902        "in": "path",
 11903        "required": true
 11904       },
 11905       {
 11906        "uniqueItems": true,
 11907        "type": "string",
 11908        "description": "If 'true', then the output is pretty printed.",
 11909        "name": "pretty",
 11910        "in": "query"
 11911       },
 11912       {
 11913        "uniqueItems": true,
 11914        "type": "string",
 11915        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 11916        "name": "resourceVersion",
 11917        "in": "query"
 11918       },
 11919       {
 11920        "uniqueItems": true,
 11921        "type": "integer",
 11922        "description": "Timeout for the list/watch call.",
 11923        "name": "timeoutSeconds",
 11924        "in": "query"
 11925       },
 11926       {
 11927        "uniqueItems": true,
 11928        "type": "boolean",
 11929        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 11930        "name": "watch",
 11931        "in": "query"
 11932       }
 11933      ]
 11934     },
 11935     "/api/v1/watch/namespaces/{namespace}/persistentvolumeclaims": {
 11936      "get": {
 11937       "description": "watch individual changes to a list of PersistentVolumeClaim",
 11938       "consumes": [
 11939        "*/*"
 11940       ],
 11941       "produces": [
 11942        "application/json",
 11943        "application/yaml",
 11944        "application/vnd.kubernetes.protobuf",
 11945        "application/json;stream=watch",
 11946        "application/vnd.kubernetes.protobuf;stream=watch"
 11947       ],
 11948       "schemes": [
 11949        "https"
 11950       ],
 11951       "tags": [
 11952        "core_v1"
 11953       ],
 11954       "operationId": "watchCoreV1NamespacedPersistentVolumeClaimList",
 11955       "responses": {
 11956        "200": {
 11957         "description": "OK",
 11958         "schema": {
 11959          "$ref": "#/definitions/versioned.Event"
 11960         }
 11961        },
 11962        "401": {
 11963         "description": "Unauthorized"
 11964        }
 11965       }
 11966      },
 11967      "parameters": [
 11968       {
 11969        "uniqueItems": true,
 11970        "type": "string",
 11971        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 11972        "name": "fieldSelector",
 11973        "in": "query"
 11974       },
 11975       {
 11976        "uniqueItems": true,
 11977        "type": "string",
 11978        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 11979        "name": "labelSelector",
 11980        "in": "query"
 11981       },
 11982       {
 11983        "uniqueItems": true,
 11984        "type": "string",
 11985        "description": "object name and auth scope, such as for teams and projects",
 11986        "name": "namespace",
 11987        "in": "path",
 11988        "required": true
 11989       },
 11990       {
 11991        "uniqueItems": true,
 11992        "type": "string",
 11993        "description": "If 'true', then the output is pretty printed.",
 11994        "name": "pretty",
 11995        "in": "query"
 11996       },
 11997       {
 11998        "uniqueItems": true,
 11999        "type": "string",
 12000        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 12001        "name": "resourceVersion",
 12002        "in": "query"
 12003       },
 12004       {
 12005        "uniqueItems": true,
 12006        "type": "integer",
 12007        "description": "Timeout for the list/watch call.",
 12008        "name": "timeoutSeconds",
 12009        "in": "query"
 12010       },
 12011       {
 12012        "uniqueItems": true,
 12013        "type": "boolean",
 12014        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 12015        "name": "watch",
 12016        "in": "query"
 12017       }
 12018      ]
 12019     },
 12020     "/api/v1/watch/namespaces/{namespace}/persistentvolumeclaims/{name}": {
 12021      "get": {
 12022       "description": "watch changes to an object of kind PersistentVolumeClaim",
 12023       "consumes": [
 12024        "*/*"
 12025       ],
 12026       "produces": [
 12027        "application/json",
 12028        "application/yaml",
 12029        "application/vnd.kubernetes.protobuf",
 12030        "application/json;stream=watch",
 12031        "application/vnd.kubernetes.protobuf;stream=watch"
 12032       ],
 12033       "schemes": [
 12034        "https"
 12035       ],
 12036       "tags": [
 12037        "core_v1"
 12038       ],
 12039       "operationId": "watchCoreV1NamespacedPersistentVolumeClaim",
 12040       "responses": {
 12041        "200": {
 12042         "description": "OK",
 12043         "schema": {
 12044          "$ref": "#/definitions/versioned.Event"
 12045         }
 12046        },
 12047        "401": {
 12048         "description": "Unauthorized"
 12049        }
 12050       }
 12051      },
 12052      "parameters": [
 12053       {
 12054        "uniqueItems": true,
 12055        "type": "string",
 12056        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 12057        "name": "fieldSelector",
 12058        "in": "query"
 12059       },
 12060       {
 12061        "uniqueItems": true,
 12062        "type": "string",
 12063        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 12064        "name": "labelSelector",
 12065        "in": "query"
 12066       },
 12067       {
 12068        "uniqueItems": true,
 12069        "type": "string",
 12070        "description": "name of the PersistentVolumeClaim",
 12071        "name": "name",
 12072        "in": "path",
 12073        "required": true
 12074       },
 12075       {
 12076        "uniqueItems": true,
 12077        "type": "string",
 12078        "description": "object name and auth scope, such as for teams and projects",
 12079        "name": "namespace",
 12080        "in": "path",
 12081        "required": true
 12082       },
 12083       {
 12084        "uniqueItems": true,
 12085        "type": "string",
 12086        "description": "If 'true', then the output is pretty printed.",
 12087        "name": "pretty",
 12088        "in": "query"
 12089       },
 12090       {
 12091        "uniqueItems": true,
 12092        "type": "string",
 12093        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 12094        "name": "resourceVersion",
 12095        "in": "query"
 12096       },
 12097       {
 12098        "uniqueItems": true,
 12099        "type": "integer",
 12100        "description": "Timeout for the list/watch call.",
 12101        "name": "timeoutSeconds",
 12102        "in": "query"
 12103       },
 12104       {
 12105        "uniqueItems": true,
 12106        "type": "boolean",
 12107        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 12108        "name": "watch",
 12109        "in": "query"
 12110       }
 12111      ]
 12112     },
 12113     "/api/v1/watch/namespaces/{namespace}/pods": {
 12114      "get": {
 12115       "description": "watch individual changes to a list of Pod",
 12116       "consumes": [
 12117        "*/*"
 12118       ],
 12119       "produces": [
 12120        "application/json",
 12121        "application/yaml",
 12122        "application/vnd.kubernetes.protobuf",
 12123        "application/json;stream=watch",
 12124        "application/vnd.kubernetes.protobuf;stream=watch"
 12125       ],
 12126       "schemes": [
 12127        "https"
 12128       ],
 12129       "tags": [
 12130        "core_v1"
 12131       ],
 12132       "operationId": "watchCoreV1NamespacedPodList",
 12133       "responses": {
 12134        "200": {
 12135         "description": "OK",
 12136         "schema": {
 12137          "$ref": "#/definitions/versioned.Event"
 12138         }
 12139        },
 12140        "401": {
 12141         "description": "Unauthorized"
 12142        }
 12143       }
 12144      },
 12145      "parameters": [
 12146       {
 12147        "uniqueItems": true,
 12148        "type": "string",
 12149        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 12150        "name": "fieldSelector",
 12151        "in": "query"
 12152       },
 12153       {
 12154        "uniqueItems": true,
 12155        "type": "string",
 12156        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 12157        "name": "labelSelector",
 12158        "in": "query"
 12159       },
 12160       {
 12161        "uniqueItems": true,
 12162        "type": "string",
 12163        "description": "object name and auth scope, such as for teams and projects",
 12164        "name": "namespace",
 12165        "in": "path",
 12166        "required": true
 12167       },
 12168       {
 12169        "uniqueItems": true,
 12170        "type": "string",
 12171        "description": "If 'true', then the output is pretty printed.",
 12172        "name": "pretty",
 12173        "in": "query"
 12174       },
 12175       {
 12176        "uniqueItems": true,
 12177        "type": "string",
 12178        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 12179        "name": "resourceVersion",
 12180        "in": "query"
 12181       },
 12182       {
 12183        "uniqueItems": true,
 12184        "type": "integer",
 12185        "description": "Timeout for the list/watch call.",
 12186        "name": "timeoutSeconds",
 12187        "in": "query"
 12188       },
 12189       {
 12190        "uniqueItems": true,
 12191        "type": "boolean",
 12192        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 12193        "name": "watch",
 12194        "in": "query"
 12195       }
 12196      ]
 12197     },
 12198     "/api/v1/watch/namespaces/{namespace}/pods/{name}": {
 12199      "get": {
 12200       "description": "watch changes to an object of kind Pod",
 12201       "consumes": [
 12202        "*/*"
 12203       ],
 12204       "produces": [
 12205        "application/json",
 12206        "application/yaml",
 12207        "application/vnd.kubernetes.protobuf",
 12208        "application/json;stream=watch",
 12209        "application/vnd.kubernetes.protobuf;stream=watch"
 12210       ],
 12211       "schemes": [
 12212        "https"
 12213       ],
 12214       "tags": [
 12215        "core_v1"
 12216       ],
 12217       "operationId": "watchCoreV1NamespacedPod",
 12218       "responses": {
 12219        "200": {
 12220         "description": "OK",
 12221         "schema": {
 12222          "$ref": "#/definitions/versioned.Event"
 12223         }
 12224        },
 12225        "401": {
 12226         "description": "Unauthorized"
 12227        }
 12228       }
 12229      },
 12230      "parameters": [
 12231       {
 12232        "uniqueItems": true,
 12233        "type": "string",
 12234        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 12235        "name": "fieldSelector",
 12236        "in": "query"
 12237       },
 12238       {
 12239        "uniqueItems": true,
 12240        "type": "string",
 12241        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 12242        "name": "labelSelector",
 12243        "in": "query"
 12244       },
 12245       {
 12246        "uniqueItems": true,
 12247        "type": "string",
 12248        "description": "name of the Pod",
 12249        "name": "name",
 12250        "in": "path",
 12251        "required": true
 12252       },
 12253       {
 12254        "uniqueItems": true,
 12255        "type": "string",
 12256        "description": "object name and auth scope, such as for teams and projects",
 12257        "name": "namespace",
 12258        "in": "path",
 12259        "required": true
 12260       },
 12261       {
 12262        "uniqueItems": true,
 12263        "type": "string",
 12264        "description": "If 'true', then the output is pretty printed.",
 12265        "name": "pretty",
 12266        "in": "query"
 12267       },
 12268       {
 12269        "uniqueItems": true,
 12270        "type": "string",
 12271        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 12272        "name": "resourceVersion",
 12273        "in": "query"
 12274       },
 12275       {
 12276        "uniqueItems": true,
 12277        "type": "integer",
 12278        "description": "Timeout for the list/watch call.",
 12279        "name": "timeoutSeconds",
 12280        "in": "query"
 12281       },
 12282       {
 12283        "uniqueItems": true,
 12284        "type": "boolean",
 12285        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 12286        "name": "watch",
 12287        "in": "query"
 12288       }
 12289      ]
 12290     },
 12291     "/api/v1/watch/namespaces/{namespace}/podtemplates": {
 12292      "get": {
 12293       "description": "watch individual changes to a list of PodTemplate",
 12294       "consumes": [
 12295        "*/*"
 12296       ],
 12297       "produces": [
 12298        "application/json",
 12299        "application/yaml",
 12300        "application/vnd.kubernetes.protobuf",
 12301        "application/json;stream=watch",
 12302        "application/vnd.kubernetes.protobuf;stream=watch"
 12303       ],
 12304       "schemes": [
 12305        "https"
 12306       ],
 12307       "tags": [
 12308        "core_v1"
 12309       ],
 12310       "operationId": "watchCoreV1NamespacedPodTemplateList",
 12311       "responses": {
 12312        "200": {
 12313         "description": "OK",
 12314         "schema": {
 12315          "$ref": "#/definitions/versioned.Event"
 12316         }
 12317        },
 12318        "401": {
 12319         "description": "Unauthorized"
 12320        }
 12321       }
 12322      },
 12323      "parameters": [
 12324       {
 12325        "uniqueItems": true,
 12326        "type": "string",
 12327        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 12328        "name": "fieldSelector",
 12329        "in": "query"
 12330       },
 12331       {
 12332        "uniqueItems": true,
 12333        "type": "string",
 12334        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 12335        "name": "labelSelector",
 12336        "in": "query"
 12337       },
 12338       {
 12339        "uniqueItems": true,
 12340        "type": "string",
 12341        "description": "object name and auth scope, such as for teams and projects",
 12342        "name": "namespace",
 12343        "in": "path",
 12344        "required": true
 12345       },
 12346       {
 12347        "uniqueItems": true,
 12348        "type": "string",
 12349        "description": "If 'true', then the output is pretty printed.",
 12350        "name": "pretty",
 12351        "in": "query"
 12352       },
 12353       {
 12354        "uniqueItems": true,
 12355        "type": "string",
 12356        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 12357        "name": "resourceVersion",
 12358        "in": "query"
 12359       },
 12360       {
 12361        "uniqueItems": true,
 12362        "type": "integer",
 12363        "description": "Timeout for the list/watch call.",
 12364        "name": "timeoutSeconds",
 12365        "in": "query"
 12366       },
 12367       {
 12368        "uniqueItems": true,
 12369        "type": "boolean",
 12370        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 12371        "name": "watch",
 12372        "in": "query"
 12373       }
 12374      ]
 12375     },
 12376     "/api/v1/watch/namespaces/{namespace}/podtemplates/{name}": {
 12377      "get": {
 12378       "description": "watch changes to an object of kind PodTemplate",
 12379       "consumes": [
 12380        "*/*"
 12381       ],
 12382       "produces": [
 12383        "application/json",
 12384        "application/yaml",
 12385        "application/vnd.kubernetes.protobuf",
 12386        "application/json;stream=watch",
 12387        "application/vnd.kubernetes.protobuf;stream=watch"
 12388       ],
 12389       "schemes": [
 12390        "https"
 12391       ],
 12392       "tags": [
 12393        "core_v1"
 12394       ],
 12395       "operationId": "watchCoreV1NamespacedPodTemplate",
 12396       "responses": {
 12397        "200": {
 12398         "description": "OK",
 12399         "schema": {
 12400          "$ref": "#/definitions/versioned.Event"
 12401         }
 12402        },
 12403        "401": {
 12404         "description": "Unauthorized"
 12405        }
 12406       }
 12407      },
 12408      "parameters": [
 12409       {
 12410        "uniqueItems": true,
 12411        "type": "string",
 12412        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 12413        "name": "fieldSelector",
 12414        "in": "query"
 12415       },
 12416       {
 12417        "uniqueItems": true,
 12418        "type": "string",
 12419        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 12420        "name": "labelSelector",
 12421        "in": "query"
 12422       },
 12423       {
 12424        "uniqueItems": true,
 12425        "type": "string",
 12426        "description": "name of the PodTemplate",
 12427        "name": "name",
 12428        "in": "path",
 12429        "required": true
 12430       },
 12431       {
 12432        "uniqueItems": true,
 12433        "type": "string",
 12434        "description": "object name and auth scope, such as for teams and projects",
 12435        "name": "namespace",
 12436        "in": "path",
 12437        "required": true
 12438       },
 12439       {
 12440        "uniqueItems": true,
 12441        "type": "string",
 12442        "description": "If 'true', then the output is pretty printed.",
 12443        "name": "pretty",
 12444        "in": "query"
 12445       },
 12446       {
 12447        "uniqueItems": true,
 12448        "type": "string",
 12449        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 12450        "name": "resourceVersion",
 12451        "in": "query"
 12452       },
 12453       {
 12454        "uniqueItems": true,
 12455        "type": "integer",
 12456        "description": "Timeout for the list/watch call.",
 12457        "name": "timeoutSeconds",
 12458        "in": "query"
 12459       },
 12460       {
 12461        "uniqueItems": true,
 12462        "type": "boolean",
 12463        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 12464        "name": "watch",
 12465        "in": "query"
 12466       }
 12467      ]
 12468     },
 12469     "/api/v1/watch/namespaces/{namespace}/replicationcontrollers": {
 12470      "get": {
 12471       "description": "watch individual changes to a list of ReplicationController",
 12472       "consumes": [
 12473        "*/*"
 12474       ],
 12475       "produces": [
 12476        "application/json",
 12477        "application/yaml",
 12478        "application/vnd.kubernetes.protobuf",
 12479        "application/json;stream=watch",
 12480        "application/vnd.kubernetes.protobuf;stream=watch"
 12481       ],
 12482       "schemes": [
 12483        "https"
 12484       ],
 12485       "tags": [
 12486        "core_v1"
 12487       ],
 12488       "operationId": "watchCoreV1NamespacedReplicationControllerList",
 12489       "responses": {
 12490        "200": {
 12491         "description": "OK",
 12492         "schema": {
 12493          "$ref": "#/definitions/versioned.Event"
 12494         }
 12495        },
 12496        "401": {
 12497         "description": "Unauthorized"
 12498        }
 12499       }
 12500      },
 12501      "parameters": [
 12502       {
 12503        "uniqueItems": true,
 12504        "type": "string",
 12505        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 12506        "name": "fieldSelector",
 12507        "in": "query"
 12508       },
 12509       {
 12510        "uniqueItems": true,
 12511        "type": "string",
 12512        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 12513        "name": "labelSelector",
 12514        "in": "query"
 12515       },
 12516       {
 12517        "uniqueItems": true,
 12518        "type": "string",
 12519        "description": "object name and auth scope, such as for teams and projects",
 12520        "name": "namespace",
 12521        "in": "path",
 12522        "required": true
 12523       },
 12524       {
 12525        "uniqueItems": true,
 12526        "type": "string",
 12527        "description": "If 'true', then the output is pretty printed.",
 12528        "name": "pretty",
 12529        "in": "query"
 12530       },
 12531       {
 12532        "uniqueItems": true,
 12533        "type": "string",
 12534        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 12535        "name": "resourceVersion",
 12536        "in": "query"
 12537       },
 12538       {
 12539        "uniqueItems": true,
 12540        "type": "integer",
 12541        "description": "Timeout for the list/watch call.",
 12542        "name": "timeoutSeconds",
 12543        "in": "query"
 12544       },
 12545       {
 12546        "uniqueItems": true,
 12547        "type": "boolean",
 12548        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 12549        "name": "watch",
 12550        "in": "query"
 12551       }
 12552      ]
 12553     },
 12554     "/api/v1/watch/namespaces/{namespace}/replicationcontrollers/{name}": {
 12555      "get": {
 12556       "description": "watch changes to an object of kind ReplicationController",
 12557       "consumes": [
 12558        "*/*"
 12559       ],
 12560       "produces": [
 12561        "application/json",
 12562        "application/yaml",
 12563        "application/vnd.kubernetes.protobuf",
 12564        "application/json;stream=watch",
 12565        "application/vnd.kubernetes.protobuf;stream=watch"
 12566       ],
 12567       "schemes": [
 12568        "https"
 12569       ],
 12570       "tags": [
 12571        "core_v1"
 12572       ],
 12573       "operationId": "watchCoreV1NamespacedReplicationController",
 12574       "responses": {
 12575        "200": {
 12576         "description": "OK",
 12577         "schema": {
 12578          "$ref": "#/definitions/versioned.Event"
 12579         }
 12580        },
 12581        "401": {
 12582         "description": "Unauthorized"
 12583        }
 12584       }
 12585      },
 12586      "parameters": [
 12587       {
 12588        "uniqueItems": true,
 12589        "type": "string",
 12590        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 12591        "name": "fieldSelector",
 12592        "in": "query"
 12593       },
 12594       {
 12595        "uniqueItems": true,
 12596        "type": "string",
 12597        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 12598        "name": "labelSelector",
 12599        "in": "query"
 12600       },
 12601       {
 12602        "uniqueItems": true,
 12603        "type": "string",
 12604        "description": "name of the ReplicationController",
 12605        "name": "name",
 12606        "in": "path",
 12607        "required": true
 12608       },
 12609       {
 12610        "uniqueItems": true,
 12611        "type": "string",
 12612        "description": "object name and auth scope, such as for teams and projects",
 12613        "name": "namespace",
 12614        "in": "path",
 12615        "required": true
 12616       },
 12617       {
 12618        "uniqueItems": true,
 12619        "type": "string",
 12620        "description": "If 'true', then the output is pretty printed.",
 12621        "name": "pretty",
 12622        "in": "query"
 12623       },
 12624       {
 12625        "uniqueItems": true,
 12626        "type": "string",
 12627        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 12628        "name": "resourceVersion",
 12629        "in": "query"
 12630       },
 12631       {
 12632        "uniqueItems": true,
 12633        "type": "integer",
 12634        "description": "Timeout for the list/watch call.",
 12635        "name": "timeoutSeconds",
 12636        "in": "query"
 12637       },
 12638       {
 12639        "uniqueItems": true,
 12640        "type": "boolean",
 12641        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 12642        "name": "watch",
 12643        "in": "query"
 12644       }
 12645      ]
 12646     },
 12647     "/api/v1/watch/namespaces/{namespace}/resourcequotas": {
 12648      "get": {
 12649       "description": "watch individual changes to a list of ResourceQuota",
 12650       "consumes": [
 12651        "*/*"
 12652       ],
 12653       "produces": [
 12654        "application/json",
 12655        "application/yaml",
 12656        "application/vnd.kubernetes.protobuf",
 12657        "application/json;stream=watch",
 12658        "application/vnd.kubernetes.protobuf;stream=watch"
 12659       ],
 12660       "schemes": [
 12661        "https"
 12662       ],
 12663       "tags": [
 12664        "core_v1"
 12665       ],
 12666       "operationId": "watchCoreV1NamespacedResourceQuotaList",
 12667       "responses": {
 12668        "200": {
 12669         "description": "OK",
 12670         "schema": {
 12671          "$ref": "#/definitions/versioned.Event"
 12672         }
 12673        },
 12674        "401": {
 12675         "description": "Unauthorized"
 12676        }
 12677       }
 12678      },
 12679      "parameters": [
 12680       {
 12681        "uniqueItems": true,
 12682        "type": "string",
 12683        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 12684        "name": "fieldSelector",
 12685        "in": "query"
 12686       },
 12687       {
 12688        "uniqueItems": true,
 12689        "type": "string",
 12690        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 12691        "name": "labelSelector",
 12692        "in": "query"
 12693       },
 12694       {
 12695        "uniqueItems": true,
 12696        "type": "string",
 12697        "description": "object name and auth scope, such as for teams and projects",
 12698        "name": "namespace",
 12699        "in": "path",
 12700        "required": true
 12701       },
 12702       {
 12703        "uniqueItems": true,
 12704        "type": "string",
 12705        "description": "If 'true', then the output is pretty printed.",
 12706        "name": "pretty",
 12707        "in": "query"
 12708       },
 12709       {
 12710        "uniqueItems": true,
 12711        "type": "string",
 12712        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 12713        "name": "resourceVersion",
 12714        "in": "query"
 12715       },
 12716       {
 12717        "uniqueItems": true,
 12718        "type": "integer",
 12719        "description": "Timeout for the list/watch call.",
 12720        "name": "timeoutSeconds",
 12721        "in": "query"
 12722       },
 12723       {
 12724        "uniqueItems": true,
 12725        "type": "boolean",
 12726        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 12727        "name": "watch",
 12728        "in": "query"
 12729       }
 12730      ]
 12731     },
 12732     "/api/v1/watch/namespaces/{namespace}/resourcequotas/{name}": {
 12733      "get": {
 12734       "description": "watch changes to an object of kind ResourceQuota",
 12735       "consumes": [
 12736        "*/*"
 12737       ],
 12738       "produces": [
 12739        "application/json",
 12740        "application/yaml",
 12741        "application/vnd.kubernetes.protobuf",
 12742        "application/json;stream=watch",
 12743        "application/vnd.kubernetes.protobuf;stream=watch"
 12744       ],
 12745       "schemes": [
 12746        "https"
 12747       ],
 12748       "tags": [
 12749        "core_v1"
 12750       ],
 12751       "operationId": "watchCoreV1NamespacedResourceQuota",
 12752       "responses": {
 12753        "200": {
 12754         "description": "OK",
 12755         "schema": {
 12756          "$ref": "#/definitions/versioned.Event"
 12757         }
 12758        },
 12759        "401": {
 12760         "description": "Unauthorized"
 12761        }
 12762       }
 12763      },
 12764      "parameters": [
 12765       {
 12766        "uniqueItems": true,
 12767        "type": "string",
 12768        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 12769        "name": "fieldSelector",
 12770        "in": "query"
 12771       },
 12772       {
 12773        "uniqueItems": true,
 12774        "type": "string",
 12775        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 12776        "name": "labelSelector",
 12777        "in": "query"
 12778       },
 12779       {
 12780        "uniqueItems": true,
 12781        "type": "string",
 12782        "description": "name of the ResourceQuota",
 12783        "name": "name",
 12784        "in": "path",
 12785        "required": true
 12786       },
 12787       {
 12788        "uniqueItems": true,
 12789        "type": "string",
 12790        "description": "object name and auth scope, such as for teams and projects",
 12791        "name": "namespace",
 12792        "in": "path",
 12793        "required": true
 12794       },
 12795       {
 12796        "uniqueItems": true,
 12797        "type": "string",
 12798        "description": "If 'true', then the output is pretty printed.",
 12799        "name": "pretty",
 12800        "in": "query"
 12801       },
 12802       {
 12803        "uniqueItems": true,
 12804        "type": "string",
 12805        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 12806        "name": "resourceVersion",
 12807        "in": "query"
 12808       },
 12809       {
 12810        "uniqueItems": true,
 12811        "type": "integer",
 12812        "description": "Timeout for the list/watch call.",
 12813        "name": "timeoutSeconds",
 12814        "in": "query"
 12815       },
 12816       {
 12817        "uniqueItems": true,
 12818        "type": "boolean",
 12819        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 12820        "name": "watch",
 12821        "in": "query"
 12822       }
 12823      ]
 12824     },
 12825     "/api/v1/watch/namespaces/{namespace}/secrets": {
 12826      "get": {
 12827       "description": "watch individual changes to a list of Secret",
 12828       "consumes": [
 12829        "*/*"
 12830       ],
 12831       "produces": [
 12832        "application/json",
 12833        "application/yaml",
 12834        "application/vnd.kubernetes.protobuf",
 12835        "application/json;stream=watch",
 12836        "application/vnd.kubernetes.protobuf;stream=watch"
 12837       ],
 12838       "schemes": [
 12839        "https"
 12840       ],
 12841       "tags": [
 12842        "core_v1"
 12843       ],
 12844       "operationId": "watchCoreV1NamespacedSecretList",
 12845       "responses": {
 12846        "200": {
 12847         "description": "OK",
 12848         "schema": {
 12849          "$ref": "#/definitions/versioned.Event"
 12850         }
 12851        },
 12852        "401": {
 12853         "description": "Unauthorized"
 12854        }
 12855       }
 12856      },
 12857      "parameters": [
 12858       {
 12859        "uniqueItems": true,
 12860        "type": "string",
 12861        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 12862        "name": "fieldSelector",
 12863        "in": "query"
 12864       },
 12865       {
 12866        "uniqueItems": true,
 12867        "type": "string",
 12868        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 12869        "name": "labelSelector",
 12870        "in": "query"
 12871       },
 12872       {
 12873        "uniqueItems": true,
 12874        "type": "string",
 12875        "description": "object name and auth scope, such as for teams and projects",
 12876        "name": "namespace",
 12877        "in": "path",
 12878        "required": true
 12879       },
 12880       {
 12881        "uniqueItems": true,
 12882        "type": "string",
 12883        "description": "If 'true', then the output is pretty printed.",
 12884        "name": "pretty",
 12885        "in": "query"
 12886       },
 12887       {
 12888        "uniqueItems": true,
 12889        "type": "string",
 12890        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 12891        "name": "resourceVersion",
 12892        "in": "query"
 12893       },
 12894       {
 12895        "uniqueItems": true,
 12896        "type": "integer",
 12897        "description": "Timeout for the list/watch call.",
 12898        "name": "timeoutSeconds",
 12899        "in": "query"
 12900       },
 12901       {
 12902        "uniqueItems": true,
 12903        "type": "boolean",
 12904        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 12905        "name": "watch",
 12906        "in": "query"
 12907       }
 12908      ]
 12909     },
 12910     "/api/v1/watch/namespaces/{namespace}/secrets/{name}": {
 12911      "get": {
 12912       "description": "watch changes to an object of kind Secret",
 12913       "consumes": [
 12914        "*/*"
 12915       ],
 12916       "produces": [
 12917        "application/json",
 12918        "application/yaml",
 12919        "application/vnd.kubernetes.protobuf",
 12920        "application/json;stream=watch",
 12921        "application/vnd.kubernetes.protobuf;stream=watch"
 12922       ],
 12923       "schemes": [
 12924        "https"
 12925       ],
 12926       "tags": [
 12927        "core_v1"
 12928       ],
 12929       "operationId": "watchCoreV1NamespacedSecret",
 12930       "responses": {
 12931        "200": {
 12932         "description": "OK",
 12933         "schema": {
 12934          "$ref": "#/definitions/versioned.Event"
 12935         }
 12936        },
 12937        "401": {
 12938         "description": "Unauthorized"
 12939        }
 12940       }
 12941      },
 12942      "parameters": [
 12943       {
 12944        "uniqueItems": true,
 12945        "type": "string",
 12946        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 12947        "name": "fieldSelector",
 12948        "in": "query"
 12949       },
 12950       {
 12951        "uniqueItems": true,
 12952        "type": "string",
 12953        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 12954        "name": "labelSelector",
 12955        "in": "query"
 12956       },
 12957       {
 12958        "uniqueItems": true,
 12959        "type": "string",
 12960        "description": "name of the Secret",
 12961        "name": "name",
 12962        "in": "path",
 12963        "required": true
 12964       },
 12965       {
 12966        "uniqueItems": true,
 12967        "type": "string",
 12968        "description": "object name and auth scope, such as for teams and projects",
 12969        "name": "namespace",
 12970        "in": "path",
 12971        "required": true
 12972       },
 12973       {
 12974        "uniqueItems": true,
 12975        "type": "string",
 12976        "description": "If 'true', then the output is pretty printed.",
 12977        "name": "pretty",
 12978        "in": "query"
 12979       },
 12980       {
 12981        "uniqueItems": true,
 12982        "type": "string",
 12983        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 12984        "name": "resourceVersion",
 12985        "in": "query"
 12986       },
 12987       {
 12988        "uniqueItems": true,
 12989        "type": "integer",
 12990        "description": "Timeout for the list/watch call.",
 12991        "name": "timeoutSeconds",
 12992        "in": "query"
 12993       },
 12994       {
 12995        "uniqueItems": true,
 12996        "type": "boolean",
 12997        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 12998        "name": "watch",
 12999        "in": "query"
 13000       }
 13001      ]
 13002     },
 13003     "/api/v1/watch/namespaces/{namespace}/serviceaccounts": {
 13004      "get": {
 13005       "description": "watch individual changes to a list of ServiceAccount",
 13006       "consumes": [
 13007        "*/*"
 13008       ],
 13009       "produces": [
 13010        "application/json",
 13011        "application/yaml",
 13012        "application/vnd.kubernetes.protobuf",
 13013        "application/json;stream=watch",
 13014        "application/vnd.kubernetes.protobuf;stream=watch"
 13015       ],
 13016       "schemes": [
 13017        "https"
 13018       ],
 13019       "tags": [
 13020        "core_v1"
 13021       ],
 13022       "operationId": "watchCoreV1NamespacedServiceAccountList",
 13023       "responses": {
 13024        "200": {
 13025         "description": "OK",
 13026         "schema": {
 13027          "$ref": "#/definitions/versioned.Event"
 13028         }
 13029        },
 13030        "401": {
 13031         "description": "Unauthorized"
 13032        }
 13033       }
 13034      },
 13035      "parameters": [
 13036       {
 13037        "uniqueItems": true,
 13038        "type": "string",
 13039        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 13040        "name": "fieldSelector",
 13041        "in": "query"
 13042       },
 13043       {
 13044        "uniqueItems": true,
 13045        "type": "string",
 13046        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 13047        "name": "labelSelector",
 13048        "in": "query"
 13049       },
 13050       {
 13051        "uniqueItems": true,
 13052        "type": "string",
 13053        "description": "object name and auth scope, such as for teams and projects",
 13054        "name": "namespace",
 13055        "in": "path",
 13056        "required": true
 13057       },
 13058       {
 13059        "uniqueItems": true,
 13060        "type": "string",
 13061        "description": "If 'true', then the output is pretty printed.",
 13062        "name": "pretty",
 13063        "in": "query"
 13064       },
 13065       {
 13066        "uniqueItems": true,
 13067        "type": "string",
 13068        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 13069        "name": "resourceVersion",
 13070        "in": "query"
 13071       },
 13072       {
 13073        "uniqueItems": true,
 13074        "type": "integer",
 13075        "description": "Timeout for the list/watch call.",
 13076        "name": "timeoutSeconds",
 13077        "in": "query"
 13078       },
 13079       {
 13080        "uniqueItems": true,
 13081        "type": "boolean",
 13082        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 13083        "name": "watch",
 13084        "in": "query"
 13085       }
 13086      ]
 13087     },
 13088     "/api/v1/watch/namespaces/{namespace}/serviceaccounts/{name}": {
 13089      "get": {
 13090       "description": "watch changes to an object of kind ServiceAccount",
 13091       "consumes": [
 13092        "*/*"
 13093       ],
 13094       "produces": [
 13095        "application/json",
 13096        "application/yaml",
 13097        "application/vnd.kubernetes.protobuf",
 13098        "application/json;stream=watch",
 13099        "application/vnd.kubernetes.protobuf;stream=watch"
 13100       ],
 13101       "schemes": [
 13102        "https"
 13103       ],
 13104       "tags": [
 13105        "core_v1"
 13106       ],
 13107       "operationId": "watchCoreV1NamespacedServiceAccount",
 13108       "responses": {
 13109        "200": {
 13110         "description": "OK",
 13111         "schema": {
 13112          "$ref": "#/definitions/versioned.Event"
 13113         }
 13114        },
 13115        "401": {
 13116         "description": "Unauthorized"
 13117        }
 13118       }
 13119      },
 13120      "parameters": [
 13121       {
 13122        "uniqueItems": true,
 13123        "type": "string",
 13124        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 13125        "name": "fieldSelector",
 13126        "in": "query"
 13127       },
 13128       {
 13129        "uniqueItems": true,
 13130        "type": "string",
 13131        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 13132        "name": "labelSelector",
 13133        "in": "query"
 13134       },
 13135       {
 13136        "uniqueItems": true,
 13137        "type": "string",
 13138        "description": "name of the ServiceAccount",
 13139        "name": "name",
 13140        "in": "path",
 13141        "required": true
 13142       },
 13143       {
 13144        "uniqueItems": true,
 13145        "type": "string",
 13146        "description": "object name and auth scope, such as for teams and projects",
 13147        "name": "namespace",
 13148        "in": "path",
 13149        "required": true
 13150       },
 13151       {
 13152        "uniqueItems": true,
 13153        "type": "string",
 13154        "description": "If 'true', then the output is pretty printed.",
 13155        "name": "pretty",
 13156        "in": "query"
 13157       },
 13158       {
 13159        "uniqueItems": true,
 13160        "type": "string",
 13161        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 13162        "name": "resourceVersion",
 13163        "in": "query"
 13164       },
 13165       {
 13166        "uniqueItems": true,
 13167        "type": "integer",
 13168        "description": "Timeout for the list/watch call.",
 13169        "name": "timeoutSeconds",
 13170        "in": "query"
 13171       },
 13172       {
 13173        "uniqueItems": true,
 13174        "type": "boolean",
 13175        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 13176        "name": "watch",
 13177        "in": "query"
 13178       }
 13179      ]
 13180     },
 13181     "/api/v1/watch/namespaces/{namespace}/services": {
 13182      "get": {
 13183       "description": "watch individual changes to a list of Service",
 13184       "consumes": [
 13185        "*/*"
 13186       ],
 13187       "produces": [
 13188        "application/json",
 13189        "application/yaml",
 13190        "application/vnd.kubernetes.protobuf",
 13191        "application/json;stream=watch",
 13192        "application/vnd.kubernetes.protobuf;stream=watch"
 13193       ],
 13194       "schemes": [
 13195        "https"
 13196       ],
 13197       "tags": [
 13198        "core_v1"
 13199       ],
 13200       "operationId": "watchCoreV1NamespacedServiceList",
 13201       "responses": {
 13202        "200": {
 13203         "description": "OK",
 13204         "schema": {
 13205          "$ref": "#/definitions/versioned.Event"
 13206         }
 13207        },
 13208        "401": {
 13209         "description": "Unauthorized"
 13210        }
 13211       }
 13212      },
 13213      "parameters": [
 13214       {
 13215        "uniqueItems": true,
 13216        "type": "string",
 13217        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 13218        "name": "fieldSelector",
 13219        "in": "query"
 13220       },
 13221       {
 13222        "uniqueItems": true,
 13223        "type": "string",
 13224        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 13225        "name": "labelSelector",
 13226        "in": "query"
 13227       },
 13228       {
 13229        "uniqueItems": true,
 13230        "type": "string",
 13231        "description": "object name and auth scope, such as for teams and projects",
 13232        "name": "namespace",
 13233        "in": "path",
 13234        "required": true
 13235       },
 13236       {
 13237        "uniqueItems": true,
 13238        "type": "string",
 13239        "description": "If 'true', then the output is pretty printed.",
 13240        "name": "pretty",
 13241        "in": "query"
 13242       },
 13243       {
 13244        "uniqueItems": true,
 13245        "type": "string",
 13246        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 13247        "name": "resourceVersion",
 13248        "in": "query"
 13249       },
 13250       {
 13251        "uniqueItems": true,
 13252        "type": "integer",
 13253        "description": "Timeout for the list/watch call.",
 13254        "name": "timeoutSeconds",
 13255        "in": "query"
 13256       },
 13257       {
 13258        "uniqueItems": true,
 13259        "type": "boolean",
 13260        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 13261        "name": "watch",
 13262        "in": "query"
 13263       }
 13264      ]
 13265     },
 13266     "/api/v1/watch/namespaces/{namespace}/services/{name}": {
 13267      "get": {
 13268       "description": "watch changes to an object of kind Service",
 13269       "consumes": [
 13270        "*/*"
 13271       ],
 13272       "produces": [
 13273        "application/json",
 13274        "application/yaml",
 13275        "application/vnd.kubernetes.protobuf",
 13276        "application/json;stream=watch",
 13277        "application/vnd.kubernetes.protobuf;stream=watch"
 13278       ],
 13279       "schemes": [
 13280        "https"
 13281       ],
 13282       "tags": [
 13283        "core_v1"
 13284       ],
 13285       "operationId": "watchCoreV1NamespacedService",
 13286       "responses": {
 13287        "200": {
 13288         "description": "OK",
 13289         "schema": {
 13290          "$ref": "#/definitions/versioned.Event"
 13291         }
 13292        },
 13293        "401": {
 13294         "description": "Unauthorized"
 13295        }
 13296       }
 13297      },
 13298      "parameters": [
 13299       {
 13300        "uniqueItems": true,
 13301        "type": "string",
 13302        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 13303        "name": "fieldSelector",
 13304        "in": "query"
 13305       },
 13306       {
 13307        "uniqueItems": true,
 13308        "type": "string",
 13309        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 13310        "name": "labelSelector",
 13311        "in": "query"
 13312       },
 13313       {
 13314        "uniqueItems": true,
 13315        "type": "string",
 13316        "description": "name of the Service",
 13317        "name": "name",
 13318        "in": "path",
 13319        "required": true
 13320       },
 13321       {
 13322        "uniqueItems": true,
 13323        "type": "string",
 13324        "description": "object name and auth scope, such as for teams and projects",
 13325        "name": "namespace",
 13326        "in": "path",
 13327        "required": true
 13328       },
 13329       {
 13330        "uniqueItems": true,
 13331        "type": "string",
 13332        "description": "If 'true', then the output is pretty printed.",
 13333        "name": "pretty",
 13334        "in": "query"
 13335       },
 13336       {
 13337        "uniqueItems": true,
 13338        "type": "string",
 13339        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 13340        "name": "resourceVersion",
 13341        "in": "query"
 13342       },
 13343       {
 13344        "uniqueItems": true,
 13345        "type": "integer",
 13346        "description": "Timeout for the list/watch call.",
 13347        "name": "timeoutSeconds",
 13348        "in": "query"
 13349       },
 13350       {
 13351        "uniqueItems": true,
 13352        "type": "boolean",
 13353        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 13354        "name": "watch",
 13355        "in": "query"
 13356       }
 13357      ]
 13358     },
 13359     "/api/v1/watch/namespaces/{name}": {
 13360      "get": {
 13361       "description": "watch changes to an object of kind Namespace",
 13362       "consumes": [
 13363        "*/*"
 13364       ],
 13365       "produces": [
 13366        "application/json",
 13367        "application/yaml",
 13368        "application/vnd.kubernetes.protobuf",
 13369        "application/json;stream=watch",
 13370        "application/vnd.kubernetes.protobuf;stream=watch"
 13371       ],
 13372       "schemes": [
 13373        "https"
 13374       ],
 13375       "tags": [
 13376        "core_v1"
 13377       ],
 13378       "operationId": "watchCoreV1Namespace",
 13379       "responses": {
 13380        "200": {
 13381         "description": "OK",
 13382         "schema": {
 13383          "$ref": "#/definitions/versioned.Event"
 13384         }
 13385        },
 13386        "401": {
 13387         "description": "Unauthorized"
 13388        }
 13389       }
 13390      },
 13391      "parameters": [
 13392       {
 13393        "uniqueItems": true,
 13394        "type": "string",
 13395        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 13396        "name": "fieldSelector",
 13397        "in": "query"
 13398       },
 13399       {
 13400        "uniqueItems": true,
 13401        "type": "string",
 13402        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 13403        "name": "labelSelector",
 13404        "in": "query"
 13405       },
 13406       {
 13407        "uniqueItems": true,
 13408        "type": "string",
 13409        "description": "name of the Namespace",
 13410        "name": "name",
 13411        "in": "path",
 13412        "required": true
 13413       },
 13414       {
 13415        "uniqueItems": true,
 13416        "type": "string",
 13417        "description": "If 'true', then the output is pretty printed.",
 13418        "name": "pretty",
 13419        "in": "query"
 13420       },
 13421       {
 13422        "uniqueItems": true,
 13423        "type": "string",
 13424        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 13425        "name": "resourceVersion",
 13426        "in": "query"
 13427       },
 13428       {
 13429        "uniqueItems": true,
 13430        "type": "integer",
 13431        "description": "Timeout for the list/watch call.",
 13432        "name": "timeoutSeconds",
 13433        "in": "query"
 13434       },
 13435       {
 13436        "uniqueItems": true,
 13437        "type": "boolean",
 13438        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 13439        "name": "watch",
 13440        "in": "query"
 13441       }
 13442      ]
 13443     },
 13444     "/api/v1/watch/nodes": {
 13445      "get": {
 13446       "description": "watch individual changes to a list of Node",
 13447       "consumes": [
 13448        "*/*"
 13449       ],
 13450       "produces": [
 13451        "application/json",
 13452        "application/yaml",
 13453        "application/vnd.kubernetes.protobuf",
 13454        "application/json;stream=watch",
 13455        "application/vnd.kubernetes.protobuf;stream=watch"
 13456       ],
 13457       "schemes": [
 13458        "https"
 13459       ],
 13460       "tags": [
 13461        "core_v1"
 13462       ],
 13463       "operationId": "watchCoreV1NodeList",
 13464       "responses": {
 13465        "200": {
 13466         "description": "OK",
 13467         "schema": {
 13468          "$ref": "#/definitions/versioned.Event"
 13469         }
 13470        },
 13471        "401": {
 13472         "description": "Unauthorized"
 13473        }
 13474       }
 13475      },
 13476      "parameters": [
 13477       {
 13478        "uniqueItems": true,
 13479        "type": "string",
 13480        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 13481        "name": "fieldSelector",
 13482        "in": "query"
 13483       },
 13484       {
 13485        "uniqueItems": true,
 13486        "type": "string",
 13487        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 13488        "name": "labelSelector",
 13489        "in": "query"
 13490       },
 13491       {
 13492        "uniqueItems": true,
 13493        "type": "string",
 13494        "description": "If 'true', then the output is pretty printed.",
 13495        "name": "pretty",
 13496        "in": "query"
 13497       },
 13498       {
 13499        "uniqueItems": true,
 13500        "type": "string",
 13501        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 13502        "name": "resourceVersion",
 13503        "in": "query"
 13504       },
 13505       {
 13506        "uniqueItems": true,
 13507        "type": "integer",
 13508        "description": "Timeout for the list/watch call.",
 13509        "name": "timeoutSeconds",
 13510        "in": "query"
 13511       },
 13512       {
 13513        "uniqueItems": true,
 13514        "type": "boolean",
 13515        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 13516        "name": "watch",
 13517        "in": "query"
 13518       }
 13519      ]
 13520     },
 13521     "/api/v1/watch/nodes/{name}": {
 13522      "get": {
 13523       "description": "watch changes to an object of kind Node",
 13524       "consumes": [
 13525        "*/*"
 13526       ],
 13527       "produces": [
 13528        "application/json",
 13529        "application/yaml",
 13530        "application/vnd.kubernetes.protobuf",
 13531        "application/json;stream=watch",
 13532        "application/vnd.kubernetes.protobuf;stream=watch"
 13533       ],
 13534       "schemes": [
 13535        "https"
 13536       ],
 13537       "tags": [
 13538        "core_v1"
 13539       ],
 13540       "operationId": "watchCoreV1Node",
 13541       "responses": {
 13542        "200": {
 13543         "description": "OK",
 13544         "schema": {
 13545          "$ref": "#/definitions/versioned.Event"
 13546         }
 13547        },
 13548        "401": {
 13549         "description": "Unauthorized"
 13550        }
 13551       }
 13552      },
 13553      "parameters": [
 13554       {
 13555        "uniqueItems": true,
 13556        "type": "string",
 13557        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 13558        "name": "fieldSelector",
 13559        "in": "query"
 13560       },
 13561       {
 13562        "uniqueItems": true,
 13563        "type": "string",
 13564        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 13565        "name": "labelSelector",
 13566        "in": "query"
 13567       },
 13568       {
 13569        "uniqueItems": true,
 13570        "type": "string",
 13571        "description": "name of the Node",
 13572        "name": "name",
 13573        "in": "path",
 13574        "required": true
 13575       },
 13576       {
 13577        "uniqueItems": true,
 13578        "type": "string",
 13579        "description": "If 'true', then the output is pretty printed.",
 13580        "name": "pretty",
 13581        "in": "query"
 13582       },
 13583       {
 13584        "uniqueItems": true,
 13585        "type": "string",
 13586        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 13587        "name": "resourceVersion",
 13588        "in": "query"
 13589       },
 13590       {
 13591        "uniqueItems": true,
 13592        "type": "integer",
 13593        "description": "Timeout for the list/watch call.",
 13594        "name": "timeoutSeconds",
 13595        "in": "query"
 13596       },
 13597       {
 13598        "uniqueItems": true,
 13599        "type": "boolean",
 13600        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 13601        "name": "watch",
 13602        "in": "query"
 13603       }
 13604      ]
 13605     },
 13606     "/api/v1/watch/persistentvolumeclaims": {
 13607      "get": {
 13608       "description": "watch individual changes to a list of PersistentVolumeClaim",
 13609       "consumes": [
 13610        "*/*"
 13611       ],
 13612       "produces": [
 13613        "application/json",
 13614        "application/yaml",
 13615        "application/vnd.kubernetes.protobuf",
 13616        "application/json;stream=watch",
 13617        "application/vnd.kubernetes.protobuf;stream=watch"
 13618       ],
 13619       "schemes": [
 13620        "https"
 13621       ],
 13622       "tags": [
 13623        "core_v1"
 13624       ],
 13625       "operationId": "watchCoreV1PersistentVolumeClaimListForAllNamespaces",
 13626       "responses": {
 13627        "200": {
 13628         "description": "OK",
 13629         "schema": {
 13630          "$ref": "#/definitions/versioned.Event"
 13631         }
 13632        },
 13633        "401": {
 13634         "description": "Unauthorized"
 13635        }
 13636       }
 13637      },
 13638      "parameters": [
 13639       {
 13640        "uniqueItems": true,
 13641        "type": "string",
 13642        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 13643        "name": "fieldSelector",
 13644        "in": "query"
 13645       },
 13646       {
 13647        "uniqueItems": true,
 13648        "type": "string",
 13649        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 13650        "name": "labelSelector",
 13651        "in": "query"
 13652       },
 13653       {
 13654        "uniqueItems": true,
 13655        "type": "string",
 13656        "description": "If 'true', then the output is pretty printed.",
 13657        "name": "pretty",
 13658        "in": "query"
 13659       },
 13660       {
 13661        "uniqueItems": true,
 13662        "type": "string",
 13663        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 13664        "name": "resourceVersion",
 13665        "in": "query"
 13666       },
 13667       {
 13668        "uniqueItems": true,
 13669        "type": "integer",
 13670        "description": "Timeout for the list/watch call.",
 13671        "name": "timeoutSeconds",
 13672        "in": "query"
 13673       },
 13674       {
 13675        "uniqueItems": true,
 13676        "type": "boolean",
 13677        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 13678        "name": "watch",
 13679        "in": "query"
 13680       }
 13681      ]
 13682     },
 13683     "/api/v1/watch/persistentvolumes": {
 13684      "get": {
 13685       "description": "watch individual changes to a list of PersistentVolume",
 13686       "consumes": [
 13687        "*/*"
 13688       ],
 13689       "produces": [
 13690        "application/json",
 13691        "application/yaml",
 13692        "application/vnd.kubernetes.protobuf",
 13693        "application/json;stream=watch",
 13694        "application/vnd.kubernetes.protobuf;stream=watch"
 13695       ],
 13696       "schemes": [
 13697        "https"
 13698       ],
 13699       "tags": [
 13700        "core_v1"
 13701       ],
 13702       "operationId": "watchCoreV1PersistentVolumeList",
 13703       "responses": {
 13704        "200": {
 13705         "description": "OK",
 13706         "schema": {
 13707          "$ref": "#/definitions/versioned.Event"
 13708         }
 13709        },
 13710        "401": {
 13711         "description": "Unauthorized"
 13712        }
 13713       }
 13714      },
 13715      "parameters": [
 13716       {
 13717        "uniqueItems": true,
 13718        "type": "string",
 13719        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 13720        "name": "fieldSelector",
 13721        "in": "query"
 13722       },
 13723       {
 13724        "uniqueItems": true,
 13725        "type": "string",
 13726        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 13727        "name": "labelSelector",
 13728        "in": "query"
 13729       },
 13730       {
 13731        "uniqueItems": true,
 13732        "type": "string",
 13733        "description": "If 'true', then the output is pretty printed.",
 13734        "name": "pretty",
 13735        "in": "query"
 13736       },
 13737       {
 13738        "uniqueItems": true,
 13739        "type": "string",
 13740        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 13741        "name": "resourceVersion",
 13742        "in": "query"
 13743       },
 13744       {
 13745        "uniqueItems": true,
 13746        "type": "integer",
 13747        "description": "Timeout for the list/watch call.",
 13748        "name": "timeoutSeconds",
 13749        "in": "query"
 13750       },
 13751       {
 13752        "uniqueItems": true,
 13753        "type": "boolean",
 13754        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 13755        "name": "watch",
 13756        "in": "query"
 13757       }
 13758      ]
 13759     },
 13760     "/api/v1/watch/persistentvolumes/{name}": {
 13761      "get": {
 13762       "description": "watch changes to an object of kind PersistentVolume",
 13763       "consumes": [
 13764        "*/*"
 13765       ],
 13766       "produces": [
 13767        "application/json",
 13768        "application/yaml",
 13769        "application/vnd.kubernetes.protobuf",
 13770        "application/json;stream=watch",
 13771        "application/vnd.kubernetes.protobuf;stream=watch"
 13772       ],
 13773       "schemes": [
 13774        "https"
 13775       ],
 13776       "tags": [
 13777        "core_v1"
 13778       ],
 13779       "operationId": "watchCoreV1PersistentVolume",
 13780       "responses": {
 13781        "200": {
 13782         "description": "OK",
 13783         "schema": {
 13784          "$ref": "#/definitions/versioned.Event"
 13785         }
 13786        },
 13787        "401": {
 13788         "description": "Unauthorized"
 13789        }
 13790       }
 13791      },
 13792      "parameters": [
 13793       {
 13794        "uniqueItems": true,
 13795        "type": "string",
 13796        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 13797        "name": "fieldSelector",
 13798        "in": "query"
 13799       },
 13800       {
 13801        "uniqueItems": true,
 13802        "type": "string",
 13803        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 13804        "name": "labelSelector",
 13805        "in": "query"
 13806       },
 13807       {
 13808        "uniqueItems": true,
 13809        "type": "string",
 13810        "description": "name of the PersistentVolume",
 13811        "name": "name",
 13812        "in": "path",
 13813        "required": true
 13814       },
 13815       {
 13816        "uniqueItems": true,
 13817        "type": "string",
 13818        "description": "If 'true', then the output is pretty printed.",
 13819        "name": "pretty",
 13820        "in": "query"
 13821       },
 13822       {
 13823        "uniqueItems": true,
 13824        "type": "string",
 13825        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 13826        "name": "resourceVersion",
 13827        "in": "query"
 13828       },
 13829       {
 13830        "uniqueItems": true,
 13831        "type": "integer",
 13832        "description": "Timeout for the list/watch call.",
 13833        "name": "timeoutSeconds",
 13834        "in": "query"
 13835       },
 13836       {
 13837        "uniqueItems": true,
 13838        "type": "boolean",
 13839        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 13840        "name": "watch",
 13841        "in": "query"
 13842       }
 13843      ]
 13844     },
 13845     "/api/v1/watch/pods": {
 13846      "get": {
 13847       "description": "watch individual changes to a list of Pod",
 13848       "consumes": [
 13849        "*/*"
 13850       ],
 13851       "produces": [
 13852        "application/json",
 13853        "application/yaml",
 13854        "application/vnd.kubernetes.protobuf",
 13855        "application/json;stream=watch",
 13856        "application/vnd.kubernetes.protobuf;stream=watch"
 13857       ],
 13858       "schemes": [
 13859        "https"
 13860       ],
 13861       "tags": [
 13862        "core_v1"
 13863       ],
 13864       "operationId": "watchCoreV1PodListForAllNamespaces",
 13865       "responses": {
 13866        "200": {
 13867         "description": "OK",
 13868         "schema": {
 13869          "$ref": "#/definitions/versioned.Event"
 13870         }
 13871        },
 13872        "401": {
 13873         "description": "Unauthorized"
 13874        }
 13875       }
 13876      },
 13877      "parameters": [
 13878       {
 13879        "uniqueItems": true,
 13880        "type": "string",
 13881        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 13882        "name": "fieldSelector",
 13883        "in": "query"
 13884       },
 13885       {
 13886        "uniqueItems": true,
 13887        "type": "string",
 13888        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 13889        "name": "labelSelector",
 13890        "in": "query"
 13891       },
 13892       {
 13893        "uniqueItems": true,
 13894        "type": "string",
 13895        "description": "If 'true', then the output is pretty printed.",
 13896        "name": "pretty",
 13897        "in": "query"
 13898       },
 13899       {
 13900        "uniqueItems": true,
 13901        "type": "string",
 13902        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 13903        "name": "resourceVersion",
 13904        "in": "query"
 13905       },
 13906       {
 13907        "uniqueItems": true,
 13908        "type": "integer",
 13909        "description": "Timeout for the list/watch call.",
 13910        "name": "timeoutSeconds",
 13911        "in": "query"
 13912       },
 13913       {
 13914        "uniqueItems": true,
 13915        "type": "boolean",
 13916        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 13917        "name": "watch",
 13918        "in": "query"
 13919       }
 13920      ]
 13921     },
 13922     "/api/v1/watch/podtemplates": {
 13923      "get": {
 13924       "description": "watch individual changes to a list of PodTemplate",
 13925       "consumes": [
 13926        "*/*"
 13927       ],
 13928       "produces": [
 13929        "application/json",
 13930        "application/yaml",
 13931        "application/vnd.kubernetes.protobuf",
 13932        "application/json;stream=watch",
 13933        "application/vnd.kubernetes.protobuf;stream=watch"
 13934       ],
 13935       "schemes": [
 13936        "https"
 13937       ],
 13938       "tags": [
 13939        "core_v1"
 13940       ],
 13941       "operationId": "watchCoreV1PodTemplateListForAllNamespaces",
 13942       "responses": {
 13943        "200": {
 13944         "description": "OK",
 13945         "schema": {
 13946          "$ref": "#/definitions/versioned.Event"
 13947         }
 13948        },
 13949        "401": {
 13950         "description": "Unauthorized"
 13951        }
 13952       }
 13953      },
 13954      "parameters": [
 13955       {
 13956        "uniqueItems": true,
 13957        "type": "string",
 13958        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 13959        "name": "fieldSelector",
 13960        "in": "query"
 13961       },
 13962       {
 13963        "uniqueItems": true,
 13964        "type": "string",
 13965        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 13966        "name": "labelSelector",
 13967        "in": "query"
 13968       },
 13969       {
 13970        "uniqueItems": true,
 13971        "type": "string",
 13972        "description": "If 'true', then the output is pretty printed.",
 13973        "name": "pretty",
 13974        "in": "query"
 13975       },
 13976       {
 13977        "uniqueItems": true,
 13978        "type": "string",
 13979        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 13980        "name": "resourceVersion",
 13981        "in": "query"
 13982       },
 13983       {
 13984        "uniqueItems": true,
 13985        "type": "integer",
 13986        "description": "Timeout for the list/watch call.",
 13987        "name": "timeoutSeconds",
 13988        "in": "query"
 13989       },
 13990       {
 13991        "uniqueItems": true,
 13992        "type": "boolean",
 13993        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 13994        "name": "watch",
 13995        "in": "query"
 13996       }
 13997      ]
 13998     },
 13999     "/api/v1/watch/replicationcontrollers": {
 14000      "get": {
 14001       "description": "watch individual changes to a list of ReplicationController",
 14002       "consumes": [
 14003        "*/*"
 14004       ],
 14005       "produces": [
 14006        "application/json",
 14007        "application/yaml",
 14008        "application/vnd.kubernetes.protobuf",
 14009        "application/json;stream=watch",
 14010        "application/vnd.kubernetes.protobuf;stream=watch"
 14011       ],
 14012       "schemes": [
 14013        "https"
 14014       ],
 14015       "tags": [
 14016        "core_v1"
 14017       ],
 14018       "operationId": "watchCoreV1ReplicationControllerListForAllNamespaces",
 14019       "responses": {
 14020        "200": {
 14021         "description": "OK",
 14022         "schema": {
 14023          "$ref": "#/definitions/versioned.Event"
 14024         }
 14025        },
 14026        "401": {
 14027         "description": "Unauthorized"
 14028        }
 14029       }
 14030      },
 14031      "parameters": [
 14032       {
 14033        "uniqueItems": true,
 14034        "type": "string",
 14035        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 14036        "name": "fieldSelector",
 14037        "in": "query"
 14038       },
 14039       {
 14040        "uniqueItems": true,
 14041        "type": "string",
 14042        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 14043        "name": "labelSelector",
 14044        "in": "query"
 14045       },
 14046       {
 14047        "uniqueItems": true,
 14048        "type": "string",
 14049        "description": "If 'true', then the output is pretty printed.",
 14050        "name": "pretty",
 14051        "in": "query"
 14052       },
 14053       {
 14054        "uniqueItems": true,
 14055        "type": "string",
 14056        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 14057        "name": "resourceVersion",
 14058        "in": "query"
 14059       },
 14060       {
 14061        "uniqueItems": true,
 14062        "type": "integer",
 14063        "description": "Timeout for the list/watch call.",
 14064        "name": "timeoutSeconds",
 14065        "in": "query"
 14066       },
 14067       {
 14068        "uniqueItems": true,
 14069        "type": "boolean",
 14070        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 14071        "name": "watch",
 14072        "in": "query"
 14073       }
 14074      ]
 14075     },
 14076     "/api/v1/watch/resourcequotas": {
 14077      "get": {
 14078       "description": "watch individual changes to a list of ResourceQuota",
 14079       "consumes": [
 14080        "*/*"
 14081       ],
 14082       "produces": [
 14083        "application/json",
 14084        "application/yaml",
 14085        "application/vnd.kubernetes.protobuf",
 14086        "application/json;stream=watch",
 14087        "application/vnd.kubernetes.protobuf;stream=watch"
 14088       ],
 14089       "schemes": [
 14090        "https"
 14091       ],
 14092       "tags": [
 14093        "core_v1"
 14094       ],
 14095       "operationId": "watchCoreV1ResourceQuotaListForAllNamespaces",
 14096       "responses": {
 14097        "200": {
 14098         "description": "OK",
 14099         "schema": {
 14100          "$ref": "#/definitions/versioned.Event"
 14101         }
 14102        },
 14103        "401": {
 14104         "description": "Unauthorized"
 14105        }
 14106       }
 14107      },
 14108      "parameters": [
 14109       {
 14110        "uniqueItems": true,
 14111        "type": "string",
 14112        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 14113        "name": "fieldSelector",
 14114        "in": "query"
 14115       },
 14116       {
 14117        "uniqueItems": true,
 14118        "type": "string",
 14119        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 14120        "name": "labelSelector",
 14121        "in": "query"
 14122       },
 14123       {
 14124        "uniqueItems": true,
 14125        "type": "string",
 14126        "description": "If 'true', then the output is pretty printed.",
 14127        "name": "pretty",
 14128        "in": "query"
 14129       },
 14130       {
 14131        "uniqueItems": true,
 14132        "type": "string",
 14133        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 14134        "name": "resourceVersion",
 14135        "in": "query"
 14136       },
 14137       {
 14138        "uniqueItems": true,
 14139        "type": "integer",
 14140        "description": "Timeout for the list/watch call.",
 14141        "name": "timeoutSeconds",
 14142        "in": "query"
 14143       },
 14144       {
 14145        "uniqueItems": true,
 14146        "type": "boolean",
 14147        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 14148        "name": "watch",
 14149        "in": "query"
 14150       }
 14151      ]
 14152     },
 14153     "/api/v1/watch/secrets": {
 14154      "get": {
 14155       "description": "watch individual changes to a list of Secret",
 14156       "consumes": [
 14157        "*/*"
 14158       ],
 14159       "produces": [
 14160        "application/json",
 14161        "application/yaml",
 14162        "application/vnd.kubernetes.protobuf",
 14163        "application/json;stream=watch",
 14164        "application/vnd.kubernetes.protobuf;stream=watch"
 14165       ],
 14166       "schemes": [
 14167        "https"
 14168       ],
 14169       "tags": [
 14170        "core_v1"
 14171       ],
 14172       "operationId": "watchCoreV1SecretListForAllNamespaces",
 14173       "responses": {
 14174        "200": {
 14175         "description": "OK",
 14176         "schema": {
 14177          "$ref": "#/definitions/versioned.Event"
 14178         }
 14179        },
 14180        "401": {
 14181         "description": "Unauthorized"
 14182        }
 14183       }
 14184      },
 14185      "parameters": [
 14186       {
 14187        "uniqueItems": true,
 14188        "type": "string",
 14189        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 14190        "name": "fieldSelector",
 14191        "in": "query"
 14192       },
 14193       {
 14194        "uniqueItems": true,
 14195        "type": "string",
 14196        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 14197        "name": "labelSelector",
 14198        "in": "query"
 14199       },
 14200       {
 14201        "uniqueItems": true,
 14202        "type": "string",
 14203        "description": "If 'true', then the output is pretty printed.",
 14204        "name": "pretty",
 14205        "in": "query"
 14206       },
 14207       {
 14208        "uniqueItems": true,
 14209        "type": "string",
 14210        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 14211        "name": "resourceVersion",
 14212        "in": "query"
 14213       },
 14214       {
 14215        "uniqueItems": true,
 14216        "type": "integer",
 14217        "description": "Timeout for the list/watch call.",
 14218        "name": "timeoutSeconds",
 14219        "in": "query"
 14220       },
 14221       {
 14222        "uniqueItems": true,
 14223        "type": "boolean",
 14224        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 14225        "name": "watch",
 14226        "in": "query"
 14227       }
 14228      ]
 14229     },
 14230     "/api/v1/watch/serviceaccounts": {
 14231      "get": {
 14232       "description": "watch individual changes to a list of ServiceAccount",
 14233       "consumes": [
 14234        "*/*"
 14235       ],
 14236       "produces": [
 14237        "application/json",
 14238        "application/yaml",
 14239        "application/vnd.kubernetes.protobuf",
 14240        "application/json;stream=watch",
 14241        "application/vnd.kubernetes.protobuf;stream=watch"
 14242       ],
 14243       "schemes": [
 14244        "https"
 14245       ],
 14246       "tags": [
 14247        "core_v1"
 14248       ],
 14249       "operationId": "watchCoreV1ServiceAccountListForAllNamespaces",
 14250       "responses": {
 14251        "200": {
 14252         "description": "OK",
 14253         "schema": {
 14254          "$ref": "#/definitions/versioned.Event"
 14255         }
 14256        },
 14257        "401": {
 14258         "description": "Unauthorized"
 14259        }
 14260       }
 14261      },
 14262      "parameters": [
 14263       {
 14264        "uniqueItems": true,
 14265        "type": "string",
 14266        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 14267        "name": "fieldSelector",
 14268        "in": "query"
 14269       },
 14270       {
 14271        "uniqueItems": true,
 14272        "type": "string",
 14273        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 14274        "name": "labelSelector",
 14275        "in": "query"
 14276       },
 14277       {
 14278        "uniqueItems": true,
 14279        "type": "string",
 14280        "description": "If 'true', then the output is pretty printed.",
 14281        "name": "pretty",
 14282        "in": "query"
 14283       },
 14284       {
 14285        "uniqueItems": true,
 14286        "type": "string",
 14287        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 14288        "name": "resourceVersion",
 14289        "in": "query"
 14290       },
 14291       {
 14292        "uniqueItems": true,
 14293        "type": "integer",
 14294        "description": "Timeout for the list/watch call.",
 14295        "name": "timeoutSeconds",
 14296        "in": "query"
 14297       },
 14298       {
 14299        "uniqueItems": true,
 14300        "type": "boolean",
 14301        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 14302        "name": "watch",
 14303        "in": "query"
 14304       }
 14305      ]
 14306     },
 14307     "/api/v1/watch/services": {
 14308      "get": {
 14309       "description": "watch individual changes to a list of Service",
 14310       "consumes": [
 14311        "*/*"
 14312       ],
 14313       "produces": [
 14314        "application/json",
 14315        "application/yaml",
 14316        "application/vnd.kubernetes.protobuf",
 14317        "application/json;stream=watch",
 14318        "application/vnd.kubernetes.protobuf;stream=watch"
 14319       ],
 14320       "schemes": [
 14321        "https"
 14322       ],
 14323       "tags": [
 14324        "core_v1"
 14325       ],
 14326       "operationId": "watchCoreV1ServiceListForAllNamespaces",
 14327       "responses": {
 14328        "200": {
 14329         "description": "OK",
 14330         "schema": {
 14331          "$ref": "#/definitions/versioned.Event"
 14332         }
 14333        },
 14334        "401": {
 14335         "description": "Unauthorized"
 14336        }
 14337       }
 14338      },
 14339      "parameters": [
 14340       {
 14341        "uniqueItems": true,
 14342        "type": "string",
 14343        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 14344        "name": "fieldSelector",
 14345        "in": "query"
 14346       },
 14347       {
 14348        "uniqueItems": true,
 14349        "type": "string",
 14350        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 14351        "name": "labelSelector",
 14352        "in": "query"
 14353       },
 14354       {
 14355        "uniqueItems": true,
 14356        "type": "string",
 14357        "description": "If 'true', then the output is pretty printed.",
 14358        "name": "pretty",
 14359        "in": "query"
 14360       },
 14361       {
 14362        "uniqueItems": true,
 14363        "type": "string",
 14364        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 14365        "name": "resourceVersion",
 14366        "in": "query"
 14367       },
 14368       {
 14369        "uniqueItems": true,
 14370        "type": "integer",
 14371        "description": "Timeout for the list/watch call.",
 14372        "name": "timeoutSeconds",
 14373        "in": "query"
 14374       },
 14375       {
 14376        "uniqueItems": true,
 14377        "type": "boolean",
 14378        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 14379        "name": "watch",
 14380        "in": "query"
 14381       }
 14382      ]
 14383     },
 14384     "/apis/": {
 14385      "get": {
 14386       "description": "get available API versions",
 14387       "consumes": [
 14388        "application/json",
 14389        "application/yaml",
 14390        "application/vnd.kubernetes.protobuf"
 14391       ],
 14392       "produces": [
 14393        "application/json",
 14394        "application/yaml",
 14395        "application/vnd.kubernetes.protobuf"
 14396       ],
 14397       "schemes": [
 14398        "https"
 14399       ],
 14400       "tags": [
 14401        "apis"
 14402       ],
 14403       "operationId": "getAPIVersions",
 14404       "responses": {
 14405        "200": {
 14406         "description": "OK",
 14407         "schema": {
 14408          "$ref": "#/definitions/unversioned.APIGroupList"
 14409         }
 14410        },
 14411        "401": {
 14412         "description": "Unauthorized"
 14413        }
 14414       }
 14415      }
 14416     },
 14417     "/apis/apps/": {
 14418      "get": {
 14419       "description": "get information of a group",
 14420       "consumes": [
 14421        "application/json",
 14422        "application/yaml",
 14423        "application/vnd.kubernetes.protobuf"
 14424       ],
 14425       "produces": [
 14426        "application/json",
 14427        "application/yaml",
 14428        "application/vnd.kubernetes.protobuf"
 14429       ],
 14430       "schemes": [
 14431        "https"
 14432       ],
 14433       "tags": [
 14434        "apps"
 14435       ],
 14436       "operationId": "getAppsAPIGroup",
 14437       "responses": {
 14438        "200": {
 14439         "description": "OK",
 14440         "schema": {
 14441          "$ref": "#/definitions/unversioned.APIGroup"
 14442         }
 14443        },
 14444        "401": {
 14445         "description": "Unauthorized"
 14446        }
 14447       }
 14448      }
 14449     },
 14450     "/apis/apps/v1alpha1/": {
 14451      "get": {
 14452       "description": "get available resources",
 14453       "consumes": [
 14454        "application/json",
 14455        "application/yaml",
 14456        "application/vnd.kubernetes.protobuf"
 14457       ],
 14458       "produces": [
 14459        "application/json",
 14460        "application/yaml",
 14461        "application/vnd.kubernetes.protobuf"
 14462       ],
 14463       "schemes": [
 14464        "https"
 14465       ],
 14466       "tags": [
 14467        "apps_v1alpha1"
 14468       ],
 14469       "operationId": "getAppsV1alpha1APIResources",
 14470       "responses": {
 14471        "200": {
 14472         "description": "OK",
 14473         "schema": {
 14474          "$ref": "#/definitions/unversioned.APIResourceList"
 14475         }
 14476        },
 14477        "401": {
 14478         "description": "Unauthorized"
 14479        }
 14480       }
 14481      }
 14482     },
 14483     "/apis/apps/v1alpha1/namespaces/{namespace}/statefulsets": {
 14484      "get": {
 14485       "description": "list or watch objects of kind StatefulSet",
 14486       "consumes": [
 14487        "*/*"
 14488       ],
 14489       "produces": [
 14490        "application/json",
 14491        "application/yaml",
 14492        "application/vnd.kubernetes.protobuf",
 14493        "application/json;stream=watch",
 14494        "application/vnd.kubernetes.protobuf;stream=watch"
 14495       ],
 14496       "schemes": [
 14497        "https"
 14498       ],
 14499       "tags": [
 14500        "apps_v1alpha1"
 14501       ],
 14502       "operationId": "listAppsV1alpha1NamespacedStatefulSet",
 14503       "parameters": [
 14504        {
 14505         "uniqueItems": true,
 14506         "type": "string",
 14507         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 14508         "name": "fieldSelector",
 14509         "in": "query"
 14510        },
 14511        {
 14512         "uniqueItems": true,
 14513         "type": "string",
 14514         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 14515         "name": "labelSelector",
 14516         "in": "query"
 14517        },
 14518        {
 14519         "uniqueItems": true,
 14520         "type": "string",
 14521         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 14522         "name": "resourceVersion",
 14523         "in": "query"
 14524        },
 14525        {
 14526         "uniqueItems": true,
 14527         "type": "integer",
 14528         "description": "Timeout for the list/watch call.",
 14529         "name": "timeoutSeconds",
 14530         "in": "query"
 14531        },
 14532        {
 14533         "uniqueItems": true,
 14534         "type": "boolean",
 14535         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 14536         "name": "watch",
 14537         "in": "query"
 14538        }
 14539       ],
 14540       "responses": {
 14541        "200": {
 14542         "description": "OK",
 14543         "schema": {
 14544          "$ref": "#/definitions/v1alpha1.StatefulSetList"
 14545         }
 14546        },
 14547        "401": {
 14548         "description": "Unauthorized"
 14549        }
 14550       }
 14551      },
 14552      "post": {
 14553       "description": "create a StatefulSet",
 14554       "consumes": [
 14555        "*/*"
 14556       ],
 14557       "produces": [
 14558        "application/json",
 14559        "application/yaml",
 14560        "application/vnd.kubernetes.protobuf"
 14561       ],
 14562       "schemes": [
 14563        "https"
 14564       ],
 14565       "tags": [
 14566        "apps_v1alpha1"
 14567       ],
 14568       "operationId": "createAppsV1alpha1NamespacedStatefulSet",
 14569       "parameters": [
 14570        {
 14571         "name": "body",
 14572         "in": "body",
 14573         "required": true,
 14574         "schema": {
 14575          "$ref": "#/definitions/v1alpha1.StatefulSet"
 14576         }
 14577        }
 14578       ],
 14579       "responses": {
 14580        "200": {
 14581         "description": "OK",
 14582         "schema": {
 14583          "$ref": "#/definitions/v1alpha1.StatefulSet"
 14584         }
 14585        },
 14586        "401": {
 14587         "description": "Unauthorized"
 14588        }
 14589       }
 14590      },
 14591      "delete": {
 14592       "description": "delete collection of StatefulSet",
 14593       "consumes": [
 14594        "*/*"
 14595       ],
 14596       "produces": [
 14597        "application/json",
 14598        "application/yaml",
 14599        "application/vnd.kubernetes.protobuf"
 14600       ],
 14601       "schemes": [
 14602        "https"
 14603       ],
 14604       "tags": [
 14605        "apps_v1alpha1"
 14606       ],
 14607       "operationId": "deleteAppsV1alpha1CollectionNamespacedStatefulSet",
 14608       "parameters": [
 14609        {
 14610         "uniqueItems": true,
 14611         "type": "string",
 14612         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 14613         "name": "fieldSelector",
 14614         "in": "query"
 14615        },
 14616        {
 14617         "uniqueItems": true,
 14618         "type": "string",
 14619         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 14620         "name": "labelSelector",
 14621         "in": "query"
 14622        },
 14623        {
 14624         "uniqueItems": true,
 14625         "type": "string",
 14626         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 14627         "name": "resourceVersion",
 14628         "in": "query"
 14629        },
 14630        {
 14631         "uniqueItems": true,
 14632         "type": "integer",
 14633         "description": "Timeout for the list/watch call.",
 14634         "name": "timeoutSeconds",
 14635         "in": "query"
 14636        },
 14637        {
 14638         "uniqueItems": true,
 14639         "type": "boolean",
 14640         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 14641         "name": "watch",
 14642         "in": "query"
 14643        }
 14644       ],
 14645       "responses": {
 14646        "200": {
 14647         "description": "OK",
 14648         "schema": {
 14649          "$ref": "#/definitions/unversioned.Status"
 14650         }
 14651        },
 14652        "401": {
 14653         "description": "Unauthorized"
 14654        }
 14655       }
 14656      },
 14657      "parameters": [
 14658       {
 14659        "uniqueItems": true,
 14660        "type": "string",
 14661        "description": "object name and auth scope, such as for teams and projects",
 14662        "name": "namespace",
 14663        "in": "path",
 14664        "required": true
 14665       },
 14666       {
 14667        "uniqueItems": true,
 14668        "type": "string",
 14669        "description": "If 'true', then the output is pretty printed.",
 14670        "name": "pretty",
 14671        "in": "query"
 14672       }
 14673      ]
 14674     },
 14675     "/apis/apps/v1alpha1/namespaces/{namespace}/statefulsets/{name}": {
 14676      "get": {
 14677       "description": "read the specified StatefulSet",
 14678       "consumes": [
 14679        "*/*"
 14680       ],
 14681       "produces": [
 14682        "application/json",
 14683        "application/yaml",
 14684        "application/vnd.kubernetes.protobuf"
 14685       ],
 14686       "schemes": [
 14687        "https"
 14688       ],
 14689       "tags": [
 14690        "apps_v1alpha1"
 14691       ],
 14692       "operationId": "readAppsV1alpha1NamespacedStatefulSet",
 14693       "parameters": [
 14694        {
 14695         "uniqueItems": true,
 14696         "type": "boolean",
 14697         "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'",
 14698         "name": "exact",
 14699         "in": "query"
 14700        },
 14701        {
 14702         "uniqueItems": true,
 14703         "type": "boolean",
 14704         "description": "Should this value be exported.  Export strips fields that a user can not specify.",
 14705         "name": "export",
 14706         "in": "query"
 14707        }
 14708       ],
 14709       "responses": {
 14710        "200": {
 14711         "description": "OK",
 14712         "schema": {
 14713          "$ref": "#/definitions/v1alpha1.StatefulSet"
 14714         }
 14715        },
 14716        "401": {
 14717         "description": "Unauthorized"
 14718        }
 14719       }
 14720      },
 14721      "put": {
 14722       "description": "replace the specified StatefulSet",
 14723       "consumes": [
 14724        "*/*"
 14725       ],
 14726       "produces": [
 14727        "application/json",
 14728        "application/yaml",
 14729        "application/vnd.kubernetes.protobuf"
 14730       ],
 14731       "schemes": [
 14732        "https"
 14733       ],
 14734       "tags": [
 14735        "apps_v1alpha1"
 14736       ],
 14737       "operationId": "replaceAppsV1alpha1NamespacedStatefulSet",
 14738       "parameters": [
 14739        {
 14740         "name": "body",
 14741         "in": "body",
 14742         "required": true,
 14743         "schema": {
 14744          "$ref": "#/definitions/v1alpha1.StatefulSet"
 14745         }
 14746        }
 14747       ],
 14748       "responses": {
 14749        "200": {
 14750         "description": "OK",
 14751         "schema": {
 14752          "$ref": "#/definitions/v1alpha1.StatefulSet"
 14753         }
 14754        },
 14755        "401": {
 14756         "description": "Unauthorized"
 14757        }
 14758       }
 14759      },
 14760      "delete": {
 14761       "description": "delete a StatefulSet",
 14762       "consumes": [
 14763        "*/*"
 14764       ],
 14765       "produces": [
 14766        "application/json",
 14767        "application/yaml",
 14768        "application/vnd.kubernetes.protobuf"
 14769       ],
 14770       "schemes": [
 14771        "https"
 14772       ],
 14773       "tags": [
 14774        "apps_v1alpha1"
 14775       ],
 14776       "operationId": "deleteAppsV1alpha1NamespacedStatefulSet",
 14777       "parameters": [
 14778        {
 14779         "name": "body",
 14780         "in": "body",
 14781         "required": true,
 14782         "schema": {
 14783          "$ref": "#/definitions/v1.DeleteOptions"
 14784         }
 14785        }
 14786       ],
 14787       "responses": {
 14788        "200": {
 14789         "description": "OK",
 14790         "schema": {
 14791          "$ref": "#/definitions/unversioned.Status"
 14792         }
 14793        },
 14794        "401": {
 14795         "description": "Unauthorized"
 14796        }
 14797       }
 14798      },
 14799      "patch": {
 14800       "description": "partially update the specified StatefulSet",
 14801       "consumes": [
 14802        "application/json-patch+json",
 14803        "application/merge-patch+json",
 14804        "application/strategic-merge-patch+json"
 14805       ],
 14806       "produces": [
 14807        "application/json",
 14808        "application/yaml",
 14809        "application/vnd.kubernetes.protobuf"
 14810       ],
 14811       "schemes": [
 14812        "https"
 14813       ],
 14814       "tags": [
 14815        "apps_v1alpha1"
 14816       ],
 14817       "operationId": "patchAppsV1alpha1NamespacedStatefulSet",
 14818       "parameters": [
 14819        {
 14820         "name": "body",
 14821         "in": "body",
 14822         "required": true,
 14823         "schema": {
 14824          "$ref": "#/definitions/unversioned.Patch"
 14825         }
 14826        }
 14827       ],
 14828       "responses": {
 14829        "200": {
 14830         "description": "OK",
 14831         "schema": {
 14832          "$ref": "#/definitions/v1alpha1.StatefulSet"
 14833         }
 14834        },
 14835        "401": {
 14836         "description": "Unauthorized"
 14837        }
 14838       }
 14839      },
 14840      "parameters": [
 14841       {
 14842        "uniqueItems": true,
 14843        "type": "string",
 14844        "description": "name of the StatefulSet",
 14845        "name": "name",
 14846        "in": "path",
 14847        "required": true
 14848       },
 14849       {
 14850        "uniqueItems": true,
 14851        "type": "string",
 14852        "description": "object name and auth scope, such as for teams and projects",
 14853        "name": "namespace",
 14854        "in": "path",
 14855        "required": true
 14856       },
 14857       {
 14858        "uniqueItems": true,
 14859        "type": "string",
 14860        "description": "If 'true', then the output is pretty printed.",
 14861        "name": "pretty",
 14862        "in": "query"
 14863       }
 14864      ]
 14865     },
 14866     "/apis/apps/v1alpha1/namespaces/{namespace}/statefulsets/{name}/status": {
 14867      "get": {
 14868       "description": "read status of the specified StatefulSet",
 14869       "consumes": [
 14870        "*/*"
 14871       ],
 14872       "produces": [
 14873        "application/json",
 14874        "application/yaml",
 14875        "application/vnd.kubernetes.protobuf"
 14876       ],
 14877       "schemes": [
 14878        "https"
 14879       ],
 14880       "tags": [
 14881        "apps_v1alpha1"
 14882       ],
 14883       "operationId": "readAppsV1alpha1NamespacedStatefulSetStatus",
 14884       "responses": {
 14885        "200": {
 14886         "description": "OK",
 14887         "schema": {
 14888          "$ref": "#/definitions/v1alpha1.StatefulSet"
 14889         }
 14890        },
 14891        "401": {
 14892         "description": "Unauthorized"
 14893        }
 14894       }
 14895      },
 14896      "put": {
 14897       "description": "replace status of the specified StatefulSet",
 14898       "consumes": [
 14899        "*/*"
 14900       ],
 14901       "produces": [
 14902        "application/json",
 14903        "application/yaml",
 14904        "application/vnd.kubernetes.protobuf"
 14905       ],
 14906       "schemes": [
 14907        "https"
 14908       ],
 14909       "tags": [
 14910        "apps_v1alpha1"
 14911       ],
 14912       "operationId": "replaceAppsV1alpha1NamespacedStatefulSetStatus",
 14913       "parameters": [
 14914        {
 14915         "name": "body",
 14916         "in": "body",
 14917         "required": true,
 14918         "schema": {
 14919          "$ref": "#/definitions/v1alpha1.StatefulSet"
 14920         }
 14921        }
 14922       ],
 14923       "responses": {
 14924        "200": {
 14925         "description": "OK",
 14926         "schema": {
 14927          "$ref": "#/definitions/v1alpha1.StatefulSet"
 14928         }
 14929        },
 14930        "401": {
 14931         "description": "Unauthorized"
 14932        }
 14933       }
 14934      },
 14935      "patch": {
 14936       "description": "partially update status of the specified StatefulSet",
 14937       "consumes": [
 14938        "application/json-patch+json",
 14939        "application/merge-patch+json",
 14940        "application/strategic-merge-patch+json"
 14941       ],
 14942       "produces": [
 14943        "application/json",
 14944        "application/yaml",
 14945        "application/vnd.kubernetes.protobuf"
 14946       ],
 14947       "schemes": [
 14948        "https"
 14949       ],
 14950       "tags": [
 14951        "apps_v1alpha1"
 14952       ],
 14953       "operationId": "patchAppsV1alpha1NamespacedStatefulSetStatus",
 14954       "parameters": [
 14955        {
 14956         "name": "body",
 14957         "in": "body",
 14958         "required": true,
 14959         "schema": {
 14960          "$ref": "#/definitions/unversioned.Patch"
 14961         }
 14962        }
 14963       ],
 14964       "responses": {
 14965        "200": {
 14966         "description": "OK",
 14967         "schema": {
 14968          "$ref": "#/definitions/v1alpha1.StatefulSet"
 14969         }
 14970        },
 14971        "401": {
 14972         "description": "Unauthorized"
 14973        }
 14974       }
 14975      },
 14976      "parameters": [
 14977       {
 14978        "uniqueItems": true,
 14979        "type": "string",
 14980        "description": "name of the StatefulSet",
 14981        "name": "name",
 14982        "in": "path",
 14983        "required": true
 14984       },
 14985       {
 14986        "uniqueItems": true,
 14987        "type": "string",
 14988        "description": "object name and auth scope, such as for teams and projects",
 14989        "name": "namespace",
 14990        "in": "path",
 14991        "required": true
 14992       },
 14993       {
 14994        "uniqueItems": true,
 14995        "type": "string",
 14996        "description": "If 'true', then the output is pretty printed.",
 14997        "name": "pretty",
 14998        "in": "query"
 14999       }
 15000      ]
 15001     },
 15002     "/apis/apps/v1alpha1/statefulsets": {
 15003      "get": {
 15004       "description": "list or watch objects of kind StatefulSet",
 15005       "consumes": [
 15006        "*/*"
 15007       ],
 15008       "produces": [
 15009        "application/json",
 15010        "application/yaml",
 15011        "application/vnd.kubernetes.protobuf",
 15012        "application/json;stream=watch",
 15013        "application/vnd.kubernetes.protobuf;stream=watch"
 15014       ],
 15015       "schemes": [
 15016        "https"
 15017       ],
 15018       "tags": [
 15019        "apps_v1alpha1"
 15020       ],
 15021       "operationId": "listAppsV1alpha1StatefulSetForAllNamespaces",
 15022       "responses": {
 15023        "200": {
 15024         "description": "OK",
 15025         "schema": {
 15026          "$ref": "#/definitions/v1alpha1.StatefulSetList"
 15027         }
 15028        },
 15029        "401": {
 15030         "description": "Unauthorized"
 15031        }
 15032       }
 15033      },
 15034      "parameters": [
 15035       {
 15036        "uniqueItems": true,
 15037        "type": "string",
 15038        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 15039        "name": "fieldSelector",
 15040        "in": "query"
 15041       },
 15042       {
 15043        "uniqueItems": true,
 15044        "type": "string",
 15045        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 15046        "name": "labelSelector",
 15047        "in": "query"
 15048       },
 15049       {
 15050        "uniqueItems": true,
 15051        "type": "string",
 15052        "description": "If 'true', then the output is pretty printed.",
 15053        "name": "pretty",
 15054        "in": "query"
 15055       },
 15056       {
 15057        "uniqueItems": true,
 15058        "type": "string",
 15059        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 15060        "name": "resourceVersion",
 15061        "in": "query"
 15062       },
 15063       {
 15064        "uniqueItems": true,
 15065        "type": "integer",
 15066        "description": "Timeout for the list/watch call.",
 15067        "name": "timeoutSeconds",
 15068        "in": "query"
 15069       },
 15070       {
 15071        "uniqueItems": true,
 15072        "type": "boolean",
 15073        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 15074        "name": "watch",
 15075        "in": "query"
 15076       }
 15077      ]
 15078     },
 15079     "/apis/apps/v1alpha1/watch/namespaces/{namespace}/statefulsets": {
 15080      "get": {
 15081       "description": "watch individual changes to a list of StatefulSet",
 15082       "consumes": [
 15083        "*/*"
 15084       ],
 15085       "produces": [
 15086        "application/json",
 15087        "application/yaml",
 15088        "application/vnd.kubernetes.protobuf",
 15089        "application/json;stream=watch",
 15090        "application/vnd.kubernetes.protobuf;stream=watch"
 15091       ],
 15092       "schemes": [
 15093        "https"
 15094       ],
 15095       "tags": [
 15096        "apps_v1alpha1"
 15097       ],
 15098       "operationId": "watchAppsV1alpha1NamespacedStatefulSetList",
 15099       "responses": {
 15100        "200": {
 15101         "description": "OK",
 15102         "schema": {
 15103          "$ref": "#/definitions/versioned.Event"
 15104         }
 15105        },
 15106        "401": {
 15107         "description": "Unauthorized"
 15108        }
 15109       }
 15110      },
 15111      "parameters": [
 15112       {
 15113        "uniqueItems": true,
 15114        "type": "string",
 15115        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 15116        "name": "fieldSelector",
 15117        "in": "query"
 15118       },
 15119       {
 15120        "uniqueItems": true,
 15121        "type": "string",
 15122        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 15123        "name": "labelSelector",
 15124        "in": "query"
 15125       },
 15126       {
 15127        "uniqueItems": true,
 15128        "type": "string",
 15129        "description": "object name and auth scope, such as for teams and projects",
 15130        "name": "namespace",
 15131        "in": "path",
 15132        "required": true
 15133       },
 15134       {
 15135        "uniqueItems": true,
 15136        "type": "string",
 15137        "description": "If 'true', then the output is pretty printed.",
 15138        "name": "pretty",
 15139        "in": "query"
 15140       },
 15141       {
 15142        "uniqueItems": true,
 15143        "type": "string",
 15144        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 15145        "name": "resourceVersion",
 15146        "in": "query"
 15147       },
 15148       {
 15149        "uniqueItems": true,
 15150        "type": "integer",
 15151        "description": "Timeout for the list/watch call.",
 15152        "name": "timeoutSeconds",
 15153        "in": "query"
 15154       },
 15155       {
 15156        "uniqueItems": true,
 15157        "type": "boolean",
 15158        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 15159        "name": "watch",
 15160        "in": "query"
 15161       }
 15162      ]
 15163     },
 15164     "/apis/apps/v1alpha1/watch/namespaces/{namespace}/statefulsets/{name}": {
 15165      "get": {
 15166       "description": "watch changes to an object of kind StatefulSet",
 15167       "consumes": [
 15168        "*/*"
 15169       ],
 15170       "produces": [
 15171        "application/json",
 15172        "application/yaml",
 15173        "application/vnd.kubernetes.protobuf",
 15174        "application/json;stream=watch",
 15175        "application/vnd.kubernetes.protobuf;stream=watch"
 15176       ],
 15177       "schemes": [
 15178        "https"
 15179       ],
 15180       "tags": [
 15181        "apps_v1alpha1"
 15182       ],
 15183       "operationId": "watchAppsV1alpha1NamespacedStatefulSet",
 15184       "responses": {
 15185        "200": {
 15186         "description": "OK",
 15187         "schema": {
 15188          "$ref": "#/definitions/versioned.Event"
 15189         }
 15190        },
 15191        "401": {
 15192         "description": "Unauthorized"
 15193        }
 15194       }
 15195      },
 15196      "parameters": [
 15197       {
 15198        "uniqueItems": true,
 15199        "type": "string",
 15200        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 15201        "name": "fieldSelector",
 15202        "in": "query"
 15203       },
 15204       {
 15205        "uniqueItems": true,
 15206        "type": "string",
 15207        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 15208        "name": "labelSelector",
 15209        "in": "query"
 15210       },
 15211       {
 15212        "uniqueItems": true,
 15213        "type": "string",
 15214        "description": "name of the StatefulSet",
 15215        "name": "name",
 15216        "in": "path",
 15217        "required": true
 15218       },
 15219       {
 15220        "uniqueItems": true,
 15221        "type": "string",
 15222        "description": "object name and auth scope, such as for teams and projects",
 15223        "name": "namespace",
 15224        "in": "path",
 15225        "required": true
 15226       },
 15227       {
 15228        "uniqueItems": true,
 15229        "type": "string",
 15230        "description": "If 'true', then the output is pretty printed.",
 15231        "name": "pretty",
 15232        "in": "query"
 15233       },
 15234       {
 15235        "uniqueItems": true,
 15236        "type": "string",
 15237        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 15238        "name": "resourceVersion",
 15239        "in": "query"
 15240       },
 15241       {
 15242        "uniqueItems": true,
 15243        "type": "integer",
 15244        "description": "Timeout for the list/watch call.",
 15245        "name": "timeoutSeconds",
 15246        "in": "query"
 15247       },
 15248       {
 15249        "uniqueItems": true,
 15250        "type": "boolean",
 15251        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 15252        "name": "watch",
 15253        "in": "query"
 15254       }
 15255      ]
 15256     },
 15257     "/apis/apps/v1alpha1/watch/statefulsets": {
 15258      "get": {
 15259       "description": "watch individual changes to a list of StatefulSet",
 15260       "consumes": [
 15261        "*/*"
 15262       ],
 15263       "produces": [
 15264        "application/json",
 15265        "application/yaml",
 15266        "application/vnd.kubernetes.protobuf",
 15267        "application/json;stream=watch",
 15268        "application/vnd.kubernetes.protobuf;stream=watch"
 15269       ],
 15270       "schemes": [
 15271        "https"
 15272       ],
 15273       "tags": [
 15274        "apps_v1alpha1"
 15275       ],
 15276       "operationId": "watchAppsV1alpha1StatefulSetListForAllNamespaces",
 15277       "responses": {
 15278        "200": {
 15279         "description": "OK",
 15280         "schema": {
 15281          "$ref": "#/definitions/versioned.Event"
 15282         }
 15283        },
 15284        "401": {
 15285         "description": "Unauthorized"
 15286        }
 15287       }
 15288      },
 15289      "parameters": [
 15290       {
 15291        "uniqueItems": true,
 15292        "type": "string",
 15293        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 15294        "name": "fieldSelector",
 15295        "in": "query"
 15296       },
 15297       {
 15298        "uniqueItems": true,
 15299        "type": "string",
 15300        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 15301        "name": "labelSelector",
 15302        "in": "query"
 15303       },
 15304       {
 15305        "uniqueItems": true,
 15306        "type": "string",
 15307        "description": "If 'true', then the output is pretty printed.",
 15308        "name": "pretty",
 15309        "in": "query"
 15310       },
 15311       {
 15312        "uniqueItems": true,
 15313        "type": "string",
 15314        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 15315        "name": "resourceVersion",
 15316        "in": "query"
 15317       },
 15318       {
 15319        "uniqueItems": true,
 15320        "type": "integer",
 15321        "description": "Timeout for the list/watch call.",
 15322        "name": "timeoutSeconds",
 15323        "in": "query"
 15324       },
 15325       {
 15326        "uniqueItems": true,
 15327        "type": "boolean",
 15328        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 15329        "name": "watch",
 15330        "in": "query"
 15331       }
 15332      ]
 15333     },
 15334     "/apis/authentication.k8s.io/": {
 15335      "get": {
 15336       "description": "get information of a group",
 15337       "consumes": [
 15338        "application/json",
 15339        "application/yaml",
 15340        "application/vnd.kubernetes.protobuf"
 15341       ],
 15342       "produces": [
 15343        "application/json",
 15344        "application/yaml",
 15345        "application/vnd.kubernetes.protobuf"
 15346       ],
 15347       "schemes": [
 15348        "https"
 15349       ],
 15350       "tags": [
 15351        "authentication"
 15352       ],
 15353       "operationId": "getAuthenticationAPIGroup",
 15354       "responses": {
 15355        "200": {
 15356         "description": "OK",
 15357         "schema": {
 15358          "$ref": "#/definitions/unversioned.APIGroup"
 15359         }
 15360        },
 15361        "401": {
 15362         "description": "Unauthorized"
 15363        }
 15364       }
 15365      }
 15366     },
 15367     "/apis/authentication.k8s.io/v1beta1/": {
 15368      "get": {
 15369       "description": "get available resources",
 15370       "consumes": [
 15371        "application/json",
 15372        "application/yaml",
 15373        "application/vnd.kubernetes.protobuf"
 15374       ],
 15375       "produces": [
 15376        "application/json",
 15377        "application/yaml",
 15378        "application/vnd.kubernetes.protobuf"
 15379       ],
 15380       "schemes": [
 15381        "https"
 15382       ],
 15383       "tags": [
 15384        "authentication_v1beta1"
 15385       ],
 15386       "operationId": "getAuthenticationV1beta1APIResources",
 15387       "responses": {
 15388        "200": {
 15389         "description": "OK",
 15390         "schema": {
 15391          "$ref": "#/definitions/unversioned.APIResourceList"
 15392         }
 15393        },
 15394        "401": {
 15395         "description": "Unauthorized"
 15396        }
 15397       }
 15398      }
 15399     },
 15400     "/apis/authentication.k8s.io/v1beta1/tokenreviews": {
 15401      "post": {
 15402       "description": "create a TokenReview",
 15403       "consumes": [
 15404        "*/*"
 15405       ],
 15406       "produces": [
 15407        "application/json",
 15408        "application/yaml",
 15409        "application/vnd.kubernetes.protobuf"
 15410       ],
 15411       "schemes": [
 15412        "https"
 15413       ],
 15414       "tags": [
 15415        "authentication_v1beta1"
 15416       ],
 15417       "operationId": "createAuthenticationV1beta1TokenReview",
 15418       "responses": {
 15419        "200": {
 15420         "description": "OK",
 15421         "schema": {
 15422          "$ref": "#/definitions/v1beta1.TokenReview"
 15423         }
 15424        },
 15425        "401": {
 15426         "description": "Unauthorized"
 15427        }
 15428       }
 15429      },
 15430      "parameters": [
 15431       {
 15432        "name": "body",
 15433        "in": "body",
 15434        "required": true,
 15435        "schema": {
 15436         "$ref": "#/definitions/v1beta1.TokenReview"
 15437        }
 15438       },
 15439       {
 15440        "uniqueItems": true,
 15441        "type": "string",
 15442        "description": "If 'true', then the output is pretty printed.",
 15443        "name": "pretty",
 15444        "in": "query"
 15445       }
 15446      ]
 15447     },
 15448     "/apis/authorization.k8s.io/": {
 15449      "get": {
 15450       "description": "get information of a group",
 15451       "consumes": [
 15452        "application/json",
 15453        "application/yaml",
 15454        "application/vnd.kubernetes.protobuf"
 15455       ],
 15456       "produces": [
 15457        "application/json",
 15458        "application/yaml",
 15459        "application/vnd.kubernetes.protobuf"
 15460       ],
 15461       "schemes": [
 15462        "https"
 15463       ],
 15464       "tags": [
 15465        "authorization"
 15466       ],
 15467       "operationId": "getAuthorizationAPIGroup",
 15468       "responses": {
 15469        "200": {
 15470         "description": "OK",
 15471         "schema": {
 15472          "$ref": "#/definitions/unversioned.APIGroup"
 15473         }
 15474        },
 15475        "401": {
 15476         "description": "Unauthorized"
 15477        }
 15478       }
 15479      }
 15480     },
 15481     "/apis/authorization.k8s.io/v1beta1/": {
 15482      "get": {
 15483       "description": "get available resources",
 15484       "consumes": [
 15485        "application/json",
 15486        "application/yaml",
 15487        "application/vnd.kubernetes.protobuf"
 15488       ],
 15489       "produces": [
 15490        "application/json",
 15491        "application/yaml",
 15492        "application/vnd.kubernetes.protobuf"
 15493       ],
 15494       "schemes": [
 15495        "https"
 15496       ],
 15497       "tags": [
 15498        "authorization_v1beta1"
 15499       ],
 15500       "operationId": "getAuthorizationV1beta1APIResources",
 15501       "responses": {
 15502        "200": {
 15503         "description": "OK",
 15504         "schema": {
 15505          "$ref": "#/definitions/unversioned.APIResourceList"
 15506         }
 15507        },
 15508        "401": {
 15509         "description": "Unauthorized"
 15510        }
 15511       }
 15512      }
 15513     },
 15514     "/apis/authorization.k8s.io/v1beta1/namespaces/{namespace}/localsubjectaccessreviews": {
 15515      "post": {
 15516       "description": "create a LocalSubjectAccessReview",
 15517       "consumes": [
 15518        "*/*"
 15519       ],
 15520       "produces": [
 15521        "application/json",
 15522        "application/yaml",
 15523        "application/vnd.kubernetes.protobuf"
 15524       ],
 15525       "schemes": [
 15526        "https"
 15527       ],
 15528       "tags": [
 15529        "authorization_v1beta1"
 15530       ],
 15531       "operationId": "createAuthorizationV1beta1NamespacedLocalSubjectAccessReview",
 15532       "responses": {
 15533        "200": {
 15534         "description": "OK",
 15535         "schema": {
 15536          "$ref": "#/definitions/v1beta1.LocalSubjectAccessReview"
 15537         }
 15538        },
 15539        "401": {
 15540         "description": "Unauthorized"
 15541        }
 15542       }
 15543      },
 15544      "parameters": [
 15545       {
 15546        "name": "body",
 15547        "in": "body",
 15548        "required": true,
 15549        "schema": {
 15550         "$ref": "#/definitions/v1beta1.LocalSubjectAccessReview"
 15551        }
 15552       },
 15553       {
 15554        "uniqueItems": true,
 15555        "type": "string",
 15556        "description": "object name and auth scope, such as for teams and projects",
 15557        "name": "namespace",
 15558        "in": "path",
 15559        "required": true
 15560       },
 15561       {
 15562        "uniqueItems": true,
 15563        "type": "string",
 15564        "description": "If 'true', then the output is pretty printed.",
 15565        "name": "pretty",
 15566        "in": "query"
 15567       }
 15568      ]
 15569     },
 15570     "/apis/authorization.k8s.io/v1beta1/selfsubjectaccessreviews": {
 15571      "post": {
 15572       "description": "create a SelfSubjectAccessReview",
 15573       "consumes": [
 15574        "*/*"
 15575       ],
 15576       "produces": [
 15577        "application/json",
 15578        "application/yaml",
 15579        "application/vnd.kubernetes.protobuf"
 15580       ],
 15581       "schemes": [
 15582        "https"
 15583       ],
 15584       "tags": [
 15585        "authorization_v1beta1"
 15586       ],
 15587       "operationId": "createAuthorizationV1beta1SelfSubjectAccessReview",
 15588       "responses": {
 15589        "200": {
 15590         "description": "OK",
 15591         "schema": {
 15592          "$ref": "#/definitions/v1beta1.SelfSubjectAccessReview"
 15593         }
 15594        },
 15595        "401": {
 15596         "description": "Unauthorized"
 15597        }
 15598       }
 15599      },
 15600      "parameters": [
 15601       {
 15602        "name": "body",
 15603        "in": "body",
 15604        "required": true,
 15605        "schema": {
 15606         "$ref": "#/definitions/v1beta1.SelfSubjectAccessReview"
 15607        }
 15608       },
 15609       {
 15610        "uniqueItems": true,
 15611        "type": "string",
 15612        "description": "If 'true', then the output is pretty printed.",
 15613        "name": "pretty",
 15614        "in": "query"
 15615       }
 15616      ]
 15617     },
 15618     "/apis/authorization.k8s.io/v1beta1/subjectaccessreviews": {
 15619      "post": {
 15620       "description": "create a SubjectAccessReview",
 15621       "consumes": [
 15622        "*/*"
 15623       ],
 15624       "produces": [
 15625        "application/json",
 15626        "application/yaml",
 15627        "application/vnd.kubernetes.protobuf"
 15628       ],
 15629       "schemes": [
 15630        "https"
 15631       ],
 15632       "tags": [
 15633        "authorization_v1beta1"
 15634       ],
 15635       "operationId": "createAuthorizationV1beta1SubjectAccessReview",
 15636       "responses": {
 15637        "200": {
 15638         "description": "OK",
 15639         "schema": {
 15640          "$ref": "#/definitions/v1beta1.SubjectAccessReview"
 15641         }
 15642        },
 15643        "401": {
 15644         "description": "Unauthorized"
 15645        }
 15646       }
 15647      },
 15648      "parameters": [
 15649       {
 15650        "name": "body",
 15651        "in": "body",
 15652        "required": true,
 15653        "schema": {
 15654         "$ref": "#/definitions/v1beta1.SubjectAccessReview"
 15655        }
 15656       },
 15657       {
 15658        "uniqueItems": true,
 15659        "type": "string",
 15660        "description": "If 'true', then the output is pretty printed.",
 15661        "name": "pretty",
 15662        "in": "query"
 15663       }
 15664      ]
 15665     },
 15666     "/apis/autoscaling/": {
 15667      "get": {
 15668       "description": "get information of a group",
 15669       "consumes": [
 15670        "application/json",
 15671        "application/yaml",
 15672        "application/vnd.kubernetes.protobuf"
 15673       ],
 15674       "produces": [
 15675        "application/json",
 15676        "application/yaml",
 15677        "application/vnd.kubernetes.protobuf"
 15678       ],
 15679       "schemes": [
 15680        "https"
 15681       ],
 15682       "tags": [
 15683        "autoscaling"
 15684       ],
 15685       "operationId": "getAutoscalingAPIGroup",
 15686       "responses": {
 15687        "200": {
 15688         "description": "OK",
 15689         "schema": {
 15690          "$ref": "#/definitions/unversioned.APIGroup"
 15691         }
 15692        },
 15693        "401": {
 15694         "description": "Unauthorized"
 15695        }
 15696       }
 15697      }
 15698     },
 15699     "/apis/autoscaling/v1/": {
 15700      "get": {
 15701       "description": "get available resources",
 15702       "consumes": [
 15703        "application/json",
 15704        "application/yaml",
 15705        "application/vnd.kubernetes.protobuf"
 15706       ],
 15707       "produces": [
 15708        "application/json",
 15709        "application/yaml",
 15710        "application/vnd.kubernetes.protobuf"
 15711       ],
 15712       "schemes": [
 15713        "https"
 15714       ],
 15715       "tags": [
 15716        "autoscaling_v1"
 15717       ],
 15718       "operationId": "getAutoscalingV1APIResources",
 15719       "responses": {
 15720        "200": {
 15721         "description": "OK",
 15722         "schema": {
 15723          "$ref": "#/definitions/unversioned.APIResourceList"
 15724         }
 15725        },
 15726        "401": {
 15727         "description": "Unauthorized"
 15728        }
 15729       }
 15730      }
 15731     },
 15732     "/apis/autoscaling/v1/horizontalpodautoscalers": {
 15733      "get": {
 15734       "description": "list or watch objects of kind HorizontalPodAutoscaler",
 15735       "consumes": [
 15736        "*/*"
 15737       ],
 15738       "produces": [
 15739        "application/json",
 15740        "application/yaml",
 15741        "application/vnd.kubernetes.protobuf",
 15742        "application/json;stream=watch",
 15743        "application/vnd.kubernetes.protobuf;stream=watch"
 15744       ],
 15745       "schemes": [
 15746        "https"
 15747       ],
 15748       "tags": [
 15749        "autoscaling_v1"
 15750       ],
 15751       "operationId": "listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces",
 15752       "responses": {
 15753        "200": {
 15754         "description": "OK",
 15755         "schema": {
 15756          "$ref": "#/definitions/v1.HorizontalPodAutoscalerList"
 15757         }
 15758        },
 15759        "401": {
 15760         "description": "Unauthorized"
 15761        }
 15762       }
 15763      },
 15764      "parameters": [
 15765       {
 15766        "uniqueItems": true,
 15767        "type": "string",
 15768        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 15769        "name": "fieldSelector",
 15770        "in": "query"
 15771       },
 15772       {
 15773        "uniqueItems": true,
 15774        "type": "string",
 15775        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 15776        "name": "labelSelector",
 15777        "in": "query"
 15778       },
 15779       {
 15780        "uniqueItems": true,
 15781        "type": "string",
 15782        "description": "If 'true', then the output is pretty printed.",
 15783        "name": "pretty",
 15784        "in": "query"
 15785       },
 15786       {
 15787        "uniqueItems": true,
 15788        "type": "string",
 15789        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 15790        "name": "resourceVersion",
 15791        "in": "query"
 15792       },
 15793       {
 15794        "uniqueItems": true,
 15795        "type": "integer",
 15796        "description": "Timeout for the list/watch call.",
 15797        "name": "timeoutSeconds",
 15798        "in": "query"
 15799       },
 15800       {
 15801        "uniqueItems": true,
 15802        "type": "boolean",
 15803        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 15804        "name": "watch",
 15805        "in": "query"
 15806       }
 15807      ]
 15808     },
 15809     "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers": {
 15810      "get": {
 15811       "description": "list or watch objects of kind HorizontalPodAutoscaler",
 15812       "consumes": [
 15813        "*/*"
 15814       ],
 15815       "produces": [
 15816        "application/json",
 15817        "application/yaml",
 15818        "application/vnd.kubernetes.protobuf",
 15819        "application/json;stream=watch",
 15820        "application/vnd.kubernetes.protobuf;stream=watch"
 15821       ],
 15822       "schemes": [
 15823        "https"
 15824       ],
 15825       "tags": [
 15826        "autoscaling_v1"
 15827       ],
 15828       "operationId": "listAutoscalingV1NamespacedHorizontalPodAutoscaler",
 15829       "parameters": [
 15830        {
 15831         "uniqueItems": true,
 15832         "type": "string",
 15833         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 15834         "name": "fieldSelector",
 15835         "in": "query"
 15836        },
 15837        {
 15838         "uniqueItems": true,
 15839         "type": "string",
 15840         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 15841         "name": "labelSelector",
 15842         "in": "query"
 15843        },
 15844        {
 15845         "uniqueItems": true,
 15846         "type": "string",
 15847         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 15848         "name": "resourceVersion",
 15849         "in": "query"
 15850        },
 15851        {
 15852         "uniqueItems": true,
 15853         "type": "integer",
 15854         "description": "Timeout for the list/watch call.",
 15855         "name": "timeoutSeconds",
 15856         "in": "query"
 15857        },
 15858        {
 15859         "uniqueItems": true,
 15860         "type": "boolean",
 15861         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 15862         "name": "watch",
 15863         "in": "query"
 15864        }
 15865       ],
 15866       "responses": {
 15867        "200": {
 15868         "description": "OK",
 15869         "schema": {
 15870          "$ref": "#/definitions/v1.HorizontalPodAutoscalerList"
 15871         }
 15872        },
 15873        "401": {
 15874         "description": "Unauthorized"
 15875        }
 15876       }
 15877      },
 15878      "post": {
 15879       "description": "create a HorizontalPodAutoscaler",
 15880       "consumes": [
 15881        "*/*"
 15882       ],
 15883       "produces": [
 15884        "application/json",
 15885        "application/yaml",
 15886        "application/vnd.kubernetes.protobuf"
 15887       ],
 15888       "schemes": [
 15889        "https"
 15890       ],
 15891       "tags": [
 15892        "autoscaling_v1"
 15893       ],
 15894       "operationId": "createAutoscalingV1NamespacedHorizontalPodAutoscaler",
 15895       "parameters": [
 15896        {
 15897         "name": "body",
 15898         "in": "body",
 15899         "required": true,
 15900         "schema": {
 15901          "$ref": "#/definitions/v1.HorizontalPodAutoscaler"
 15902         }
 15903        }
 15904       ],
 15905       "responses": {
 15906        "200": {
 15907         "description": "OK",
 15908         "schema": {
 15909          "$ref": "#/definitions/v1.HorizontalPodAutoscaler"
 15910         }
 15911        },
 15912        "401": {
 15913         "description": "Unauthorized"
 15914        }
 15915       }
 15916      },
 15917      "delete": {
 15918       "description": "delete collection of HorizontalPodAutoscaler",
 15919       "consumes": [
 15920        "*/*"
 15921       ],
 15922       "produces": [
 15923        "application/json",
 15924        "application/yaml",
 15925        "application/vnd.kubernetes.protobuf"
 15926       ],
 15927       "schemes": [
 15928        "https"
 15929       ],
 15930       "tags": [
 15931        "autoscaling_v1"
 15932       ],
 15933       "operationId": "deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler",
 15934       "parameters": [
 15935        {
 15936         "uniqueItems": true,
 15937         "type": "string",
 15938         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 15939         "name": "fieldSelector",
 15940         "in": "query"
 15941        },
 15942        {
 15943         "uniqueItems": true,
 15944         "type": "string",
 15945         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 15946         "name": "labelSelector",
 15947         "in": "query"
 15948        },
 15949        {
 15950         "uniqueItems": true,
 15951         "type": "string",
 15952         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 15953         "name": "resourceVersion",
 15954         "in": "query"
 15955        },
 15956        {
 15957         "uniqueItems": true,
 15958         "type": "integer",
 15959         "description": "Timeout for the list/watch call.",
 15960         "name": "timeoutSeconds",
 15961         "in": "query"
 15962        },
 15963        {
 15964         "uniqueItems": true,
 15965         "type": "boolean",
 15966         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 15967         "name": "watch",
 15968         "in": "query"
 15969        }
 15970       ],
 15971       "responses": {
 15972        "200": {
 15973         "description": "OK",
 15974         "schema": {
 15975          "$ref": "#/definitions/unversioned.Status"
 15976         }
 15977        },
 15978        "401": {
 15979         "description": "Unauthorized"
 15980        }
 15981       }
 15982      },
 15983      "parameters": [
 15984       {
 15985        "uniqueItems": true,
 15986        "type": "string",
 15987        "description": "object name and auth scope, such as for teams and projects",
 15988        "name": "namespace",
 15989        "in": "path",
 15990        "required": true
 15991       },
 15992       {
 15993        "uniqueItems": true,
 15994        "type": "string",
 15995        "description": "If 'true', then the output is pretty printed.",
 15996        "name": "pretty",
 15997        "in": "query"
 15998       }
 15999      ]
 16000     },
 16001     "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}": {
 16002      "get": {
 16003       "description": "read the specified HorizontalPodAutoscaler",
 16004       "consumes": [
 16005        "*/*"
 16006       ],
 16007       "produces": [
 16008        "application/json",
 16009        "application/yaml",
 16010        "application/vnd.kubernetes.protobuf"
 16011       ],
 16012       "schemes": [
 16013        "https"
 16014       ],
 16015       "tags": [
 16016        "autoscaling_v1"
 16017       ],
 16018       "operationId": "readAutoscalingV1NamespacedHorizontalPodAutoscaler",
 16019       "parameters": [
 16020        {
 16021         "uniqueItems": true,
 16022         "type": "boolean",
 16023         "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'",
 16024         "name": "exact",
 16025         "in": "query"
 16026        },
 16027        {
 16028         "uniqueItems": true,
 16029         "type": "boolean",
 16030         "description": "Should this value be exported.  Export strips fields that a user can not specify.",
 16031         "name": "export",
 16032         "in": "query"
 16033        }
 16034       ],
 16035       "responses": {
 16036        "200": {
 16037         "description": "OK",
 16038         "schema": {
 16039          "$ref": "#/definitions/v1.HorizontalPodAutoscaler"
 16040         }
 16041        },
 16042        "401": {
 16043         "description": "Unauthorized"
 16044        }
 16045       }
 16046      },
 16047      "put": {
 16048       "description": "replace the specified HorizontalPodAutoscaler",
 16049       "consumes": [
 16050        "*/*"
 16051       ],
 16052       "produces": [
 16053        "application/json",
 16054        "application/yaml",
 16055        "application/vnd.kubernetes.protobuf"
 16056       ],
 16057       "schemes": [
 16058        "https"
 16059       ],
 16060       "tags": [
 16061        "autoscaling_v1"
 16062       ],
 16063       "operationId": "replaceAutoscalingV1NamespacedHorizontalPodAutoscaler",
 16064       "parameters": [
 16065        {
 16066         "name": "body",
 16067         "in": "body",
 16068         "required": true,
 16069         "schema": {
 16070          "$ref": "#/definitions/v1.HorizontalPodAutoscaler"
 16071         }
 16072        }
 16073       ],
 16074       "responses": {
 16075        "200": {
 16076         "description": "OK",
 16077         "schema": {
 16078          "$ref": "#/definitions/v1.HorizontalPodAutoscaler"
 16079         }
 16080        },
 16081        "401": {
 16082         "description": "Unauthorized"
 16083        }
 16084       }
 16085      },
 16086      "delete": {
 16087       "description": "delete a HorizontalPodAutoscaler",
 16088       "consumes": [
 16089        "*/*"
 16090       ],
 16091       "produces": [
 16092        "application/json",
 16093        "application/yaml",
 16094        "application/vnd.kubernetes.protobuf"
 16095       ],
 16096       "schemes": [
 16097        "https"
 16098       ],
 16099       "tags": [
 16100        "autoscaling_v1"
 16101       ],
 16102       "operationId": "deleteAutoscalingV1NamespacedHorizontalPodAutoscaler",
 16103       "parameters": [
 16104        {
 16105         "name": "body",
 16106         "in": "body",
 16107         "required": true,
 16108         "schema": {
 16109          "$ref": "#/definitions/v1.DeleteOptions"
 16110         }
 16111        }
 16112       ],
 16113       "responses": {
 16114        "200": {
 16115         "description": "OK",
 16116         "schema": {
 16117          "$ref": "#/definitions/unversioned.Status"
 16118         }
 16119        },
 16120        "401": {
 16121         "description": "Unauthorized"
 16122        }
 16123       }
 16124      },
 16125      "patch": {
 16126       "description": "partially update the specified HorizontalPodAutoscaler",
 16127       "consumes": [
 16128        "application/json-patch+json",
 16129        "application/merge-patch+json",
 16130        "application/strategic-merge-patch+json"
 16131       ],
 16132       "produces": [
 16133        "application/json",
 16134        "application/yaml",
 16135        "application/vnd.kubernetes.protobuf"
 16136       ],
 16137       "schemes": [
 16138        "https"
 16139       ],
 16140       "tags": [
 16141        "autoscaling_v1"
 16142       ],
 16143       "operationId": "patchAutoscalingV1NamespacedHorizontalPodAutoscaler",
 16144       "parameters": [
 16145        {
 16146         "name": "body",
 16147         "in": "body",
 16148         "required": true,
 16149         "schema": {
 16150          "$ref": "#/definitions/unversioned.Patch"
 16151         }
 16152        }
 16153       ],
 16154       "responses": {
 16155        "200": {
 16156         "description": "OK",
 16157         "schema": {
 16158          "$ref": "#/definitions/v1.HorizontalPodAutoscaler"
 16159         }
 16160        },
 16161        "401": {
 16162         "description": "Unauthorized"
 16163        }
 16164       }
 16165      },
 16166      "parameters": [
 16167       {
 16168        "uniqueItems": true,
 16169        "type": "string",
 16170        "description": "name of the HorizontalPodAutoscaler",
 16171        "name": "name",
 16172        "in": "path",
 16173        "required": true
 16174       },
 16175       {
 16176        "uniqueItems": true,
 16177        "type": "string",
 16178        "description": "object name and auth scope, such as for teams and projects",
 16179        "name": "namespace",
 16180        "in": "path",
 16181        "required": true
 16182       },
 16183       {
 16184        "uniqueItems": true,
 16185        "type": "string",
 16186        "description": "If 'true', then the output is pretty printed.",
 16187        "name": "pretty",
 16188        "in": "query"
 16189       }
 16190      ]
 16191     },
 16192     "/apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status": {
 16193      "get": {
 16194       "description": "read status of the specified HorizontalPodAutoscaler",
 16195       "consumes": [
 16196        "*/*"
 16197       ],
 16198       "produces": [
 16199        "application/json",
 16200        "application/yaml",
 16201        "application/vnd.kubernetes.protobuf"
 16202       ],
 16203       "schemes": [
 16204        "https"
 16205       ],
 16206       "tags": [
 16207        "autoscaling_v1"
 16208       ],
 16209       "operationId": "readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus",
 16210       "responses": {
 16211        "200": {
 16212         "description": "OK",
 16213         "schema": {
 16214          "$ref": "#/definitions/v1.HorizontalPodAutoscaler"
 16215         }
 16216        },
 16217        "401": {
 16218         "description": "Unauthorized"
 16219        }
 16220       }
 16221      },
 16222      "put": {
 16223       "description": "replace status of the specified HorizontalPodAutoscaler",
 16224       "consumes": [
 16225        "*/*"
 16226       ],
 16227       "produces": [
 16228        "application/json",
 16229        "application/yaml",
 16230        "application/vnd.kubernetes.protobuf"
 16231       ],
 16232       "schemes": [
 16233        "https"
 16234       ],
 16235       "tags": [
 16236        "autoscaling_v1"
 16237       ],
 16238       "operationId": "replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus",
 16239       "parameters": [
 16240        {
 16241         "name": "body",
 16242         "in": "body",
 16243         "required": true,
 16244         "schema": {
 16245          "$ref": "#/definitions/v1.HorizontalPodAutoscaler"
 16246         }
 16247        }
 16248       ],
 16249       "responses": {
 16250        "200": {
 16251         "description": "OK",
 16252         "schema": {
 16253          "$ref": "#/definitions/v1.HorizontalPodAutoscaler"
 16254         }
 16255        },
 16256        "401": {
 16257         "description": "Unauthorized"
 16258        }
 16259       }
 16260      },
 16261      "patch": {
 16262       "description": "partially update status of the specified HorizontalPodAutoscaler",
 16263       "consumes": [
 16264        "application/json-patch+json",
 16265        "application/merge-patch+json",
 16266        "application/strategic-merge-patch+json"
 16267       ],
 16268       "produces": [
 16269        "application/json",
 16270        "application/yaml",
 16271        "application/vnd.kubernetes.protobuf"
 16272       ],
 16273       "schemes": [
 16274        "https"
 16275       ],
 16276       "tags": [
 16277        "autoscaling_v1"
 16278       ],
 16279       "operationId": "patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus",
 16280       "parameters": [
 16281        {
 16282         "name": "body",
 16283         "in": "body",
 16284         "required": true,
 16285         "schema": {
 16286          "$ref": "#/definitions/unversioned.Patch"
 16287         }
 16288        }
 16289       ],
 16290       "responses": {
 16291        "200": {
 16292         "description": "OK",
 16293         "schema": {
 16294          "$ref": "#/definitions/v1.HorizontalPodAutoscaler"
 16295         }
 16296        },
 16297        "401": {
 16298         "description": "Unauthorized"
 16299        }
 16300       }
 16301      },
 16302      "parameters": [
 16303       {
 16304        "uniqueItems": true,
 16305        "type": "string",
 16306        "description": "name of the HorizontalPodAutoscaler",
 16307        "name": "name",
 16308        "in": "path",
 16309        "required": true
 16310       },
 16311       {
 16312        "uniqueItems": true,
 16313        "type": "string",
 16314        "description": "object name and auth scope, such as for teams and projects",
 16315        "name": "namespace",
 16316        "in": "path",
 16317        "required": true
 16318       },
 16319       {
 16320        "uniqueItems": true,
 16321        "type": "string",
 16322        "description": "If 'true', then the output is pretty printed.",
 16323        "name": "pretty",
 16324        "in": "query"
 16325       }
 16326      ]
 16327     },
 16328     "/apis/autoscaling/v1/watch/horizontalpodautoscalers": {
 16329      "get": {
 16330       "description": "watch individual changes to a list of HorizontalPodAutoscaler",
 16331       "consumes": [
 16332        "*/*"
 16333       ],
 16334       "produces": [
 16335        "application/json",
 16336        "application/yaml",
 16337        "application/vnd.kubernetes.protobuf",
 16338        "application/json;stream=watch",
 16339        "application/vnd.kubernetes.protobuf;stream=watch"
 16340       ],
 16341       "schemes": [
 16342        "https"
 16343       ],
 16344       "tags": [
 16345        "autoscaling_v1"
 16346       ],
 16347       "operationId": "watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces",
 16348       "responses": {
 16349        "200": {
 16350         "description": "OK",
 16351         "schema": {
 16352          "$ref": "#/definitions/versioned.Event"
 16353         }
 16354        },
 16355        "401": {
 16356         "description": "Unauthorized"
 16357        }
 16358       }
 16359      },
 16360      "parameters": [
 16361       {
 16362        "uniqueItems": true,
 16363        "type": "string",
 16364        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 16365        "name": "fieldSelector",
 16366        "in": "query"
 16367       },
 16368       {
 16369        "uniqueItems": true,
 16370        "type": "string",
 16371        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 16372        "name": "labelSelector",
 16373        "in": "query"
 16374       },
 16375       {
 16376        "uniqueItems": true,
 16377        "type": "string",
 16378        "description": "If 'true', then the output is pretty printed.",
 16379        "name": "pretty",
 16380        "in": "query"
 16381       },
 16382       {
 16383        "uniqueItems": true,
 16384        "type": "string",
 16385        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 16386        "name": "resourceVersion",
 16387        "in": "query"
 16388       },
 16389       {
 16390        "uniqueItems": true,
 16391        "type": "integer",
 16392        "description": "Timeout for the list/watch call.",
 16393        "name": "timeoutSeconds",
 16394        "in": "query"
 16395       },
 16396       {
 16397        "uniqueItems": true,
 16398        "type": "boolean",
 16399        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 16400        "name": "watch",
 16401        "in": "query"
 16402       }
 16403      ]
 16404     },
 16405     "/apis/autoscaling/v1/watch/namespaces/{namespace}/horizontalpodautoscalers": {
 16406      "get": {
 16407       "description": "watch individual changes to a list of HorizontalPodAutoscaler",
 16408       "consumes": [
 16409        "*/*"
 16410       ],
 16411       "produces": [
 16412        "application/json",
 16413        "application/yaml",
 16414        "application/vnd.kubernetes.protobuf",
 16415        "application/json;stream=watch",
 16416        "application/vnd.kubernetes.protobuf;stream=watch"
 16417       ],
 16418       "schemes": [
 16419        "https"
 16420       ],
 16421       "tags": [
 16422        "autoscaling_v1"
 16423       ],
 16424       "operationId": "watchAutoscalingV1NamespacedHorizontalPodAutoscalerList",
 16425       "responses": {
 16426        "200": {
 16427         "description": "OK",
 16428         "schema": {
 16429          "$ref": "#/definitions/versioned.Event"
 16430         }
 16431        },
 16432        "401": {
 16433         "description": "Unauthorized"
 16434        }
 16435       }
 16436      },
 16437      "parameters": [
 16438       {
 16439        "uniqueItems": true,
 16440        "type": "string",
 16441        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 16442        "name": "fieldSelector",
 16443        "in": "query"
 16444       },
 16445       {
 16446        "uniqueItems": true,
 16447        "type": "string",
 16448        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 16449        "name": "labelSelector",
 16450        "in": "query"
 16451       },
 16452       {
 16453        "uniqueItems": true,
 16454        "type": "string",
 16455        "description": "object name and auth scope, such as for teams and projects",
 16456        "name": "namespace",
 16457        "in": "path",
 16458        "required": true
 16459       },
 16460       {
 16461        "uniqueItems": true,
 16462        "type": "string",
 16463        "description": "If 'true', then the output is pretty printed.",
 16464        "name": "pretty",
 16465        "in": "query"
 16466       },
 16467       {
 16468        "uniqueItems": true,
 16469        "type": "string",
 16470        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 16471        "name": "resourceVersion",
 16472        "in": "query"
 16473       },
 16474       {
 16475        "uniqueItems": true,
 16476        "type": "integer",
 16477        "description": "Timeout for the list/watch call.",
 16478        "name": "timeoutSeconds",
 16479        "in": "query"
 16480       },
 16481       {
 16482        "uniqueItems": true,
 16483        "type": "boolean",
 16484        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 16485        "name": "watch",
 16486        "in": "query"
 16487       }
 16488      ]
 16489     },
 16490     "/apis/autoscaling/v1/watch/namespaces/{namespace}/horizontalpodautoscalers/{name}": {
 16491      "get": {
 16492       "description": "watch changes to an object of kind HorizontalPodAutoscaler",
 16493       "consumes": [
 16494        "*/*"
 16495       ],
 16496       "produces": [
 16497        "application/json",
 16498        "application/yaml",
 16499        "application/vnd.kubernetes.protobuf",
 16500        "application/json;stream=watch",
 16501        "application/vnd.kubernetes.protobuf;stream=watch"
 16502       ],
 16503       "schemes": [
 16504        "https"
 16505       ],
 16506       "tags": [
 16507        "autoscaling_v1"
 16508       ],
 16509       "operationId": "watchAutoscalingV1NamespacedHorizontalPodAutoscaler",
 16510       "responses": {
 16511        "200": {
 16512         "description": "OK",
 16513         "schema": {
 16514          "$ref": "#/definitions/versioned.Event"
 16515         }
 16516        },
 16517        "401": {
 16518         "description": "Unauthorized"
 16519        }
 16520       }
 16521      },
 16522      "parameters": [
 16523       {
 16524        "uniqueItems": true,
 16525        "type": "string",
 16526        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 16527        "name": "fieldSelector",
 16528        "in": "query"
 16529       },
 16530       {
 16531        "uniqueItems": true,
 16532        "type": "string",
 16533        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 16534        "name": "labelSelector",
 16535        "in": "query"
 16536       },
 16537       {
 16538        "uniqueItems": true,
 16539        "type": "string",
 16540        "description": "name of the HorizontalPodAutoscaler",
 16541        "name": "name",
 16542        "in": "path",
 16543        "required": true
 16544       },
 16545       {
 16546        "uniqueItems": true,
 16547        "type": "string",
 16548        "description": "object name and auth scope, such as for teams and projects",
 16549        "name": "namespace",
 16550        "in": "path",
 16551        "required": true
 16552       },
 16553       {
 16554        "uniqueItems": true,
 16555        "type": "string",
 16556        "description": "If 'true', then the output is pretty printed.",
 16557        "name": "pretty",
 16558        "in": "query"
 16559       },
 16560       {
 16561        "uniqueItems": true,
 16562        "type": "string",
 16563        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 16564        "name": "resourceVersion",
 16565        "in": "query"
 16566       },
 16567       {
 16568        "uniqueItems": true,
 16569        "type": "integer",
 16570        "description": "Timeout for the list/watch call.",
 16571        "name": "timeoutSeconds",
 16572        "in": "query"
 16573       },
 16574       {
 16575        "uniqueItems": true,
 16576        "type": "boolean",
 16577        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 16578        "name": "watch",
 16579        "in": "query"
 16580       }
 16581      ]
 16582     },
 16583     "/apis/batch/": {
 16584      "get": {
 16585       "description": "get information of a group",
 16586       "consumes": [
 16587        "application/json",
 16588        "application/yaml",
 16589        "application/vnd.kubernetes.protobuf"
 16590       ],
 16591       "produces": [
 16592        "application/json",
 16593        "application/yaml",
 16594        "application/vnd.kubernetes.protobuf"
 16595       ],
 16596       "schemes": [
 16597        "https"
 16598       ],
 16599       "tags": [
 16600        "batch"
 16601       ],
 16602       "operationId": "getBatchAPIGroup",
 16603       "responses": {
 16604        "200": {
 16605         "description": "OK",
 16606         "schema": {
 16607          "$ref": "#/definitions/unversioned.APIGroup"
 16608         }
 16609        },
 16610        "401": {
 16611         "description": "Unauthorized"
 16612        }
 16613       }
 16614      }
 16615     },
 16616     "/apis/batch/v1/": {
 16617      "get": {
 16618       "description": "get available resources",
 16619       "consumes": [
 16620        "application/json",
 16621        "application/yaml",
 16622        "application/vnd.kubernetes.protobuf"
 16623       ],
 16624       "produces": [
 16625        "application/json",
 16626        "application/yaml",
 16627        "application/vnd.kubernetes.protobuf"
 16628       ],
 16629       "schemes": [
 16630        "https"
 16631       ],
 16632       "tags": [
 16633        "batch_v1"
 16634       ],
 16635       "operationId": "getBatchV1APIResources",
 16636       "responses": {
 16637        "200": {
 16638         "description": "OK",
 16639         "schema": {
 16640          "$ref": "#/definitions/unversioned.APIResourceList"
 16641         }
 16642        },
 16643        "401": {
 16644         "description": "Unauthorized"
 16645        }
 16646       }
 16647      }
 16648     },
 16649     "/apis/batch/v1/jobs": {
 16650      "get": {
 16651       "description": "list or watch objects of kind Job",
 16652       "consumes": [
 16653        "*/*"
 16654       ],
 16655       "produces": [
 16656        "application/json",
 16657        "application/yaml",
 16658        "application/vnd.kubernetes.protobuf",
 16659        "application/json;stream=watch",
 16660        "application/vnd.kubernetes.protobuf;stream=watch"
 16661       ],
 16662       "schemes": [
 16663        "https"
 16664       ],
 16665       "tags": [
 16666        "batch_v1"
 16667       ],
 16668       "operationId": "listBatchV1JobForAllNamespaces",
 16669       "responses": {
 16670        "200": {
 16671         "description": "OK",
 16672         "schema": {
 16673          "$ref": "#/definitions/v1.JobList"
 16674         }
 16675        },
 16676        "401": {
 16677         "description": "Unauthorized"
 16678        }
 16679       }
 16680      },
 16681      "parameters": [
 16682       {
 16683        "uniqueItems": true,
 16684        "type": "string",
 16685        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 16686        "name": "fieldSelector",
 16687        "in": "query"
 16688       },
 16689       {
 16690        "uniqueItems": true,
 16691        "type": "string",
 16692        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 16693        "name": "labelSelector",
 16694        "in": "query"
 16695       },
 16696       {
 16697        "uniqueItems": true,
 16698        "type": "string",
 16699        "description": "If 'true', then the output is pretty printed.",
 16700        "name": "pretty",
 16701        "in": "query"
 16702       },
 16703       {
 16704        "uniqueItems": true,
 16705        "type": "string",
 16706        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 16707        "name": "resourceVersion",
 16708        "in": "query"
 16709       },
 16710       {
 16711        "uniqueItems": true,
 16712        "type": "integer",
 16713        "description": "Timeout for the list/watch call.",
 16714        "name": "timeoutSeconds",
 16715        "in": "query"
 16716       },
 16717       {
 16718        "uniqueItems": true,
 16719        "type": "boolean",
 16720        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 16721        "name": "watch",
 16722        "in": "query"
 16723       }
 16724      ]
 16725     },
 16726     "/apis/batch/v1/namespaces/{namespace}/jobs": {
 16727      "get": {
 16728       "description": "list or watch objects of kind Job",
 16729       "consumes": [
 16730        "*/*"
 16731       ],
 16732       "produces": [
 16733        "application/json",
 16734        "application/yaml",
 16735        "application/vnd.kubernetes.protobuf",
 16736        "application/json;stream=watch",
 16737        "application/vnd.kubernetes.protobuf;stream=watch"
 16738       ],
 16739       "schemes": [
 16740        "https"
 16741       ],
 16742       "tags": [
 16743        "batch_v1"
 16744       ],
 16745       "operationId": "listBatchV1NamespacedJob",
 16746       "parameters": [
 16747        {
 16748         "uniqueItems": true,
 16749         "type": "string",
 16750         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 16751         "name": "fieldSelector",
 16752         "in": "query"
 16753        },
 16754        {
 16755         "uniqueItems": true,
 16756         "type": "string",
 16757         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 16758         "name": "labelSelector",
 16759         "in": "query"
 16760        },
 16761        {
 16762         "uniqueItems": true,
 16763         "type": "string",
 16764         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 16765         "name": "resourceVersion",
 16766         "in": "query"
 16767        },
 16768        {
 16769         "uniqueItems": true,
 16770         "type": "integer",
 16771         "description": "Timeout for the list/watch call.",
 16772         "name": "timeoutSeconds",
 16773         "in": "query"
 16774        },
 16775        {
 16776         "uniqueItems": true,
 16777         "type": "boolean",
 16778         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 16779         "name": "watch",
 16780         "in": "query"
 16781        }
 16782       ],
 16783       "responses": {
 16784        "200": {
 16785         "description": "OK",
 16786         "schema": {
 16787          "$ref": "#/definitions/v1.JobList"
 16788         }
 16789        },
 16790        "401": {
 16791         "description": "Unauthorized"
 16792        }
 16793       }
 16794      },
 16795      "post": {
 16796       "description": "create a Job",
 16797       "consumes": [
 16798        "*/*"
 16799       ],
 16800       "produces": [
 16801        "application/json",
 16802        "application/yaml",
 16803        "application/vnd.kubernetes.protobuf"
 16804       ],
 16805       "schemes": [
 16806        "https"
 16807       ],
 16808       "tags": [
 16809        "batch_v1"
 16810       ],
 16811       "operationId": "createBatchV1NamespacedJob",
 16812       "parameters": [
 16813        {
 16814         "name": "body",
 16815         "in": "body",
 16816         "required": true,
 16817         "schema": {
 16818          "$ref": "#/definitions/v1.Job"
 16819         }
 16820        }
 16821       ],
 16822       "responses": {
 16823        "200": {
 16824         "description": "OK",
 16825         "schema": {
 16826          "$ref": "#/definitions/v1.Job"
 16827         }
 16828        },
 16829        "401": {
 16830         "description": "Unauthorized"
 16831        }
 16832       }
 16833      },
 16834      "delete": {
 16835       "description": "delete collection of Job",
 16836       "consumes": [
 16837        "*/*"
 16838       ],
 16839       "produces": [
 16840        "application/json",
 16841        "application/yaml",
 16842        "application/vnd.kubernetes.protobuf"
 16843       ],
 16844       "schemes": [
 16845        "https"
 16846       ],
 16847       "tags": [
 16848        "batch_v1"
 16849       ],
 16850       "operationId": "deleteBatchV1CollectionNamespacedJob",
 16851       "parameters": [
 16852        {
 16853         "uniqueItems": true,
 16854         "type": "string",
 16855         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 16856         "name": "fieldSelector",
 16857         "in": "query"
 16858        },
 16859        {
 16860         "uniqueItems": true,
 16861         "type": "string",
 16862         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 16863         "name": "labelSelector",
 16864         "in": "query"
 16865        },
 16866        {
 16867         "uniqueItems": true,
 16868         "type": "string",
 16869         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 16870         "name": "resourceVersion",
 16871         "in": "query"
 16872        },
 16873        {
 16874         "uniqueItems": true,
 16875         "type": "integer",
 16876         "description": "Timeout for the list/watch call.",
 16877         "name": "timeoutSeconds",
 16878         "in": "query"
 16879        },
 16880        {
 16881         "uniqueItems": true,
 16882         "type": "boolean",
 16883         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 16884         "name": "watch",
 16885         "in": "query"
 16886        }
 16887       ],
 16888       "responses": {
 16889        "200": {
 16890         "description": "OK",
 16891         "schema": {
 16892          "$ref": "#/definitions/unversioned.Status"
 16893         }
 16894        },
 16895        "401": {
 16896         "description": "Unauthorized"
 16897        }
 16898       }
 16899      },
 16900      "parameters": [
 16901       {
 16902        "uniqueItems": true,
 16903        "type": "string",
 16904        "description": "object name and auth scope, such as for teams and projects",
 16905        "name": "namespace",
 16906        "in": "path",
 16907        "required": true
 16908       },
 16909       {
 16910        "uniqueItems": true,
 16911        "type": "string",
 16912        "description": "If 'true', then the output is pretty printed.",
 16913        "name": "pretty",
 16914        "in": "query"
 16915       }
 16916      ]
 16917     },
 16918     "/apis/batch/v1/namespaces/{namespace}/jobs/{name}": {
 16919      "get": {
 16920       "description": "read the specified Job",
 16921       "consumes": [
 16922        "*/*"
 16923       ],
 16924       "produces": [
 16925        "application/json",
 16926        "application/yaml",
 16927        "application/vnd.kubernetes.protobuf"
 16928       ],
 16929       "schemes": [
 16930        "https"
 16931       ],
 16932       "tags": [
 16933        "batch_v1"
 16934       ],
 16935       "operationId": "readBatchV1NamespacedJob",
 16936       "parameters": [
 16937        {
 16938         "uniqueItems": true,
 16939         "type": "boolean",
 16940         "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'",
 16941         "name": "exact",
 16942         "in": "query"
 16943        },
 16944        {
 16945         "uniqueItems": true,
 16946         "type": "boolean",
 16947         "description": "Should this value be exported.  Export strips fields that a user can not specify.",
 16948         "name": "export",
 16949         "in": "query"
 16950        }
 16951       ],
 16952       "responses": {
 16953        "200": {
 16954         "description": "OK",
 16955         "schema": {
 16956          "$ref": "#/definitions/v1.Job"
 16957         }
 16958        },
 16959        "401": {
 16960         "description": "Unauthorized"
 16961        }
 16962       }
 16963      },
 16964      "put": {
 16965       "description": "replace the specified Job",
 16966       "consumes": [
 16967        "*/*"
 16968       ],
 16969       "produces": [
 16970        "application/json",
 16971        "application/yaml",
 16972        "application/vnd.kubernetes.protobuf"
 16973       ],
 16974       "schemes": [
 16975        "https"
 16976       ],
 16977       "tags": [
 16978        "batch_v1"
 16979       ],
 16980       "operationId": "replaceBatchV1NamespacedJob",
 16981       "parameters": [
 16982        {
 16983         "name": "body",
 16984         "in": "body",
 16985         "required": true,
 16986         "schema": {
 16987          "$ref": "#/definitions/v1.Job"
 16988         }
 16989        }
 16990       ],
 16991       "responses": {
 16992        "200": {
 16993         "description": "OK",
 16994         "schema": {
 16995          "$ref": "#/definitions/v1.Job"
 16996         }
 16997        },
 16998        "401": {
 16999         "description": "Unauthorized"
 17000        }
 17001       }
 17002      },
 17003      "delete": {
 17004       "description": "delete a Job",
 17005       "consumes": [
 17006        "*/*"
 17007       ],
 17008       "produces": [
 17009        "application/json",
 17010        "application/yaml",
 17011        "application/vnd.kubernetes.protobuf"
 17012       ],
 17013       "schemes": [
 17014        "https"
 17015       ],
 17016       "tags": [
 17017        "batch_v1"
 17018       ],
 17019       "operationId": "deleteBatchV1NamespacedJob",
 17020       "parameters": [
 17021        {
 17022         "name": "body",
 17023         "in": "body",
 17024         "required": true,
 17025         "schema": {
 17026          "$ref": "#/definitions/v1.DeleteOptions"
 17027         }
 17028        }
 17029       ],
 17030       "responses": {
 17031        "200": {
 17032         "description": "OK",
 17033         "schema": {
 17034          "$ref": "#/definitions/unversioned.Status"
 17035         }
 17036        },
 17037        "401": {
 17038         "description": "Unauthorized"
 17039        }
 17040       }
 17041      },
 17042      "patch": {
 17043       "description": "partially update the specified Job",
 17044       "consumes": [
 17045        "application/json-patch+json",
 17046        "application/merge-patch+json",
 17047        "application/strategic-merge-patch+json"
 17048       ],
 17049       "produces": [
 17050        "application/json",
 17051        "application/yaml",
 17052        "application/vnd.kubernetes.protobuf"
 17053       ],
 17054       "schemes": [
 17055        "https"
 17056       ],
 17057       "tags": [
 17058        "batch_v1"
 17059       ],
 17060       "operationId": "patchBatchV1NamespacedJob",
 17061       "parameters": [
 17062        {
 17063         "name": "body",
 17064         "in": "body",
 17065         "required": true,
 17066         "schema": {
 17067          "$ref": "#/definitions/unversioned.Patch"
 17068         }
 17069        }
 17070       ],
 17071       "responses": {
 17072        "200": {
 17073         "description": "OK",
 17074         "schema": {
 17075          "$ref": "#/definitions/v1.Job"
 17076         }
 17077        },
 17078        "401": {
 17079         "description": "Unauthorized"
 17080        }
 17081       }
 17082      },
 17083      "parameters": [
 17084       {
 17085        "uniqueItems": true,
 17086        "type": "string",
 17087        "description": "name of the Job",
 17088        "name": "name",
 17089        "in": "path",
 17090        "required": true
 17091       },
 17092       {
 17093        "uniqueItems": true,
 17094        "type": "string",
 17095        "description": "object name and auth scope, such as for teams and projects",
 17096        "name": "namespace",
 17097        "in": "path",
 17098        "required": true
 17099       },
 17100       {
 17101        "uniqueItems": true,
 17102        "type": "string",
 17103        "description": "If 'true', then the output is pretty printed.",
 17104        "name": "pretty",
 17105        "in": "query"
 17106       }
 17107      ]
 17108     },
 17109     "/apis/batch/v1/namespaces/{namespace}/jobs/{name}/status": {
 17110      "get": {
 17111       "description": "read status of the specified Job",
 17112       "consumes": [
 17113        "*/*"
 17114       ],
 17115       "produces": [
 17116        "application/json",
 17117        "application/yaml",
 17118        "application/vnd.kubernetes.protobuf"
 17119       ],
 17120       "schemes": [
 17121        "https"
 17122       ],
 17123       "tags": [
 17124        "batch_v1"
 17125       ],
 17126       "operationId": "readBatchV1NamespacedJobStatus",
 17127       "responses": {
 17128        "200": {
 17129         "description": "OK",
 17130         "schema": {
 17131          "$ref": "#/definitions/v1.Job"
 17132         }
 17133        },
 17134        "401": {
 17135         "description": "Unauthorized"
 17136        }
 17137       }
 17138      },
 17139      "put": {
 17140       "description": "replace status of the specified Job",
 17141       "consumes": [
 17142        "*/*"
 17143       ],
 17144       "produces": [
 17145        "application/json",
 17146        "application/yaml",
 17147        "application/vnd.kubernetes.protobuf"
 17148       ],
 17149       "schemes": [
 17150        "https"
 17151       ],
 17152       "tags": [
 17153        "batch_v1"
 17154       ],
 17155       "operationId": "replaceBatchV1NamespacedJobStatus",
 17156       "parameters": [
 17157        {
 17158         "name": "body",
 17159         "in": "body",
 17160         "required": true,
 17161         "schema": {
 17162          "$ref": "#/definitions/v1.Job"
 17163         }
 17164        }
 17165       ],
 17166       "responses": {
 17167        "200": {
 17168         "description": "OK",
 17169         "schema": {
 17170          "$ref": "#/definitions/v1.Job"
 17171         }
 17172        },
 17173        "401": {
 17174         "description": "Unauthorized"
 17175        }
 17176       }
 17177      },
 17178      "patch": {
 17179       "description": "partially update status of the specified Job",
 17180       "consumes": [
 17181        "application/json-patch+json",
 17182        "application/merge-patch+json",
 17183        "application/strategic-merge-patch+json"
 17184       ],
 17185       "produces": [
 17186        "application/json",
 17187        "application/yaml",
 17188        "application/vnd.kubernetes.protobuf"
 17189       ],
 17190       "schemes": [
 17191        "https"
 17192       ],
 17193       "tags": [
 17194        "batch_v1"
 17195       ],
 17196       "operationId": "patchBatchV1NamespacedJobStatus",
 17197       "parameters": [
 17198        {
 17199         "name": "body",
 17200         "in": "body",
 17201         "required": true,
 17202         "schema": {
 17203          "$ref": "#/definitions/unversioned.Patch"
 17204         }
 17205        }
 17206       ],
 17207       "responses": {
 17208        "200": {
 17209         "description": "OK",
 17210         "schema": {
 17211          "$ref": "#/definitions/v1.Job"
 17212         }
 17213        },
 17214        "401": {
 17215         "description": "Unauthorized"
 17216        }
 17217       }
 17218      },
 17219      "parameters": [
 17220       {
 17221        "uniqueItems": true,
 17222        "type": "string",
 17223        "description": "name of the Job",
 17224        "name": "name",
 17225        "in": "path",
 17226        "required": true
 17227       },
 17228       {
 17229        "uniqueItems": true,
 17230        "type": "string",
 17231        "description": "object name and auth scope, such as for teams and projects",
 17232        "name": "namespace",
 17233        "in": "path",
 17234        "required": true
 17235       },
 17236       {
 17237        "uniqueItems": true,
 17238        "type": "string",
 17239        "description": "If 'true', then the output is pretty printed.",
 17240        "name": "pretty",
 17241        "in": "query"
 17242       }
 17243      ]
 17244     },
 17245     "/apis/batch/v1/watch/jobs": {
 17246      "get": {
 17247       "description": "watch individual changes to a list of Job",
 17248       "consumes": [
 17249        "*/*"
 17250       ],
 17251       "produces": [
 17252        "application/json",
 17253        "application/yaml",
 17254        "application/vnd.kubernetes.protobuf",
 17255        "application/json;stream=watch",
 17256        "application/vnd.kubernetes.protobuf;stream=watch"
 17257       ],
 17258       "schemes": [
 17259        "https"
 17260       ],
 17261       "tags": [
 17262        "batch_v1"
 17263       ],
 17264       "operationId": "watchBatchV1JobListForAllNamespaces",
 17265       "responses": {
 17266        "200": {
 17267         "description": "OK",
 17268         "schema": {
 17269          "$ref": "#/definitions/versioned.Event"
 17270         }
 17271        },
 17272        "401": {
 17273         "description": "Unauthorized"
 17274        }
 17275       }
 17276      },
 17277      "parameters": [
 17278       {
 17279        "uniqueItems": true,
 17280        "type": "string",
 17281        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 17282        "name": "fieldSelector",
 17283        "in": "query"
 17284       },
 17285       {
 17286        "uniqueItems": true,
 17287        "type": "string",
 17288        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 17289        "name": "labelSelector",
 17290        "in": "query"
 17291       },
 17292       {
 17293        "uniqueItems": true,
 17294        "type": "string",
 17295        "description": "If 'true', then the output is pretty printed.",
 17296        "name": "pretty",
 17297        "in": "query"
 17298       },
 17299       {
 17300        "uniqueItems": true,
 17301        "type": "string",
 17302        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 17303        "name": "resourceVersion",
 17304        "in": "query"
 17305       },
 17306       {
 17307        "uniqueItems": true,
 17308        "type": "integer",
 17309        "description": "Timeout for the list/watch call.",
 17310        "name": "timeoutSeconds",
 17311        "in": "query"
 17312       },
 17313       {
 17314        "uniqueItems": true,
 17315        "type": "boolean",
 17316        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 17317        "name": "watch",
 17318        "in": "query"
 17319       }
 17320      ]
 17321     },
 17322     "/apis/batch/v1/watch/namespaces/{namespace}/jobs": {
 17323      "get": {
 17324       "description": "watch individual changes to a list of Job",
 17325       "consumes": [
 17326        "*/*"
 17327       ],
 17328       "produces": [
 17329        "application/json",
 17330        "application/yaml",
 17331        "application/vnd.kubernetes.protobuf",
 17332        "application/json;stream=watch",
 17333        "application/vnd.kubernetes.protobuf;stream=watch"
 17334       ],
 17335       "schemes": [
 17336        "https"
 17337       ],
 17338       "tags": [
 17339        "batch_v1"
 17340       ],
 17341       "operationId": "watchBatchV1NamespacedJobList",
 17342       "responses": {
 17343        "200": {
 17344         "description": "OK",
 17345         "schema": {
 17346          "$ref": "#/definitions/versioned.Event"
 17347         }
 17348        },
 17349        "401": {
 17350         "description": "Unauthorized"
 17351        }
 17352       }
 17353      },
 17354      "parameters": [
 17355       {
 17356        "uniqueItems": true,
 17357        "type": "string",
 17358        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 17359        "name": "fieldSelector",
 17360        "in": "query"
 17361       },
 17362       {
 17363        "uniqueItems": true,
 17364        "type": "string",
 17365        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 17366        "name": "labelSelector",
 17367        "in": "query"
 17368       },
 17369       {
 17370        "uniqueItems": true,
 17371        "type": "string",
 17372        "description": "object name and auth scope, such as for teams and projects",
 17373        "name": "namespace",
 17374        "in": "path",
 17375        "required": true
 17376       },
 17377       {
 17378        "uniqueItems": true,
 17379        "type": "string",
 17380        "description": "If 'true', then the output is pretty printed.",
 17381        "name": "pretty",
 17382        "in": "query"
 17383       },
 17384       {
 17385        "uniqueItems": true,
 17386        "type": "string",
 17387        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 17388        "name": "resourceVersion",
 17389        "in": "query"
 17390       },
 17391       {
 17392        "uniqueItems": true,
 17393        "type": "integer",
 17394        "description": "Timeout for the list/watch call.",
 17395        "name": "timeoutSeconds",
 17396        "in": "query"
 17397       },
 17398       {
 17399        "uniqueItems": true,
 17400        "type": "boolean",
 17401        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 17402        "name": "watch",
 17403        "in": "query"
 17404       }
 17405      ]
 17406     },
 17407     "/apis/batch/v1/watch/namespaces/{namespace}/jobs/{name}": {
 17408      "get": {
 17409       "description": "watch changes to an object of kind Job",
 17410       "consumes": [
 17411        "*/*"
 17412       ],
 17413       "produces": [
 17414        "application/json",
 17415        "application/yaml",
 17416        "application/vnd.kubernetes.protobuf",
 17417        "application/json;stream=watch",
 17418        "application/vnd.kubernetes.protobuf;stream=watch"
 17419       ],
 17420       "schemes": [
 17421        "https"
 17422       ],
 17423       "tags": [
 17424        "batch_v1"
 17425       ],
 17426       "operationId": "watchBatchV1NamespacedJob",
 17427       "responses": {
 17428        "200": {
 17429         "description": "OK",
 17430         "schema": {
 17431          "$ref": "#/definitions/versioned.Event"
 17432         }
 17433        },
 17434        "401": {
 17435         "description": "Unauthorized"
 17436        }
 17437       }
 17438      },
 17439      "parameters": [
 17440       {
 17441        "uniqueItems": true,
 17442        "type": "string",
 17443        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 17444        "name": "fieldSelector",
 17445        "in": "query"
 17446       },
 17447       {
 17448        "uniqueItems": true,
 17449        "type": "string",
 17450        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 17451        "name": "labelSelector",
 17452        "in": "query"
 17453       },
 17454       {
 17455        "uniqueItems": true,
 17456        "type": "string",
 17457        "description": "name of the Job",
 17458        "name": "name",
 17459        "in": "path",
 17460        "required": true
 17461       },
 17462       {
 17463        "uniqueItems": true,
 17464        "type": "string",
 17465        "description": "object name and auth scope, such as for teams and projects",
 17466        "name": "namespace",
 17467        "in": "path",
 17468        "required": true
 17469       },
 17470       {
 17471        "uniqueItems": true,
 17472        "type": "string",
 17473        "description": "If 'true', then the output is pretty printed.",
 17474        "name": "pretty",
 17475        "in": "query"
 17476       },
 17477       {
 17478        "uniqueItems": true,
 17479        "type": "string",
 17480        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 17481        "name": "resourceVersion",
 17482        "in": "query"
 17483       },
 17484       {
 17485        "uniqueItems": true,
 17486        "type": "integer",
 17487        "description": "Timeout for the list/watch call.",
 17488        "name": "timeoutSeconds",
 17489        "in": "query"
 17490       },
 17491       {
 17492        "uniqueItems": true,
 17493        "type": "boolean",
 17494        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 17495        "name": "watch",
 17496        "in": "query"
 17497       }
 17498      ]
 17499     },
 17500     "/apis/batch/v2alpha1/": {
 17501      "get": {
 17502       "description": "get available resources",
 17503       "consumes": [
 17504        "application/json",
 17505        "application/yaml",
 17506        "application/vnd.kubernetes.protobuf"
 17507       ],
 17508       "produces": [
 17509        "application/json",
 17510        "application/yaml",
 17511        "application/vnd.kubernetes.protobuf"
 17512       ],
 17513       "schemes": [
 17514        "https"
 17515       ],
 17516       "tags": [
 17517        "batch_v2alpha1"
 17518       ],
 17519       "operationId": "getBatchV2alpha1APIResources",
 17520       "responses": {
 17521        "200": {
 17522         "description": "OK",
 17523         "schema": {
 17524          "$ref": "#/definitions/unversioned.APIResourceList"
 17525         }
 17526        },
 17527        "401": {
 17528         "description": "Unauthorized"
 17529        }
 17530       }
 17531      }
 17532     },
 17533     "/apis/certificates.k8s.io/": {
 17534      "get": {
 17535       "description": "get information of a group",
 17536       "consumes": [
 17537        "application/json",
 17538        "application/yaml",
 17539        "application/vnd.kubernetes.protobuf"
 17540       ],
 17541       "produces": [
 17542        "application/json",
 17543        "application/yaml",
 17544        "application/vnd.kubernetes.protobuf"
 17545       ],
 17546       "schemes": [
 17547        "https"
 17548       ],
 17549       "tags": [
 17550        "certificates"
 17551       ],
 17552       "operationId": "getCertificatesAPIGroup",
 17553       "responses": {
 17554        "200": {
 17555         "description": "OK",
 17556         "schema": {
 17557          "$ref": "#/definitions/unversioned.APIGroup"
 17558         }
 17559        },
 17560        "401": {
 17561         "description": "Unauthorized"
 17562        }
 17563       }
 17564      }
 17565     },
 17566     "/apis/certificates.k8s.io/v1alpha1/": {
 17567      "get": {
 17568       "description": "get available resources",
 17569       "consumes": [
 17570        "application/json",
 17571        "application/yaml",
 17572        "application/vnd.kubernetes.protobuf"
 17573       ],
 17574       "produces": [
 17575        "application/json",
 17576        "application/yaml",
 17577        "application/vnd.kubernetes.protobuf"
 17578       ],
 17579       "schemes": [
 17580        "https"
 17581       ],
 17582       "tags": [
 17583        "certificates_v1alpha1"
 17584       ],
 17585       "operationId": "getCertificatesV1alpha1APIResources",
 17586       "responses": {
 17587        "200": {
 17588         "description": "OK",
 17589         "schema": {
 17590          "$ref": "#/definitions/unversioned.APIResourceList"
 17591         }
 17592        },
 17593        "401": {
 17594         "description": "Unauthorized"
 17595        }
 17596       }
 17597      }
 17598     },
 17599     "/apis/certificates.k8s.io/v1alpha1/certificatesigningrequests": {
 17600      "get": {
 17601       "description": "list or watch objects of kind CertificateSigningRequest",
 17602       "consumes": [
 17603        "*/*"
 17604       ],
 17605       "produces": [
 17606        "application/json",
 17607        "application/yaml",
 17608        "application/vnd.kubernetes.protobuf",
 17609        "application/json;stream=watch",
 17610        "application/vnd.kubernetes.protobuf;stream=watch"
 17611       ],
 17612       "schemes": [
 17613        "https"
 17614       ],
 17615       "tags": [
 17616        "certificates_v1alpha1"
 17617       ],
 17618       "operationId": "listCertificatesV1alpha1CertificateSigningRequest",
 17619       "parameters": [
 17620        {
 17621         "uniqueItems": true,
 17622         "type": "string",
 17623         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 17624         "name": "fieldSelector",
 17625         "in": "query"
 17626        },
 17627        {
 17628         "uniqueItems": true,
 17629         "type": "string",
 17630         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 17631         "name": "labelSelector",
 17632         "in": "query"
 17633        },
 17634        {
 17635         "uniqueItems": true,
 17636         "type": "string",
 17637         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 17638         "name": "resourceVersion",
 17639         "in": "query"
 17640        },
 17641        {
 17642         "uniqueItems": true,
 17643         "type": "integer",
 17644         "description": "Timeout for the list/watch call.",
 17645         "name": "timeoutSeconds",
 17646         "in": "query"
 17647        },
 17648        {
 17649         "uniqueItems": true,
 17650         "type": "boolean",
 17651         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 17652         "name": "watch",
 17653         "in": "query"
 17654        }
 17655       ],
 17656       "responses": {
 17657        "200": {
 17658         "description": "OK",
 17659         "schema": {
 17660          "$ref": "#/definitions/v1alpha1.CertificateSigningRequestList"
 17661         }
 17662        },
 17663        "401": {
 17664         "description": "Unauthorized"
 17665        }
 17666       }
 17667      },
 17668      "post": {
 17669       "description": "create a CertificateSigningRequest",
 17670       "consumes": [
 17671        "*/*"
 17672       ],
 17673       "produces": [
 17674        "application/json",
 17675        "application/yaml",
 17676        "application/vnd.kubernetes.protobuf"
 17677       ],
 17678       "schemes": [
 17679        "https"
 17680       ],
 17681       "tags": [
 17682        "certificates_v1alpha1"
 17683       ],
 17684       "operationId": "createCertificatesV1alpha1CertificateSigningRequest",
 17685       "parameters": [
 17686        {
 17687         "name": "body",
 17688         "in": "body",
 17689         "required": true,
 17690         "schema": {
 17691          "$ref": "#/definitions/v1alpha1.CertificateSigningRequest"
 17692         }
 17693        }
 17694       ],
 17695       "responses": {
 17696        "200": {
 17697         "description": "OK",
 17698         "schema": {
 17699          "$ref": "#/definitions/v1alpha1.CertificateSigningRequest"
 17700         }
 17701        },
 17702        "401": {
 17703         "description": "Unauthorized"
 17704        }
 17705       }
 17706      },
 17707      "delete": {
 17708       "description": "delete collection of CertificateSigningRequest",
 17709       "consumes": [
 17710        "*/*"
 17711       ],
 17712       "produces": [
 17713        "application/json",
 17714        "application/yaml",
 17715        "application/vnd.kubernetes.protobuf"
 17716       ],
 17717       "schemes": [
 17718        "https"
 17719       ],
 17720       "tags": [
 17721        "certificates_v1alpha1"
 17722       ],
 17723       "operationId": "deleteCertificatesV1alpha1CollectionCertificateSigningRequest",
 17724       "parameters": [
 17725        {
 17726         "uniqueItems": true,
 17727         "type": "string",
 17728         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 17729         "name": "fieldSelector",
 17730         "in": "query"
 17731        },
 17732        {
 17733         "uniqueItems": true,
 17734         "type": "string",
 17735         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 17736         "name": "labelSelector",
 17737         "in": "query"
 17738        },
 17739        {
 17740         "uniqueItems": true,
 17741         "type": "string",
 17742         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 17743         "name": "resourceVersion",
 17744         "in": "query"
 17745        },
 17746        {
 17747         "uniqueItems": true,
 17748         "type": "integer",
 17749         "description": "Timeout for the list/watch call.",
 17750         "name": "timeoutSeconds",
 17751         "in": "query"
 17752        },
 17753        {
 17754         "uniqueItems": true,
 17755         "type": "boolean",
 17756         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 17757         "name": "watch",
 17758         "in": "query"
 17759        }
 17760       ],
 17761       "responses": {
 17762        "200": {
 17763         "description": "OK",
 17764         "schema": {
 17765          "$ref": "#/definitions/unversioned.Status"
 17766         }
 17767        },
 17768        "401": {
 17769         "description": "Unauthorized"
 17770        }
 17771       }
 17772      },
 17773      "parameters": [
 17774       {
 17775        "uniqueItems": true,
 17776        "type": "string",
 17777        "description": "If 'true', then the output is pretty printed.",
 17778        "name": "pretty",
 17779        "in": "query"
 17780       }
 17781      ]
 17782     },
 17783     "/apis/certificates.k8s.io/v1alpha1/certificatesigningrequests/{name}": {
 17784      "get": {
 17785       "description": "read the specified CertificateSigningRequest",
 17786       "consumes": [
 17787        "*/*"
 17788       ],
 17789       "produces": [
 17790        "application/json",
 17791        "application/yaml",
 17792        "application/vnd.kubernetes.protobuf"
 17793       ],
 17794       "schemes": [
 17795        "https"
 17796       ],
 17797       "tags": [
 17798        "certificates_v1alpha1"
 17799       ],
 17800       "operationId": "readCertificatesV1alpha1CertificateSigningRequest",
 17801       "parameters": [
 17802        {
 17803         "uniqueItems": true,
 17804         "type": "boolean",
 17805         "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'",
 17806         "name": "exact",
 17807         "in": "query"
 17808        },
 17809        {
 17810         "uniqueItems": true,
 17811         "type": "boolean",
 17812         "description": "Should this value be exported.  Export strips fields that a user can not specify.",
 17813         "name": "export",
 17814         "in": "query"
 17815        }
 17816       ],
 17817       "responses": {
 17818        "200": {
 17819         "description": "OK",
 17820         "schema": {
 17821          "$ref": "#/definitions/v1alpha1.CertificateSigningRequest"
 17822         }
 17823        },
 17824        "401": {
 17825         "description": "Unauthorized"
 17826        }
 17827       }
 17828      },
 17829      "put": {
 17830       "description": "replace the specified CertificateSigningRequest",
 17831       "consumes": [
 17832        "*/*"
 17833       ],
 17834       "produces": [
 17835        "application/json",
 17836        "application/yaml",
 17837        "application/vnd.kubernetes.protobuf"
 17838       ],
 17839       "schemes": [
 17840        "https"
 17841       ],
 17842       "tags": [
 17843        "certificates_v1alpha1"
 17844       ],
 17845       "operationId": "replaceCertificatesV1alpha1CertificateSigningRequest",
 17846       "parameters": [
 17847        {
 17848         "name": "body",
 17849         "in": "body",
 17850         "required": true,
 17851         "schema": {
 17852          "$ref": "#/definitions/v1alpha1.CertificateSigningRequest"
 17853         }
 17854        }
 17855       ],
 17856       "responses": {
 17857        "200": {
 17858         "description": "OK",
 17859         "schema": {
 17860          "$ref": "#/definitions/v1alpha1.CertificateSigningRequest"
 17861         }
 17862        },
 17863        "401": {
 17864         "description": "Unauthorized"
 17865        }
 17866       }
 17867      },
 17868      "delete": {
 17869       "description": "delete a CertificateSigningRequest",
 17870       "consumes": [
 17871        "*/*"
 17872       ],
 17873       "produces": [
 17874        "application/json",
 17875        "application/yaml",
 17876        "application/vnd.kubernetes.protobuf"
 17877       ],
 17878       "schemes": [
 17879        "https"
 17880       ],
 17881       "tags": [
 17882        "certificates_v1alpha1"
 17883       ],
 17884       "operationId": "deleteCertificatesV1alpha1CertificateSigningRequest",
 17885       "parameters": [
 17886        {
 17887         "name": "body",
 17888         "in": "body",
 17889         "required": true,
 17890         "schema": {
 17891          "$ref": "#/definitions/v1.DeleteOptions"
 17892         }
 17893        }
 17894       ],
 17895       "responses": {
 17896        "200": {
 17897         "description": "OK",
 17898         "schema": {
 17899          "$ref": "#/definitions/unversioned.Status"
 17900         }
 17901        },
 17902        "401": {
 17903         "description": "Unauthorized"
 17904        }
 17905       }
 17906      },
 17907      "patch": {
 17908       "description": "partially update the specified CertificateSigningRequest",
 17909       "consumes": [
 17910        "application/json-patch+json",
 17911        "application/merge-patch+json",
 17912        "application/strategic-merge-patch+json"
 17913       ],
 17914       "produces": [
 17915        "application/json",
 17916        "application/yaml",
 17917        "application/vnd.kubernetes.protobuf"
 17918       ],
 17919       "schemes": [
 17920        "https"
 17921       ],
 17922       "tags": [
 17923        "certificates_v1alpha1"
 17924       ],
 17925       "operationId": "patchCertificatesV1alpha1CertificateSigningRequest",
 17926       "parameters": [
 17927        {
 17928         "name": "body",
 17929         "in": "body",
 17930         "required": true,
 17931         "schema": {
 17932          "$ref": "#/definitions/unversioned.Patch"
 17933         }
 17934        }
 17935       ],
 17936       "responses": {
 17937        "200": {
 17938         "description": "OK",
 17939         "schema": {
 17940          "$ref": "#/definitions/v1alpha1.CertificateSigningRequest"
 17941         }
 17942        },
 17943        "401": {
 17944         "description": "Unauthorized"
 17945        }
 17946       }
 17947      },
 17948      "parameters": [
 17949       {
 17950        "uniqueItems": true,
 17951        "type": "string",
 17952        "description": "name of the CertificateSigningRequest",
 17953        "name": "name",
 17954        "in": "path",
 17955        "required": true
 17956       },
 17957       {
 17958        "uniqueItems": true,
 17959        "type": "string",
 17960        "description": "If 'true', then the output is pretty printed.",
 17961        "name": "pretty",
 17962        "in": "query"
 17963       }
 17964      ]
 17965     },
 17966     "/apis/certificates.k8s.io/v1alpha1/certificatesigningrequests/{name}/approval": {
 17967      "put": {
 17968       "description": "replace approval of the specified CertificateSigningRequest",
 17969       "consumes": [
 17970        "*/*"
 17971       ],
 17972       "produces": [
 17973        "application/json",
 17974        "application/yaml",
 17975        "application/vnd.kubernetes.protobuf"
 17976       ],
 17977       "schemes": [
 17978        "https"
 17979       ],
 17980       "tags": [
 17981        "certificates_v1alpha1"
 17982       ],
 17983       "operationId": "replaceCertificatesV1alpha1CertificateSigningRequestApproval",
 17984       "responses": {
 17985        "200": {
 17986         "description": "OK",
 17987         "schema": {
 17988          "$ref": "#/definitions/v1alpha1.CertificateSigningRequest"
 17989         }
 17990        },
 17991        "401": {
 17992         "description": "Unauthorized"
 17993        }
 17994       }
 17995      },
 17996      "parameters": [
 17997       {
 17998        "name": "body",
 17999        "in": "body",
 18000        "required": true,
 18001        "schema": {
 18002         "$ref": "#/definitions/v1alpha1.CertificateSigningRequest"
 18003        }
 18004       },
 18005       {
 18006        "uniqueItems": true,
 18007        "type": "string",
 18008        "description": "name of the CertificateSigningRequest",
 18009        "name": "name",
 18010        "in": "path",
 18011        "required": true
 18012       },
 18013       {
 18014        "uniqueItems": true,
 18015        "type": "string",
 18016        "description": "If 'true', then the output is pretty printed.",
 18017        "name": "pretty",
 18018        "in": "query"
 18019       }
 18020      ]
 18021     },
 18022     "/apis/certificates.k8s.io/v1alpha1/certificatesigningrequests/{name}/status": {
 18023      "put": {
 18024       "description": "replace status of the specified CertificateSigningRequest",
 18025       "consumes": [
 18026        "*/*"
 18027       ],
 18028       "produces": [
 18029        "application/json",
 18030        "application/yaml",
 18031        "application/vnd.kubernetes.protobuf"
 18032       ],
 18033       "schemes": [
 18034        "https"
 18035       ],
 18036       "tags": [
 18037        "certificates_v1alpha1"
 18038       ],
 18039       "operationId": "replaceCertificatesV1alpha1CertificateSigningRequestStatus",
 18040       "responses": {
 18041        "200": {
 18042         "description": "OK",
 18043         "schema": {
 18044          "$ref": "#/definitions/v1alpha1.CertificateSigningRequest"
 18045         }
 18046        },
 18047        "401": {
 18048         "description": "Unauthorized"
 18049        }
 18050       }
 18051      },
 18052      "parameters": [
 18053       {
 18054        "name": "body",
 18055        "in": "body",
 18056        "required": true,
 18057        "schema": {
 18058         "$ref": "#/definitions/v1alpha1.CertificateSigningRequest"
 18059        }
 18060       },
 18061       {
 18062        "uniqueItems": true,
 18063        "type": "string",
 18064        "description": "name of the CertificateSigningRequest",
 18065        "name": "name",
 18066        "in": "path",
 18067        "required": true
 18068       },
 18069       {
 18070        "uniqueItems": true,
 18071        "type": "string",
 18072        "description": "If 'true', then the output is pretty printed.",
 18073        "name": "pretty",
 18074        "in": "query"
 18075       }
 18076      ]
 18077     },
 18078     "/apis/certificates.k8s.io/v1alpha1/watch/certificatesigningrequests": {
 18079      "get": {
 18080       "description": "watch individual changes to a list of CertificateSigningRequest",
 18081       "consumes": [
 18082        "*/*"
 18083       ],
 18084       "produces": [
 18085        "application/json",
 18086        "application/yaml",
 18087        "application/vnd.kubernetes.protobuf",
 18088        "application/json;stream=watch",
 18089        "application/vnd.kubernetes.protobuf;stream=watch"
 18090       ],
 18091       "schemes": [
 18092        "https"
 18093       ],
 18094       "tags": [
 18095        "certificates_v1alpha1"
 18096       ],
 18097       "operationId": "watchCertificatesV1alpha1CertificateSigningRequestList",
 18098       "responses": {
 18099        "200": {
 18100         "description": "OK",
 18101         "schema": {
 18102          "$ref": "#/definitions/versioned.Event"
 18103         }
 18104        },
 18105        "401": {
 18106         "description": "Unauthorized"
 18107        }
 18108       }
 18109      },
 18110      "parameters": [
 18111       {
 18112        "uniqueItems": true,
 18113        "type": "string",
 18114        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 18115        "name": "fieldSelector",
 18116        "in": "query"
 18117       },
 18118       {
 18119        "uniqueItems": true,
 18120        "type": "string",
 18121        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 18122        "name": "labelSelector",
 18123        "in": "query"
 18124       },
 18125       {
 18126        "uniqueItems": true,
 18127        "type": "string",
 18128        "description": "If 'true', then the output is pretty printed.",
 18129        "name": "pretty",
 18130        "in": "query"
 18131       },
 18132       {
 18133        "uniqueItems": true,
 18134        "type": "string",
 18135        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 18136        "name": "resourceVersion",
 18137        "in": "query"
 18138       },
 18139       {
 18140        "uniqueItems": true,
 18141        "type": "integer",
 18142        "description": "Timeout for the list/watch call.",
 18143        "name": "timeoutSeconds",
 18144        "in": "query"
 18145       },
 18146       {
 18147        "uniqueItems": true,
 18148        "type": "boolean",
 18149        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 18150        "name": "watch",
 18151        "in": "query"
 18152       }
 18153      ]
 18154     },
 18155     "/apis/certificates.k8s.io/v1alpha1/watch/certificatesigningrequests/{name}": {
 18156      "get": {
 18157       "description": "watch changes to an object of kind CertificateSigningRequest",
 18158       "consumes": [
 18159        "*/*"
 18160       ],
 18161       "produces": [
 18162        "application/json",
 18163        "application/yaml",
 18164        "application/vnd.kubernetes.protobuf",
 18165        "application/json;stream=watch",
 18166        "application/vnd.kubernetes.protobuf;stream=watch"
 18167       ],
 18168       "schemes": [
 18169        "https"
 18170       ],
 18171       "tags": [
 18172        "certificates_v1alpha1"
 18173       ],
 18174       "operationId": "watchCertificatesV1alpha1CertificateSigningRequest",
 18175       "responses": {
 18176        "200": {
 18177         "description": "OK",
 18178         "schema": {
 18179          "$ref": "#/definitions/versioned.Event"
 18180         }
 18181        },
 18182        "401": {
 18183         "description": "Unauthorized"
 18184        }
 18185       }
 18186      },
 18187      "parameters": [
 18188       {
 18189        "uniqueItems": true,
 18190        "type": "string",
 18191        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 18192        "name": "fieldSelector",
 18193        "in": "query"
 18194       },
 18195       {
 18196        "uniqueItems": true,
 18197        "type": "string",
 18198        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 18199        "name": "labelSelector",
 18200        "in": "query"
 18201       },
 18202       {
 18203        "uniqueItems": true,
 18204        "type": "string",
 18205        "description": "name of the CertificateSigningRequest",
 18206        "name": "name",
 18207        "in": "path",
 18208        "required": true
 18209       },
 18210       {
 18211        "uniqueItems": true,
 18212        "type": "string",
 18213        "description": "If 'true', then the output is pretty printed.",
 18214        "name": "pretty",
 18215        "in": "query"
 18216       },
 18217       {
 18218        "uniqueItems": true,
 18219        "type": "string",
 18220        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 18221        "name": "resourceVersion",
 18222        "in": "query"
 18223       },
 18224       {
 18225        "uniqueItems": true,
 18226        "type": "integer",
 18227        "description": "Timeout for the list/watch call.",
 18228        "name": "timeoutSeconds",
 18229        "in": "query"
 18230       },
 18231       {
 18232        "uniqueItems": true,
 18233        "type": "boolean",
 18234        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 18235        "name": "watch",
 18236        "in": "query"
 18237       }
 18238      ]
 18239     },
 18240     "/apis/extensions/": {
 18241      "get": {
 18242       "description": "get information of a group",
 18243       "consumes": [
 18244        "application/json",
 18245        "application/yaml",
 18246        "application/vnd.kubernetes.protobuf"
 18247       ],
 18248       "produces": [
 18249        "application/json",
 18250        "application/yaml",
 18251        "application/vnd.kubernetes.protobuf"
 18252       ],
 18253       "schemes": [
 18254        "https"
 18255       ],
 18256       "tags": [
 18257        "extensions"
 18258       ],
 18259       "operationId": "getExtensionsAPIGroup",
 18260       "responses": {
 18261        "200": {
 18262         "description": "OK",
 18263         "schema": {
 18264          "$ref": "#/definitions/unversioned.APIGroup"
 18265         }
 18266        },
 18267        "401": {
 18268         "description": "Unauthorized"
 18269        }
 18270       }
 18271      }
 18272     },
 18273     "/apis/extensions/v1beta1/": {
 18274      "get": {
 18275       "description": "get available resources",
 18276       "consumes": [
 18277        "application/json",
 18278        "application/yaml",
 18279        "application/vnd.kubernetes.protobuf"
 18280       ],
 18281       "produces": [
 18282        "application/json",
 18283        "application/yaml",
 18284        "application/vnd.kubernetes.protobuf"
 18285       ],
 18286       "schemes": [
 18287        "https"
 18288       ],
 18289       "tags": [
 18290        "extensions_v1beta1"
 18291       ],
 18292       "operationId": "getExtensionsV1beta1APIResources",
 18293       "responses": {
 18294        "200": {
 18295         "description": "OK",
 18296         "schema": {
 18297          "$ref": "#/definitions/unversioned.APIResourceList"
 18298         }
 18299        },
 18300        "401": {
 18301         "description": "Unauthorized"
 18302        }
 18303       }
 18304      }
 18305     },
 18306     "/apis/extensions/v1beta1/daemonsets": {
 18307      "get": {
 18308       "description": "list or watch objects of kind DaemonSet",
 18309       "consumes": [
 18310        "*/*"
 18311       ],
 18312       "produces": [
 18313        "application/json",
 18314        "application/yaml",
 18315        "application/vnd.kubernetes.protobuf",
 18316        "application/json;stream=watch",
 18317        "application/vnd.kubernetes.protobuf;stream=watch"
 18318       ],
 18319       "schemes": [
 18320        "https"
 18321       ],
 18322       "tags": [
 18323        "extensions_v1beta1"
 18324       ],
 18325       "operationId": "listExtensionsV1beta1DaemonSetForAllNamespaces",
 18326       "responses": {
 18327        "200": {
 18328         "description": "OK",
 18329         "schema": {
 18330          "$ref": "#/definitions/v1beta1.DaemonSetList"
 18331         }
 18332        },
 18333        "401": {
 18334         "description": "Unauthorized"
 18335        }
 18336       }
 18337      },
 18338      "parameters": [
 18339       {
 18340        "uniqueItems": true,
 18341        "type": "string",
 18342        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 18343        "name": "fieldSelector",
 18344        "in": "query"
 18345       },
 18346       {
 18347        "uniqueItems": true,
 18348        "type": "string",
 18349        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 18350        "name": "labelSelector",
 18351        "in": "query"
 18352       },
 18353       {
 18354        "uniqueItems": true,
 18355        "type": "string",
 18356        "description": "If 'true', then the output is pretty printed.",
 18357        "name": "pretty",
 18358        "in": "query"
 18359       },
 18360       {
 18361        "uniqueItems": true,
 18362        "type": "string",
 18363        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 18364        "name": "resourceVersion",
 18365        "in": "query"
 18366       },
 18367       {
 18368        "uniqueItems": true,
 18369        "type": "integer",
 18370        "description": "Timeout for the list/watch call.",
 18371        "name": "timeoutSeconds",
 18372        "in": "query"
 18373       },
 18374       {
 18375        "uniqueItems": true,
 18376        "type": "boolean",
 18377        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 18378        "name": "watch",
 18379        "in": "query"
 18380       }
 18381      ]
 18382     },
 18383     "/apis/extensions/v1beta1/deployments": {
 18384      "get": {
 18385       "description": "list or watch objects of kind Deployment",
 18386       "consumes": [
 18387        "*/*"
 18388       ],
 18389       "produces": [
 18390        "application/json",
 18391        "application/yaml",
 18392        "application/vnd.kubernetes.protobuf",
 18393        "application/json;stream=watch",
 18394        "application/vnd.kubernetes.protobuf;stream=watch"
 18395       ],
 18396       "schemes": [
 18397        "https"
 18398       ],
 18399       "tags": [
 18400        "extensions_v1beta1"
 18401       ],
 18402       "operationId": "listExtensionsV1beta1DeploymentForAllNamespaces",
 18403       "responses": {
 18404        "200": {
 18405         "description": "OK",
 18406         "schema": {
 18407          "$ref": "#/definitions/v1beta1.DeploymentList"
 18408         }
 18409        },
 18410        "401": {
 18411         "description": "Unauthorized"
 18412        }
 18413       }
 18414      },
 18415      "parameters": [
 18416       {
 18417        "uniqueItems": true,
 18418        "type": "string",
 18419        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 18420        "name": "fieldSelector",
 18421        "in": "query"
 18422       },
 18423       {
 18424        "uniqueItems": true,
 18425        "type": "string",
 18426        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 18427        "name": "labelSelector",
 18428        "in": "query"
 18429       },
 18430       {
 18431        "uniqueItems": true,
 18432        "type": "string",
 18433        "description": "If 'true', then the output is pretty printed.",
 18434        "name": "pretty",
 18435        "in": "query"
 18436       },
 18437       {
 18438        "uniqueItems": true,
 18439        "type": "string",
 18440        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 18441        "name": "resourceVersion",
 18442        "in": "query"
 18443       },
 18444       {
 18445        "uniqueItems": true,
 18446        "type": "integer",
 18447        "description": "Timeout for the list/watch call.",
 18448        "name": "timeoutSeconds",
 18449        "in": "query"
 18450       },
 18451       {
 18452        "uniqueItems": true,
 18453        "type": "boolean",
 18454        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 18455        "name": "watch",
 18456        "in": "query"
 18457       }
 18458      ]
 18459     },
 18460     "/apis/extensions/v1beta1/horizontalpodautoscalers": {
 18461      "get": {
 18462       "description": "list or watch objects of kind HorizontalPodAutoscaler",
 18463       "consumes": [
 18464        "*/*"
 18465       ],
 18466       "produces": [
 18467        "application/json",
 18468        "application/yaml",
 18469        "application/vnd.kubernetes.protobuf",
 18470        "application/json;stream=watch",
 18471        "application/vnd.kubernetes.protobuf;stream=watch"
 18472       ],
 18473       "schemes": [
 18474        "https"
 18475       ],
 18476       "tags": [
 18477        "extensions_v1beta1"
 18478       ],
 18479       "operationId": "listExtensionsV1beta1HorizontalPodAutoscalerForAllNamespaces",
 18480       "responses": {
 18481        "200": {
 18482         "description": "OK",
 18483         "schema": {
 18484          "$ref": "#/definitions/v1beta1.HorizontalPodAutoscalerList"
 18485         }
 18486        },
 18487        "401": {
 18488         "description": "Unauthorized"
 18489        }
 18490       }
 18491      },
 18492      "parameters": [
 18493       {
 18494        "uniqueItems": true,
 18495        "type": "string",
 18496        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 18497        "name": "fieldSelector",
 18498        "in": "query"
 18499       },
 18500       {
 18501        "uniqueItems": true,
 18502        "type": "string",
 18503        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 18504        "name": "labelSelector",
 18505        "in": "query"
 18506       },
 18507       {
 18508        "uniqueItems": true,
 18509        "type": "string",
 18510        "description": "If 'true', then the output is pretty printed.",
 18511        "name": "pretty",
 18512        "in": "query"
 18513       },
 18514       {
 18515        "uniqueItems": true,
 18516        "type": "string",
 18517        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 18518        "name": "resourceVersion",
 18519        "in": "query"
 18520       },
 18521       {
 18522        "uniqueItems": true,
 18523        "type": "integer",
 18524        "description": "Timeout for the list/watch call.",
 18525        "name": "timeoutSeconds",
 18526        "in": "query"
 18527       },
 18528       {
 18529        "uniqueItems": true,
 18530        "type": "boolean",
 18531        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 18532        "name": "watch",
 18533        "in": "query"
 18534       }
 18535      ]
 18536     },
 18537     "/apis/extensions/v1beta1/ingresses": {
 18538      "get": {
 18539       "description": "list or watch objects of kind Ingress",
 18540       "consumes": [
 18541        "*/*"
 18542       ],
 18543       "produces": [
 18544        "application/json",
 18545        "application/yaml",
 18546        "application/vnd.kubernetes.protobuf",
 18547        "application/json;stream=watch",
 18548        "application/vnd.kubernetes.protobuf;stream=watch"
 18549       ],
 18550       "schemes": [
 18551        "https"
 18552       ],
 18553       "tags": [
 18554        "extensions_v1beta1"
 18555       ],
 18556       "operationId": "listExtensionsV1beta1IngressForAllNamespaces",
 18557       "responses": {
 18558        "200": {
 18559         "description": "OK",
 18560         "schema": {
 18561          "$ref": "#/definitions/v1beta1.IngressList"
 18562         }
 18563        },
 18564        "401": {
 18565         "description": "Unauthorized"
 18566        }
 18567       }
 18568      },
 18569      "parameters": [
 18570       {
 18571        "uniqueItems": true,
 18572        "type": "string",
 18573        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 18574        "name": "fieldSelector",
 18575        "in": "query"
 18576       },
 18577       {
 18578        "uniqueItems": true,
 18579        "type": "string",
 18580        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 18581        "name": "labelSelector",
 18582        "in": "query"
 18583       },
 18584       {
 18585        "uniqueItems": true,
 18586        "type": "string",
 18587        "description": "If 'true', then the output is pretty printed.",
 18588        "name": "pretty",
 18589        "in": "query"
 18590       },
 18591       {
 18592        "uniqueItems": true,
 18593        "type": "string",
 18594        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 18595        "name": "resourceVersion",
 18596        "in": "query"
 18597       },
 18598       {
 18599        "uniqueItems": true,
 18600        "type": "integer",
 18601        "description": "Timeout for the list/watch call.",
 18602        "name": "timeoutSeconds",
 18603        "in": "query"
 18604       },
 18605       {
 18606        "uniqueItems": true,
 18607        "type": "boolean",
 18608        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 18609        "name": "watch",
 18610        "in": "query"
 18611       }
 18612      ]
 18613     },
 18614     "/apis/extensions/v1beta1/jobs": {
 18615      "get": {
 18616       "description": "list or watch objects of kind Job",
 18617       "consumes": [
 18618        "*/*"
 18619       ],
 18620       "produces": [
 18621        "application/json",
 18622        "application/yaml",
 18623        "application/vnd.kubernetes.protobuf",
 18624        "application/json;stream=watch",
 18625        "application/vnd.kubernetes.protobuf;stream=watch"
 18626       ],
 18627       "schemes": [
 18628        "https"
 18629       ],
 18630       "tags": [
 18631        "extensions_v1beta1"
 18632       ],
 18633       "operationId": "listExtensionsV1beta1JobForAllNamespaces",
 18634       "responses": {
 18635        "200": {
 18636         "description": "OK",
 18637         "schema": {
 18638          "$ref": "#/definitions/v1beta1.JobList"
 18639         }
 18640        },
 18641        "401": {
 18642         "description": "Unauthorized"
 18643        }
 18644       }
 18645      },
 18646      "parameters": [
 18647       {
 18648        "uniqueItems": true,
 18649        "type": "string",
 18650        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 18651        "name": "fieldSelector",
 18652        "in": "query"
 18653       },
 18654       {
 18655        "uniqueItems": true,
 18656        "type": "string",
 18657        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 18658        "name": "labelSelector",
 18659        "in": "query"
 18660       },
 18661       {
 18662        "uniqueItems": true,
 18663        "type": "string",
 18664        "description": "If 'true', then the output is pretty printed.",
 18665        "name": "pretty",
 18666        "in": "query"
 18667       },
 18668       {
 18669        "uniqueItems": true,
 18670        "type": "string",
 18671        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 18672        "name": "resourceVersion",
 18673        "in": "query"
 18674       },
 18675       {
 18676        "uniqueItems": true,
 18677        "type": "integer",
 18678        "description": "Timeout for the list/watch call.",
 18679        "name": "timeoutSeconds",
 18680        "in": "query"
 18681       },
 18682       {
 18683        "uniqueItems": true,
 18684        "type": "boolean",
 18685        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 18686        "name": "watch",
 18687        "in": "query"
 18688       }
 18689      ]
 18690     },
 18691     "/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets": {
 18692      "get": {
 18693       "description": "list or watch objects of kind DaemonSet",
 18694       "consumes": [
 18695        "*/*"
 18696       ],
 18697       "produces": [
 18698        "application/json",
 18699        "application/yaml",
 18700        "application/vnd.kubernetes.protobuf",
 18701        "application/json;stream=watch",
 18702        "application/vnd.kubernetes.protobuf;stream=watch"
 18703       ],
 18704       "schemes": [
 18705        "https"
 18706       ],
 18707       "tags": [
 18708        "extensions_v1beta1"
 18709       ],
 18710       "operationId": "listExtensionsV1beta1NamespacedDaemonSet",
 18711       "parameters": [
 18712        {
 18713         "uniqueItems": true,
 18714         "type": "string",
 18715         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 18716         "name": "fieldSelector",
 18717         "in": "query"
 18718        },
 18719        {
 18720         "uniqueItems": true,
 18721         "type": "string",
 18722         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 18723         "name": "labelSelector",
 18724         "in": "query"
 18725        },
 18726        {
 18727         "uniqueItems": true,
 18728         "type": "string",
 18729         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 18730         "name": "resourceVersion",
 18731         "in": "query"
 18732        },
 18733        {
 18734         "uniqueItems": true,
 18735         "type": "integer",
 18736         "description": "Timeout for the list/watch call.",
 18737         "name": "timeoutSeconds",
 18738         "in": "query"
 18739        },
 18740        {
 18741         "uniqueItems": true,
 18742         "type": "boolean",
 18743         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 18744         "name": "watch",
 18745         "in": "query"
 18746        }
 18747       ],
 18748       "responses": {
 18749        "200": {
 18750         "description": "OK",
 18751         "schema": {
 18752          "$ref": "#/definitions/v1beta1.DaemonSetList"
 18753         }
 18754        },
 18755        "401": {
 18756         "description": "Unauthorized"
 18757        }
 18758       }
 18759      },
 18760      "post": {
 18761       "description": "create a DaemonSet",
 18762       "consumes": [
 18763        "*/*"
 18764       ],
 18765       "produces": [
 18766        "application/json",
 18767        "application/yaml",
 18768        "application/vnd.kubernetes.protobuf"
 18769       ],
 18770       "schemes": [
 18771        "https"
 18772       ],
 18773       "tags": [
 18774        "extensions_v1beta1"
 18775       ],
 18776       "operationId": "createExtensionsV1beta1NamespacedDaemonSet",
 18777       "parameters": [
 18778        {
 18779         "name": "body",
 18780         "in": "body",
 18781         "required": true,
 18782         "schema": {
 18783          "$ref": "#/definitions/v1beta1.DaemonSet"
 18784         }
 18785        }
 18786       ],
 18787       "responses": {
 18788        "200": {
 18789         "description": "OK",
 18790         "schema": {
 18791          "$ref": "#/definitions/v1beta1.DaemonSet"
 18792         }
 18793        },
 18794        "401": {
 18795         "description": "Unauthorized"
 18796        }
 18797       }
 18798      },
 18799      "delete": {
 18800       "description": "delete collection of DaemonSet",
 18801       "consumes": [
 18802        "*/*"
 18803       ],
 18804       "produces": [
 18805        "application/json",
 18806        "application/yaml",
 18807        "application/vnd.kubernetes.protobuf"
 18808       ],
 18809       "schemes": [
 18810        "https"
 18811       ],
 18812       "tags": [
 18813        "extensions_v1beta1"
 18814       ],
 18815       "operationId": "deleteExtensionsV1beta1CollectionNamespacedDaemonSet",
 18816       "parameters": [
 18817        {
 18818         "uniqueItems": true,
 18819         "type": "string",
 18820         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 18821         "name": "fieldSelector",
 18822         "in": "query"
 18823        },
 18824        {
 18825         "uniqueItems": true,
 18826         "type": "string",
 18827         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 18828         "name": "labelSelector",
 18829         "in": "query"
 18830        },
 18831        {
 18832         "uniqueItems": true,
 18833         "type": "string",
 18834         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 18835         "name": "resourceVersion",
 18836         "in": "query"
 18837        },
 18838        {
 18839         "uniqueItems": true,
 18840         "type": "integer",
 18841         "description": "Timeout for the list/watch call.",
 18842         "name": "timeoutSeconds",
 18843         "in": "query"
 18844        },
 18845        {
 18846         "uniqueItems": true,
 18847         "type": "boolean",
 18848         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 18849         "name": "watch",
 18850         "in": "query"
 18851        }
 18852       ],
 18853       "responses": {
 18854        "200": {
 18855         "description": "OK",
 18856         "schema": {
 18857          "$ref": "#/definitions/unversioned.Status"
 18858         }
 18859        },
 18860        "401": {
 18861         "description": "Unauthorized"
 18862        }
 18863       }
 18864      },
 18865      "parameters": [
 18866       {
 18867        "uniqueItems": true,
 18868        "type": "string",
 18869        "description": "object name and auth scope, such as for teams and projects",
 18870        "name": "namespace",
 18871        "in": "path",
 18872        "required": true
 18873       },
 18874       {
 18875        "uniqueItems": true,
 18876        "type": "string",
 18877        "description": "If 'true', then the output is pretty printed.",
 18878        "name": "pretty",
 18879        "in": "query"
 18880       }
 18881      ]
 18882     },
 18883     "/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}": {
 18884      "get": {
 18885       "description": "read the specified DaemonSet",
 18886       "consumes": [
 18887        "*/*"
 18888       ],
 18889       "produces": [
 18890        "application/json",
 18891        "application/yaml",
 18892        "application/vnd.kubernetes.protobuf"
 18893       ],
 18894       "schemes": [
 18895        "https"
 18896       ],
 18897       "tags": [
 18898        "extensions_v1beta1"
 18899       ],
 18900       "operationId": "readExtensionsV1beta1NamespacedDaemonSet",
 18901       "parameters": [
 18902        {
 18903         "uniqueItems": true,
 18904         "type": "boolean",
 18905         "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'",
 18906         "name": "exact",
 18907         "in": "query"
 18908        },
 18909        {
 18910         "uniqueItems": true,
 18911         "type": "boolean",
 18912         "description": "Should this value be exported.  Export strips fields that a user can not specify.",
 18913         "name": "export",
 18914         "in": "query"
 18915        }
 18916       ],
 18917       "responses": {
 18918        "200": {
 18919         "description": "OK",
 18920         "schema": {
 18921          "$ref": "#/definitions/v1beta1.DaemonSet"
 18922         }
 18923        },
 18924        "401": {
 18925         "description": "Unauthorized"
 18926        }
 18927       }
 18928      },
 18929      "put": {
 18930       "description": "replace the specified DaemonSet",
 18931       "consumes": [
 18932        "*/*"
 18933       ],
 18934       "produces": [
 18935        "application/json",
 18936        "application/yaml",
 18937        "application/vnd.kubernetes.protobuf"
 18938       ],
 18939       "schemes": [
 18940        "https"
 18941       ],
 18942       "tags": [
 18943        "extensions_v1beta1"
 18944       ],
 18945       "operationId": "replaceExtensionsV1beta1NamespacedDaemonSet",
 18946       "parameters": [
 18947        {
 18948         "name": "body",
 18949         "in": "body",
 18950         "required": true,
 18951         "schema": {
 18952          "$ref": "#/definitions/v1beta1.DaemonSet"
 18953         }
 18954        }
 18955       ],
 18956       "responses": {
 18957        "200": {
 18958         "description": "OK",
 18959         "schema": {
 18960          "$ref": "#/definitions/v1beta1.DaemonSet"
 18961         }
 18962        },
 18963        "401": {
 18964         "description": "Unauthorized"
 18965        }
 18966       }
 18967      },
 18968      "delete": {
 18969       "description": "delete a DaemonSet",
 18970       "consumes": [
 18971        "*/*"
 18972       ],
 18973       "produces": [
 18974        "application/json",
 18975        "application/yaml",
 18976        "application/vnd.kubernetes.protobuf"
 18977       ],
 18978       "schemes": [
 18979        "https"
 18980       ],
 18981       "tags": [
 18982        "extensions_v1beta1"
 18983       ],
 18984       "operationId": "deleteExtensionsV1beta1NamespacedDaemonSet",
 18985       "parameters": [
 18986        {
 18987         "name": "body",
 18988         "in": "body",
 18989         "required": true,
 18990         "schema": {
 18991          "$ref": "#/definitions/v1.DeleteOptions"
 18992         }
 18993        }
 18994       ],
 18995       "responses": {
 18996        "200": {
 18997         "description": "OK",
 18998         "schema": {
 18999          "$ref": "#/definitions/unversioned.Status"
 19000         }
 19001        },
 19002        "401": {
 19003         "description": "Unauthorized"
 19004        }
 19005       }
 19006      },
 19007      "patch": {
 19008       "description": "partially update the specified DaemonSet",
 19009       "consumes": [
 19010        "application/json-patch+json",
 19011        "application/merge-patch+json",
 19012        "application/strategic-merge-patch+json"
 19013       ],
 19014       "produces": [
 19015        "application/json",
 19016        "application/yaml",
 19017        "application/vnd.kubernetes.protobuf"
 19018       ],
 19019       "schemes": [
 19020        "https"
 19021       ],
 19022       "tags": [
 19023        "extensions_v1beta1"
 19024       ],
 19025       "operationId": "patchExtensionsV1beta1NamespacedDaemonSet",
 19026       "parameters": [
 19027        {
 19028         "name": "body",
 19029         "in": "body",
 19030         "required": true,
 19031         "schema": {
 19032          "$ref": "#/definitions/unversioned.Patch"
 19033         }
 19034        }
 19035       ],
 19036       "responses": {
 19037        "200": {
 19038         "description": "OK",
 19039         "schema": {
 19040          "$ref": "#/definitions/v1beta1.DaemonSet"
 19041         }
 19042        },
 19043        "401": {
 19044         "description": "Unauthorized"
 19045        }
 19046       }
 19047      },
 19048      "parameters": [
 19049       {
 19050        "uniqueItems": true,
 19051        "type": "string",
 19052        "description": "name of the DaemonSet",
 19053        "name": "name",
 19054        "in": "path",
 19055        "required": true
 19056       },
 19057       {
 19058        "uniqueItems": true,
 19059        "type": "string",
 19060        "description": "object name and auth scope, such as for teams and projects",
 19061        "name": "namespace",
 19062        "in": "path",
 19063        "required": true
 19064       },
 19065       {
 19066        "uniqueItems": true,
 19067        "type": "string",
 19068        "description": "If 'true', then the output is pretty printed.",
 19069        "name": "pretty",
 19070        "in": "query"
 19071       }
 19072      ]
 19073     },
 19074     "/apis/extensions/v1beta1/namespaces/{namespace}/daemonsets/{name}/status": {
 19075      "get": {
 19076       "description": "read status of the specified DaemonSet",
 19077       "consumes": [
 19078        "*/*"
 19079       ],
 19080       "produces": [
 19081        "application/json",
 19082        "application/yaml",
 19083        "application/vnd.kubernetes.protobuf"
 19084       ],
 19085       "schemes": [
 19086        "https"
 19087       ],
 19088       "tags": [
 19089        "extensions_v1beta1"
 19090       ],
 19091       "operationId": "readExtensionsV1beta1NamespacedDaemonSetStatus",
 19092       "responses": {
 19093        "200": {
 19094         "description": "OK",
 19095         "schema": {
 19096          "$ref": "#/definitions/v1beta1.DaemonSet"
 19097         }
 19098        },
 19099        "401": {
 19100         "description": "Unauthorized"
 19101        }
 19102       }
 19103      },
 19104      "put": {
 19105       "description": "replace status of the specified DaemonSet",
 19106       "consumes": [
 19107        "*/*"
 19108       ],
 19109       "produces": [
 19110        "application/json",
 19111        "application/yaml",
 19112        "application/vnd.kubernetes.protobuf"
 19113       ],
 19114       "schemes": [
 19115        "https"
 19116       ],
 19117       "tags": [
 19118        "extensions_v1beta1"
 19119       ],
 19120       "operationId": "replaceExtensionsV1beta1NamespacedDaemonSetStatus",
 19121       "parameters": [
 19122        {
 19123         "name": "body",
 19124         "in": "body",
 19125         "required": true,
 19126         "schema": {
 19127          "$ref": "#/definitions/v1beta1.DaemonSet"
 19128         }
 19129        }
 19130       ],
 19131       "responses": {
 19132        "200": {
 19133         "description": "OK",
 19134         "schema": {
 19135          "$ref": "#/definitions/v1beta1.DaemonSet"
 19136         }
 19137        },
 19138        "401": {
 19139         "description": "Unauthorized"
 19140        }
 19141       }
 19142      },
 19143      "patch": {
 19144       "description": "partially update status of the specified DaemonSet",
 19145       "consumes": [
 19146        "application/json-patch+json",
 19147        "application/merge-patch+json",
 19148        "application/strategic-merge-patch+json"
 19149       ],
 19150       "produces": [
 19151        "application/json",
 19152        "application/yaml",
 19153        "application/vnd.kubernetes.protobuf"
 19154       ],
 19155       "schemes": [
 19156        "https"
 19157       ],
 19158       "tags": [
 19159        "extensions_v1beta1"
 19160       ],
 19161       "operationId": "patchExtensionsV1beta1NamespacedDaemonSetStatus",
 19162       "parameters": [
 19163        {
 19164         "name": "body",
 19165         "in": "body",
 19166         "required": true,
 19167         "schema": {
 19168          "$ref": "#/definitions/unversioned.Patch"
 19169         }
 19170        }
 19171       ],
 19172       "responses": {
 19173        "200": {
 19174         "description": "OK",
 19175         "schema": {
 19176          "$ref": "#/definitions/v1beta1.DaemonSet"
 19177         }
 19178        },
 19179        "401": {
 19180         "description": "Unauthorized"
 19181        }
 19182       }
 19183      },
 19184      "parameters": [
 19185       {
 19186        "uniqueItems": true,
 19187        "type": "string",
 19188        "description": "name of the DaemonSet",
 19189        "name": "name",
 19190        "in": "path",
 19191        "required": true
 19192       },
 19193       {
 19194        "uniqueItems": true,
 19195        "type": "string",
 19196        "description": "object name and auth scope, such as for teams and projects",
 19197        "name": "namespace",
 19198        "in": "path",
 19199        "required": true
 19200       },
 19201       {
 19202        "uniqueItems": true,
 19203        "type": "string",
 19204        "description": "If 'true', then the output is pretty printed.",
 19205        "name": "pretty",
 19206        "in": "query"
 19207       }
 19208      ]
 19209     },
 19210     "/apis/extensions/v1beta1/namespaces/{namespace}/deployments": {
 19211      "get": {
 19212       "description": "list or watch objects of kind Deployment",
 19213       "consumes": [
 19214        "*/*"
 19215       ],
 19216       "produces": [
 19217        "application/json",
 19218        "application/yaml",
 19219        "application/vnd.kubernetes.protobuf",
 19220        "application/json;stream=watch",
 19221        "application/vnd.kubernetes.protobuf;stream=watch"
 19222       ],
 19223       "schemes": [
 19224        "https"
 19225       ],
 19226       "tags": [
 19227        "extensions_v1beta1"
 19228       ],
 19229       "operationId": "listExtensionsV1beta1NamespacedDeployment",
 19230       "parameters": [
 19231        {
 19232         "uniqueItems": true,
 19233         "type": "string",
 19234         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 19235         "name": "fieldSelector",
 19236         "in": "query"
 19237        },
 19238        {
 19239         "uniqueItems": true,
 19240         "type": "string",
 19241         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 19242         "name": "labelSelector",
 19243         "in": "query"
 19244        },
 19245        {
 19246         "uniqueItems": true,
 19247         "type": "string",
 19248         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 19249         "name": "resourceVersion",
 19250         "in": "query"
 19251        },
 19252        {
 19253         "uniqueItems": true,
 19254         "type": "integer",
 19255         "description": "Timeout for the list/watch call.",
 19256         "name": "timeoutSeconds",
 19257         "in": "query"
 19258        },
 19259        {
 19260         "uniqueItems": true,
 19261         "type": "boolean",
 19262         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 19263         "name": "watch",
 19264         "in": "query"
 19265        }
 19266       ],
 19267       "responses": {
 19268        "200": {
 19269         "description": "OK",
 19270         "schema": {
 19271          "$ref": "#/definitions/v1beta1.DeploymentList"
 19272         }
 19273        },
 19274        "401": {
 19275         "description": "Unauthorized"
 19276        }
 19277       }
 19278      },
 19279      "post": {
 19280       "description": "create a Deployment",
 19281       "consumes": [
 19282        "*/*"
 19283       ],
 19284       "produces": [
 19285        "application/json",
 19286        "application/yaml",
 19287        "application/vnd.kubernetes.protobuf"
 19288       ],
 19289       "schemes": [
 19290        "https"
 19291       ],
 19292       "tags": [
 19293        "extensions_v1beta1"
 19294       ],
 19295       "operationId": "createExtensionsV1beta1NamespacedDeployment",
 19296       "parameters": [
 19297        {
 19298         "name": "body",
 19299         "in": "body",
 19300         "required": true,
 19301         "schema": {
 19302          "$ref": "#/definitions/v1beta1.Deployment"
 19303         }
 19304        }
 19305       ],
 19306       "responses": {
 19307        "200": {
 19308         "description": "OK",
 19309         "schema": {
 19310          "$ref": "#/definitions/v1beta1.Deployment"
 19311         }
 19312        },
 19313        "401": {
 19314         "description": "Unauthorized"
 19315        }
 19316       }
 19317      },
 19318      "delete": {
 19319       "description": "delete collection of Deployment",
 19320       "consumes": [
 19321        "*/*"
 19322       ],
 19323       "produces": [
 19324        "application/json",
 19325        "application/yaml",
 19326        "application/vnd.kubernetes.protobuf"
 19327       ],
 19328       "schemes": [
 19329        "https"
 19330       ],
 19331       "tags": [
 19332        "extensions_v1beta1"
 19333       ],
 19334       "operationId": "deleteExtensionsV1beta1CollectionNamespacedDeployment",
 19335       "parameters": [
 19336        {
 19337         "uniqueItems": true,
 19338         "type": "string",
 19339         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 19340         "name": "fieldSelector",
 19341         "in": "query"
 19342        },
 19343        {
 19344         "uniqueItems": true,
 19345         "type": "string",
 19346         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 19347         "name": "labelSelector",
 19348         "in": "query"
 19349        },
 19350        {
 19351         "uniqueItems": true,
 19352         "type": "string",
 19353         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 19354         "name": "resourceVersion",
 19355         "in": "query"
 19356        },
 19357        {
 19358         "uniqueItems": true,
 19359         "type": "integer",
 19360         "description": "Timeout for the list/watch call.",
 19361         "name": "timeoutSeconds",
 19362         "in": "query"
 19363        },
 19364        {
 19365         "uniqueItems": true,
 19366         "type": "boolean",
 19367         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 19368         "name": "watch",
 19369         "in": "query"
 19370        }
 19371       ],
 19372       "responses": {
 19373        "200": {
 19374         "description": "OK",
 19375         "schema": {
 19376          "$ref": "#/definitions/unversioned.Status"
 19377         }
 19378        },
 19379        "401": {
 19380         "description": "Unauthorized"
 19381        }
 19382       }
 19383      },
 19384      "parameters": [
 19385       {
 19386        "uniqueItems": true,
 19387        "type": "string",
 19388        "description": "object name and auth scope, such as for teams and projects",
 19389        "name": "namespace",
 19390        "in": "path",
 19391        "required": true
 19392       },
 19393       {
 19394        "uniqueItems": true,
 19395        "type": "string",
 19396        "description": "If 'true', then the output is pretty printed.",
 19397        "name": "pretty",
 19398        "in": "query"
 19399       }
 19400      ]
 19401     },
 19402     "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}": {
 19403      "get": {
 19404       "description": "read the specified Deployment",
 19405       "consumes": [
 19406        "*/*"
 19407       ],
 19408       "produces": [
 19409        "application/json",
 19410        "application/yaml",
 19411        "application/vnd.kubernetes.protobuf"
 19412       ],
 19413       "schemes": [
 19414        "https"
 19415       ],
 19416       "tags": [
 19417        "extensions_v1beta1"
 19418       ],
 19419       "operationId": "readExtensionsV1beta1NamespacedDeployment",
 19420       "parameters": [
 19421        {
 19422         "uniqueItems": true,
 19423         "type": "boolean",
 19424         "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'",
 19425         "name": "exact",
 19426         "in": "query"
 19427        },
 19428        {
 19429         "uniqueItems": true,
 19430         "type": "boolean",
 19431         "description": "Should this value be exported.  Export strips fields that a user can not specify.",
 19432         "name": "export",
 19433         "in": "query"
 19434        }
 19435       ],
 19436       "responses": {
 19437        "200": {
 19438         "description": "OK",
 19439         "schema": {
 19440          "$ref": "#/definitions/v1beta1.Deployment"
 19441         }
 19442        },
 19443        "401": {
 19444         "description": "Unauthorized"
 19445        }
 19446       }
 19447      },
 19448      "put": {
 19449       "description": "replace the specified Deployment",
 19450       "consumes": [
 19451        "*/*"
 19452       ],
 19453       "produces": [
 19454        "application/json",
 19455        "application/yaml",
 19456        "application/vnd.kubernetes.protobuf"
 19457       ],
 19458       "schemes": [
 19459        "https"
 19460       ],
 19461       "tags": [
 19462        "extensions_v1beta1"
 19463       ],
 19464       "operationId": "replaceExtensionsV1beta1NamespacedDeployment",
 19465       "parameters": [
 19466        {
 19467         "name": "body",
 19468         "in": "body",
 19469         "required": true,
 19470         "schema": {
 19471          "$ref": "#/definitions/v1beta1.Deployment"
 19472         }
 19473        }
 19474       ],
 19475       "responses": {
 19476        "200": {
 19477         "description": "OK",
 19478         "schema": {
 19479          "$ref": "#/definitions/v1beta1.Deployment"
 19480         }
 19481        },
 19482        "401": {
 19483         "description": "Unauthorized"
 19484        }
 19485       }
 19486      },
 19487      "delete": {
 19488       "description": "delete a Deployment",
 19489       "consumes": [
 19490        "*/*"
 19491       ],
 19492       "produces": [
 19493        "application/json",
 19494        "application/yaml",
 19495        "application/vnd.kubernetes.protobuf"
 19496       ],
 19497       "schemes": [
 19498        "https"
 19499       ],
 19500       "tags": [
 19501        "extensions_v1beta1"
 19502       ],
 19503       "operationId": "deleteExtensionsV1beta1NamespacedDeployment",
 19504       "parameters": [
 19505        {
 19506         "name": "body",
 19507         "in": "body",
 19508         "required": true,
 19509         "schema": {
 19510          "$ref": "#/definitions/v1.DeleteOptions"
 19511         }
 19512        }
 19513       ],
 19514       "responses": {
 19515        "200": {
 19516         "description": "OK",
 19517         "schema": {
 19518          "$ref": "#/definitions/unversioned.Status"
 19519         }
 19520        },
 19521        "401": {
 19522         "description": "Unauthorized"
 19523        }
 19524       }
 19525      },
 19526      "patch": {
 19527       "description": "partially update the specified Deployment",
 19528       "consumes": [
 19529        "application/json-patch+json",
 19530        "application/merge-patch+json",
 19531        "application/strategic-merge-patch+json"
 19532       ],
 19533       "produces": [
 19534        "application/json",
 19535        "application/yaml",
 19536        "application/vnd.kubernetes.protobuf"
 19537       ],
 19538       "schemes": [
 19539        "https"
 19540       ],
 19541       "tags": [
 19542        "extensions_v1beta1"
 19543       ],
 19544       "operationId": "patchExtensionsV1beta1NamespacedDeployment",
 19545       "parameters": [
 19546        {
 19547         "name": "body",
 19548         "in": "body",
 19549         "required": true,
 19550         "schema": {
 19551          "$ref": "#/definitions/unversioned.Patch"
 19552         }
 19553        }
 19554       ],
 19555       "responses": {
 19556        "200": {
 19557         "description": "OK",
 19558         "schema": {
 19559          "$ref": "#/definitions/v1beta1.Deployment"
 19560         }
 19561        },
 19562        "401": {
 19563         "description": "Unauthorized"
 19564        }
 19565       }
 19566      },
 19567      "parameters": [
 19568       {
 19569        "uniqueItems": true,
 19570        "type": "string",
 19571        "description": "name of the Deployment",
 19572        "name": "name",
 19573        "in": "path",
 19574        "required": true
 19575       },
 19576       {
 19577        "uniqueItems": true,
 19578        "type": "string",
 19579        "description": "object name and auth scope, such as for teams and projects",
 19580        "name": "namespace",
 19581        "in": "path",
 19582        "required": true
 19583       },
 19584       {
 19585        "uniqueItems": true,
 19586        "type": "string",
 19587        "description": "If 'true', then the output is pretty printed.",
 19588        "name": "pretty",
 19589        "in": "query"
 19590       }
 19591      ]
 19592     },
 19593     "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/rollback": {
 19594      "post": {
 19595       "description": "create rollback of a DeploymentRollback",
 19596       "consumes": [
 19597        "*/*"
 19598       ],
 19599       "produces": [
 19600        "application/json",
 19601        "application/yaml",
 19602        "application/vnd.kubernetes.protobuf"
 19603       ],
 19604       "schemes": [
 19605        "https"
 19606       ],
 19607       "tags": [
 19608        "extensions_v1beta1"
 19609       ],
 19610       "operationId": "createExtensionsV1beta1NamespacedDeploymentRollbackRollback",
 19611       "responses": {
 19612        "200": {
 19613         "description": "OK",
 19614         "schema": {
 19615          "$ref": "#/definitions/v1beta1.DeploymentRollback"
 19616         }
 19617        },
 19618        "401": {
 19619         "description": "Unauthorized"
 19620        }
 19621       }
 19622      },
 19623      "parameters": [
 19624       {
 19625        "name": "body",
 19626        "in": "body",
 19627        "required": true,
 19628        "schema": {
 19629         "$ref": "#/definitions/v1beta1.DeploymentRollback"
 19630        }
 19631       },
 19632       {
 19633        "uniqueItems": true,
 19634        "type": "string",
 19635        "description": "name of the DeploymentRollback",
 19636        "name": "name",
 19637        "in": "path",
 19638        "required": true
 19639       },
 19640       {
 19641        "uniqueItems": true,
 19642        "type": "string",
 19643        "description": "object name and auth scope, such as for teams and projects",
 19644        "name": "namespace",
 19645        "in": "path",
 19646        "required": true
 19647       },
 19648       {
 19649        "uniqueItems": true,
 19650        "type": "string",
 19651        "description": "If 'true', then the output is pretty printed.",
 19652        "name": "pretty",
 19653        "in": "query"
 19654       }
 19655      ]
 19656     },
 19657     "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/scale": {
 19658      "get": {
 19659       "description": "read scale of the specified Scale",
 19660       "consumes": [
 19661        "*/*"
 19662       ],
 19663       "produces": [
 19664        "application/json",
 19665        "application/yaml",
 19666        "application/vnd.kubernetes.protobuf"
 19667       ],
 19668       "schemes": [
 19669        "https"
 19670       ],
 19671       "tags": [
 19672        "extensions_v1beta1"
 19673       ],
 19674       "operationId": "readExtensionsV1beta1NamespacedDeploymentsScale",
 19675       "responses": {
 19676        "200": {
 19677         "description": "OK",
 19678         "schema": {
 19679          "$ref": "#/definitions/v1beta1.Scale"
 19680         }
 19681        },
 19682        "401": {
 19683         "description": "Unauthorized"
 19684        }
 19685       }
 19686      },
 19687      "put": {
 19688       "description": "replace scale of the specified Scale",
 19689       "consumes": [
 19690        "*/*"
 19691       ],
 19692       "produces": [
 19693        "application/json",
 19694        "application/yaml",
 19695        "application/vnd.kubernetes.protobuf"
 19696       ],
 19697       "schemes": [
 19698        "https"
 19699       ],
 19700       "tags": [
 19701        "extensions_v1beta1"
 19702       ],
 19703       "operationId": "replaceExtensionsV1beta1NamespacedDeploymentsScale",
 19704       "parameters": [
 19705        {
 19706         "name": "body",
 19707         "in": "body",
 19708         "required": true,
 19709         "schema": {
 19710          "$ref": "#/definitions/v1beta1.Scale"
 19711         }
 19712        }
 19713       ],
 19714       "responses": {
 19715        "200": {
 19716         "description": "OK",
 19717         "schema": {
 19718          "$ref": "#/definitions/v1beta1.Scale"
 19719         }
 19720        },
 19721        "401": {
 19722         "description": "Unauthorized"
 19723        }
 19724       }
 19725      },
 19726      "patch": {
 19727       "description": "partially update scale of the specified Scale",
 19728       "consumes": [
 19729        "application/json-patch+json",
 19730        "application/merge-patch+json",
 19731        "application/strategic-merge-patch+json"
 19732       ],
 19733       "produces": [
 19734        "application/json",
 19735        "application/yaml",
 19736        "application/vnd.kubernetes.protobuf"
 19737       ],
 19738       "schemes": [
 19739        "https"
 19740       ],
 19741       "tags": [
 19742        "extensions_v1beta1"
 19743       ],
 19744       "operationId": "patchExtensionsV1beta1NamespacedDeploymentsScale",
 19745       "parameters": [
 19746        {
 19747         "name": "body",
 19748         "in": "body",
 19749         "required": true,
 19750         "schema": {
 19751          "$ref": "#/definitions/unversioned.Patch"
 19752         }
 19753        }
 19754       ],
 19755       "responses": {
 19756        "200": {
 19757         "description": "OK",
 19758         "schema": {
 19759          "$ref": "#/definitions/v1beta1.Scale"
 19760         }
 19761        },
 19762        "401": {
 19763         "description": "Unauthorized"
 19764        }
 19765       }
 19766      },
 19767      "parameters": [
 19768       {
 19769        "uniqueItems": true,
 19770        "type": "string",
 19771        "description": "name of the Scale",
 19772        "name": "name",
 19773        "in": "path",
 19774        "required": true
 19775       },
 19776       {
 19777        "uniqueItems": true,
 19778        "type": "string",
 19779        "description": "object name and auth scope, such as for teams and projects",
 19780        "name": "namespace",
 19781        "in": "path",
 19782        "required": true
 19783       },
 19784       {
 19785        "uniqueItems": true,
 19786        "type": "string",
 19787        "description": "If 'true', then the output is pretty printed.",
 19788        "name": "pretty",
 19789        "in": "query"
 19790       }
 19791      ]
 19792     },
 19793     "/apis/extensions/v1beta1/namespaces/{namespace}/deployments/{name}/status": {
 19794      "get": {
 19795       "description": "read status of the specified Deployment",
 19796       "consumes": [
 19797        "*/*"
 19798       ],
 19799       "produces": [
 19800        "application/json",
 19801        "application/yaml",
 19802        "application/vnd.kubernetes.protobuf"
 19803       ],
 19804       "schemes": [
 19805        "https"
 19806       ],
 19807       "tags": [
 19808        "extensions_v1beta1"
 19809       ],
 19810       "operationId": "readExtensionsV1beta1NamespacedDeploymentStatus",
 19811       "responses": {
 19812        "200": {
 19813         "description": "OK",
 19814         "schema": {
 19815          "$ref": "#/definitions/v1beta1.Deployment"
 19816         }
 19817        },
 19818        "401": {
 19819         "description": "Unauthorized"
 19820        }
 19821       }
 19822      },
 19823      "put": {
 19824       "description": "replace status of the specified Deployment",
 19825       "consumes": [
 19826        "*/*"
 19827       ],
 19828       "produces": [
 19829        "application/json",
 19830        "application/yaml",
 19831        "application/vnd.kubernetes.protobuf"
 19832       ],
 19833       "schemes": [
 19834        "https"
 19835       ],
 19836       "tags": [
 19837        "extensions_v1beta1"
 19838       ],
 19839       "operationId": "replaceExtensionsV1beta1NamespacedDeploymentStatus",
 19840       "parameters": [
 19841        {
 19842         "name": "body",
 19843         "in": "body",
 19844         "required": true,
 19845         "schema": {
 19846          "$ref": "#/definitions/v1beta1.Deployment"
 19847         }
 19848        }
 19849       ],
 19850       "responses": {
 19851        "200": {
 19852         "description": "OK",
 19853         "schema": {
 19854          "$ref": "#/definitions/v1beta1.Deployment"
 19855         }
 19856        },
 19857        "401": {
 19858         "description": "Unauthorized"
 19859        }
 19860       }
 19861      },
 19862      "patch": {
 19863       "description": "partially update status of the specified Deployment",
 19864       "consumes": [
 19865        "application/json-patch+json",
 19866        "application/merge-patch+json",
 19867        "application/strategic-merge-patch+json"
 19868       ],
 19869       "produces": [
 19870        "application/json",
 19871        "application/yaml",
 19872        "application/vnd.kubernetes.protobuf"
 19873       ],
 19874       "schemes": [
 19875        "https"
 19876       ],
 19877       "tags": [
 19878        "extensions_v1beta1"
 19879       ],
 19880       "operationId": "patchExtensionsV1beta1NamespacedDeploymentStatus",
 19881       "parameters": [
 19882        {
 19883         "name": "body",
 19884         "in": "body",
 19885         "required": true,
 19886         "schema": {
 19887          "$ref": "#/definitions/unversioned.Patch"
 19888         }
 19889        }
 19890       ],
 19891       "responses": {
 19892        "200": {
 19893         "description": "OK",
 19894         "schema": {
 19895          "$ref": "#/definitions/v1beta1.Deployment"
 19896         }
 19897        },
 19898        "401": {
 19899         "description": "Unauthorized"
 19900        }
 19901       }
 19902      },
 19903      "parameters": [
 19904       {
 19905        "uniqueItems": true,
 19906        "type": "string",
 19907        "description": "name of the Deployment",
 19908        "name": "name",
 19909        "in": "path",
 19910        "required": true
 19911       },
 19912       {
 19913        "uniqueItems": true,
 19914        "type": "string",
 19915        "description": "object name and auth scope, such as for teams and projects",
 19916        "name": "namespace",
 19917        "in": "path",
 19918        "required": true
 19919       },
 19920       {
 19921        "uniqueItems": true,
 19922        "type": "string",
 19923        "description": "If 'true', then the output is pretty printed.",
 19924        "name": "pretty",
 19925        "in": "query"
 19926       }
 19927      ]
 19928     },
 19929     "/apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers": {
 19930      "get": {
 19931       "description": "list or watch objects of kind HorizontalPodAutoscaler",
 19932       "consumes": [
 19933        "*/*"
 19934       ],
 19935       "produces": [
 19936        "application/json",
 19937        "application/yaml",
 19938        "application/vnd.kubernetes.protobuf",
 19939        "application/json;stream=watch",
 19940        "application/vnd.kubernetes.protobuf;stream=watch"
 19941       ],
 19942       "schemes": [
 19943        "https"
 19944       ],
 19945       "tags": [
 19946        "extensions_v1beta1"
 19947       ],
 19948       "operationId": "listExtensionsV1beta1NamespacedHorizontalPodAutoscaler",
 19949       "parameters": [
 19950        {
 19951         "uniqueItems": true,
 19952         "type": "string",
 19953         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 19954         "name": "fieldSelector",
 19955         "in": "query"
 19956        },
 19957        {
 19958         "uniqueItems": true,
 19959         "type": "string",
 19960         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 19961         "name": "labelSelector",
 19962         "in": "query"
 19963        },
 19964        {
 19965         "uniqueItems": true,
 19966         "type": "string",
 19967         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 19968         "name": "resourceVersion",
 19969         "in": "query"
 19970        },
 19971        {
 19972         "uniqueItems": true,
 19973         "type": "integer",
 19974         "description": "Timeout for the list/watch call.",
 19975         "name": "timeoutSeconds",
 19976         "in": "query"
 19977        },
 19978        {
 19979         "uniqueItems": true,
 19980         "type": "boolean",
 19981         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 19982         "name": "watch",
 19983         "in": "query"
 19984        }
 19985       ],
 19986       "responses": {
 19987        "200": {
 19988         "description": "OK",
 19989         "schema": {
 19990          "$ref": "#/definitions/v1beta1.HorizontalPodAutoscalerList"
 19991         }
 19992        },
 19993        "401": {
 19994         "description": "Unauthorized"
 19995        }
 19996       }
 19997      },
 19998      "post": {
 19999       "description": "create a HorizontalPodAutoscaler",
 20000       "consumes": [
 20001        "*/*"
 20002       ],
 20003       "produces": [
 20004        "application/json",
 20005        "application/yaml",
 20006        "application/vnd.kubernetes.protobuf"
 20007       ],
 20008       "schemes": [
 20009        "https"
 20010       ],
 20011       "tags": [
 20012        "extensions_v1beta1"
 20013       ],
 20014       "operationId": "createExtensionsV1beta1NamespacedHorizontalPodAutoscaler",
 20015       "parameters": [
 20016        {
 20017         "name": "body",
 20018         "in": "body",
 20019         "required": true,
 20020         "schema": {
 20021          "$ref": "#/definitions/v1beta1.HorizontalPodAutoscaler"
 20022         }
 20023        }
 20024       ],
 20025       "responses": {
 20026        "200": {
 20027         "description": "OK",
 20028         "schema": {
 20029          "$ref": "#/definitions/v1beta1.HorizontalPodAutoscaler"
 20030         }
 20031        },
 20032        "401": {
 20033         "description": "Unauthorized"
 20034        }
 20035       }
 20036      },
 20037      "delete": {
 20038       "description": "delete collection of HorizontalPodAutoscaler",
 20039       "consumes": [
 20040        "*/*"
 20041       ],
 20042       "produces": [
 20043        "application/json",
 20044        "application/yaml",
 20045        "application/vnd.kubernetes.protobuf"
 20046       ],
 20047       "schemes": [
 20048        "https"
 20049       ],
 20050       "tags": [
 20051        "extensions_v1beta1"
 20052       ],
 20053       "operationId": "deleteExtensionsV1beta1CollectionNamespacedHorizontalPodAutoscaler",
 20054       "parameters": [
 20055        {
 20056         "uniqueItems": true,
 20057         "type": "string",
 20058         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 20059         "name": "fieldSelector",
 20060         "in": "query"
 20061        },
 20062        {
 20063         "uniqueItems": true,
 20064         "type": "string",
 20065         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 20066         "name": "labelSelector",
 20067         "in": "query"
 20068        },
 20069        {
 20070         "uniqueItems": true,
 20071         "type": "string",
 20072         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 20073         "name": "resourceVersion",
 20074         "in": "query"
 20075        },
 20076        {
 20077         "uniqueItems": true,
 20078         "type": "integer",
 20079         "description": "Timeout for the list/watch call.",
 20080         "name": "timeoutSeconds",
 20081         "in": "query"
 20082        },
 20083        {
 20084         "uniqueItems": true,
 20085         "type": "boolean",
 20086         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 20087         "name": "watch",
 20088         "in": "query"
 20089        }
 20090       ],
 20091       "responses": {
 20092        "200": {
 20093         "description": "OK",
 20094         "schema": {
 20095          "$ref": "#/definitions/unversioned.Status"
 20096         }
 20097        },
 20098        "401": {
 20099         "description": "Unauthorized"
 20100        }
 20101       }
 20102      },
 20103      "parameters": [
 20104       {
 20105        "uniqueItems": true,
 20106        "type": "string",
 20107        "description": "object name and auth scope, such as for teams and projects",
 20108        "name": "namespace",
 20109        "in": "path",
 20110        "required": true
 20111       },
 20112       {
 20113        "uniqueItems": true,
 20114        "type": "string",
 20115        "description": "If 'true', then the output is pretty printed.",
 20116        "name": "pretty",
 20117        "in": "query"
 20118       }
 20119      ]
 20120     },
 20121     "/apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}": {
 20122      "get": {
 20123       "description": "read the specified HorizontalPodAutoscaler",
 20124       "consumes": [
 20125        "*/*"
 20126       ],
 20127       "produces": [
 20128        "application/json",
 20129        "application/yaml",
 20130        "application/vnd.kubernetes.protobuf"
 20131       ],
 20132       "schemes": [
 20133        "https"
 20134       ],
 20135       "tags": [
 20136        "extensions_v1beta1"
 20137       ],
 20138       "operationId": "readExtensionsV1beta1NamespacedHorizontalPodAutoscaler",
 20139       "parameters": [
 20140        {
 20141         "uniqueItems": true,
 20142         "type": "boolean",
 20143         "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'",
 20144         "name": "exact",
 20145         "in": "query"
 20146        },
 20147        {
 20148         "uniqueItems": true,
 20149         "type": "boolean",
 20150         "description": "Should this value be exported.  Export strips fields that a user can not specify.",
 20151         "name": "export",
 20152         "in": "query"
 20153        }
 20154       ],
 20155       "responses": {
 20156        "200": {
 20157         "description": "OK",
 20158         "schema": {
 20159          "$ref": "#/definitions/v1beta1.HorizontalPodAutoscaler"
 20160         }
 20161        },
 20162        "401": {
 20163         "description": "Unauthorized"
 20164        }
 20165       }
 20166      },
 20167      "put": {
 20168       "description": "replace the specified HorizontalPodAutoscaler",
 20169       "consumes": [
 20170        "*/*"
 20171       ],
 20172       "produces": [
 20173        "application/json",
 20174        "application/yaml",
 20175        "application/vnd.kubernetes.protobuf"
 20176       ],
 20177       "schemes": [
 20178        "https"
 20179       ],
 20180       "tags": [
 20181        "extensions_v1beta1"
 20182       ],
 20183       "operationId": "replaceExtensionsV1beta1NamespacedHorizontalPodAutoscaler",
 20184       "parameters": [
 20185        {
 20186         "name": "body",
 20187         "in": "body",
 20188         "required": true,
 20189         "schema": {
 20190          "$ref": "#/definitions/v1beta1.HorizontalPodAutoscaler"
 20191         }
 20192        }
 20193       ],
 20194       "responses": {
 20195        "200": {
 20196         "description": "OK",
 20197         "schema": {
 20198          "$ref": "#/definitions/v1beta1.HorizontalPodAutoscaler"
 20199         }
 20200        },
 20201        "401": {
 20202         "description": "Unauthorized"
 20203        }
 20204       }
 20205      },
 20206      "delete": {
 20207       "description": "delete a HorizontalPodAutoscaler",
 20208       "consumes": [
 20209        "*/*"
 20210       ],
 20211       "produces": [
 20212        "application/json",
 20213        "application/yaml",
 20214        "application/vnd.kubernetes.protobuf"
 20215       ],
 20216       "schemes": [
 20217        "https"
 20218       ],
 20219       "tags": [
 20220        "extensions_v1beta1"
 20221       ],
 20222       "operationId": "deleteExtensionsV1beta1NamespacedHorizontalPodAutoscaler",
 20223       "parameters": [
 20224        {
 20225         "name": "body",
 20226         "in": "body",
 20227         "required": true,
 20228         "schema": {
 20229          "$ref": "#/definitions/v1.DeleteOptions"
 20230         }
 20231        }
 20232       ],
 20233       "responses": {
 20234        "200": {
 20235         "description": "OK",
 20236         "schema": {
 20237          "$ref": "#/definitions/unversioned.Status"
 20238         }
 20239        },
 20240        "401": {
 20241         "description": "Unauthorized"
 20242        }
 20243       }
 20244      },
 20245      "patch": {
 20246       "description": "partially update the specified HorizontalPodAutoscaler",
 20247       "consumes": [
 20248        "application/json-patch+json",
 20249        "application/merge-patch+json",
 20250        "application/strategic-merge-patch+json"
 20251       ],
 20252       "produces": [
 20253        "application/json",
 20254        "application/yaml",
 20255        "application/vnd.kubernetes.protobuf"
 20256       ],
 20257       "schemes": [
 20258        "https"
 20259       ],
 20260       "tags": [
 20261        "extensions_v1beta1"
 20262       ],
 20263       "operationId": "patchExtensionsV1beta1NamespacedHorizontalPodAutoscaler",
 20264       "parameters": [
 20265        {
 20266         "name": "body",
 20267         "in": "body",
 20268         "required": true,
 20269         "schema": {
 20270          "$ref": "#/definitions/unversioned.Patch"
 20271         }
 20272        }
 20273       ],
 20274       "responses": {
 20275        "200": {
 20276         "description": "OK",
 20277         "schema": {
 20278          "$ref": "#/definitions/v1beta1.HorizontalPodAutoscaler"
 20279         }
 20280        },
 20281        "401": {
 20282         "description": "Unauthorized"
 20283        }
 20284       }
 20285      },
 20286      "parameters": [
 20287       {
 20288        "uniqueItems": true,
 20289        "type": "string",
 20290        "description": "name of the HorizontalPodAutoscaler",
 20291        "name": "name",
 20292        "in": "path",
 20293        "required": true
 20294       },
 20295       {
 20296        "uniqueItems": true,
 20297        "type": "string",
 20298        "description": "object name and auth scope, such as for teams and projects",
 20299        "name": "namespace",
 20300        "in": "path",
 20301        "required": true
 20302       },
 20303       {
 20304        "uniqueItems": true,
 20305        "type": "string",
 20306        "description": "If 'true', then the output is pretty printed.",
 20307        "name": "pretty",
 20308        "in": "query"
 20309       }
 20310      ]
 20311     },
 20312     "/apis/extensions/v1beta1/namespaces/{namespace}/horizontalpodautoscalers/{name}/status": {
 20313      "get": {
 20314       "description": "read status of the specified HorizontalPodAutoscaler",
 20315       "consumes": [
 20316        "*/*"
 20317       ],
 20318       "produces": [
 20319        "application/json",
 20320        "application/yaml",
 20321        "application/vnd.kubernetes.protobuf"
 20322       ],
 20323       "schemes": [
 20324        "https"
 20325       ],
 20326       "tags": [
 20327        "extensions_v1beta1"
 20328       ],
 20329       "operationId": "readExtensionsV1beta1NamespacedHorizontalPodAutoscalerStatus",
 20330       "responses": {
 20331        "200": {
 20332         "description": "OK",
 20333         "schema": {
 20334          "$ref": "#/definitions/v1beta1.HorizontalPodAutoscaler"
 20335         }
 20336        },
 20337        "401": {
 20338         "description": "Unauthorized"
 20339        }
 20340       }
 20341      },
 20342      "put": {
 20343       "description": "replace status of the specified HorizontalPodAutoscaler",
 20344       "consumes": [
 20345        "*/*"
 20346       ],
 20347       "produces": [
 20348        "application/json",
 20349        "application/yaml",
 20350        "application/vnd.kubernetes.protobuf"
 20351       ],
 20352       "schemes": [
 20353        "https"
 20354       ],
 20355       "tags": [
 20356        "extensions_v1beta1"
 20357       ],
 20358       "operationId": "replaceExtensionsV1beta1NamespacedHorizontalPodAutoscalerStatus",
 20359       "parameters": [
 20360        {
 20361         "name": "body",
 20362         "in": "body",
 20363         "required": true,
 20364         "schema": {
 20365          "$ref": "#/definitions/v1beta1.HorizontalPodAutoscaler"
 20366         }
 20367        }
 20368       ],
 20369       "responses": {
 20370        "200": {
 20371         "description": "OK",
 20372         "schema": {
 20373          "$ref": "#/definitions/v1beta1.HorizontalPodAutoscaler"
 20374         }
 20375        },
 20376        "401": {
 20377         "description": "Unauthorized"
 20378        }
 20379       }
 20380      },
 20381      "patch": {
 20382       "description": "partially update status of the specified HorizontalPodAutoscaler",
 20383       "consumes": [
 20384        "application/json-patch+json",
 20385        "application/merge-patch+json",
 20386        "application/strategic-merge-patch+json"
 20387       ],
 20388       "produces": [
 20389        "application/json",
 20390        "application/yaml",
 20391        "application/vnd.kubernetes.protobuf"
 20392       ],
 20393       "schemes": [
 20394        "https"
 20395       ],
 20396       "tags": [
 20397        "extensions_v1beta1"
 20398       ],
 20399       "operationId": "patchExtensionsV1beta1NamespacedHorizontalPodAutoscalerStatus",
 20400       "parameters": [
 20401        {
 20402         "name": "body",
 20403         "in": "body",
 20404         "required": true,
 20405         "schema": {
 20406          "$ref": "#/definitions/unversioned.Patch"
 20407         }
 20408        }
 20409       ],
 20410       "responses": {
 20411        "200": {
 20412         "description": "OK",
 20413         "schema": {
 20414          "$ref": "#/definitions/v1beta1.HorizontalPodAutoscaler"
 20415         }
 20416        },
 20417        "401": {
 20418         "description": "Unauthorized"
 20419        }
 20420       }
 20421      },
 20422      "parameters": [
 20423       {
 20424        "uniqueItems": true,
 20425        "type": "string",
 20426        "description": "name of the HorizontalPodAutoscaler",
 20427        "name": "name",
 20428        "in": "path",
 20429        "required": true
 20430       },
 20431       {
 20432        "uniqueItems": true,
 20433        "type": "string",
 20434        "description": "object name and auth scope, such as for teams and projects",
 20435        "name": "namespace",
 20436        "in": "path",
 20437        "required": true
 20438       },
 20439       {
 20440        "uniqueItems": true,
 20441        "type": "string",
 20442        "description": "If 'true', then the output is pretty printed.",
 20443        "name": "pretty",
 20444        "in": "query"
 20445       }
 20446      ]
 20447     },
 20448     "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses": {
 20449      "get": {
 20450       "description": "list or watch objects of kind Ingress",
 20451       "consumes": [
 20452        "*/*"
 20453       ],
 20454       "produces": [
 20455        "application/json",
 20456        "application/yaml",
 20457        "application/vnd.kubernetes.protobuf",
 20458        "application/json;stream=watch",
 20459        "application/vnd.kubernetes.protobuf;stream=watch"
 20460       ],
 20461       "schemes": [
 20462        "https"
 20463       ],
 20464       "tags": [
 20465        "extensions_v1beta1"
 20466       ],
 20467       "operationId": "listExtensionsV1beta1NamespacedIngress",
 20468       "parameters": [
 20469        {
 20470         "uniqueItems": true,
 20471         "type": "string",
 20472         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 20473         "name": "fieldSelector",
 20474         "in": "query"
 20475        },
 20476        {
 20477         "uniqueItems": true,
 20478         "type": "string",
 20479         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 20480         "name": "labelSelector",
 20481         "in": "query"
 20482        },
 20483        {
 20484         "uniqueItems": true,
 20485         "type": "string",
 20486         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 20487         "name": "resourceVersion",
 20488         "in": "query"
 20489        },
 20490        {
 20491         "uniqueItems": true,
 20492         "type": "integer",
 20493         "description": "Timeout for the list/watch call.",
 20494         "name": "timeoutSeconds",
 20495         "in": "query"
 20496        },
 20497        {
 20498         "uniqueItems": true,
 20499         "type": "boolean",
 20500         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 20501         "name": "watch",
 20502         "in": "query"
 20503        }
 20504       ],
 20505       "responses": {
 20506        "200": {
 20507         "description": "OK",
 20508         "schema": {
 20509          "$ref": "#/definitions/v1beta1.IngressList"
 20510         }
 20511        },
 20512        "401": {
 20513         "description": "Unauthorized"
 20514        }
 20515       }
 20516      },
 20517      "post": {
 20518       "description": "create an Ingress",
 20519       "consumes": [
 20520        "*/*"
 20521       ],
 20522       "produces": [
 20523        "application/json",
 20524        "application/yaml",
 20525        "application/vnd.kubernetes.protobuf"
 20526       ],
 20527       "schemes": [
 20528        "https"
 20529       ],
 20530       "tags": [
 20531        "extensions_v1beta1"
 20532       ],
 20533       "operationId": "createExtensionsV1beta1NamespacedIngress",
 20534       "parameters": [
 20535        {
 20536         "name": "body",
 20537         "in": "body",
 20538         "required": true,
 20539         "schema": {
 20540          "$ref": "#/definitions/v1beta1.Ingress"
 20541         }
 20542        }
 20543       ],
 20544       "responses": {
 20545        "200": {
 20546         "description": "OK",
 20547         "schema": {
 20548          "$ref": "#/definitions/v1beta1.Ingress"
 20549         }
 20550        },
 20551        "401": {
 20552         "description": "Unauthorized"
 20553        }
 20554       }
 20555      },
 20556      "delete": {
 20557       "description": "delete collection of Ingress",
 20558       "consumes": [
 20559        "*/*"
 20560       ],
 20561       "produces": [
 20562        "application/json",
 20563        "application/yaml",
 20564        "application/vnd.kubernetes.protobuf"
 20565       ],
 20566       "schemes": [
 20567        "https"
 20568       ],
 20569       "tags": [
 20570        "extensions_v1beta1"
 20571       ],
 20572       "operationId": "deleteExtensionsV1beta1CollectionNamespacedIngress",
 20573       "parameters": [
 20574        {
 20575         "uniqueItems": true,
 20576         "type": "string",
 20577         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 20578         "name": "fieldSelector",
 20579         "in": "query"
 20580        },
 20581        {
 20582         "uniqueItems": true,
 20583         "type": "string",
 20584         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 20585         "name": "labelSelector",
 20586         "in": "query"
 20587        },
 20588        {
 20589         "uniqueItems": true,
 20590         "type": "string",
 20591         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 20592         "name": "resourceVersion",
 20593         "in": "query"
 20594        },
 20595        {
 20596         "uniqueItems": true,
 20597         "type": "integer",
 20598         "description": "Timeout for the list/watch call.",
 20599         "name": "timeoutSeconds",
 20600         "in": "query"
 20601        },
 20602        {
 20603         "uniqueItems": true,
 20604         "type": "boolean",
 20605         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 20606         "name": "watch",
 20607         "in": "query"
 20608        }
 20609       ],
 20610       "responses": {
 20611        "200": {
 20612         "description": "OK",
 20613         "schema": {
 20614          "$ref": "#/definitions/unversioned.Status"
 20615         }
 20616        },
 20617        "401": {
 20618         "description": "Unauthorized"
 20619        }
 20620       }
 20621      },
 20622      "parameters": [
 20623       {
 20624        "uniqueItems": true,
 20625        "type": "string",
 20626        "description": "object name and auth scope, such as for teams and projects",
 20627        "name": "namespace",
 20628        "in": "path",
 20629        "required": true
 20630       },
 20631       {
 20632        "uniqueItems": true,
 20633        "type": "string",
 20634        "description": "If 'true', then the output is pretty printed.",
 20635        "name": "pretty",
 20636        "in": "query"
 20637       }
 20638      ]
 20639     },
 20640     "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}": {
 20641      "get": {
 20642       "description": "read the specified Ingress",
 20643       "consumes": [
 20644        "*/*"
 20645       ],
 20646       "produces": [
 20647        "application/json",
 20648        "application/yaml",
 20649        "application/vnd.kubernetes.protobuf"
 20650       ],
 20651       "schemes": [
 20652        "https"
 20653       ],
 20654       "tags": [
 20655        "extensions_v1beta1"
 20656       ],
 20657       "operationId": "readExtensionsV1beta1NamespacedIngress",
 20658       "parameters": [
 20659        {
 20660         "uniqueItems": true,
 20661         "type": "boolean",
 20662         "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'",
 20663         "name": "exact",
 20664         "in": "query"
 20665        },
 20666        {
 20667         "uniqueItems": true,
 20668         "type": "boolean",
 20669         "description": "Should this value be exported.  Export strips fields that a user can not specify.",
 20670         "name": "export",
 20671         "in": "query"
 20672        }
 20673       ],
 20674       "responses": {
 20675        "200": {
 20676         "description": "OK",
 20677         "schema": {
 20678          "$ref": "#/definitions/v1beta1.Ingress"
 20679         }
 20680        },
 20681        "401": {
 20682         "description": "Unauthorized"
 20683        }
 20684       }
 20685      },
 20686      "put": {
 20687       "description": "replace the specified Ingress",
 20688       "consumes": [
 20689        "*/*"
 20690       ],
 20691       "produces": [
 20692        "application/json",
 20693        "application/yaml",
 20694        "application/vnd.kubernetes.protobuf"
 20695       ],
 20696       "schemes": [
 20697        "https"
 20698       ],
 20699       "tags": [
 20700        "extensions_v1beta1"
 20701       ],
 20702       "operationId": "replaceExtensionsV1beta1NamespacedIngress",
 20703       "parameters": [
 20704        {
 20705         "name": "body",
 20706         "in": "body",
 20707         "required": true,
 20708         "schema": {
 20709          "$ref": "#/definitions/v1beta1.Ingress"
 20710         }
 20711        }
 20712       ],
 20713       "responses": {
 20714        "200": {
 20715         "description": "OK",
 20716         "schema": {
 20717          "$ref": "#/definitions/v1beta1.Ingress"
 20718         }
 20719        },
 20720        "401": {
 20721         "description": "Unauthorized"
 20722        }
 20723       }
 20724      },
 20725      "delete": {
 20726       "description": "delete an Ingress",
 20727       "consumes": [
 20728        "*/*"
 20729       ],
 20730       "produces": [
 20731        "application/json",
 20732        "application/yaml",
 20733        "application/vnd.kubernetes.protobuf"
 20734       ],
 20735       "schemes": [
 20736        "https"
 20737       ],
 20738       "tags": [
 20739        "extensions_v1beta1"
 20740       ],
 20741       "operationId": "deleteExtensionsV1beta1NamespacedIngress",
 20742       "parameters": [
 20743        {
 20744         "name": "body",
 20745         "in": "body",
 20746         "required": true,
 20747         "schema": {
 20748          "$ref": "#/definitions/v1.DeleteOptions"
 20749         }
 20750        }
 20751       ],
 20752       "responses": {
 20753        "200": {
 20754         "description": "OK",
 20755         "schema": {
 20756          "$ref": "#/definitions/unversioned.Status"
 20757         }
 20758        },
 20759        "401": {
 20760         "description": "Unauthorized"
 20761        }
 20762       }
 20763      },
 20764      "patch": {
 20765       "description": "partially update the specified Ingress",
 20766       "consumes": [
 20767        "application/json-patch+json",
 20768        "application/merge-patch+json",
 20769        "application/strategic-merge-patch+json"
 20770       ],
 20771       "produces": [
 20772        "application/json",
 20773        "application/yaml",
 20774        "application/vnd.kubernetes.protobuf"
 20775       ],
 20776       "schemes": [
 20777        "https"
 20778       ],
 20779       "tags": [
 20780        "extensions_v1beta1"
 20781       ],
 20782       "operationId": "patchExtensionsV1beta1NamespacedIngress",
 20783       "parameters": [
 20784        {
 20785         "name": "body",
 20786         "in": "body",
 20787         "required": true,
 20788         "schema": {
 20789          "$ref": "#/definitions/unversioned.Patch"
 20790         }
 20791        }
 20792       ],
 20793       "responses": {
 20794        "200": {
 20795         "description": "OK",
 20796         "schema": {
 20797          "$ref": "#/definitions/v1beta1.Ingress"
 20798         }
 20799        },
 20800        "401": {
 20801         "description": "Unauthorized"
 20802        }
 20803       }
 20804      },
 20805      "parameters": [
 20806       {
 20807        "uniqueItems": true,
 20808        "type": "string",
 20809        "description": "name of the Ingress",
 20810        "name": "name",
 20811        "in": "path",
 20812        "required": true
 20813       },
 20814       {
 20815        "uniqueItems": true,
 20816        "type": "string",
 20817        "description": "object name and auth scope, such as for teams and projects",
 20818        "name": "namespace",
 20819        "in": "path",
 20820        "required": true
 20821       },
 20822       {
 20823        "uniqueItems": true,
 20824        "type": "string",
 20825        "description": "If 'true', then the output is pretty printed.",
 20826        "name": "pretty",
 20827        "in": "query"
 20828       }
 20829      ]
 20830     },
 20831     "/apis/extensions/v1beta1/namespaces/{namespace}/ingresses/{name}/status": {
 20832      "get": {
 20833       "description": "read status of the specified Ingress",
 20834       "consumes": [
 20835        "*/*"
 20836       ],
 20837       "produces": [
 20838        "application/json",
 20839        "application/yaml",
 20840        "application/vnd.kubernetes.protobuf"
 20841       ],
 20842       "schemes": [
 20843        "https"
 20844       ],
 20845       "tags": [
 20846        "extensions_v1beta1"
 20847       ],
 20848       "operationId": "readExtensionsV1beta1NamespacedIngressStatus",
 20849       "responses": {
 20850        "200": {
 20851         "description": "OK",
 20852         "schema": {
 20853          "$ref": "#/definitions/v1beta1.Ingress"
 20854         }
 20855        },
 20856        "401": {
 20857         "description": "Unauthorized"
 20858        }
 20859       }
 20860      },
 20861      "put": {
 20862       "description": "replace status of the specified Ingress",
 20863       "consumes": [
 20864        "*/*"
 20865       ],
 20866       "produces": [
 20867        "application/json",
 20868        "application/yaml",
 20869        "application/vnd.kubernetes.protobuf"
 20870       ],
 20871       "schemes": [
 20872        "https"
 20873       ],
 20874       "tags": [
 20875        "extensions_v1beta1"
 20876       ],
 20877       "operationId": "replaceExtensionsV1beta1NamespacedIngressStatus",
 20878       "parameters": [
 20879        {
 20880         "name": "body",
 20881         "in": "body",
 20882         "required": true,
 20883         "schema": {
 20884          "$ref": "#/definitions/v1beta1.Ingress"
 20885         }
 20886        }
 20887       ],
 20888       "responses": {
 20889        "200": {
 20890         "description": "OK",
 20891         "schema": {
 20892          "$ref": "#/definitions/v1beta1.Ingress"
 20893         }
 20894        },
 20895        "401": {
 20896         "description": "Unauthorized"
 20897        }
 20898       }
 20899      },
 20900      "patch": {
 20901       "description": "partially update status of the specified Ingress",
 20902       "consumes": [
 20903        "application/json-patch+json",
 20904        "application/merge-patch+json",
 20905        "application/strategic-merge-patch+json"
 20906       ],
 20907       "produces": [
 20908        "application/json",
 20909        "application/yaml",
 20910        "application/vnd.kubernetes.protobuf"
 20911       ],
 20912       "schemes": [
 20913        "https"
 20914       ],
 20915       "tags": [
 20916        "extensions_v1beta1"
 20917       ],
 20918       "operationId": "patchExtensionsV1beta1NamespacedIngressStatus",
 20919       "parameters": [
 20920        {
 20921         "name": "body",
 20922         "in": "body",
 20923         "required": true,
 20924         "schema": {
 20925          "$ref": "#/definitions/unversioned.Patch"
 20926         }
 20927        }
 20928       ],
 20929       "responses": {
 20930        "200": {
 20931         "description": "OK",
 20932         "schema": {
 20933          "$ref": "#/definitions/v1beta1.Ingress"
 20934         }
 20935        },
 20936        "401": {
 20937         "description": "Unauthorized"
 20938        }
 20939       }
 20940      },
 20941      "parameters": [
 20942       {
 20943        "uniqueItems": true,
 20944        "type": "string",
 20945        "description": "name of the Ingress",
 20946        "name": "name",
 20947        "in": "path",
 20948        "required": true
 20949       },
 20950       {
 20951        "uniqueItems": true,
 20952        "type": "string",
 20953        "description": "object name and auth scope, such as for teams and projects",
 20954        "name": "namespace",
 20955        "in": "path",
 20956        "required": true
 20957       },
 20958       {
 20959        "uniqueItems": true,
 20960        "type": "string",
 20961        "description": "If 'true', then the output is pretty printed.",
 20962        "name": "pretty",
 20963        "in": "query"
 20964       }
 20965      ]
 20966     },
 20967     "/apis/extensions/v1beta1/namespaces/{namespace}/jobs": {
 20968      "get": {
 20969       "description": "list or watch objects of kind Job",
 20970       "consumes": [
 20971        "*/*"
 20972       ],
 20973       "produces": [
 20974        "application/json",
 20975        "application/yaml",
 20976        "application/vnd.kubernetes.protobuf",
 20977        "application/json;stream=watch",
 20978        "application/vnd.kubernetes.protobuf;stream=watch"
 20979       ],
 20980       "schemes": [
 20981        "https"
 20982       ],
 20983       "tags": [
 20984        "extensions_v1beta1"
 20985       ],
 20986       "operationId": "listExtensionsV1beta1NamespacedJob",
 20987       "parameters": [
 20988        {
 20989         "uniqueItems": true,
 20990         "type": "string",
 20991         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 20992         "name": "fieldSelector",
 20993         "in": "query"
 20994        },
 20995        {
 20996         "uniqueItems": true,
 20997         "type": "string",
 20998         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 20999         "name": "labelSelector",
 21000         "in": "query"
 21001        },
 21002        {
 21003         "uniqueItems": true,
 21004         "type": "string",
 21005         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 21006         "name": "resourceVersion",
 21007         "in": "query"
 21008        },
 21009        {
 21010         "uniqueItems": true,
 21011         "type": "integer",
 21012         "description": "Timeout for the list/watch call.",
 21013         "name": "timeoutSeconds",
 21014         "in": "query"
 21015        },
 21016        {
 21017         "uniqueItems": true,
 21018         "type": "boolean",
 21019         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 21020         "name": "watch",
 21021         "in": "query"
 21022        }
 21023       ],
 21024       "responses": {
 21025        "200": {
 21026         "description": "OK",
 21027         "schema": {
 21028          "$ref": "#/definitions/v1beta1.JobList"
 21029         }
 21030        },
 21031        "401": {
 21032         "description": "Unauthorized"
 21033        }
 21034       }
 21035      },
 21036      "post": {
 21037       "description": "create a Job",
 21038       "consumes": [
 21039        "*/*"
 21040       ],
 21041       "produces": [
 21042        "application/json",
 21043        "application/yaml",
 21044        "application/vnd.kubernetes.protobuf"
 21045       ],
 21046       "schemes": [
 21047        "https"
 21048       ],
 21049       "tags": [
 21050        "extensions_v1beta1"
 21051       ],
 21052       "operationId": "createExtensionsV1beta1NamespacedJob",
 21053       "parameters": [
 21054        {
 21055         "name": "body",
 21056         "in": "body",
 21057         "required": true,
 21058         "schema": {
 21059          "$ref": "#/definitions/v1beta1.Job"
 21060         }
 21061        }
 21062       ],
 21063       "responses": {
 21064        "200": {
 21065         "description": "OK",
 21066         "schema": {
 21067          "$ref": "#/definitions/v1beta1.Job"
 21068         }
 21069        },
 21070        "401": {
 21071         "description": "Unauthorized"
 21072        }
 21073       }
 21074      },
 21075      "delete": {
 21076       "description": "delete collection of Job",
 21077       "consumes": [
 21078        "*/*"
 21079       ],
 21080       "produces": [
 21081        "application/json",
 21082        "application/yaml",
 21083        "application/vnd.kubernetes.protobuf"
 21084       ],
 21085       "schemes": [
 21086        "https"
 21087       ],
 21088       "tags": [
 21089        "extensions_v1beta1"
 21090       ],
 21091       "operationId": "deleteExtensionsV1beta1CollectionNamespacedJob",
 21092       "parameters": [
 21093        {
 21094         "uniqueItems": true,
 21095         "type": "string",
 21096         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 21097         "name": "fieldSelector",
 21098         "in": "query"
 21099        },
 21100        {
 21101         "uniqueItems": true,
 21102         "type": "string",
 21103         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 21104         "name": "labelSelector",
 21105         "in": "query"
 21106        },
 21107        {
 21108         "uniqueItems": true,
 21109         "type": "string",
 21110         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 21111         "name": "resourceVersion",
 21112         "in": "query"
 21113        },
 21114        {
 21115         "uniqueItems": true,
 21116         "type": "integer",
 21117         "description": "Timeout for the list/watch call.",
 21118         "name": "timeoutSeconds",
 21119         "in": "query"
 21120        },
 21121        {
 21122         "uniqueItems": true,
 21123         "type": "boolean",
 21124         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 21125         "name": "watch",
 21126         "in": "query"
 21127        }
 21128       ],
 21129       "responses": {
 21130        "200": {
 21131         "description": "OK",
 21132         "schema": {
 21133          "$ref": "#/definitions/unversioned.Status"
 21134         }
 21135        },
 21136        "401": {
 21137         "description": "Unauthorized"
 21138        }
 21139       }
 21140      },
 21141      "parameters": [
 21142       {
 21143        "uniqueItems": true,
 21144        "type": "string",
 21145        "description": "object name and auth scope, such as for teams and projects",
 21146        "name": "namespace",
 21147        "in": "path",
 21148        "required": true
 21149       },
 21150       {
 21151        "uniqueItems": true,
 21152        "type": "string",
 21153        "description": "If 'true', then the output is pretty printed.",
 21154        "name": "pretty",
 21155        "in": "query"
 21156       }
 21157      ]
 21158     },
 21159     "/apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}": {
 21160      "get": {
 21161       "description": "read the specified Job",
 21162       "consumes": [
 21163        "*/*"
 21164       ],
 21165       "produces": [
 21166        "application/json",
 21167        "application/yaml",
 21168        "application/vnd.kubernetes.protobuf"
 21169       ],
 21170       "schemes": [
 21171        "https"
 21172       ],
 21173       "tags": [
 21174        "extensions_v1beta1"
 21175       ],
 21176       "operationId": "readExtensionsV1beta1NamespacedJob",
 21177       "parameters": [
 21178        {
 21179         "uniqueItems": true,
 21180         "type": "boolean",
 21181         "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'",
 21182         "name": "exact",
 21183         "in": "query"
 21184        },
 21185        {
 21186         "uniqueItems": true,
 21187         "type": "boolean",
 21188         "description": "Should this value be exported.  Export strips fields that a user can not specify.",
 21189         "name": "export",
 21190         "in": "query"
 21191        }
 21192       ],
 21193       "responses": {
 21194        "200": {
 21195         "description": "OK",
 21196         "schema": {
 21197          "$ref": "#/definitions/v1beta1.Job"
 21198         }
 21199        },
 21200        "401": {
 21201         "description": "Unauthorized"
 21202        }
 21203       }
 21204      },
 21205      "put": {
 21206       "description": "replace the specified Job",
 21207       "consumes": [
 21208        "*/*"
 21209       ],
 21210       "produces": [
 21211        "application/json",
 21212        "application/yaml",
 21213        "application/vnd.kubernetes.protobuf"
 21214       ],
 21215       "schemes": [
 21216        "https"
 21217       ],
 21218       "tags": [
 21219        "extensions_v1beta1"
 21220       ],
 21221       "operationId": "replaceExtensionsV1beta1NamespacedJob",
 21222       "parameters": [
 21223        {
 21224         "name": "body",
 21225         "in": "body",
 21226         "required": true,
 21227         "schema": {
 21228          "$ref": "#/definitions/v1beta1.Job"
 21229         }
 21230        }
 21231       ],
 21232       "responses": {
 21233        "200": {
 21234         "description": "OK",
 21235         "schema": {
 21236          "$ref": "#/definitions/v1beta1.Job"
 21237         }
 21238        },
 21239        "401": {
 21240         "description": "Unauthorized"
 21241        }
 21242       }
 21243      },
 21244      "delete": {
 21245       "description": "delete a Job",
 21246       "consumes": [
 21247        "*/*"
 21248       ],
 21249       "produces": [
 21250        "application/json",
 21251        "application/yaml",
 21252        "application/vnd.kubernetes.protobuf"
 21253       ],
 21254       "schemes": [
 21255        "https"
 21256       ],
 21257       "tags": [
 21258        "extensions_v1beta1"
 21259       ],
 21260       "operationId": "deleteExtensionsV1beta1NamespacedJob",
 21261       "parameters": [
 21262        {
 21263         "name": "body",
 21264         "in": "body",
 21265         "required": true,
 21266         "schema": {
 21267          "$ref": "#/definitions/v1.DeleteOptions"
 21268         }
 21269        }
 21270       ],
 21271       "responses": {
 21272        "200": {
 21273         "description": "OK",
 21274         "schema": {
 21275          "$ref": "#/definitions/unversioned.Status"
 21276         }
 21277        },
 21278        "401": {
 21279         "description": "Unauthorized"
 21280        }
 21281       }
 21282      },
 21283      "patch": {
 21284       "description": "partially update the specified Job",
 21285       "consumes": [
 21286        "application/json-patch+json",
 21287        "application/merge-patch+json",
 21288        "application/strategic-merge-patch+json"
 21289       ],
 21290       "produces": [
 21291        "application/json",
 21292        "application/yaml",
 21293        "application/vnd.kubernetes.protobuf"
 21294       ],
 21295       "schemes": [
 21296        "https"
 21297       ],
 21298       "tags": [
 21299        "extensions_v1beta1"
 21300       ],
 21301       "operationId": "patchExtensionsV1beta1NamespacedJob",
 21302       "parameters": [
 21303        {
 21304         "name": "body",
 21305         "in": "body",
 21306         "required": true,
 21307         "schema": {
 21308          "$ref": "#/definitions/unversioned.Patch"
 21309         }
 21310        }
 21311       ],
 21312       "responses": {
 21313        "200": {
 21314         "description": "OK",
 21315         "schema": {
 21316          "$ref": "#/definitions/v1beta1.Job"
 21317         }
 21318        },
 21319        "401": {
 21320         "description": "Unauthorized"
 21321        }
 21322       }
 21323      },
 21324      "parameters": [
 21325       {
 21326        "uniqueItems": true,
 21327        "type": "string",
 21328        "description": "name of the Job",
 21329        "name": "name",
 21330        "in": "path",
 21331        "required": true
 21332       },
 21333       {
 21334        "uniqueItems": true,
 21335        "type": "string",
 21336        "description": "object name and auth scope, such as for teams and projects",
 21337        "name": "namespace",
 21338        "in": "path",
 21339        "required": true
 21340       },
 21341       {
 21342        "uniqueItems": true,
 21343        "type": "string",
 21344        "description": "If 'true', then the output is pretty printed.",
 21345        "name": "pretty",
 21346        "in": "query"
 21347       }
 21348      ]
 21349     },
 21350     "/apis/extensions/v1beta1/namespaces/{namespace}/jobs/{name}/status": {
 21351      "get": {
 21352       "description": "read status of the specified Job",
 21353       "consumes": [
 21354        "*/*"
 21355       ],
 21356       "produces": [
 21357        "application/json",
 21358        "application/yaml",
 21359        "application/vnd.kubernetes.protobuf"
 21360       ],
 21361       "schemes": [
 21362        "https"
 21363       ],
 21364       "tags": [
 21365        "extensions_v1beta1"
 21366       ],
 21367       "operationId": "readExtensionsV1beta1NamespacedJobStatus",
 21368       "responses": {
 21369        "200": {
 21370         "description": "OK",
 21371         "schema": {
 21372          "$ref": "#/definitions/v1beta1.Job"
 21373         }
 21374        },
 21375        "401": {
 21376         "description": "Unauthorized"
 21377        }
 21378       }
 21379      },
 21380      "put": {
 21381       "description": "replace status of the specified Job",
 21382       "consumes": [
 21383        "*/*"
 21384       ],
 21385       "produces": [
 21386        "application/json",
 21387        "application/yaml",
 21388        "application/vnd.kubernetes.protobuf"
 21389       ],
 21390       "schemes": [
 21391        "https"
 21392       ],
 21393       "tags": [
 21394        "extensions_v1beta1"
 21395       ],
 21396       "operationId": "replaceExtensionsV1beta1NamespacedJobStatus",
 21397       "parameters": [
 21398        {
 21399         "name": "body",
 21400         "in": "body",
 21401         "required": true,
 21402         "schema": {
 21403          "$ref": "#/definitions/v1beta1.Job"
 21404         }
 21405        }
 21406       ],
 21407       "responses": {
 21408        "200": {
 21409         "description": "OK",
 21410         "schema": {
 21411          "$ref": "#/definitions/v1beta1.Job"
 21412         }
 21413        },
 21414        "401": {
 21415         "description": "Unauthorized"
 21416        }
 21417       }
 21418      },
 21419      "patch": {
 21420       "description": "partially update status of the specified Job",
 21421       "consumes": [
 21422        "application/json-patch+json",
 21423        "application/merge-patch+json",
 21424        "application/strategic-merge-patch+json"
 21425       ],
 21426       "produces": [
 21427        "application/json",
 21428        "application/yaml",
 21429        "application/vnd.kubernetes.protobuf"
 21430       ],
 21431       "schemes": [
 21432        "https"
 21433       ],
 21434       "tags": [
 21435        "extensions_v1beta1"
 21436       ],
 21437       "operationId": "patchExtensionsV1beta1NamespacedJobStatus",
 21438       "parameters": [
 21439        {
 21440         "name": "body",
 21441         "in": "body",
 21442         "required": true,
 21443         "schema": {
 21444          "$ref": "#/definitions/unversioned.Patch"
 21445         }
 21446        }
 21447       ],
 21448       "responses": {
 21449        "200": {
 21450         "description": "OK",
 21451         "schema": {
 21452          "$ref": "#/definitions/v1beta1.Job"
 21453         }
 21454        },
 21455        "401": {
 21456         "description": "Unauthorized"
 21457        }
 21458       }
 21459      },
 21460      "parameters": [
 21461       {
 21462        "uniqueItems": true,
 21463        "type": "string",
 21464        "description": "name of the Job",
 21465        "name": "name",
 21466        "in": "path",
 21467        "required": true
 21468       },
 21469       {
 21470        "uniqueItems": true,
 21471        "type": "string",
 21472        "description": "object name and auth scope, such as for teams and projects",
 21473        "name": "namespace",
 21474        "in": "path",
 21475        "required": true
 21476       },
 21477       {
 21478        "uniqueItems": true,
 21479        "type": "string",
 21480        "description": "If 'true', then the output is pretty printed.",
 21481        "name": "pretty",
 21482        "in": "query"
 21483       }
 21484      ]
 21485     },
 21486     "/apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies": {
 21487      "get": {
 21488       "description": "list or watch objects of kind NetworkPolicy",
 21489       "consumes": [
 21490        "*/*"
 21491       ],
 21492       "produces": [
 21493        "application/json",
 21494        "application/yaml",
 21495        "application/vnd.kubernetes.protobuf",
 21496        "application/json;stream=watch",
 21497        "application/vnd.kubernetes.protobuf;stream=watch"
 21498       ],
 21499       "schemes": [
 21500        "https"
 21501       ],
 21502       "tags": [
 21503        "extensions_v1beta1"
 21504       ],
 21505       "operationId": "listExtensionsV1beta1NamespacedNetworkPolicy",
 21506       "parameters": [
 21507        {
 21508         "uniqueItems": true,
 21509         "type": "string",
 21510         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 21511         "name": "fieldSelector",
 21512         "in": "query"
 21513        },
 21514        {
 21515         "uniqueItems": true,
 21516         "type": "string",
 21517         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 21518         "name": "labelSelector",
 21519         "in": "query"
 21520        },
 21521        {
 21522         "uniqueItems": true,
 21523         "type": "string",
 21524         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 21525         "name": "resourceVersion",
 21526         "in": "query"
 21527        },
 21528        {
 21529         "uniqueItems": true,
 21530         "type": "integer",
 21531         "description": "Timeout for the list/watch call.",
 21532         "name": "timeoutSeconds",
 21533         "in": "query"
 21534        },
 21535        {
 21536         "uniqueItems": true,
 21537         "type": "boolean",
 21538         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 21539         "name": "watch",
 21540         "in": "query"
 21541        }
 21542       ],
 21543       "responses": {
 21544        "200": {
 21545         "description": "OK",
 21546         "schema": {
 21547          "$ref": "#/definitions/v1beta1.NetworkPolicyList"
 21548         }
 21549        },
 21550        "401": {
 21551         "description": "Unauthorized"
 21552        }
 21553       }
 21554      },
 21555      "post": {
 21556       "description": "create a NetworkPolicy",
 21557       "consumes": [
 21558        "*/*"
 21559       ],
 21560       "produces": [
 21561        "application/json",
 21562        "application/yaml",
 21563        "application/vnd.kubernetes.protobuf"
 21564       ],
 21565       "schemes": [
 21566        "https"
 21567       ],
 21568       "tags": [
 21569        "extensions_v1beta1"
 21570       ],
 21571       "operationId": "createExtensionsV1beta1NamespacedNetworkPolicy",
 21572       "parameters": [
 21573        {
 21574         "name": "body",
 21575         "in": "body",
 21576         "required": true,
 21577         "schema": {
 21578          "$ref": "#/definitions/v1beta1.NetworkPolicy"
 21579         }
 21580        }
 21581       ],
 21582       "responses": {
 21583        "200": {
 21584         "description": "OK",
 21585         "schema": {
 21586          "$ref": "#/definitions/v1beta1.NetworkPolicy"
 21587         }
 21588        },
 21589        "401": {
 21590         "description": "Unauthorized"
 21591        }
 21592       }
 21593      },
 21594      "delete": {
 21595       "description": "delete collection of NetworkPolicy",
 21596       "consumes": [
 21597        "*/*"
 21598       ],
 21599       "produces": [
 21600        "application/json",
 21601        "application/yaml",
 21602        "application/vnd.kubernetes.protobuf"
 21603       ],
 21604       "schemes": [
 21605        "https"
 21606       ],
 21607       "tags": [
 21608        "extensions_v1beta1"
 21609       ],
 21610       "operationId": "deleteExtensionsV1beta1CollectionNamespacedNetworkPolicy",
 21611       "parameters": [
 21612        {
 21613         "uniqueItems": true,
 21614         "type": "string",
 21615         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 21616         "name": "fieldSelector",
 21617         "in": "query"
 21618        },
 21619        {
 21620         "uniqueItems": true,
 21621         "type": "string",
 21622         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 21623         "name": "labelSelector",
 21624         "in": "query"
 21625        },
 21626        {
 21627         "uniqueItems": true,
 21628         "type": "string",
 21629         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 21630         "name": "resourceVersion",
 21631         "in": "query"
 21632        },
 21633        {
 21634         "uniqueItems": true,
 21635         "type": "integer",
 21636         "description": "Timeout for the list/watch call.",
 21637         "name": "timeoutSeconds",
 21638         "in": "query"
 21639        },
 21640        {
 21641         "uniqueItems": true,
 21642         "type": "boolean",
 21643         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 21644         "name": "watch",
 21645         "in": "query"
 21646        }
 21647       ],
 21648       "responses": {
 21649        "200": {
 21650         "description": "OK",
 21651         "schema": {
 21652          "$ref": "#/definitions/unversioned.Status"
 21653         }
 21654        },
 21655        "401": {
 21656         "description": "Unauthorized"
 21657        }
 21658       }
 21659      },
 21660      "parameters": [
 21661       {
 21662        "uniqueItems": true,
 21663        "type": "string",
 21664        "description": "object name and auth scope, such as for teams and projects",
 21665        "name": "namespace",
 21666        "in": "path",
 21667        "required": true
 21668       },
 21669       {
 21670        "uniqueItems": true,
 21671        "type": "string",
 21672        "description": "If 'true', then the output is pretty printed.",
 21673        "name": "pretty",
 21674        "in": "query"
 21675       }
 21676      ]
 21677     },
 21678     "/apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies/{name}": {
 21679      "get": {
 21680       "description": "read the specified NetworkPolicy",
 21681       "consumes": [
 21682        "*/*"
 21683       ],
 21684       "produces": [
 21685        "application/json",
 21686        "application/yaml",
 21687        "application/vnd.kubernetes.protobuf"
 21688       ],
 21689       "schemes": [
 21690        "https"
 21691       ],
 21692       "tags": [
 21693        "extensions_v1beta1"
 21694       ],
 21695       "operationId": "readExtensionsV1beta1NamespacedNetworkPolicy",
 21696       "parameters": [
 21697        {
 21698         "uniqueItems": true,
 21699         "type": "boolean",
 21700         "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'",
 21701         "name": "exact",
 21702         "in": "query"
 21703        },
 21704        {
 21705         "uniqueItems": true,
 21706         "type": "boolean",
 21707         "description": "Should this value be exported.  Export strips fields that a user can not specify.",
 21708         "name": "export",
 21709         "in": "query"
 21710        }
 21711       ],
 21712       "responses": {
 21713        "200": {
 21714         "description": "OK",
 21715         "schema": {
 21716          "$ref": "#/definitions/v1beta1.NetworkPolicy"
 21717         }
 21718        },
 21719        "401": {
 21720         "description": "Unauthorized"
 21721        }
 21722       }
 21723      },
 21724      "put": {
 21725       "description": "replace the specified NetworkPolicy",
 21726       "consumes": [
 21727        "*/*"
 21728       ],
 21729       "produces": [
 21730        "application/json",
 21731        "application/yaml",
 21732        "application/vnd.kubernetes.protobuf"
 21733       ],
 21734       "schemes": [
 21735        "https"
 21736       ],
 21737       "tags": [
 21738        "extensions_v1beta1"
 21739       ],
 21740       "operationId": "replaceExtensionsV1beta1NamespacedNetworkPolicy",
 21741       "parameters": [
 21742        {
 21743         "name": "body",
 21744         "in": "body",
 21745         "required": true,
 21746         "schema": {
 21747          "$ref": "#/definitions/v1beta1.NetworkPolicy"
 21748         }
 21749        }
 21750       ],
 21751       "responses": {
 21752        "200": {
 21753         "description": "OK",
 21754         "schema": {
 21755          "$ref": "#/definitions/v1beta1.NetworkPolicy"
 21756         }
 21757        },
 21758        "401": {
 21759         "description": "Unauthorized"
 21760        }
 21761       }
 21762      },
 21763      "delete": {
 21764       "description": "delete a NetworkPolicy",
 21765       "consumes": [
 21766        "*/*"
 21767       ],
 21768       "produces": [
 21769        "application/json",
 21770        "application/yaml",
 21771        "application/vnd.kubernetes.protobuf"
 21772       ],
 21773       "schemes": [
 21774        "https"
 21775       ],
 21776       "tags": [
 21777        "extensions_v1beta1"
 21778       ],
 21779       "operationId": "deleteExtensionsV1beta1NamespacedNetworkPolicy",
 21780       "parameters": [
 21781        {
 21782         "name": "body",
 21783         "in": "body",
 21784         "required": true,
 21785         "schema": {
 21786          "$ref": "#/definitions/v1.DeleteOptions"
 21787         }
 21788        }
 21789       ],
 21790       "responses": {
 21791        "200": {
 21792         "description": "OK",
 21793         "schema": {
 21794          "$ref": "#/definitions/unversioned.Status"
 21795         }
 21796        },
 21797        "401": {
 21798         "description": "Unauthorized"
 21799        }
 21800       }
 21801      },
 21802      "patch": {
 21803       "description": "partially update the specified NetworkPolicy",
 21804       "consumes": [
 21805        "application/json-patch+json",
 21806        "application/merge-patch+json",
 21807        "application/strategic-merge-patch+json"
 21808       ],
 21809       "produces": [
 21810        "application/json",
 21811        "application/yaml",
 21812        "application/vnd.kubernetes.protobuf"
 21813       ],
 21814       "schemes": [
 21815        "https"
 21816       ],
 21817       "tags": [
 21818        "extensions_v1beta1"
 21819       ],
 21820       "operationId": "patchExtensionsV1beta1NamespacedNetworkPolicy",
 21821       "parameters": [
 21822        {
 21823         "name": "body",
 21824         "in": "body",
 21825         "required": true,
 21826         "schema": {
 21827          "$ref": "#/definitions/unversioned.Patch"
 21828         }
 21829        }
 21830       ],
 21831       "responses": {
 21832        "200": {
 21833         "description": "OK",
 21834         "schema": {
 21835          "$ref": "#/definitions/v1beta1.NetworkPolicy"
 21836         }
 21837        },
 21838        "401": {
 21839         "description": "Unauthorized"
 21840        }
 21841       }
 21842      },
 21843      "parameters": [
 21844       {
 21845        "uniqueItems": true,
 21846        "type": "string",
 21847        "description": "name of the NetworkPolicy",
 21848        "name": "name",
 21849        "in": "path",
 21850        "required": true
 21851       },
 21852       {
 21853        "uniqueItems": true,
 21854        "type": "string",
 21855        "description": "object name and auth scope, such as for teams and projects",
 21856        "name": "namespace",
 21857        "in": "path",
 21858        "required": true
 21859       },
 21860       {
 21861        "uniqueItems": true,
 21862        "type": "string",
 21863        "description": "If 'true', then the output is pretty printed.",
 21864        "name": "pretty",
 21865        "in": "query"
 21866       }
 21867      ]
 21868     },
 21869     "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets": {
 21870      "get": {
 21871       "description": "list or watch objects of kind ReplicaSet",
 21872       "consumes": [
 21873        "*/*"
 21874       ],
 21875       "produces": [
 21876        "application/json",
 21877        "application/yaml",
 21878        "application/vnd.kubernetes.protobuf",
 21879        "application/json;stream=watch",
 21880        "application/vnd.kubernetes.protobuf;stream=watch"
 21881       ],
 21882       "schemes": [
 21883        "https"
 21884       ],
 21885       "tags": [
 21886        "extensions_v1beta1"
 21887       ],
 21888       "operationId": "listExtensionsV1beta1NamespacedReplicaSet",
 21889       "parameters": [
 21890        {
 21891         "uniqueItems": true,
 21892         "type": "string",
 21893         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 21894         "name": "fieldSelector",
 21895         "in": "query"
 21896        },
 21897        {
 21898         "uniqueItems": true,
 21899         "type": "string",
 21900         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 21901         "name": "labelSelector",
 21902         "in": "query"
 21903        },
 21904        {
 21905         "uniqueItems": true,
 21906         "type": "string",
 21907         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 21908         "name": "resourceVersion",
 21909         "in": "query"
 21910        },
 21911        {
 21912         "uniqueItems": true,
 21913         "type": "integer",
 21914         "description": "Timeout for the list/watch call.",
 21915         "name": "timeoutSeconds",
 21916         "in": "query"
 21917        },
 21918        {
 21919         "uniqueItems": true,
 21920         "type": "boolean",
 21921         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 21922         "name": "watch",
 21923         "in": "query"
 21924        }
 21925       ],
 21926       "responses": {
 21927        "200": {
 21928         "description": "OK",
 21929         "schema": {
 21930          "$ref": "#/definitions/v1beta1.ReplicaSetList"
 21931         }
 21932        },
 21933        "401": {
 21934         "description": "Unauthorized"
 21935        }
 21936       }
 21937      },
 21938      "post": {
 21939       "description": "create a ReplicaSet",
 21940       "consumes": [
 21941        "*/*"
 21942       ],
 21943       "produces": [
 21944        "application/json",
 21945        "application/yaml",
 21946        "application/vnd.kubernetes.protobuf"
 21947       ],
 21948       "schemes": [
 21949        "https"
 21950       ],
 21951       "tags": [
 21952        "extensions_v1beta1"
 21953       ],
 21954       "operationId": "createExtensionsV1beta1NamespacedReplicaSet",
 21955       "parameters": [
 21956        {
 21957         "name": "body",
 21958         "in": "body",
 21959         "required": true,
 21960         "schema": {
 21961          "$ref": "#/definitions/v1beta1.ReplicaSet"
 21962         }
 21963        }
 21964       ],
 21965       "responses": {
 21966        "200": {
 21967         "description": "OK",
 21968         "schema": {
 21969          "$ref": "#/definitions/v1beta1.ReplicaSet"
 21970         }
 21971        },
 21972        "401": {
 21973         "description": "Unauthorized"
 21974        }
 21975       }
 21976      },
 21977      "delete": {
 21978       "description": "delete collection of ReplicaSet",
 21979       "consumes": [
 21980        "*/*"
 21981       ],
 21982       "produces": [
 21983        "application/json",
 21984        "application/yaml",
 21985        "application/vnd.kubernetes.protobuf"
 21986       ],
 21987       "schemes": [
 21988        "https"
 21989       ],
 21990       "tags": [
 21991        "extensions_v1beta1"
 21992       ],
 21993       "operationId": "deleteExtensionsV1beta1CollectionNamespacedReplicaSet",
 21994       "parameters": [
 21995        {
 21996         "uniqueItems": true,
 21997         "type": "string",
 21998         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 21999         "name": "fieldSelector",
 22000         "in": "query"
 22001        },
 22002        {
 22003         "uniqueItems": true,
 22004         "type": "string",
 22005         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 22006         "name": "labelSelector",
 22007         "in": "query"
 22008        },
 22009        {
 22010         "uniqueItems": true,
 22011         "type": "string",
 22012         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 22013         "name": "resourceVersion",
 22014         "in": "query"
 22015        },
 22016        {
 22017         "uniqueItems": true,
 22018         "type": "integer",
 22019         "description": "Timeout for the list/watch call.",
 22020         "name": "timeoutSeconds",
 22021         "in": "query"
 22022        },
 22023        {
 22024         "uniqueItems": true,
 22025         "type": "boolean",
 22026         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 22027         "name": "watch",
 22028         "in": "query"
 22029        }
 22030       ],
 22031       "responses": {
 22032        "200": {
 22033         "description": "OK",
 22034         "schema": {
 22035          "$ref": "#/definitions/unversioned.Status"
 22036         }
 22037        },
 22038        "401": {
 22039         "description": "Unauthorized"
 22040        }
 22041       }
 22042      },
 22043      "parameters": [
 22044       {
 22045        "uniqueItems": true,
 22046        "type": "string",
 22047        "description": "object name and auth scope, such as for teams and projects",
 22048        "name": "namespace",
 22049        "in": "path",
 22050        "required": true
 22051       },
 22052       {
 22053        "uniqueItems": true,
 22054        "type": "string",
 22055        "description": "If 'true', then the output is pretty printed.",
 22056        "name": "pretty",
 22057        "in": "query"
 22058       }
 22059      ]
 22060     },
 22061     "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}": {
 22062      "get": {
 22063       "description": "read the specified ReplicaSet",
 22064       "consumes": [
 22065        "*/*"
 22066       ],
 22067       "produces": [
 22068        "application/json",
 22069        "application/yaml",
 22070        "application/vnd.kubernetes.protobuf"
 22071       ],
 22072       "schemes": [
 22073        "https"
 22074       ],
 22075       "tags": [
 22076        "extensions_v1beta1"
 22077       ],
 22078       "operationId": "readExtensionsV1beta1NamespacedReplicaSet",
 22079       "parameters": [
 22080        {
 22081         "uniqueItems": true,
 22082         "type": "boolean",
 22083         "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'",
 22084         "name": "exact",
 22085         "in": "query"
 22086        },
 22087        {
 22088         "uniqueItems": true,
 22089         "type": "boolean",
 22090         "description": "Should this value be exported.  Export strips fields that a user can not specify.",
 22091         "name": "export",
 22092         "in": "query"
 22093        }
 22094       ],
 22095       "responses": {
 22096        "200": {
 22097         "description": "OK",
 22098         "schema": {
 22099          "$ref": "#/definitions/v1beta1.ReplicaSet"
 22100         }
 22101        },
 22102        "401": {
 22103         "description": "Unauthorized"
 22104        }
 22105       }
 22106      },
 22107      "put": {
 22108       "description": "replace the specified ReplicaSet",
 22109       "consumes": [
 22110        "*/*"
 22111       ],
 22112       "produces": [
 22113        "application/json",
 22114        "application/yaml",
 22115        "application/vnd.kubernetes.protobuf"
 22116       ],
 22117       "schemes": [
 22118        "https"
 22119       ],
 22120       "tags": [
 22121        "extensions_v1beta1"
 22122       ],
 22123       "operationId": "replaceExtensionsV1beta1NamespacedReplicaSet",
 22124       "parameters": [
 22125        {
 22126         "name": "body",
 22127         "in": "body",
 22128         "required": true,
 22129         "schema": {
 22130          "$ref": "#/definitions/v1beta1.ReplicaSet"
 22131         }
 22132        }
 22133       ],
 22134       "responses": {
 22135        "200": {
 22136         "description": "OK",
 22137         "schema": {
 22138          "$ref": "#/definitions/v1beta1.ReplicaSet"
 22139         }
 22140        },
 22141        "401": {
 22142         "description": "Unauthorized"
 22143        }
 22144       }
 22145      },
 22146      "delete": {
 22147       "description": "delete a ReplicaSet",
 22148       "consumes": [
 22149        "*/*"
 22150       ],
 22151       "produces": [
 22152        "application/json",
 22153        "application/yaml",
 22154        "application/vnd.kubernetes.protobuf"
 22155       ],
 22156       "schemes": [
 22157        "https"
 22158       ],
 22159       "tags": [
 22160        "extensions_v1beta1"
 22161       ],
 22162       "operationId": "deleteExtensionsV1beta1NamespacedReplicaSet",
 22163       "parameters": [
 22164        {
 22165         "name": "body",
 22166         "in": "body",
 22167         "required": true,
 22168         "schema": {
 22169          "$ref": "#/definitions/v1.DeleteOptions"
 22170         }
 22171        }
 22172       ],
 22173       "responses": {
 22174        "200": {
 22175         "description": "OK",
 22176         "schema": {
 22177          "$ref": "#/definitions/unversioned.Status"
 22178         }
 22179        },
 22180        "401": {
 22181         "description": "Unauthorized"
 22182        }
 22183       }
 22184      },
 22185      "patch": {
 22186       "description": "partially update the specified ReplicaSet",
 22187       "consumes": [
 22188        "application/json-patch+json",
 22189        "application/merge-patch+json",
 22190        "application/strategic-merge-patch+json"
 22191       ],
 22192       "produces": [
 22193        "application/json",
 22194        "application/yaml",
 22195        "application/vnd.kubernetes.protobuf"
 22196       ],
 22197       "schemes": [
 22198        "https"
 22199       ],
 22200       "tags": [
 22201        "extensions_v1beta1"
 22202       ],
 22203       "operationId": "patchExtensionsV1beta1NamespacedReplicaSet",
 22204       "parameters": [
 22205        {
 22206         "name": "body",
 22207         "in": "body",
 22208         "required": true,
 22209         "schema": {
 22210          "$ref": "#/definitions/unversioned.Patch"
 22211         }
 22212        }
 22213       ],
 22214       "responses": {
 22215        "200": {
 22216         "description": "OK",
 22217         "schema": {
 22218          "$ref": "#/definitions/v1beta1.ReplicaSet"
 22219         }
 22220        },
 22221        "401": {
 22222         "description": "Unauthorized"
 22223        }
 22224       }
 22225      },
 22226      "parameters": [
 22227       {
 22228        "uniqueItems": true,
 22229        "type": "string",
 22230        "description": "name of the ReplicaSet",
 22231        "name": "name",
 22232        "in": "path",
 22233        "required": true
 22234       },
 22235       {
 22236        "uniqueItems": true,
 22237        "type": "string",
 22238        "description": "object name and auth scope, such as for teams and projects",
 22239        "name": "namespace",
 22240        "in": "path",
 22241        "required": true
 22242       },
 22243       {
 22244        "uniqueItems": true,
 22245        "type": "string",
 22246        "description": "If 'true', then the output is pretty printed.",
 22247        "name": "pretty",
 22248        "in": "query"
 22249       }
 22250      ]
 22251     },
 22252     "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/scale": {
 22253      "get": {
 22254       "description": "read scale of the specified Scale",
 22255       "consumes": [
 22256        "*/*"
 22257       ],
 22258       "produces": [
 22259        "application/json",
 22260        "application/yaml",
 22261        "application/vnd.kubernetes.protobuf"
 22262       ],
 22263       "schemes": [
 22264        "https"
 22265       ],
 22266       "tags": [
 22267        "extensions_v1beta1"
 22268       ],
 22269       "operationId": "readExtensionsV1beta1NamespacedReplicasetsScale",
 22270       "responses": {
 22271        "200": {
 22272         "description": "OK",
 22273         "schema": {
 22274          "$ref": "#/definitions/v1beta1.Scale"
 22275         }
 22276        },
 22277        "401": {
 22278         "description": "Unauthorized"
 22279        }
 22280       }
 22281      },
 22282      "put": {
 22283       "description": "replace scale of the specified Scale",
 22284       "consumes": [
 22285        "*/*"
 22286       ],
 22287       "produces": [
 22288        "application/json",
 22289        "application/yaml",
 22290        "application/vnd.kubernetes.protobuf"
 22291       ],
 22292       "schemes": [
 22293        "https"
 22294       ],
 22295       "tags": [
 22296        "extensions_v1beta1"
 22297       ],
 22298       "operationId": "replaceExtensionsV1beta1NamespacedReplicasetsScale",
 22299       "parameters": [
 22300        {
 22301         "name": "body",
 22302         "in": "body",
 22303         "required": true,
 22304         "schema": {
 22305          "$ref": "#/definitions/v1beta1.Scale"
 22306         }
 22307        }
 22308       ],
 22309       "responses": {
 22310        "200": {
 22311         "description": "OK",
 22312         "schema": {
 22313          "$ref": "#/definitions/v1beta1.Scale"
 22314         }
 22315        },
 22316        "401": {
 22317         "description": "Unauthorized"
 22318        }
 22319       }
 22320      },
 22321      "patch": {
 22322       "description": "partially update scale of the specified Scale",
 22323       "consumes": [
 22324        "application/json-patch+json",
 22325        "application/merge-patch+json",
 22326        "application/strategic-merge-patch+json"
 22327       ],
 22328       "produces": [
 22329        "application/json",
 22330        "application/yaml",
 22331        "application/vnd.kubernetes.protobuf"
 22332       ],
 22333       "schemes": [
 22334        "https"
 22335       ],
 22336       "tags": [
 22337        "extensions_v1beta1"
 22338       ],
 22339       "operationId": "patchExtensionsV1beta1NamespacedReplicasetsScale",
 22340       "parameters": [
 22341        {
 22342         "name": "body",
 22343         "in": "body",
 22344         "required": true,
 22345         "schema": {
 22346          "$ref": "#/definitions/unversioned.Patch"
 22347         }
 22348        }
 22349       ],
 22350       "responses": {
 22351        "200": {
 22352         "description": "OK",
 22353         "schema": {
 22354          "$ref": "#/definitions/v1beta1.Scale"
 22355         }
 22356        },
 22357        "401": {
 22358         "description": "Unauthorized"
 22359        }
 22360       }
 22361      },
 22362      "parameters": [
 22363       {
 22364        "uniqueItems": true,
 22365        "type": "string",
 22366        "description": "name of the Scale",
 22367        "name": "name",
 22368        "in": "path",
 22369        "required": true
 22370       },
 22371       {
 22372        "uniqueItems": true,
 22373        "type": "string",
 22374        "description": "object name and auth scope, such as for teams and projects",
 22375        "name": "namespace",
 22376        "in": "path",
 22377        "required": true
 22378       },
 22379       {
 22380        "uniqueItems": true,
 22381        "type": "string",
 22382        "description": "If 'true', then the output is pretty printed.",
 22383        "name": "pretty",
 22384        "in": "query"
 22385       }
 22386      ]
 22387     },
 22388     "/apis/extensions/v1beta1/namespaces/{namespace}/replicasets/{name}/status": {
 22389      "get": {
 22390       "description": "read status of the specified ReplicaSet",
 22391       "consumes": [
 22392        "*/*"
 22393       ],
 22394       "produces": [
 22395        "application/json",
 22396        "application/yaml",
 22397        "application/vnd.kubernetes.protobuf"
 22398       ],
 22399       "schemes": [
 22400        "https"
 22401       ],
 22402       "tags": [
 22403        "extensions_v1beta1"
 22404       ],
 22405       "operationId": "readExtensionsV1beta1NamespacedReplicaSetStatus",
 22406       "responses": {
 22407        "200": {
 22408         "description": "OK",
 22409         "schema": {
 22410          "$ref": "#/definitions/v1beta1.ReplicaSet"
 22411         }
 22412        },
 22413        "401": {
 22414         "description": "Unauthorized"
 22415        }
 22416       }
 22417      },
 22418      "put": {
 22419       "description": "replace status of the specified ReplicaSet",
 22420       "consumes": [
 22421        "*/*"
 22422       ],
 22423       "produces": [
 22424        "application/json",
 22425        "application/yaml",
 22426        "application/vnd.kubernetes.protobuf"
 22427       ],
 22428       "schemes": [
 22429        "https"
 22430       ],
 22431       "tags": [
 22432        "extensions_v1beta1"
 22433       ],
 22434       "operationId": "replaceExtensionsV1beta1NamespacedReplicaSetStatus",
 22435       "parameters": [
 22436        {
 22437         "name": "body",
 22438         "in": "body",
 22439         "required": true,
 22440         "schema": {
 22441          "$ref": "#/definitions/v1beta1.ReplicaSet"
 22442         }
 22443        }
 22444       ],
 22445       "responses": {
 22446        "200": {
 22447         "description": "OK",
 22448         "schema": {
 22449          "$ref": "#/definitions/v1beta1.ReplicaSet"
 22450         }
 22451        },
 22452        "401": {
 22453         "description": "Unauthorized"
 22454        }
 22455       }
 22456      },
 22457      "patch": {
 22458       "description": "partially update status of the specified ReplicaSet",
 22459       "consumes": [
 22460        "application/json-patch+json",
 22461        "application/merge-patch+json",
 22462        "application/strategic-merge-patch+json"
 22463       ],
 22464       "produces": [
 22465        "application/json",
 22466        "application/yaml",
 22467        "application/vnd.kubernetes.protobuf"
 22468       ],
 22469       "schemes": [
 22470        "https"
 22471       ],
 22472       "tags": [
 22473        "extensions_v1beta1"
 22474       ],
 22475       "operationId": "patchExtensionsV1beta1NamespacedReplicaSetStatus",
 22476       "parameters": [
 22477        {
 22478         "name": "body",
 22479         "in": "body",
 22480         "required": true,
 22481         "schema": {
 22482          "$ref": "#/definitions/unversioned.Patch"
 22483         }
 22484        }
 22485       ],
 22486       "responses": {
 22487        "200": {
 22488         "description": "OK",
 22489         "schema": {
 22490          "$ref": "#/definitions/v1beta1.ReplicaSet"
 22491         }
 22492        },
 22493        "401": {
 22494         "description": "Unauthorized"
 22495        }
 22496       }
 22497      },
 22498      "parameters": [
 22499       {
 22500        "uniqueItems": true,
 22501        "type": "string",
 22502        "description": "name of the ReplicaSet",
 22503        "name": "name",
 22504        "in": "path",
 22505        "required": true
 22506       },
 22507       {
 22508        "uniqueItems": true,
 22509        "type": "string",
 22510        "description": "object name and auth scope, such as for teams and projects",
 22511        "name": "namespace",
 22512        "in": "path",
 22513        "required": true
 22514       },
 22515       {
 22516        "uniqueItems": true,
 22517        "type": "string",
 22518        "description": "If 'true', then the output is pretty printed.",
 22519        "name": "pretty",
 22520        "in": "query"
 22521       }
 22522      ]
 22523     },
 22524     "/apis/extensions/v1beta1/namespaces/{namespace}/replicationcontrollers/{name}/scale": {
 22525      "get": {
 22526       "description": "read scale of the specified Scale",
 22527       "consumes": [
 22528        "*/*"
 22529       ],
 22530       "produces": [
 22531        "application/json",
 22532        "application/yaml",
 22533        "application/vnd.kubernetes.protobuf"
 22534       ],
 22535       "schemes": [
 22536        "https"
 22537       ],
 22538       "tags": [
 22539        "extensions_v1beta1"
 22540       ],
 22541       "operationId": "readExtensionsV1beta1NamespacedReplicationcontrollersScale",
 22542       "responses": {
 22543        "200": {
 22544         "description": "OK",
 22545         "schema": {
 22546          "$ref": "#/definitions/v1beta1.Scale"
 22547         }
 22548        },
 22549        "401": {
 22550         "description": "Unauthorized"
 22551        }
 22552       }
 22553      },
 22554      "put": {
 22555       "description": "replace scale of the specified Scale",
 22556       "consumes": [
 22557        "*/*"
 22558       ],
 22559       "produces": [
 22560        "application/json",
 22561        "application/yaml",
 22562        "application/vnd.kubernetes.protobuf"
 22563       ],
 22564       "schemes": [
 22565        "https"
 22566       ],
 22567       "tags": [
 22568        "extensions_v1beta1"
 22569       ],
 22570       "operationId": "replaceExtensionsV1beta1NamespacedReplicationcontrollersScale",
 22571       "parameters": [
 22572        {
 22573         "name": "body",
 22574         "in": "body",
 22575         "required": true,
 22576         "schema": {
 22577          "$ref": "#/definitions/v1beta1.Scale"
 22578         }
 22579        }
 22580       ],
 22581       "responses": {
 22582        "200": {
 22583         "description": "OK",
 22584         "schema": {
 22585          "$ref": "#/definitions/v1beta1.Scale"
 22586         }
 22587        },
 22588        "401": {
 22589         "description": "Unauthorized"
 22590        }
 22591       }
 22592      },
 22593      "patch": {
 22594       "description": "partially update scale of the specified Scale",
 22595       "consumes": [
 22596        "application/json-patch+json",
 22597        "application/merge-patch+json",
 22598        "application/strategic-merge-patch+json"
 22599       ],
 22600       "produces": [
 22601        "application/json",
 22602        "application/yaml",
 22603        "application/vnd.kubernetes.protobuf"
 22604       ],
 22605       "schemes": [
 22606        "https"
 22607       ],
 22608       "tags": [
 22609        "extensions_v1beta1"
 22610       ],
 22611       "operationId": "patchExtensionsV1beta1NamespacedReplicationcontrollersScale",
 22612       "parameters": [
 22613        {
 22614         "name": "body",
 22615         "in": "body",
 22616         "required": true,
 22617         "schema": {
 22618          "$ref": "#/definitions/unversioned.Patch"
 22619         }
 22620        }
 22621       ],
 22622       "responses": {
 22623        "200": {
 22624         "description": "OK",
 22625         "schema": {
 22626          "$ref": "#/definitions/v1beta1.Scale"
 22627         }
 22628        },
 22629        "401": {
 22630         "description": "Unauthorized"
 22631        }
 22632       }
 22633      },
 22634      "parameters": [
 22635       {
 22636        "uniqueItems": true,
 22637        "type": "string",
 22638        "description": "name of the Scale",
 22639        "name": "name",
 22640        "in": "path",
 22641        "required": true
 22642       },
 22643       {
 22644        "uniqueItems": true,
 22645        "type": "string",
 22646        "description": "object name and auth scope, such as for teams and projects",
 22647        "name": "namespace",
 22648        "in": "path",
 22649        "required": true
 22650       },
 22651       {
 22652        "uniqueItems": true,
 22653        "type": "string",
 22654        "description": "If 'true', then the output is pretty printed.",
 22655        "name": "pretty",
 22656        "in": "query"
 22657       }
 22658      ]
 22659     },
 22660     "/apis/extensions/v1beta1/networkpolicies": {
 22661      "get": {
 22662       "description": "list or watch objects of kind NetworkPolicy",
 22663       "consumes": [
 22664        "*/*"
 22665       ],
 22666       "produces": [
 22667        "application/json",
 22668        "application/yaml",
 22669        "application/vnd.kubernetes.protobuf",
 22670        "application/json;stream=watch",
 22671        "application/vnd.kubernetes.protobuf;stream=watch"
 22672       ],
 22673       "schemes": [
 22674        "https"
 22675       ],
 22676       "tags": [
 22677        "extensions_v1beta1"
 22678       ],
 22679       "operationId": "listExtensionsV1beta1NetworkPolicyForAllNamespaces",
 22680       "responses": {
 22681        "200": {
 22682         "description": "OK",
 22683         "schema": {
 22684          "$ref": "#/definitions/v1beta1.NetworkPolicyList"
 22685         }
 22686        },
 22687        "401": {
 22688         "description": "Unauthorized"
 22689        }
 22690       }
 22691      },
 22692      "parameters": [
 22693       {
 22694        "uniqueItems": true,
 22695        "type": "string",
 22696        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 22697        "name": "fieldSelector",
 22698        "in": "query"
 22699       },
 22700       {
 22701        "uniqueItems": true,
 22702        "type": "string",
 22703        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 22704        "name": "labelSelector",
 22705        "in": "query"
 22706       },
 22707       {
 22708        "uniqueItems": true,
 22709        "type": "string",
 22710        "description": "If 'true', then the output is pretty printed.",
 22711        "name": "pretty",
 22712        "in": "query"
 22713       },
 22714       {
 22715        "uniqueItems": true,
 22716        "type": "string",
 22717        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 22718        "name": "resourceVersion",
 22719        "in": "query"
 22720       },
 22721       {
 22722        "uniqueItems": true,
 22723        "type": "integer",
 22724        "description": "Timeout for the list/watch call.",
 22725        "name": "timeoutSeconds",
 22726        "in": "query"
 22727       },
 22728       {
 22729        "uniqueItems": true,
 22730        "type": "boolean",
 22731        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 22732        "name": "watch",
 22733        "in": "query"
 22734       }
 22735      ]
 22736     },
 22737     "/apis/extensions/v1beta1/replicasets": {
 22738      "get": {
 22739       "description": "list or watch objects of kind ReplicaSet",
 22740       "consumes": [
 22741        "*/*"
 22742       ],
 22743       "produces": [
 22744        "application/json",
 22745        "application/yaml",
 22746        "application/vnd.kubernetes.protobuf",
 22747        "application/json;stream=watch",
 22748        "application/vnd.kubernetes.protobuf;stream=watch"
 22749       ],
 22750       "schemes": [
 22751        "https"
 22752       ],
 22753       "tags": [
 22754        "extensions_v1beta1"
 22755       ],
 22756       "operationId": "listExtensionsV1beta1ReplicaSetForAllNamespaces",
 22757       "responses": {
 22758        "200": {
 22759         "description": "OK",
 22760         "schema": {
 22761          "$ref": "#/definitions/v1beta1.ReplicaSetList"
 22762         }
 22763        },
 22764        "401": {
 22765         "description": "Unauthorized"
 22766        }
 22767       }
 22768      },
 22769      "parameters": [
 22770       {
 22771        "uniqueItems": true,
 22772        "type": "string",
 22773        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 22774        "name": "fieldSelector",
 22775        "in": "query"
 22776       },
 22777       {
 22778        "uniqueItems": true,
 22779        "type": "string",
 22780        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 22781        "name": "labelSelector",
 22782        "in": "query"
 22783       },
 22784       {
 22785        "uniqueItems": true,
 22786        "type": "string",
 22787        "description": "If 'true', then the output is pretty printed.",
 22788        "name": "pretty",
 22789        "in": "query"
 22790       },
 22791       {
 22792        "uniqueItems": true,
 22793        "type": "string",
 22794        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 22795        "name": "resourceVersion",
 22796        "in": "query"
 22797       },
 22798       {
 22799        "uniqueItems": true,
 22800        "type": "integer",
 22801        "description": "Timeout for the list/watch call.",
 22802        "name": "timeoutSeconds",
 22803        "in": "query"
 22804       },
 22805       {
 22806        "uniqueItems": true,
 22807        "type": "boolean",
 22808        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 22809        "name": "watch",
 22810        "in": "query"
 22811       }
 22812      ]
 22813     },
 22814     "/apis/extensions/v1beta1/thirdpartyresources": {
 22815      "get": {
 22816       "description": "list or watch objects of kind ThirdPartyResource",
 22817       "consumes": [
 22818        "*/*"
 22819       ],
 22820       "produces": [
 22821        "application/json",
 22822        "application/yaml",
 22823        "application/vnd.kubernetes.protobuf",
 22824        "application/json;stream=watch",
 22825        "application/vnd.kubernetes.protobuf;stream=watch"
 22826       ],
 22827       "schemes": [
 22828        "https"
 22829       ],
 22830       "tags": [
 22831        "extensions_v1beta1"
 22832       ],
 22833       "operationId": "listExtensionsV1beta1ThirdPartyResource",
 22834       "parameters": [
 22835        {
 22836         "uniqueItems": true,
 22837         "type": "string",
 22838         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 22839         "name": "fieldSelector",
 22840         "in": "query"
 22841        },
 22842        {
 22843         "uniqueItems": true,
 22844         "type": "string",
 22845         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 22846         "name": "labelSelector",
 22847         "in": "query"
 22848        },
 22849        {
 22850         "uniqueItems": true,
 22851         "type": "string",
 22852         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 22853         "name": "resourceVersion",
 22854         "in": "query"
 22855        },
 22856        {
 22857         "uniqueItems": true,
 22858         "type": "integer",
 22859         "description": "Timeout for the list/watch call.",
 22860         "name": "timeoutSeconds",
 22861         "in": "query"
 22862        },
 22863        {
 22864         "uniqueItems": true,
 22865         "type": "boolean",
 22866         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 22867         "name": "watch",
 22868         "in": "query"
 22869        }
 22870       ],
 22871       "responses": {
 22872        "200": {
 22873         "description": "OK",
 22874         "schema": {
 22875          "$ref": "#/definitions/v1beta1.ThirdPartyResourceList"
 22876         }
 22877        },
 22878        "401": {
 22879         "description": "Unauthorized"
 22880        }
 22881       }
 22882      },
 22883      "post": {
 22884       "description": "create a ThirdPartyResource",
 22885       "consumes": [
 22886        "*/*"
 22887       ],
 22888       "produces": [
 22889        "application/json",
 22890        "application/yaml",
 22891        "application/vnd.kubernetes.protobuf"
 22892       ],
 22893       "schemes": [
 22894        "https"
 22895       ],
 22896       "tags": [
 22897        "extensions_v1beta1"
 22898       ],
 22899       "operationId": "createExtensionsV1beta1ThirdPartyResource",
 22900       "parameters": [
 22901        {
 22902         "name": "body",
 22903         "in": "body",
 22904         "required": true,
 22905         "schema": {
 22906          "$ref": "#/definitions/v1beta1.ThirdPartyResource"
 22907         }
 22908        }
 22909       ],
 22910       "responses": {
 22911        "200": {
 22912         "description": "OK",
 22913         "schema": {
 22914          "$ref": "#/definitions/v1beta1.ThirdPartyResource"
 22915         }
 22916        },
 22917        "401": {
 22918         "description": "Unauthorized"
 22919        }
 22920       }
 22921      },
 22922      "delete": {
 22923       "description": "delete collection of ThirdPartyResource",
 22924       "consumes": [
 22925        "*/*"
 22926       ],
 22927       "produces": [
 22928        "application/json",
 22929        "application/yaml",
 22930        "application/vnd.kubernetes.protobuf"
 22931       ],
 22932       "schemes": [
 22933        "https"
 22934       ],
 22935       "tags": [
 22936        "extensions_v1beta1"
 22937       ],
 22938       "operationId": "deleteExtensionsV1beta1CollectionThirdPartyResource",
 22939       "parameters": [
 22940        {
 22941         "uniqueItems": true,
 22942         "type": "string",
 22943         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 22944         "name": "fieldSelector",
 22945         "in": "query"
 22946        },
 22947        {
 22948         "uniqueItems": true,
 22949         "type": "string",
 22950         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 22951         "name": "labelSelector",
 22952         "in": "query"
 22953        },
 22954        {
 22955         "uniqueItems": true,
 22956         "type": "string",
 22957         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 22958         "name": "resourceVersion",
 22959         "in": "query"
 22960        },
 22961        {
 22962         "uniqueItems": true,
 22963         "type": "integer",
 22964         "description": "Timeout for the list/watch call.",
 22965         "name": "timeoutSeconds",
 22966         "in": "query"
 22967        },
 22968        {
 22969         "uniqueItems": true,
 22970         "type": "boolean",
 22971         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 22972         "name": "watch",
 22973         "in": "query"
 22974        }
 22975       ],
 22976       "responses": {
 22977        "200": {
 22978         "description": "OK",
 22979         "schema": {
 22980          "$ref": "#/definitions/unversioned.Status"
 22981         }
 22982        },
 22983        "401": {
 22984         "description": "Unauthorized"
 22985        }
 22986       }
 22987      },
 22988      "parameters": [
 22989       {
 22990        "uniqueItems": true,
 22991        "type": "string",
 22992        "description": "If 'true', then the output is pretty printed.",
 22993        "name": "pretty",
 22994        "in": "query"
 22995       }
 22996      ]
 22997     },
 22998     "/apis/extensions/v1beta1/thirdpartyresources/{name}": {
 22999      "get": {
 23000       "description": "read the specified ThirdPartyResource",
 23001       "consumes": [
 23002        "*/*"
 23003       ],
 23004       "produces": [
 23005        "application/json",
 23006        "application/yaml",
 23007        "application/vnd.kubernetes.protobuf"
 23008       ],
 23009       "schemes": [
 23010        "https"
 23011       ],
 23012       "tags": [
 23013        "extensions_v1beta1"
 23014       ],
 23015       "operationId": "readExtensionsV1beta1ThirdPartyResource",
 23016       "parameters": [
 23017        {
 23018         "uniqueItems": true,
 23019         "type": "boolean",
 23020         "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'",
 23021         "name": "exact",
 23022         "in": "query"
 23023        },
 23024        {
 23025         "uniqueItems": true,
 23026         "type": "boolean",
 23027         "description": "Should this value be exported.  Export strips fields that a user can not specify.",
 23028         "name": "export",
 23029         "in": "query"
 23030        }
 23031       ],
 23032       "responses": {
 23033        "200": {
 23034         "description": "OK",
 23035         "schema": {
 23036          "$ref": "#/definitions/v1beta1.ThirdPartyResource"
 23037         }
 23038        },
 23039        "401": {
 23040         "description": "Unauthorized"
 23041        }
 23042       }
 23043      },
 23044      "put": {
 23045       "description": "replace the specified ThirdPartyResource",
 23046       "consumes": [
 23047        "*/*"
 23048       ],
 23049       "produces": [
 23050        "application/json",
 23051        "application/yaml",
 23052        "application/vnd.kubernetes.protobuf"
 23053       ],
 23054       "schemes": [
 23055        "https"
 23056       ],
 23057       "tags": [
 23058        "extensions_v1beta1"
 23059       ],
 23060       "operationId": "replaceExtensionsV1beta1ThirdPartyResource",
 23061       "parameters": [
 23062        {
 23063         "name": "body",
 23064         "in": "body",
 23065         "required": true,
 23066         "schema": {
 23067          "$ref": "#/definitions/v1beta1.ThirdPartyResource"
 23068         }
 23069        }
 23070       ],
 23071       "responses": {
 23072        "200": {
 23073         "description": "OK",
 23074         "schema": {
 23075          "$ref": "#/definitions/v1beta1.ThirdPartyResource"
 23076         }
 23077        },
 23078        "401": {
 23079         "description": "Unauthorized"
 23080        }
 23081       }
 23082      },
 23083      "delete": {
 23084       "description": "delete a ThirdPartyResource",
 23085       "consumes": [
 23086        "*/*"
 23087       ],
 23088       "produces": [
 23089        "application/json",
 23090        "application/yaml",
 23091        "application/vnd.kubernetes.protobuf"
 23092       ],
 23093       "schemes": [
 23094        "https"
 23095       ],
 23096       "tags": [
 23097        "extensions_v1beta1"
 23098       ],
 23099       "operationId": "deleteExtensionsV1beta1ThirdPartyResource",
 23100       "parameters": [
 23101        {
 23102         "name": "body",
 23103         "in": "body",
 23104         "required": true,
 23105         "schema": {
 23106          "$ref": "#/definitions/v1.DeleteOptions"
 23107         }
 23108        }
 23109       ],
 23110       "responses": {
 23111        "200": {
 23112         "description": "OK",
 23113         "schema": {
 23114          "$ref": "#/definitions/unversioned.Status"
 23115         }
 23116        },
 23117        "401": {
 23118         "description": "Unauthorized"
 23119        }
 23120       }
 23121      },
 23122      "patch": {
 23123       "description": "partially update the specified ThirdPartyResource",
 23124       "consumes": [
 23125        "application/json-patch+json",
 23126        "application/merge-patch+json",
 23127        "application/strategic-merge-patch+json"
 23128       ],
 23129       "produces": [
 23130        "application/json",
 23131        "application/yaml",
 23132        "application/vnd.kubernetes.protobuf"
 23133       ],
 23134       "schemes": [
 23135        "https"
 23136       ],
 23137       "tags": [
 23138        "extensions_v1beta1"
 23139       ],
 23140       "operationId": "patchExtensionsV1beta1ThirdPartyResource",
 23141       "parameters": [
 23142        {
 23143         "name": "body",
 23144         "in": "body",
 23145         "required": true,
 23146         "schema": {
 23147          "$ref": "#/definitions/unversioned.Patch"
 23148         }
 23149        }
 23150       ],
 23151       "responses": {
 23152        "200": {
 23153         "description": "OK",
 23154         "schema": {
 23155          "$ref": "#/definitions/v1beta1.ThirdPartyResource"
 23156         }
 23157        },
 23158        "401": {
 23159         "description": "Unauthorized"
 23160        }
 23161       }
 23162      },
 23163      "parameters": [
 23164       {
 23165        "uniqueItems": true,
 23166        "type": "string",
 23167        "description": "name of the ThirdPartyResource",
 23168        "name": "name",
 23169        "in": "path",
 23170        "required": true
 23171       },
 23172       {
 23173        "uniqueItems": true,
 23174        "type": "string",
 23175        "description": "If 'true', then the output is pretty printed.",
 23176        "name": "pretty",
 23177        "in": "query"
 23178       }
 23179      ]
 23180     },
 23181     "/apis/extensions/v1beta1/watch/daemonsets": {
 23182      "get": {
 23183       "description": "watch individual changes to a list of DaemonSet",
 23184       "consumes": [
 23185        "*/*"
 23186       ],
 23187       "produces": [
 23188        "application/json",
 23189        "application/yaml",
 23190        "application/vnd.kubernetes.protobuf",
 23191        "application/json;stream=watch",
 23192        "application/vnd.kubernetes.protobuf;stream=watch"
 23193       ],
 23194       "schemes": [
 23195        "https"
 23196       ],
 23197       "tags": [
 23198        "extensions_v1beta1"
 23199       ],
 23200       "operationId": "watchExtensionsV1beta1DaemonSetListForAllNamespaces",
 23201       "responses": {
 23202        "200": {
 23203         "description": "OK",
 23204         "schema": {
 23205          "$ref": "#/definitions/versioned.Event"
 23206         }
 23207        },
 23208        "401": {
 23209         "description": "Unauthorized"
 23210        }
 23211       }
 23212      },
 23213      "parameters": [
 23214       {
 23215        "uniqueItems": true,
 23216        "type": "string",
 23217        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 23218        "name": "fieldSelector",
 23219        "in": "query"
 23220       },
 23221       {
 23222        "uniqueItems": true,
 23223        "type": "string",
 23224        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 23225        "name": "labelSelector",
 23226        "in": "query"
 23227       },
 23228       {
 23229        "uniqueItems": true,
 23230        "type": "string",
 23231        "description": "If 'true', then the output is pretty printed.",
 23232        "name": "pretty",
 23233        "in": "query"
 23234       },
 23235       {
 23236        "uniqueItems": true,
 23237        "type": "string",
 23238        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 23239        "name": "resourceVersion",
 23240        "in": "query"
 23241       },
 23242       {
 23243        "uniqueItems": true,
 23244        "type": "integer",
 23245        "description": "Timeout for the list/watch call.",
 23246        "name": "timeoutSeconds",
 23247        "in": "query"
 23248       },
 23249       {
 23250        "uniqueItems": true,
 23251        "type": "boolean",
 23252        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 23253        "name": "watch",
 23254        "in": "query"
 23255       }
 23256      ]
 23257     },
 23258     "/apis/extensions/v1beta1/watch/deployments": {
 23259      "get": {
 23260       "description": "watch individual changes to a list of Deployment",
 23261       "consumes": [
 23262        "*/*"
 23263       ],
 23264       "produces": [
 23265        "application/json",
 23266        "application/yaml",
 23267        "application/vnd.kubernetes.protobuf",
 23268        "application/json;stream=watch",
 23269        "application/vnd.kubernetes.protobuf;stream=watch"
 23270       ],
 23271       "schemes": [
 23272        "https"
 23273       ],
 23274       "tags": [
 23275        "extensions_v1beta1"
 23276       ],
 23277       "operationId": "watchExtensionsV1beta1DeploymentListForAllNamespaces",
 23278       "responses": {
 23279        "200": {
 23280         "description": "OK",
 23281         "schema": {
 23282          "$ref": "#/definitions/versioned.Event"
 23283         }
 23284        },
 23285        "401": {
 23286         "description": "Unauthorized"
 23287        }
 23288       }
 23289      },
 23290      "parameters": [
 23291       {
 23292        "uniqueItems": true,
 23293        "type": "string",
 23294        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 23295        "name": "fieldSelector",
 23296        "in": "query"
 23297       },
 23298       {
 23299        "uniqueItems": true,
 23300        "type": "string",
 23301        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 23302        "name": "labelSelector",
 23303        "in": "query"
 23304       },
 23305       {
 23306        "uniqueItems": true,
 23307        "type": "string",
 23308        "description": "If 'true', then the output is pretty printed.",
 23309        "name": "pretty",
 23310        "in": "query"
 23311       },
 23312       {
 23313        "uniqueItems": true,
 23314        "type": "string",
 23315        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 23316        "name": "resourceVersion",
 23317        "in": "query"
 23318       },
 23319       {
 23320        "uniqueItems": true,
 23321        "type": "integer",
 23322        "description": "Timeout for the list/watch call.",
 23323        "name": "timeoutSeconds",
 23324        "in": "query"
 23325       },
 23326       {
 23327        "uniqueItems": true,
 23328        "type": "boolean",
 23329        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 23330        "name": "watch",
 23331        "in": "query"
 23332       }
 23333      ]
 23334     },
 23335     "/apis/extensions/v1beta1/watch/horizontalpodautoscalers": {
 23336      "get": {
 23337       "description": "watch individual changes to a list of HorizontalPodAutoscaler",
 23338       "consumes": [
 23339        "*/*"
 23340       ],
 23341       "produces": [
 23342        "application/json",
 23343        "application/yaml",
 23344        "application/vnd.kubernetes.protobuf",
 23345        "application/json;stream=watch",
 23346        "application/vnd.kubernetes.protobuf;stream=watch"
 23347       ],
 23348       "schemes": [
 23349        "https"
 23350       ],
 23351       "tags": [
 23352        "extensions_v1beta1"
 23353       ],
 23354       "operationId": "watchExtensionsV1beta1HorizontalPodAutoscalerListForAllNamespaces",
 23355       "responses": {
 23356        "200": {
 23357         "description": "OK",
 23358         "schema": {
 23359          "$ref": "#/definitions/versioned.Event"
 23360         }
 23361        },
 23362        "401": {
 23363         "description": "Unauthorized"
 23364        }
 23365       }
 23366      },
 23367      "parameters": [
 23368       {
 23369        "uniqueItems": true,
 23370        "type": "string",
 23371        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 23372        "name": "fieldSelector",
 23373        "in": "query"
 23374       },
 23375       {
 23376        "uniqueItems": true,
 23377        "type": "string",
 23378        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 23379        "name": "labelSelector",
 23380        "in": "query"
 23381       },
 23382       {
 23383        "uniqueItems": true,
 23384        "type": "string",
 23385        "description": "If 'true', then the output is pretty printed.",
 23386        "name": "pretty",
 23387        "in": "query"
 23388       },
 23389       {
 23390        "uniqueItems": true,
 23391        "type": "string",
 23392        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 23393        "name": "resourceVersion",
 23394        "in": "query"
 23395       },
 23396       {
 23397        "uniqueItems": true,
 23398        "type": "integer",
 23399        "description": "Timeout for the list/watch call.",
 23400        "name": "timeoutSeconds",
 23401        "in": "query"
 23402       },
 23403       {
 23404        "uniqueItems": true,
 23405        "type": "boolean",
 23406        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 23407        "name": "watch",
 23408        "in": "query"
 23409       }
 23410      ]
 23411     },
 23412     "/apis/extensions/v1beta1/watch/ingresses": {
 23413      "get": {
 23414       "description": "watch individual changes to a list of Ingress",
 23415       "consumes": [
 23416        "*/*"
 23417       ],
 23418       "produces": [
 23419        "application/json",
 23420        "application/yaml",
 23421        "application/vnd.kubernetes.protobuf",
 23422        "application/json;stream=watch",
 23423        "application/vnd.kubernetes.protobuf;stream=watch"
 23424       ],
 23425       "schemes": [
 23426        "https"
 23427       ],
 23428       "tags": [
 23429        "extensions_v1beta1"
 23430       ],
 23431       "operationId": "watchExtensionsV1beta1IngressListForAllNamespaces",
 23432       "responses": {
 23433        "200": {
 23434         "description": "OK",
 23435         "schema": {
 23436          "$ref": "#/definitions/versioned.Event"
 23437         }
 23438        },
 23439        "401": {
 23440         "description": "Unauthorized"
 23441        }
 23442       }
 23443      },
 23444      "parameters": [
 23445       {
 23446        "uniqueItems": true,
 23447        "type": "string",
 23448        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 23449        "name": "fieldSelector",
 23450        "in": "query"
 23451       },
 23452       {
 23453        "uniqueItems": true,
 23454        "type": "string",
 23455        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 23456        "name": "labelSelector",
 23457        "in": "query"
 23458       },
 23459       {
 23460        "uniqueItems": true,
 23461        "type": "string",
 23462        "description": "If 'true', then the output is pretty printed.",
 23463        "name": "pretty",
 23464        "in": "query"
 23465       },
 23466       {
 23467        "uniqueItems": true,
 23468        "type": "string",
 23469        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 23470        "name": "resourceVersion",
 23471        "in": "query"
 23472       },
 23473       {
 23474        "uniqueItems": true,
 23475        "type": "integer",
 23476        "description": "Timeout for the list/watch call.",
 23477        "name": "timeoutSeconds",
 23478        "in": "query"
 23479       },
 23480       {
 23481        "uniqueItems": true,
 23482        "type": "boolean",
 23483        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 23484        "name": "watch",
 23485        "in": "query"
 23486       }
 23487      ]
 23488     },
 23489     "/apis/extensions/v1beta1/watch/jobs": {
 23490      "get": {
 23491       "description": "watch individual changes to a list of Job",
 23492       "consumes": [
 23493        "*/*"
 23494       ],
 23495       "produces": [
 23496        "application/json",
 23497        "application/yaml",
 23498        "application/vnd.kubernetes.protobuf",
 23499        "application/json;stream=watch",
 23500        "application/vnd.kubernetes.protobuf;stream=watch"
 23501       ],
 23502       "schemes": [
 23503        "https"
 23504       ],
 23505       "tags": [
 23506        "extensions_v1beta1"
 23507       ],
 23508       "operationId": "watchExtensionsV1beta1JobListForAllNamespaces",
 23509       "responses": {
 23510        "200": {
 23511         "description": "OK",
 23512         "schema": {
 23513          "$ref": "#/definitions/versioned.Event"
 23514         }
 23515        },
 23516        "401": {
 23517         "description": "Unauthorized"
 23518        }
 23519       }
 23520      },
 23521      "parameters": [
 23522       {
 23523        "uniqueItems": true,
 23524        "type": "string",
 23525        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 23526        "name": "fieldSelector",
 23527        "in": "query"
 23528       },
 23529       {
 23530        "uniqueItems": true,
 23531        "type": "string",
 23532        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 23533        "name": "labelSelector",
 23534        "in": "query"
 23535       },
 23536       {
 23537        "uniqueItems": true,
 23538        "type": "string",
 23539        "description": "If 'true', then the output is pretty printed.",
 23540        "name": "pretty",
 23541        "in": "query"
 23542       },
 23543       {
 23544        "uniqueItems": true,
 23545        "type": "string",
 23546        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 23547        "name": "resourceVersion",
 23548        "in": "query"
 23549       },
 23550       {
 23551        "uniqueItems": true,
 23552        "type": "integer",
 23553        "description": "Timeout for the list/watch call.",
 23554        "name": "timeoutSeconds",
 23555        "in": "query"
 23556       },
 23557       {
 23558        "uniqueItems": true,
 23559        "type": "boolean",
 23560        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 23561        "name": "watch",
 23562        "in": "query"
 23563       }
 23564      ]
 23565     },
 23566     "/apis/extensions/v1beta1/watch/namespaces/{namespace}/daemonsets": {
 23567      "get": {
 23568       "description": "watch individual changes to a list of DaemonSet",
 23569       "consumes": [
 23570        "*/*"
 23571       ],
 23572       "produces": [
 23573        "application/json",
 23574        "application/yaml",
 23575        "application/vnd.kubernetes.protobuf",
 23576        "application/json;stream=watch",
 23577        "application/vnd.kubernetes.protobuf;stream=watch"
 23578       ],
 23579       "schemes": [
 23580        "https"
 23581       ],
 23582       "tags": [
 23583        "extensions_v1beta1"
 23584       ],
 23585       "operationId": "watchExtensionsV1beta1NamespacedDaemonSetList",
 23586       "responses": {
 23587        "200": {
 23588         "description": "OK",
 23589         "schema": {
 23590          "$ref": "#/definitions/versioned.Event"
 23591         }
 23592        },
 23593        "401": {
 23594         "description": "Unauthorized"
 23595        }
 23596       }
 23597      },
 23598      "parameters": [
 23599       {
 23600        "uniqueItems": true,
 23601        "type": "string",
 23602        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 23603        "name": "fieldSelector",
 23604        "in": "query"
 23605       },
 23606       {
 23607        "uniqueItems": true,
 23608        "type": "string",
 23609        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 23610        "name": "labelSelector",
 23611        "in": "query"
 23612       },
 23613       {
 23614        "uniqueItems": true,
 23615        "type": "string",
 23616        "description": "object name and auth scope, such as for teams and projects",
 23617        "name": "namespace",
 23618        "in": "path",
 23619        "required": true
 23620       },
 23621       {
 23622        "uniqueItems": true,
 23623        "type": "string",
 23624        "description": "If 'true', then the output is pretty printed.",
 23625        "name": "pretty",
 23626        "in": "query"
 23627       },
 23628       {
 23629        "uniqueItems": true,
 23630        "type": "string",
 23631        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 23632        "name": "resourceVersion",
 23633        "in": "query"
 23634       },
 23635       {
 23636        "uniqueItems": true,
 23637        "type": "integer",
 23638        "description": "Timeout for the list/watch call.",
 23639        "name": "timeoutSeconds",
 23640        "in": "query"
 23641       },
 23642       {
 23643        "uniqueItems": true,
 23644        "type": "boolean",
 23645        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 23646        "name": "watch",
 23647        "in": "query"
 23648       }
 23649      ]
 23650     },
 23651     "/apis/extensions/v1beta1/watch/namespaces/{namespace}/daemonsets/{name}": {
 23652      "get": {
 23653       "description": "watch changes to an object of kind DaemonSet",
 23654       "consumes": [
 23655        "*/*"
 23656       ],
 23657       "produces": [
 23658        "application/json",
 23659        "application/yaml",
 23660        "application/vnd.kubernetes.protobuf",
 23661        "application/json;stream=watch",
 23662        "application/vnd.kubernetes.protobuf;stream=watch"
 23663       ],
 23664       "schemes": [
 23665        "https"
 23666       ],
 23667       "tags": [
 23668        "extensions_v1beta1"
 23669       ],
 23670       "operationId": "watchExtensionsV1beta1NamespacedDaemonSet",
 23671       "responses": {
 23672        "200": {
 23673         "description": "OK",
 23674         "schema": {
 23675          "$ref": "#/definitions/versioned.Event"
 23676         }
 23677        },
 23678        "401": {
 23679         "description": "Unauthorized"
 23680        }
 23681       }
 23682      },
 23683      "parameters": [
 23684       {
 23685        "uniqueItems": true,
 23686        "type": "string",
 23687        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 23688        "name": "fieldSelector",
 23689        "in": "query"
 23690       },
 23691       {
 23692        "uniqueItems": true,
 23693        "type": "string",
 23694        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 23695        "name": "labelSelector",
 23696        "in": "query"
 23697       },
 23698       {
 23699        "uniqueItems": true,
 23700        "type": "string",
 23701        "description": "name of the DaemonSet",
 23702        "name": "name",
 23703        "in": "path",
 23704        "required": true
 23705       },
 23706       {
 23707        "uniqueItems": true,
 23708        "type": "string",
 23709        "description": "object name and auth scope, such as for teams and projects",
 23710        "name": "namespace",
 23711        "in": "path",
 23712        "required": true
 23713       },
 23714       {
 23715        "uniqueItems": true,
 23716        "type": "string",
 23717        "description": "If 'true', then the output is pretty printed.",
 23718        "name": "pretty",
 23719        "in": "query"
 23720       },
 23721       {
 23722        "uniqueItems": true,
 23723        "type": "string",
 23724        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 23725        "name": "resourceVersion",
 23726        "in": "query"
 23727       },
 23728       {
 23729        "uniqueItems": true,
 23730        "type": "integer",
 23731        "description": "Timeout for the list/watch call.",
 23732        "name": "timeoutSeconds",
 23733        "in": "query"
 23734       },
 23735       {
 23736        "uniqueItems": true,
 23737        "type": "boolean",
 23738        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 23739        "name": "watch",
 23740        "in": "query"
 23741       }
 23742      ]
 23743     },
 23744     "/apis/extensions/v1beta1/watch/namespaces/{namespace}/deployments": {
 23745      "get": {
 23746       "description": "watch individual changes to a list of Deployment",
 23747       "consumes": [
 23748        "*/*"
 23749       ],
 23750       "produces": [
 23751        "application/json",
 23752        "application/yaml",
 23753        "application/vnd.kubernetes.protobuf",
 23754        "application/json;stream=watch",
 23755        "application/vnd.kubernetes.protobuf;stream=watch"
 23756       ],
 23757       "schemes": [
 23758        "https"
 23759       ],
 23760       "tags": [
 23761        "extensions_v1beta1"
 23762       ],
 23763       "operationId": "watchExtensionsV1beta1NamespacedDeploymentList",
 23764       "responses": {
 23765        "200": {
 23766         "description": "OK",
 23767         "schema": {
 23768          "$ref": "#/definitions/versioned.Event"
 23769         }
 23770        },
 23771        "401": {
 23772         "description": "Unauthorized"
 23773        }
 23774       }
 23775      },
 23776      "parameters": [
 23777       {
 23778        "uniqueItems": true,
 23779        "type": "string",
 23780        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 23781        "name": "fieldSelector",
 23782        "in": "query"
 23783       },
 23784       {
 23785        "uniqueItems": true,
 23786        "type": "string",
 23787        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 23788        "name": "labelSelector",
 23789        "in": "query"
 23790       },
 23791       {
 23792        "uniqueItems": true,
 23793        "type": "string",
 23794        "description": "object name and auth scope, such as for teams and projects",
 23795        "name": "namespace",
 23796        "in": "path",
 23797        "required": true
 23798       },
 23799       {
 23800        "uniqueItems": true,
 23801        "type": "string",
 23802        "description": "If 'true', then the output is pretty printed.",
 23803        "name": "pretty",
 23804        "in": "query"
 23805       },
 23806       {
 23807        "uniqueItems": true,
 23808        "type": "string",
 23809        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 23810        "name": "resourceVersion",
 23811        "in": "query"
 23812       },
 23813       {
 23814        "uniqueItems": true,
 23815        "type": "integer",
 23816        "description": "Timeout for the list/watch call.",
 23817        "name": "timeoutSeconds",
 23818        "in": "query"
 23819       },
 23820       {
 23821        "uniqueItems": true,
 23822        "type": "boolean",
 23823        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 23824        "name": "watch",
 23825        "in": "query"
 23826       }
 23827      ]
 23828     },
 23829     "/apis/extensions/v1beta1/watch/namespaces/{namespace}/deployments/{name}": {
 23830      "get": {
 23831       "description": "watch changes to an object of kind Deployment",
 23832       "consumes": [
 23833        "*/*"
 23834       ],
 23835       "produces": [
 23836        "application/json",
 23837        "application/yaml",
 23838        "application/vnd.kubernetes.protobuf",
 23839        "application/json;stream=watch",
 23840        "application/vnd.kubernetes.protobuf;stream=watch"
 23841       ],
 23842       "schemes": [
 23843        "https"
 23844       ],
 23845       "tags": [
 23846        "extensions_v1beta1"
 23847       ],
 23848       "operationId": "watchExtensionsV1beta1NamespacedDeployment",
 23849       "responses": {
 23850        "200": {
 23851         "description": "OK",
 23852         "schema": {
 23853          "$ref": "#/definitions/versioned.Event"
 23854         }
 23855        },
 23856        "401": {
 23857         "description": "Unauthorized"
 23858        }
 23859       }
 23860      },
 23861      "parameters": [
 23862       {
 23863        "uniqueItems": true,
 23864        "type": "string",
 23865        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 23866        "name": "fieldSelector",
 23867        "in": "query"
 23868       },
 23869       {
 23870        "uniqueItems": true,
 23871        "type": "string",
 23872        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 23873        "name": "labelSelector",
 23874        "in": "query"
 23875       },
 23876       {
 23877        "uniqueItems": true,
 23878        "type": "string",
 23879        "description": "name of the Deployment",
 23880        "name": "name",
 23881        "in": "path",
 23882        "required": true
 23883       },
 23884       {
 23885        "uniqueItems": true,
 23886        "type": "string",
 23887        "description": "object name and auth scope, such as for teams and projects",
 23888        "name": "namespace",
 23889        "in": "path",
 23890        "required": true
 23891       },
 23892       {
 23893        "uniqueItems": true,
 23894        "type": "string",
 23895        "description": "If 'true', then the output is pretty printed.",
 23896        "name": "pretty",
 23897        "in": "query"
 23898       },
 23899       {
 23900        "uniqueItems": true,
 23901        "type": "string",
 23902        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 23903        "name": "resourceVersion",
 23904        "in": "query"
 23905       },
 23906       {
 23907        "uniqueItems": true,
 23908        "type": "integer",
 23909        "description": "Timeout for the list/watch call.",
 23910        "name": "timeoutSeconds",
 23911        "in": "query"
 23912       },
 23913       {
 23914        "uniqueItems": true,
 23915        "type": "boolean",
 23916        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 23917        "name": "watch",
 23918        "in": "query"
 23919       }
 23920      ]
 23921     },
 23922     "/apis/extensions/v1beta1/watch/namespaces/{namespace}/horizontalpodautoscalers": {
 23923      "get": {
 23924       "description": "watch individual changes to a list of HorizontalPodAutoscaler",
 23925       "consumes": [
 23926        "*/*"
 23927       ],
 23928       "produces": [
 23929        "application/json",
 23930        "application/yaml",
 23931        "application/vnd.kubernetes.protobuf",
 23932        "application/json;stream=watch",
 23933        "application/vnd.kubernetes.protobuf;stream=watch"
 23934       ],
 23935       "schemes": [
 23936        "https"
 23937       ],
 23938       "tags": [
 23939        "extensions_v1beta1"
 23940       ],
 23941       "operationId": "watchExtensionsV1beta1NamespacedHorizontalPodAutoscalerList",
 23942       "responses": {
 23943        "200": {
 23944         "description": "OK",
 23945         "schema": {
 23946          "$ref": "#/definitions/versioned.Event"
 23947         }
 23948        },
 23949        "401": {
 23950         "description": "Unauthorized"
 23951        }
 23952       }
 23953      },
 23954      "parameters": [
 23955       {
 23956        "uniqueItems": true,
 23957        "type": "string",
 23958        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 23959        "name": "fieldSelector",
 23960        "in": "query"
 23961       },
 23962       {
 23963        "uniqueItems": true,
 23964        "type": "string",
 23965        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 23966        "name": "labelSelector",
 23967        "in": "query"
 23968       },
 23969       {
 23970        "uniqueItems": true,
 23971        "type": "string",
 23972        "description": "object name and auth scope, such as for teams and projects",
 23973        "name": "namespace",
 23974        "in": "path",
 23975        "required": true
 23976       },
 23977       {
 23978        "uniqueItems": true,
 23979        "type": "string",
 23980        "description": "If 'true', then the output is pretty printed.",
 23981        "name": "pretty",
 23982        "in": "query"
 23983       },
 23984       {
 23985        "uniqueItems": true,
 23986        "type": "string",
 23987        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 23988        "name": "resourceVersion",
 23989        "in": "query"
 23990       },
 23991       {
 23992        "uniqueItems": true,
 23993        "type": "integer",
 23994        "description": "Timeout for the list/watch call.",
 23995        "name": "timeoutSeconds",
 23996        "in": "query"
 23997       },
 23998       {
 23999        "uniqueItems": true,
 24000        "type": "boolean",
 24001        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 24002        "name": "watch",
 24003        "in": "query"
 24004       }
 24005      ]
 24006     },
 24007     "/apis/extensions/v1beta1/watch/namespaces/{namespace}/horizontalpodautoscalers/{name}": {
 24008      "get": {
 24009       "description": "watch changes to an object of kind HorizontalPodAutoscaler",
 24010       "consumes": [
 24011        "*/*"
 24012       ],
 24013       "produces": [
 24014        "application/json",
 24015        "application/yaml",
 24016        "application/vnd.kubernetes.protobuf",
 24017        "application/json;stream=watch",
 24018        "application/vnd.kubernetes.protobuf;stream=watch"
 24019       ],
 24020       "schemes": [
 24021        "https"
 24022       ],
 24023       "tags": [
 24024        "extensions_v1beta1"
 24025       ],
 24026       "operationId": "watchExtensionsV1beta1NamespacedHorizontalPodAutoscaler",
 24027       "responses": {
 24028        "200": {
 24029         "description": "OK",
 24030         "schema": {
 24031          "$ref": "#/definitions/versioned.Event"
 24032         }
 24033        },
 24034        "401": {
 24035         "description": "Unauthorized"
 24036        }
 24037       }
 24038      },
 24039      "parameters": [
 24040       {
 24041        "uniqueItems": true,
 24042        "type": "string",
 24043        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 24044        "name": "fieldSelector",
 24045        "in": "query"
 24046       },
 24047       {
 24048        "uniqueItems": true,
 24049        "type": "string",
 24050        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 24051        "name": "labelSelector",
 24052        "in": "query"
 24053       },
 24054       {
 24055        "uniqueItems": true,
 24056        "type": "string",
 24057        "description": "name of the HorizontalPodAutoscaler",
 24058        "name": "name",
 24059        "in": "path",
 24060        "required": true
 24061       },
 24062       {
 24063        "uniqueItems": true,
 24064        "type": "string",
 24065        "description": "object name and auth scope, such as for teams and projects",
 24066        "name": "namespace",
 24067        "in": "path",
 24068        "required": true
 24069       },
 24070       {
 24071        "uniqueItems": true,
 24072        "type": "string",
 24073        "description": "If 'true', then the output is pretty printed.",
 24074        "name": "pretty",
 24075        "in": "query"
 24076       },
 24077       {
 24078        "uniqueItems": true,
 24079        "type": "string",
 24080        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 24081        "name": "resourceVersion",
 24082        "in": "query"
 24083       },
 24084       {
 24085        "uniqueItems": true,
 24086        "type": "integer",
 24087        "description": "Timeout for the list/watch call.",
 24088        "name": "timeoutSeconds",
 24089        "in": "query"
 24090       },
 24091       {
 24092        "uniqueItems": true,
 24093        "type": "boolean",
 24094        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 24095        "name": "watch",
 24096        "in": "query"
 24097       }
 24098      ]
 24099     },
 24100     "/apis/extensions/v1beta1/watch/namespaces/{namespace}/ingresses": {
 24101      "get": {
 24102       "description": "watch individual changes to a list of Ingress",
 24103       "consumes": [
 24104        "*/*"
 24105       ],
 24106       "produces": [
 24107        "application/json",
 24108        "application/yaml",
 24109        "application/vnd.kubernetes.protobuf",
 24110        "application/json;stream=watch",
 24111        "application/vnd.kubernetes.protobuf;stream=watch"
 24112       ],
 24113       "schemes": [
 24114        "https"
 24115       ],
 24116       "tags": [
 24117        "extensions_v1beta1"
 24118       ],
 24119       "operationId": "watchExtensionsV1beta1NamespacedIngressList",
 24120       "responses": {
 24121        "200": {
 24122         "description": "OK",
 24123         "schema": {
 24124          "$ref": "#/definitions/versioned.Event"
 24125         }
 24126        },
 24127        "401": {
 24128         "description": "Unauthorized"
 24129        }
 24130       }
 24131      },
 24132      "parameters": [
 24133       {
 24134        "uniqueItems": true,
 24135        "type": "string",
 24136        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 24137        "name": "fieldSelector",
 24138        "in": "query"
 24139       },
 24140       {
 24141        "uniqueItems": true,
 24142        "type": "string",
 24143        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 24144        "name": "labelSelector",
 24145        "in": "query"
 24146       },
 24147       {
 24148        "uniqueItems": true,
 24149        "type": "string",
 24150        "description": "object name and auth scope, such as for teams and projects",
 24151        "name": "namespace",
 24152        "in": "path",
 24153        "required": true
 24154       },
 24155       {
 24156        "uniqueItems": true,
 24157        "type": "string",
 24158        "description": "If 'true', then the output is pretty printed.",
 24159        "name": "pretty",
 24160        "in": "query"
 24161       },
 24162       {
 24163        "uniqueItems": true,
 24164        "type": "string",
 24165        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 24166        "name": "resourceVersion",
 24167        "in": "query"
 24168       },
 24169       {
 24170        "uniqueItems": true,
 24171        "type": "integer",
 24172        "description": "Timeout for the list/watch call.",
 24173        "name": "timeoutSeconds",
 24174        "in": "query"
 24175       },
 24176       {
 24177        "uniqueItems": true,
 24178        "type": "boolean",
 24179        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 24180        "name": "watch",
 24181        "in": "query"
 24182       }
 24183      ]
 24184     },
 24185     "/apis/extensions/v1beta1/watch/namespaces/{namespace}/ingresses/{name}": {
 24186      "get": {
 24187       "description": "watch changes to an object of kind Ingress",
 24188       "consumes": [
 24189        "*/*"
 24190       ],
 24191       "produces": [
 24192        "application/json",
 24193        "application/yaml",
 24194        "application/vnd.kubernetes.protobuf",
 24195        "application/json;stream=watch",
 24196        "application/vnd.kubernetes.protobuf;stream=watch"
 24197       ],
 24198       "schemes": [
 24199        "https"
 24200       ],
 24201       "tags": [
 24202        "extensions_v1beta1"
 24203       ],
 24204       "operationId": "watchExtensionsV1beta1NamespacedIngress",
 24205       "responses": {
 24206        "200": {
 24207         "description": "OK",
 24208         "schema": {
 24209          "$ref": "#/definitions/versioned.Event"
 24210         }
 24211        },
 24212        "401": {
 24213         "description": "Unauthorized"
 24214        }
 24215       }
 24216      },
 24217      "parameters": [
 24218       {
 24219        "uniqueItems": true,
 24220        "type": "string",
 24221        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 24222        "name": "fieldSelector",
 24223        "in": "query"
 24224       },
 24225       {
 24226        "uniqueItems": true,
 24227        "type": "string",
 24228        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 24229        "name": "labelSelector",
 24230        "in": "query"
 24231       },
 24232       {
 24233        "uniqueItems": true,
 24234        "type": "string",
 24235        "description": "name of the Ingress",
 24236        "name": "name",
 24237        "in": "path",
 24238        "required": true
 24239       },
 24240       {
 24241        "uniqueItems": true,
 24242        "type": "string",
 24243        "description": "object name and auth scope, such as for teams and projects",
 24244        "name": "namespace",
 24245        "in": "path",
 24246        "required": true
 24247       },
 24248       {
 24249        "uniqueItems": true,
 24250        "type": "string",
 24251        "description": "If 'true', then the output is pretty printed.",
 24252        "name": "pretty",
 24253        "in": "query"
 24254       },
 24255       {
 24256        "uniqueItems": true,
 24257        "type": "string",
 24258        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 24259        "name": "resourceVersion",
 24260        "in": "query"
 24261       },
 24262       {
 24263        "uniqueItems": true,
 24264        "type": "integer",
 24265        "description": "Timeout for the list/watch call.",
 24266        "name": "timeoutSeconds",
 24267        "in": "query"
 24268       },
 24269       {
 24270        "uniqueItems": true,
 24271        "type": "boolean",
 24272        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 24273        "name": "watch",
 24274        "in": "query"
 24275       }
 24276      ]
 24277     },
 24278     "/apis/extensions/v1beta1/watch/namespaces/{namespace}/jobs": {
 24279      "get": {
 24280       "description": "watch individual changes to a list of Job",
 24281       "consumes": [
 24282        "*/*"
 24283       ],
 24284       "produces": [
 24285        "application/json",
 24286        "application/yaml",
 24287        "application/vnd.kubernetes.protobuf",
 24288        "application/json;stream=watch",
 24289        "application/vnd.kubernetes.protobuf;stream=watch"
 24290       ],
 24291       "schemes": [
 24292        "https"
 24293       ],
 24294       "tags": [
 24295        "extensions_v1beta1"
 24296       ],
 24297       "operationId": "watchExtensionsV1beta1NamespacedJobList",
 24298       "responses": {
 24299        "200": {
 24300         "description": "OK",
 24301         "schema": {
 24302          "$ref": "#/definitions/versioned.Event"
 24303         }
 24304        },
 24305        "401": {
 24306         "description": "Unauthorized"
 24307        }
 24308       }
 24309      },
 24310      "parameters": [
 24311       {
 24312        "uniqueItems": true,
 24313        "type": "string",
 24314        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 24315        "name": "fieldSelector",
 24316        "in": "query"
 24317       },
 24318       {
 24319        "uniqueItems": true,
 24320        "type": "string",
 24321        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 24322        "name": "labelSelector",
 24323        "in": "query"
 24324       },
 24325       {
 24326        "uniqueItems": true,
 24327        "type": "string",
 24328        "description": "object name and auth scope, such as for teams and projects",
 24329        "name": "namespace",
 24330        "in": "path",
 24331        "required": true
 24332       },
 24333       {
 24334        "uniqueItems": true,
 24335        "type": "string",
 24336        "description": "If 'true', then the output is pretty printed.",
 24337        "name": "pretty",
 24338        "in": "query"
 24339       },
 24340       {
 24341        "uniqueItems": true,
 24342        "type": "string",
 24343        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 24344        "name": "resourceVersion",
 24345        "in": "query"
 24346       },
 24347       {
 24348        "uniqueItems": true,
 24349        "type": "integer",
 24350        "description": "Timeout for the list/watch call.",
 24351        "name": "timeoutSeconds",
 24352        "in": "query"
 24353       },
 24354       {
 24355        "uniqueItems": true,
 24356        "type": "boolean",
 24357        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 24358        "name": "watch",
 24359        "in": "query"
 24360       }
 24361      ]
 24362     },
 24363     "/apis/extensions/v1beta1/watch/namespaces/{namespace}/jobs/{name}": {
 24364      "get": {
 24365       "description": "watch changes to an object of kind Job",
 24366       "consumes": [
 24367        "*/*"
 24368       ],
 24369       "produces": [
 24370        "application/json",
 24371        "application/yaml",
 24372        "application/vnd.kubernetes.protobuf",
 24373        "application/json;stream=watch",
 24374        "application/vnd.kubernetes.protobuf;stream=watch"
 24375       ],
 24376       "schemes": [
 24377        "https"
 24378       ],
 24379       "tags": [
 24380        "extensions_v1beta1"
 24381       ],
 24382       "operationId": "watchExtensionsV1beta1NamespacedJob",
 24383       "responses": {
 24384        "200": {
 24385         "description": "OK",
 24386         "schema": {
 24387          "$ref": "#/definitions/versioned.Event"
 24388         }
 24389        },
 24390        "401": {
 24391         "description": "Unauthorized"
 24392        }
 24393       }
 24394      },
 24395      "parameters": [
 24396       {
 24397        "uniqueItems": true,
 24398        "type": "string",
 24399        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 24400        "name": "fieldSelector",
 24401        "in": "query"
 24402       },
 24403       {
 24404        "uniqueItems": true,
 24405        "type": "string",
 24406        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 24407        "name": "labelSelector",
 24408        "in": "query"
 24409       },
 24410       {
 24411        "uniqueItems": true,
 24412        "type": "string",
 24413        "description": "name of the Job",
 24414        "name": "name",
 24415        "in": "path",
 24416        "required": true
 24417       },
 24418       {
 24419        "uniqueItems": true,
 24420        "type": "string",
 24421        "description": "object name and auth scope, such as for teams and projects",
 24422        "name": "namespace",
 24423        "in": "path",
 24424        "required": true
 24425       },
 24426       {
 24427        "uniqueItems": true,
 24428        "type": "string",
 24429        "description": "If 'true', then the output is pretty printed.",
 24430        "name": "pretty",
 24431        "in": "query"
 24432       },
 24433       {
 24434        "uniqueItems": true,
 24435        "type": "string",
 24436        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 24437        "name": "resourceVersion",
 24438        "in": "query"
 24439       },
 24440       {
 24441        "uniqueItems": true,
 24442        "type": "integer",
 24443        "description": "Timeout for the list/watch call.",
 24444        "name": "timeoutSeconds",
 24445        "in": "query"
 24446       },
 24447       {
 24448        "uniqueItems": true,
 24449        "type": "boolean",
 24450        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 24451        "name": "watch",
 24452        "in": "query"
 24453       }
 24454      ]
 24455     },
 24456     "/apis/extensions/v1beta1/watch/namespaces/{namespace}/networkpolicies": {
 24457      "get": {
 24458       "description": "watch individual changes to a list of NetworkPolicy",
 24459       "consumes": [
 24460        "*/*"
 24461       ],
 24462       "produces": [
 24463        "application/json",
 24464        "application/yaml",
 24465        "application/vnd.kubernetes.protobuf",
 24466        "application/json;stream=watch",
 24467        "application/vnd.kubernetes.protobuf;stream=watch"
 24468       ],
 24469       "schemes": [
 24470        "https"
 24471       ],
 24472       "tags": [
 24473        "extensions_v1beta1"
 24474       ],
 24475       "operationId": "watchExtensionsV1beta1NamespacedNetworkPolicyList",
 24476       "responses": {
 24477        "200": {
 24478         "description": "OK",
 24479         "schema": {
 24480          "$ref": "#/definitions/versioned.Event"
 24481         }
 24482        },
 24483        "401": {
 24484         "description": "Unauthorized"
 24485        }
 24486       }
 24487      },
 24488      "parameters": [
 24489       {
 24490        "uniqueItems": true,
 24491        "type": "string",
 24492        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 24493        "name": "fieldSelector",
 24494        "in": "query"
 24495       },
 24496       {
 24497        "uniqueItems": true,
 24498        "type": "string",
 24499        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 24500        "name": "labelSelector",
 24501        "in": "query"
 24502       },
 24503       {
 24504        "uniqueItems": true,
 24505        "type": "string",
 24506        "description": "object name and auth scope, such as for teams and projects",
 24507        "name": "namespace",
 24508        "in": "path",
 24509        "required": true
 24510       },
 24511       {
 24512        "uniqueItems": true,
 24513        "type": "string",
 24514        "description": "If 'true', then the output is pretty printed.",
 24515        "name": "pretty",
 24516        "in": "query"
 24517       },
 24518       {
 24519        "uniqueItems": true,
 24520        "type": "string",
 24521        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 24522        "name": "resourceVersion",
 24523        "in": "query"
 24524       },
 24525       {
 24526        "uniqueItems": true,
 24527        "type": "integer",
 24528        "description": "Timeout for the list/watch call.",
 24529        "name": "timeoutSeconds",
 24530        "in": "query"
 24531       },
 24532       {
 24533        "uniqueItems": true,
 24534        "type": "boolean",
 24535        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 24536        "name": "watch",
 24537        "in": "query"
 24538       }
 24539      ]
 24540     },
 24541     "/apis/extensions/v1beta1/watch/namespaces/{namespace}/networkpolicies/{name}": {
 24542      "get": {
 24543       "description": "watch changes to an object of kind NetworkPolicy",
 24544       "consumes": [
 24545        "*/*"
 24546       ],
 24547       "produces": [
 24548        "application/json",
 24549        "application/yaml",
 24550        "application/vnd.kubernetes.protobuf",
 24551        "application/json;stream=watch",
 24552        "application/vnd.kubernetes.protobuf;stream=watch"
 24553       ],
 24554       "schemes": [
 24555        "https"
 24556       ],
 24557       "tags": [
 24558        "extensions_v1beta1"
 24559       ],
 24560       "operationId": "watchExtensionsV1beta1NamespacedNetworkPolicy",
 24561       "responses": {
 24562        "200": {
 24563         "description": "OK",
 24564         "schema": {
 24565          "$ref": "#/definitions/versioned.Event"
 24566         }
 24567        },
 24568        "401": {
 24569         "description": "Unauthorized"
 24570        }
 24571       }
 24572      },
 24573      "parameters": [
 24574       {
 24575        "uniqueItems": true,
 24576        "type": "string",
 24577        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 24578        "name": "fieldSelector",
 24579        "in": "query"
 24580       },
 24581       {
 24582        "uniqueItems": true,
 24583        "type": "string",
 24584        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 24585        "name": "labelSelector",
 24586        "in": "query"
 24587       },
 24588       {
 24589        "uniqueItems": true,
 24590        "type": "string",
 24591        "description": "name of the NetworkPolicy",
 24592        "name": "name",
 24593        "in": "path",
 24594        "required": true
 24595       },
 24596       {
 24597        "uniqueItems": true,
 24598        "type": "string",
 24599        "description": "object name and auth scope, such as for teams and projects",
 24600        "name": "namespace",
 24601        "in": "path",
 24602        "required": true
 24603       },
 24604       {
 24605        "uniqueItems": true,
 24606        "type": "string",
 24607        "description": "If 'true', then the output is pretty printed.",
 24608        "name": "pretty",
 24609        "in": "query"
 24610       },
 24611       {
 24612        "uniqueItems": true,
 24613        "type": "string",
 24614        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 24615        "name": "resourceVersion",
 24616        "in": "query"
 24617       },
 24618       {
 24619        "uniqueItems": true,
 24620        "type": "integer",
 24621        "description": "Timeout for the list/watch call.",
 24622        "name": "timeoutSeconds",
 24623        "in": "query"
 24624       },
 24625       {
 24626        "uniqueItems": true,
 24627        "type": "boolean",
 24628        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 24629        "name": "watch",
 24630        "in": "query"
 24631       }
 24632      ]
 24633     },
 24634     "/apis/extensions/v1beta1/watch/namespaces/{namespace}/replicasets": {
 24635      "get": {
 24636       "description": "watch individual changes to a list of ReplicaSet",
 24637       "consumes": [
 24638        "*/*"
 24639       ],
 24640       "produces": [
 24641        "application/json",
 24642        "application/yaml",
 24643        "application/vnd.kubernetes.protobuf",
 24644        "application/json;stream=watch",
 24645        "application/vnd.kubernetes.protobuf;stream=watch"
 24646       ],
 24647       "schemes": [
 24648        "https"
 24649       ],
 24650       "tags": [
 24651        "extensions_v1beta1"
 24652       ],
 24653       "operationId": "watchExtensionsV1beta1NamespacedReplicaSetList",
 24654       "responses": {
 24655        "200": {
 24656         "description": "OK",
 24657         "schema": {
 24658          "$ref": "#/definitions/versioned.Event"
 24659         }
 24660        },
 24661        "401": {
 24662         "description": "Unauthorized"
 24663        }
 24664       }
 24665      },
 24666      "parameters": [
 24667       {
 24668        "uniqueItems": true,
 24669        "type": "string",
 24670        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 24671        "name": "fieldSelector",
 24672        "in": "query"
 24673       },
 24674       {
 24675        "uniqueItems": true,
 24676        "type": "string",
 24677        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 24678        "name": "labelSelector",
 24679        "in": "query"
 24680       },
 24681       {
 24682        "uniqueItems": true,
 24683        "type": "string",
 24684        "description": "object name and auth scope, such as for teams and projects",
 24685        "name": "namespace",
 24686        "in": "path",
 24687        "required": true
 24688       },
 24689       {
 24690        "uniqueItems": true,
 24691        "type": "string",
 24692        "description": "If 'true', then the output is pretty printed.",
 24693        "name": "pretty",
 24694        "in": "query"
 24695       },
 24696       {
 24697        "uniqueItems": true,
 24698        "type": "string",
 24699        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 24700        "name": "resourceVersion",
 24701        "in": "query"
 24702       },
 24703       {
 24704        "uniqueItems": true,
 24705        "type": "integer",
 24706        "description": "Timeout for the list/watch call.",
 24707        "name": "timeoutSeconds",
 24708        "in": "query"
 24709       },
 24710       {
 24711        "uniqueItems": true,
 24712        "type": "boolean",
 24713        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 24714        "name": "watch",
 24715        "in": "query"
 24716       }
 24717      ]
 24718     },
 24719     "/apis/extensions/v1beta1/watch/namespaces/{namespace}/replicasets/{name}": {
 24720      "get": {
 24721       "description": "watch changes to an object of kind ReplicaSet",
 24722       "consumes": [
 24723        "*/*"
 24724       ],
 24725       "produces": [
 24726        "application/json",
 24727        "application/yaml",
 24728        "application/vnd.kubernetes.protobuf",
 24729        "application/json;stream=watch",
 24730        "application/vnd.kubernetes.protobuf;stream=watch"
 24731       ],
 24732       "schemes": [
 24733        "https"
 24734       ],
 24735       "tags": [
 24736        "extensions_v1beta1"
 24737       ],
 24738       "operationId": "watchExtensionsV1beta1NamespacedReplicaSet",
 24739       "responses": {
 24740        "200": {
 24741         "description": "OK",
 24742         "schema": {
 24743          "$ref": "#/definitions/versioned.Event"
 24744         }
 24745        },
 24746        "401": {
 24747         "description": "Unauthorized"
 24748        }
 24749       }
 24750      },
 24751      "parameters": [
 24752       {
 24753        "uniqueItems": true,
 24754        "type": "string",
 24755        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 24756        "name": "fieldSelector",
 24757        "in": "query"
 24758       },
 24759       {
 24760        "uniqueItems": true,
 24761        "type": "string",
 24762        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 24763        "name": "labelSelector",
 24764        "in": "query"
 24765       },
 24766       {
 24767        "uniqueItems": true,
 24768        "type": "string",
 24769        "description": "name of the ReplicaSet",
 24770        "name": "name",
 24771        "in": "path",
 24772        "required": true
 24773       },
 24774       {
 24775        "uniqueItems": true,
 24776        "type": "string",
 24777        "description": "object name and auth scope, such as for teams and projects",
 24778        "name": "namespace",
 24779        "in": "path",
 24780        "required": true
 24781       },
 24782       {
 24783        "uniqueItems": true,
 24784        "type": "string",
 24785        "description": "If 'true', then the output is pretty printed.",
 24786        "name": "pretty",
 24787        "in": "query"
 24788       },
 24789       {
 24790        "uniqueItems": true,
 24791        "type": "string",
 24792        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 24793        "name": "resourceVersion",
 24794        "in": "query"
 24795       },
 24796       {
 24797        "uniqueItems": true,
 24798        "type": "integer",
 24799        "description": "Timeout for the list/watch call.",
 24800        "name": "timeoutSeconds",
 24801        "in": "query"
 24802       },
 24803       {
 24804        "uniqueItems": true,
 24805        "type": "boolean",
 24806        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 24807        "name": "watch",
 24808        "in": "query"
 24809       }
 24810      ]
 24811     },
 24812     "/apis/extensions/v1beta1/watch/networkpolicies": {
 24813      "get": {
 24814       "description": "watch individual changes to a list of NetworkPolicy",
 24815       "consumes": [
 24816        "*/*"
 24817       ],
 24818       "produces": [
 24819        "application/json",
 24820        "application/yaml",
 24821        "application/vnd.kubernetes.protobuf",
 24822        "application/json;stream=watch",
 24823        "application/vnd.kubernetes.protobuf;stream=watch"
 24824       ],
 24825       "schemes": [
 24826        "https"
 24827       ],
 24828       "tags": [
 24829        "extensions_v1beta1"
 24830       ],
 24831       "operationId": "watchExtensionsV1beta1NetworkPolicyListForAllNamespaces",
 24832       "responses": {
 24833        "200": {
 24834         "description": "OK",
 24835         "schema": {
 24836          "$ref": "#/definitions/versioned.Event"
 24837         }
 24838        },
 24839        "401": {
 24840         "description": "Unauthorized"
 24841        }
 24842       }
 24843      },
 24844      "parameters": [
 24845       {
 24846        "uniqueItems": true,
 24847        "type": "string",
 24848        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 24849        "name": "fieldSelector",
 24850        "in": "query"
 24851       },
 24852       {
 24853        "uniqueItems": true,
 24854        "type": "string",
 24855        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 24856        "name": "labelSelector",
 24857        "in": "query"
 24858       },
 24859       {
 24860        "uniqueItems": true,
 24861        "type": "string",
 24862        "description": "If 'true', then the output is pretty printed.",
 24863        "name": "pretty",
 24864        "in": "query"
 24865       },
 24866       {
 24867        "uniqueItems": true,
 24868        "type": "string",
 24869        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 24870        "name": "resourceVersion",
 24871        "in": "query"
 24872       },
 24873       {
 24874        "uniqueItems": true,
 24875        "type": "integer",
 24876        "description": "Timeout for the list/watch call.",
 24877        "name": "timeoutSeconds",
 24878        "in": "query"
 24879       },
 24880       {
 24881        "uniqueItems": true,
 24882        "type": "boolean",
 24883        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 24884        "name": "watch",
 24885        "in": "query"
 24886       }
 24887      ]
 24888     },
 24889     "/apis/extensions/v1beta1/watch/replicasets": {
 24890      "get": {
 24891       "description": "watch individual changes to a list of ReplicaSet",
 24892       "consumes": [
 24893        "*/*"
 24894       ],
 24895       "produces": [
 24896        "application/json",
 24897        "application/yaml",
 24898        "application/vnd.kubernetes.protobuf",
 24899        "application/json;stream=watch",
 24900        "application/vnd.kubernetes.protobuf;stream=watch"
 24901       ],
 24902       "schemes": [
 24903        "https"
 24904       ],
 24905       "tags": [
 24906        "extensions_v1beta1"
 24907       ],
 24908       "operationId": "watchExtensionsV1beta1ReplicaSetListForAllNamespaces",
 24909       "responses": {
 24910        "200": {
 24911         "description": "OK",
 24912         "schema": {
 24913          "$ref": "#/definitions/versioned.Event"
 24914         }
 24915        },
 24916        "401": {
 24917         "description": "Unauthorized"
 24918        }
 24919       }
 24920      },
 24921      "parameters": [
 24922       {
 24923        "uniqueItems": true,
 24924        "type": "string",
 24925        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 24926        "name": "fieldSelector",
 24927        "in": "query"
 24928       },
 24929       {
 24930        "uniqueItems": true,
 24931        "type": "string",
 24932        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 24933        "name": "labelSelector",
 24934        "in": "query"
 24935       },
 24936       {
 24937        "uniqueItems": true,
 24938        "type": "string",
 24939        "description": "If 'true', then the output is pretty printed.",
 24940        "name": "pretty",
 24941        "in": "query"
 24942       },
 24943       {
 24944        "uniqueItems": true,
 24945        "type": "string",
 24946        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 24947        "name": "resourceVersion",
 24948        "in": "query"
 24949       },
 24950       {
 24951        "uniqueItems": true,
 24952        "type": "integer",
 24953        "description": "Timeout for the list/watch call.",
 24954        "name": "timeoutSeconds",
 24955        "in": "query"
 24956       },
 24957       {
 24958        "uniqueItems": true,
 24959        "type": "boolean",
 24960        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 24961        "name": "watch",
 24962        "in": "query"
 24963       }
 24964      ]
 24965     },
 24966     "/apis/extensions/v1beta1/watch/thirdpartyresources": {
 24967      "get": {
 24968       "description": "watch individual changes to a list of ThirdPartyResource",
 24969       "consumes": [
 24970        "*/*"
 24971       ],
 24972       "produces": [
 24973        "application/json",
 24974        "application/yaml",
 24975        "application/vnd.kubernetes.protobuf",
 24976        "application/json;stream=watch",
 24977        "application/vnd.kubernetes.protobuf;stream=watch"
 24978       ],
 24979       "schemes": [
 24980        "https"
 24981       ],
 24982       "tags": [
 24983        "extensions_v1beta1"
 24984       ],
 24985       "operationId": "watchExtensionsV1beta1ThirdPartyResourceList",
 24986       "responses": {
 24987        "200": {
 24988         "description": "OK",
 24989         "schema": {
 24990          "$ref": "#/definitions/versioned.Event"
 24991         }
 24992        },
 24993        "401": {
 24994         "description": "Unauthorized"
 24995        }
 24996       }
 24997      },
 24998      "parameters": [
 24999       {
 25000        "uniqueItems": true,
 25001        "type": "string",
 25002        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 25003        "name": "fieldSelector",
 25004        "in": "query"
 25005       },
 25006       {
 25007        "uniqueItems": true,
 25008        "type": "string",
 25009        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 25010        "name": "labelSelector",
 25011        "in": "query"
 25012       },
 25013       {
 25014        "uniqueItems": true,
 25015        "type": "string",
 25016        "description": "If 'true', then the output is pretty printed.",
 25017        "name": "pretty",
 25018        "in": "query"
 25019       },
 25020       {
 25021        "uniqueItems": true,
 25022        "type": "string",
 25023        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 25024        "name": "resourceVersion",
 25025        "in": "query"
 25026       },
 25027       {
 25028        "uniqueItems": true,
 25029        "type": "integer",
 25030        "description": "Timeout for the list/watch call.",
 25031        "name": "timeoutSeconds",
 25032        "in": "query"
 25033       },
 25034       {
 25035        "uniqueItems": true,
 25036        "type": "boolean",
 25037        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 25038        "name": "watch",
 25039        "in": "query"
 25040       }
 25041      ]
 25042     },
 25043     "/apis/extensions/v1beta1/watch/thirdpartyresources/{name}": {
 25044      "get": {
 25045       "description": "watch changes to an object of kind ThirdPartyResource",
 25046       "consumes": [
 25047        "*/*"
 25048       ],
 25049       "produces": [
 25050        "application/json",
 25051        "application/yaml",
 25052        "application/vnd.kubernetes.protobuf",
 25053        "application/json;stream=watch",
 25054        "application/vnd.kubernetes.protobuf;stream=watch"
 25055       ],
 25056       "schemes": [
 25057        "https"
 25058       ],
 25059       "tags": [
 25060        "extensions_v1beta1"
 25061       ],
 25062       "operationId": "watchExtensionsV1beta1ThirdPartyResource",
 25063       "responses": {
 25064        "200": {
 25065         "description": "OK",
 25066         "schema": {
 25067          "$ref": "#/definitions/versioned.Event"
 25068         }
 25069        },
 25070        "401": {
 25071         "description": "Unauthorized"
 25072        }
 25073       }
 25074      },
 25075      "parameters": [
 25076       {
 25077        "uniqueItems": true,
 25078        "type": "string",
 25079        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 25080        "name": "fieldSelector",
 25081        "in": "query"
 25082       },
 25083       {
 25084        "uniqueItems": true,
 25085        "type": "string",
 25086        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 25087        "name": "labelSelector",
 25088        "in": "query"
 25089       },
 25090       {
 25091        "uniqueItems": true,
 25092        "type": "string",
 25093        "description": "name of the ThirdPartyResource",
 25094        "name": "name",
 25095        "in": "path",
 25096        "required": true
 25097       },
 25098       {
 25099        "uniqueItems": true,
 25100        "type": "string",
 25101        "description": "If 'true', then the output is pretty printed.",
 25102        "name": "pretty",
 25103        "in": "query"
 25104       },
 25105       {
 25106        "uniqueItems": true,
 25107        "type": "string",
 25108        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 25109        "name": "resourceVersion",
 25110        "in": "query"
 25111       },
 25112       {
 25113        "uniqueItems": true,
 25114        "type": "integer",
 25115        "description": "Timeout for the list/watch call.",
 25116        "name": "timeoutSeconds",
 25117        "in": "query"
 25118       },
 25119       {
 25120        "uniqueItems": true,
 25121        "type": "boolean",
 25122        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 25123        "name": "watch",
 25124        "in": "query"
 25125       }
 25126      ]
 25127     },
 25128     "/apis/policy/": {
 25129      "get": {
 25130       "description": "get information of a group",
 25131       "consumes": [
 25132        "application/json",
 25133        "application/yaml",
 25134        "application/vnd.kubernetes.protobuf"
 25135       ],
 25136       "produces": [
 25137        "application/json",
 25138        "application/yaml",
 25139        "application/vnd.kubernetes.protobuf"
 25140       ],
 25141       "schemes": [
 25142        "https"
 25143       ],
 25144       "tags": [
 25145        "policy"
 25146       ],
 25147       "operationId": "getPolicyAPIGroup",
 25148       "responses": {
 25149        "200": {
 25150         "description": "OK",
 25151         "schema": {
 25152          "$ref": "#/definitions/unversioned.APIGroup"
 25153         }
 25154        },
 25155        "401": {
 25156         "description": "Unauthorized"
 25157        }
 25158       }
 25159      }
 25160     },
 25161     "/apis/policy/v1alpha1/": {
 25162      "get": {
 25163       "description": "get available resources",
 25164       "consumes": [
 25165        "application/json",
 25166        "application/yaml",
 25167        "application/vnd.kubernetes.protobuf"
 25168       ],
 25169       "produces": [
 25170        "application/json",
 25171        "application/yaml",
 25172        "application/vnd.kubernetes.protobuf"
 25173       ],
 25174       "schemes": [
 25175        "https"
 25176       ],
 25177       "tags": [
 25178        "policy_v1alpha1"
 25179       ],
 25180       "operationId": "getPolicyV1alpha1APIResources",
 25181       "responses": {
 25182        "200": {
 25183         "description": "OK",
 25184         "schema": {
 25185          "$ref": "#/definitions/unversioned.APIResourceList"
 25186         }
 25187        },
 25188        "401": {
 25189         "description": "Unauthorized"
 25190        }
 25191       }
 25192      }
 25193     },
 25194     "/apis/policy/v1alpha1/namespaces/{namespace}/poddisruptionbudgets": {
 25195      "get": {
 25196       "description": "list or watch objects of kind PodDisruptionBudget",
 25197       "consumes": [
 25198        "*/*"
 25199       ],
 25200       "produces": [
 25201        "application/json",
 25202        "application/yaml",
 25203        "application/vnd.kubernetes.protobuf",
 25204        "application/json;stream=watch",
 25205        "application/vnd.kubernetes.protobuf;stream=watch"
 25206       ],
 25207       "schemes": [
 25208        "https"
 25209       ],
 25210       "tags": [
 25211        "policy_v1alpha1"
 25212       ],
 25213       "operationId": "listPolicyV1alpha1NamespacedPodDisruptionBudget",
 25214       "parameters": [
 25215        {
 25216         "uniqueItems": true,
 25217         "type": "string",
 25218         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 25219         "name": "fieldSelector",
 25220         "in": "query"
 25221        },
 25222        {
 25223         "uniqueItems": true,
 25224         "type": "string",
 25225         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 25226         "name": "labelSelector",
 25227         "in": "query"
 25228        },
 25229        {
 25230         "uniqueItems": true,
 25231         "type": "string",
 25232         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 25233         "name": "resourceVersion",
 25234         "in": "query"
 25235        },
 25236        {
 25237         "uniqueItems": true,
 25238         "type": "integer",
 25239         "description": "Timeout for the list/watch call.",
 25240         "name": "timeoutSeconds",
 25241         "in": "query"
 25242        },
 25243        {
 25244         "uniqueItems": true,
 25245         "type": "boolean",
 25246         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 25247         "name": "watch",
 25248         "in": "query"
 25249        }
 25250       ],
 25251       "responses": {
 25252        "200": {
 25253         "description": "OK",
 25254         "schema": {
 25255          "$ref": "#/definitions/v1alpha1.PodDisruptionBudgetList"
 25256         }
 25257        },
 25258        "401": {
 25259         "description": "Unauthorized"
 25260        }
 25261       }
 25262      },
 25263      "post": {
 25264       "description": "create a PodDisruptionBudget",
 25265       "consumes": [
 25266        "*/*"
 25267       ],
 25268       "produces": [
 25269        "application/json",
 25270        "application/yaml",
 25271        "application/vnd.kubernetes.protobuf"
 25272       ],
 25273       "schemes": [
 25274        "https"
 25275       ],
 25276       "tags": [
 25277        "policy_v1alpha1"
 25278       ],
 25279       "operationId": "createPolicyV1alpha1NamespacedPodDisruptionBudget",
 25280       "parameters": [
 25281        {
 25282         "name": "body",
 25283         "in": "body",
 25284         "required": true,
 25285         "schema": {
 25286          "$ref": "#/definitions/v1alpha1.PodDisruptionBudget"
 25287         }
 25288        }
 25289       ],
 25290       "responses": {
 25291        "200": {
 25292         "description": "OK",
 25293         "schema": {
 25294          "$ref": "#/definitions/v1alpha1.PodDisruptionBudget"
 25295         }
 25296        },
 25297        "401": {
 25298         "description": "Unauthorized"
 25299        }
 25300       }
 25301      },
 25302      "delete": {
 25303       "description": "delete collection of PodDisruptionBudget",
 25304       "consumes": [
 25305        "*/*"
 25306       ],
 25307       "produces": [
 25308        "application/json",
 25309        "application/yaml",
 25310        "application/vnd.kubernetes.protobuf"
 25311       ],
 25312       "schemes": [
 25313        "https"
 25314       ],
 25315       "tags": [
 25316        "policy_v1alpha1"
 25317       ],
 25318       "operationId": "deletePolicyV1alpha1CollectionNamespacedPodDisruptionBudget",
 25319       "parameters": [
 25320        {
 25321         "uniqueItems": true,
 25322         "type": "string",
 25323         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 25324         "name": "fieldSelector",
 25325         "in": "query"
 25326        },
 25327        {
 25328         "uniqueItems": true,
 25329         "type": "string",
 25330         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 25331         "name": "labelSelector",
 25332         "in": "query"
 25333        },
 25334        {
 25335         "uniqueItems": true,
 25336         "type": "string",
 25337         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 25338         "name": "resourceVersion",
 25339         "in": "query"
 25340        },
 25341        {
 25342         "uniqueItems": true,
 25343         "type": "integer",
 25344         "description": "Timeout for the list/watch call.",
 25345         "name": "timeoutSeconds",
 25346         "in": "query"
 25347        },
 25348        {
 25349         "uniqueItems": true,
 25350         "type": "boolean",
 25351         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 25352         "name": "watch",
 25353         "in": "query"
 25354        }
 25355       ],
 25356       "responses": {
 25357        "200": {
 25358         "description": "OK",
 25359         "schema": {
 25360          "$ref": "#/definitions/unversioned.Status"
 25361         }
 25362        },
 25363        "401": {
 25364         "description": "Unauthorized"
 25365        }
 25366       }
 25367      },
 25368      "parameters": [
 25369       {
 25370        "uniqueItems": true,
 25371        "type": "string",
 25372        "description": "object name and auth scope, such as for teams and projects",
 25373        "name": "namespace",
 25374        "in": "path",
 25375        "required": true
 25376       },
 25377       {
 25378        "uniqueItems": true,
 25379        "type": "string",
 25380        "description": "If 'true', then the output is pretty printed.",
 25381        "name": "pretty",
 25382        "in": "query"
 25383       }
 25384      ]
 25385     },
 25386     "/apis/policy/v1alpha1/namespaces/{namespace}/poddisruptionbudgets/{name}": {
 25387      "get": {
 25388       "description": "read the specified PodDisruptionBudget",
 25389       "consumes": [
 25390        "*/*"
 25391       ],
 25392       "produces": [
 25393        "application/json",
 25394        "application/yaml",
 25395        "application/vnd.kubernetes.protobuf"
 25396       ],
 25397       "schemes": [
 25398        "https"
 25399       ],
 25400       "tags": [
 25401        "policy_v1alpha1"
 25402       ],
 25403       "operationId": "readPolicyV1alpha1NamespacedPodDisruptionBudget",
 25404       "parameters": [
 25405        {
 25406         "uniqueItems": true,
 25407         "type": "boolean",
 25408         "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'",
 25409         "name": "exact",
 25410         "in": "query"
 25411        },
 25412        {
 25413         "uniqueItems": true,
 25414         "type": "boolean",
 25415         "description": "Should this value be exported.  Export strips fields that a user can not specify.",
 25416         "name": "export",
 25417         "in": "query"
 25418        }
 25419       ],
 25420       "responses": {
 25421        "200": {
 25422         "description": "OK",
 25423         "schema": {
 25424          "$ref": "#/definitions/v1alpha1.PodDisruptionBudget"
 25425         }
 25426        },
 25427        "401": {
 25428         "description": "Unauthorized"
 25429        }
 25430       }
 25431      },
 25432      "put": {
 25433       "description": "replace the specified PodDisruptionBudget",
 25434       "consumes": [
 25435        "*/*"
 25436       ],
 25437       "produces": [
 25438        "application/json",
 25439        "application/yaml",
 25440        "application/vnd.kubernetes.protobuf"
 25441       ],
 25442       "schemes": [
 25443        "https"
 25444       ],
 25445       "tags": [
 25446        "policy_v1alpha1"
 25447       ],
 25448       "operationId": "replacePolicyV1alpha1NamespacedPodDisruptionBudget",
 25449       "parameters": [
 25450        {
 25451         "name": "body",
 25452         "in": "body",
 25453         "required": true,
 25454         "schema": {
 25455          "$ref": "#/definitions/v1alpha1.PodDisruptionBudget"
 25456         }
 25457        }
 25458       ],
 25459       "responses": {
 25460        "200": {
 25461         "description": "OK",
 25462         "schema": {
 25463          "$ref": "#/definitions/v1alpha1.PodDisruptionBudget"
 25464         }
 25465        },
 25466        "401": {
 25467         "description": "Unauthorized"
 25468        }
 25469       }
 25470      },
 25471      "delete": {
 25472       "description": "delete a PodDisruptionBudget",
 25473       "consumes": [
 25474        "*/*"
 25475       ],
 25476       "produces": [
 25477        "application/json",
 25478        "application/yaml",
 25479        "application/vnd.kubernetes.protobuf"
 25480       ],
 25481       "schemes": [
 25482        "https"
 25483       ],
 25484       "tags": [
 25485        "policy_v1alpha1"
 25486       ],
 25487       "operationId": "deletePolicyV1alpha1NamespacedPodDisruptionBudget",
 25488       "parameters": [
 25489        {
 25490         "name": "body",
 25491         "in": "body",
 25492         "required": true,
 25493         "schema": {
 25494          "$ref": "#/definitions/v1.DeleteOptions"
 25495         }
 25496        }
 25497       ],
 25498       "responses": {
 25499        "200": {
 25500         "description": "OK",
 25501         "schema": {
 25502          "$ref": "#/definitions/unversioned.Status"
 25503         }
 25504        },
 25505        "401": {
 25506         "description": "Unauthorized"
 25507        }
 25508       }
 25509      },
 25510      "patch": {
 25511       "description": "partially update the specified PodDisruptionBudget",
 25512       "consumes": [
 25513        "application/json-patch+json",
 25514        "application/merge-patch+json",
 25515        "application/strategic-merge-patch+json"
 25516       ],
 25517       "produces": [
 25518        "application/json",
 25519        "application/yaml",
 25520        "application/vnd.kubernetes.protobuf"
 25521       ],
 25522       "schemes": [
 25523        "https"
 25524       ],
 25525       "tags": [
 25526        "policy_v1alpha1"
 25527       ],
 25528       "operationId": "patchPolicyV1alpha1NamespacedPodDisruptionBudget",
 25529       "parameters": [
 25530        {
 25531         "name": "body",
 25532         "in": "body",
 25533         "required": true,
 25534         "schema": {
 25535          "$ref": "#/definitions/unversioned.Patch"
 25536         }
 25537        }
 25538       ],
 25539       "responses": {
 25540        "200": {
 25541         "description": "OK",
 25542         "schema": {
 25543          "$ref": "#/definitions/v1alpha1.PodDisruptionBudget"
 25544         }
 25545        },
 25546        "401": {
 25547         "description": "Unauthorized"
 25548        }
 25549       }
 25550      },
 25551      "parameters": [
 25552       {
 25553        "uniqueItems": true,
 25554        "type": "string",
 25555        "description": "name of the PodDisruptionBudget",
 25556        "name": "name",
 25557        "in": "path",
 25558        "required": true
 25559       },
 25560       {
 25561        "uniqueItems": true,
 25562        "type": "string",
 25563        "description": "object name and auth scope, such as for teams and projects",
 25564        "name": "namespace",
 25565        "in": "path",
 25566        "required": true
 25567       },
 25568       {
 25569        "uniqueItems": true,
 25570        "type": "string",
 25571        "description": "If 'true', then the output is pretty printed.",
 25572        "name": "pretty",
 25573        "in": "query"
 25574       }
 25575      ]
 25576     },
 25577     "/apis/policy/v1alpha1/namespaces/{namespace}/poddisruptionbudgets/{name}/status": {
 25578      "get": {
 25579       "description": "read status of the specified PodDisruptionBudget",
 25580       "consumes": [
 25581        "*/*"
 25582       ],
 25583       "produces": [
 25584        "application/json",
 25585        "application/yaml",
 25586        "application/vnd.kubernetes.protobuf"
 25587       ],
 25588       "schemes": [
 25589        "https"
 25590       ],
 25591       "tags": [
 25592        "policy_v1alpha1"
 25593       ],
 25594       "operationId": "readPolicyV1alpha1NamespacedPodDisruptionBudgetStatus",
 25595       "responses": {
 25596        "200": {
 25597         "description": "OK",
 25598         "schema": {
 25599          "$ref": "#/definitions/v1alpha1.PodDisruptionBudget"
 25600         }
 25601        },
 25602        "401": {
 25603         "description": "Unauthorized"
 25604        }
 25605       }
 25606      },
 25607      "put": {
 25608       "description": "replace status of the specified PodDisruptionBudget",
 25609       "consumes": [
 25610        "*/*"
 25611       ],
 25612       "produces": [
 25613        "application/json",
 25614        "application/yaml",
 25615        "application/vnd.kubernetes.protobuf"
 25616       ],
 25617       "schemes": [
 25618        "https"
 25619       ],
 25620       "tags": [
 25621        "policy_v1alpha1"
 25622       ],
 25623       "operationId": "replacePolicyV1alpha1NamespacedPodDisruptionBudgetStatus",
 25624       "parameters": [
 25625        {
 25626         "name": "body",
 25627         "in": "body",
 25628         "required": true,
 25629         "schema": {
 25630          "$ref": "#/definitions/v1alpha1.PodDisruptionBudget"
 25631         }
 25632        }
 25633       ],
 25634       "responses": {
 25635        "200": {
 25636         "description": "OK",
 25637         "schema": {
 25638          "$ref": "#/definitions/v1alpha1.PodDisruptionBudget"
 25639         }
 25640        },
 25641        "401": {
 25642         "description": "Unauthorized"
 25643        }
 25644       }
 25645      },
 25646      "patch": {
 25647       "description": "partially update status of the specified PodDisruptionBudget",
 25648       "consumes": [
 25649        "application/json-patch+json",
 25650        "application/merge-patch+json",
 25651        "application/strategic-merge-patch+json"
 25652       ],
 25653       "produces": [
 25654        "application/json",
 25655        "application/yaml",
 25656        "application/vnd.kubernetes.protobuf"
 25657       ],
 25658       "schemes": [
 25659        "https"
 25660       ],
 25661       "tags": [
 25662        "policy_v1alpha1"
 25663       ],
 25664       "operationId": "patchPolicyV1alpha1NamespacedPodDisruptionBudgetStatus",
 25665       "parameters": [
 25666        {
 25667         "name": "body",
 25668         "in": "body",
 25669         "required": true,
 25670         "schema": {
 25671          "$ref": "#/definitions/unversioned.Patch"
 25672         }
 25673        }
 25674       ],
 25675       "responses": {
 25676        "200": {
 25677         "description": "OK",
 25678         "schema": {
 25679          "$ref": "#/definitions/v1alpha1.PodDisruptionBudget"
 25680         }
 25681        },
 25682        "401": {
 25683         "description": "Unauthorized"
 25684        }
 25685       }
 25686      },
 25687      "parameters": [
 25688       {
 25689        "uniqueItems": true,
 25690        "type": "string",
 25691        "description": "name of the PodDisruptionBudget",
 25692        "name": "name",
 25693        "in": "path",
 25694        "required": true
 25695       },
 25696       {
 25697        "uniqueItems": true,
 25698        "type": "string",
 25699        "description": "object name and auth scope, such as for teams and projects",
 25700        "name": "namespace",
 25701        "in": "path",
 25702        "required": true
 25703       },
 25704       {
 25705        "uniqueItems": true,
 25706        "type": "string",
 25707        "description": "If 'true', then the output is pretty printed.",
 25708        "name": "pretty",
 25709        "in": "query"
 25710       }
 25711      ]
 25712     },
 25713     "/apis/policy/v1alpha1/poddisruptionbudgets": {
 25714      "get": {
 25715       "description": "list or watch objects of kind PodDisruptionBudget",
 25716       "consumes": [
 25717        "*/*"
 25718       ],
 25719       "produces": [
 25720        "application/json",
 25721        "application/yaml",
 25722        "application/vnd.kubernetes.protobuf",
 25723        "application/json;stream=watch",
 25724        "application/vnd.kubernetes.protobuf;stream=watch"
 25725       ],
 25726       "schemes": [
 25727        "https"
 25728       ],
 25729       "tags": [
 25730        "policy_v1alpha1"
 25731       ],
 25732       "operationId": "listPolicyV1alpha1PodDisruptionBudgetForAllNamespaces",
 25733       "responses": {
 25734        "200": {
 25735         "description": "OK",
 25736         "schema": {
 25737          "$ref": "#/definitions/v1alpha1.PodDisruptionBudgetList"
 25738         }
 25739        },
 25740        "401": {
 25741         "description": "Unauthorized"
 25742        }
 25743       }
 25744      },
 25745      "parameters": [
 25746       {
 25747        "uniqueItems": true,
 25748        "type": "string",
 25749        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 25750        "name": "fieldSelector",
 25751        "in": "query"
 25752       },
 25753       {
 25754        "uniqueItems": true,
 25755        "type": "string",
 25756        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 25757        "name": "labelSelector",
 25758        "in": "query"
 25759       },
 25760       {
 25761        "uniqueItems": true,
 25762        "type": "string",
 25763        "description": "If 'true', then the output is pretty printed.",
 25764        "name": "pretty",
 25765        "in": "query"
 25766       },
 25767       {
 25768        "uniqueItems": true,
 25769        "type": "string",
 25770        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 25771        "name": "resourceVersion",
 25772        "in": "query"
 25773       },
 25774       {
 25775        "uniqueItems": true,
 25776        "type": "integer",
 25777        "description": "Timeout for the list/watch call.",
 25778        "name": "timeoutSeconds",
 25779        "in": "query"
 25780       },
 25781       {
 25782        "uniqueItems": true,
 25783        "type": "boolean",
 25784        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 25785        "name": "watch",
 25786        "in": "query"
 25787       }
 25788      ]
 25789     },
 25790     "/apis/policy/v1alpha1/watch/namespaces/{namespace}/poddisruptionbudgets": {
 25791      "get": {
 25792       "description": "watch individual changes to a list of PodDisruptionBudget",
 25793       "consumes": [
 25794        "*/*"
 25795       ],
 25796       "produces": [
 25797        "application/json",
 25798        "application/yaml",
 25799        "application/vnd.kubernetes.protobuf",
 25800        "application/json;stream=watch",
 25801        "application/vnd.kubernetes.protobuf;stream=watch"
 25802       ],
 25803       "schemes": [
 25804        "https"
 25805       ],
 25806       "tags": [
 25807        "policy_v1alpha1"
 25808       ],
 25809       "operationId": "watchPolicyV1alpha1NamespacedPodDisruptionBudgetList",
 25810       "responses": {
 25811        "200": {
 25812         "description": "OK",
 25813         "schema": {
 25814          "$ref": "#/definitions/versioned.Event"
 25815         }
 25816        },
 25817        "401": {
 25818         "description": "Unauthorized"
 25819        }
 25820       }
 25821      },
 25822      "parameters": [
 25823       {
 25824        "uniqueItems": true,
 25825        "type": "string",
 25826        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 25827        "name": "fieldSelector",
 25828        "in": "query"
 25829       },
 25830       {
 25831        "uniqueItems": true,
 25832        "type": "string",
 25833        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 25834        "name": "labelSelector",
 25835        "in": "query"
 25836       },
 25837       {
 25838        "uniqueItems": true,
 25839        "type": "string",
 25840        "description": "object name and auth scope, such as for teams and projects",
 25841        "name": "namespace",
 25842        "in": "path",
 25843        "required": true
 25844       },
 25845       {
 25846        "uniqueItems": true,
 25847        "type": "string",
 25848        "description": "If 'true', then the output is pretty printed.",
 25849        "name": "pretty",
 25850        "in": "query"
 25851       },
 25852       {
 25853        "uniqueItems": true,
 25854        "type": "string",
 25855        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 25856        "name": "resourceVersion",
 25857        "in": "query"
 25858       },
 25859       {
 25860        "uniqueItems": true,
 25861        "type": "integer",
 25862        "description": "Timeout for the list/watch call.",
 25863        "name": "timeoutSeconds",
 25864        "in": "query"
 25865       },
 25866       {
 25867        "uniqueItems": true,
 25868        "type": "boolean",
 25869        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 25870        "name": "watch",
 25871        "in": "query"
 25872       }
 25873      ]
 25874     },
 25875     "/apis/policy/v1alpha1/watch/namespaces/{namespace}/poddisruptionbudgets/{name}": {
 25876      "get": {
 25877       "description": "watch changes to an object of kind PodDisruptionBudget",
 25878       "consumes": [
 25879        "*/*"
 25880       ],
 25881       "produces": [
 25882        "application/json",
 25883        "application/yaml",
 25884        "application/vnd.kubernetes.protobuf",
 25885        "application/json;stream=watch",
 25886        "application/vnd.kubernetes.protobuf;stream=watch"
 25887       ],
 25888       "schemes": [
 25889        "https"
 25890       ],
 25891       "tags": [
 25892        "policy_v1alpha1"
 25893       ],
 25894       "operationId": "watchPolicyV1alpha1NamespacedPodDisruptionBudget",
 25895       "responses": {
 25896        "200": {
 25897         "description": "OK",
 25898         "schema": {
 25899          "$ref": "#/definitions/versioned.Event"
 25900         }
 25901        },
 25902        "401": {
 25903         "description": "Unauthorized"
 25904        }
 25905       }
 25906      },
 25907      "parameters": [
 25908       {
 25909        "uniqueItems": true,
 25910        "type": "string",
 25911        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 25912        "name": "fieldSelector",
 25913        "in": "query"
 25914       },
 25915       {
 25916        "uniqueItems": true,
 25917        "type": "string",
 25918        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 25919        "name": "labelSelector",
 25920        "in": "query"
 25921       },
 25922       {
 25923        "uniqueItems": true,
 25924        "type": "string",
 25925        "description": "name of the PodDisruptionBudget",
 25926        "name": "name",
 25927        "in": "path",
 25928        "required": true
 25929       },
 25930       {
 25931        "uniqueItems": true,
 25932        "type": "string",
 25933        "description": "object name and auth scope, such as for teams and projects",
 25934        "name": "namespace",
 25935        "in": "path",
 25936        "required": true
 25937       },
 25938       {
 25939        "uniqueItems": true,
 25940        "type": "string",
 25941        "description": "If 'true', then the output is pretty printed.",
 25942        "name": "pretty",
 25943        "in": "query"
 25944       },
 25945       {
 25946        "uniqueItems": true,
 25947        "type": "string",
 25948        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 25949        "name": "resourceVersion",
 25950        "in": "query"
 25951       },
 25952       {
 25953        "uniqueItems": true,
 25954        "type": "integer",
 25955        "description": "Timeout for the list/watch call.",
 25956        "name": "timeoutSeconds",
 25957        "in": "query"
 25958       },
 25959       {
 25960        "uniqueItems": true,
 25961        "type": "boolean",
 25962        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 25963        "name": "watch",
 25964        "in": "query"
 25965       }
 25966      ]
 25967     },
 25968     "/apis/policy/v1alpha1/watch/poddisruptionbudgets": {
 25969      "get": {
 25970       "description": "watch individual changes to a list of PodDisruptionBudget",
 25971       "consumes": [
 25972        "*/*"
 25973       ],
 25974       "produces": [
 25975        "application/json",
 25976        "application/yaml",
 25977        "application/vnd.kubernetes.protobuf",
 25978        "application/json;stream=watch",
 25979        "application/vnd.kubernetes.protobuf;stream=watch"
 25980       ],
 25981       "schemes": [
 25982        "https"
 25983       ],
 25984       "tags": [
 25985        "policy_v1alpha1"
 25986       ],
 25987       "operationId": "watchPolicyV1alpha1PodDisruptionBudgetListForAllNamespaces",
 25988       "responses": {
 25989        "200": {
 25990         "description": "OK",
 25991         "schema": {
 25992          "$ref": "#/definitions/versioned.Event"
 25993         }
 25994        },
 25995        "401": {
 25996         "description": "Unauthorized"
 25997        }
 25998       }
 25999      },
 26000      "parameters": [
 26001       {
 26002        "uniqueItems": true,
 26003        "type": "string",
 26004        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 26005        "name": "fieldSelector",
 26006        "in": "query"
 26007       },
 26008       {
 26009        "uniqueItems": true,
 26010        "type": "string",
 26011        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 26012        "name": "labelSelector",
 26013        "in": "query"
 26014       },
 26015       {
 26016        "uniqueItems": true,
 26017        "type": "string",
 26018        "description": "If 'true', then the output is pretty printed.",
 26019        "name": "pretty",
 26020        "in": "query"
 26021       },
 26022       {
 26023        "uniqueItems": true,
 26024        "type": "string",
 26025        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 26026        "name": "resourceVersion",
 26027        "in": "query"
 26028       },
 26029       {
 26030        "uniqueItems": true,
 26031        "type": "integer",
 26032        "description": "Timeout for the list/watch call.",
 26033        "name": "timeoutSeconds",
 26034        "in": "query"
 26035       },
 26036       {
 26037        "uniqueItems": true,
 26038        "type": "boolean",
 26039        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 26040        "name": "watch",
 26041        "in": "query"
 26042       }
 26043      ]
 26044     },
 26045     "/apis/rbac.authorization.k8s.io/": {
 26046      "get": {
 26047       "description": "get information of a group",
 26048       "consumes": [
 26049        "application/json",
 26050        "application/yaml",
 26051        "application/vnd.kubernetes.protobuf"
 26052       ],
 26053       "produces": [
 26054        "application/json",
 26055        "application/yaml",
 26056        "application/vnd.kubernetes.protobuf"
 26057       ],
 26058       "schemes": [
 26059        "https"
 26060       ],
 26061       "tags": [
 26062        "rbacAuthorization"
 26063       ],
 26064       "operationId": "getRbacAuthorizationAPIGroup",
 26065       "responses": {
 26066        "200": {
 26067         "description": "OK",
 26068         "schema": {
 26069          "$ref": "#/definitions/unversioned.APIGroup"
 26070         }
 26071        },
 26072        "401": {
 26073         "description": "Unauthorized"
 26074        }
 26075       }
 26076      }
 26077     },
 26078     "/apis/rbac.authorization.k8s.io/v1alpha1/": {
 26079      "get": {
 26080       "description": "get available resources",
 26081       "consumes": [
 26082        "application/json",
 26083        "application/yaml",
 26084        "application/vnd.kubernetes.protobuf"
 26085       ],
 26086       "produces": [
 26087        "application/json",
 26088        "application/yaml",
 26089        "application/vnd.kubernetes.protobuf"
 26090       ],
 26091       "schemes": [
 26092        "https"
 26093       ],
 26094       "tags": [
 26095        "rbacAuthorization_v1alpha1"
 26096       ],
 26097       "operationId": "getRbacAuthorizationV1alpha1APIResources",
 26098       "responses": {
 26099        "200": {
 26100         "description": "OK",
 26101         "schema": {
 26102          "$ref": "#/definitions/unversioned.APIResourceList"
 26103         }
 26104        },
 26105        "401": {
 26106         "description": "Unauthorized"
 26107        }
 26108       }
 26109      }
 26110     },
 26111     "/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings": {
 26112      "get": {
 26113       "description": "list or watch objects of kind ClusterRoleBinding",
 26114       "consumes": [
 26115        "*/*"
 26116       ],
 26117       "produces": [
 26118        "application/json",
 26119        "application/yaml",
 26120        "application/vnd.kubernetes.protobuf",
 26121        "application/json;stream=watch",
 26122        "application/vnd.kubernetes.protobuf;stream=watch"
 26123       ],
 26124       "schemes": [
 26125        "https"
 26126       ],
 26127       "tags": [
 26128        "rbacAuthorization_v1alpha1"
 26129       ],
 26130       "operationId": "listRbacAuthorizationV1alpha1ClusterRoleBinding",
 26131       "parameters": [
 26132        {
 26133         "uniqueItems": true,
 26134         "type": "string",
 26135         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 26136         "name": "fieldSelector",
 26137         "in": "query"
 26138        },
 26139        {
 26140         "uniqueItems": true,
 26141         "type": "string",
 26142         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 26143         "name": "labelSelector",
 26144         "in": "query"
 26145        },
 26146        {
 26147         "uniqueItems": true,
 26148         "type": "string",
 26149         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 26150         "name": "resourceVersion",
 26151         "in": "query"
 26152        },
 26153        {
 26154         "uniqueItems": true,
 26155         "type": "integer",
 26156         "description": "Timeout for the list/watch call.",
 26157         "name": "timeoutSeconds",
 26158         "in": "query"
 26159        },
 26160        {
 26161         "uniqueItems": true,
 26162         "type": "boolean",
 26163         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 26164         "name": "watch",
 26165         "in": "query"
 26166        }
 26167       ],
 26168       "responses": {
 26169        "200": {
 26170         "description": "OK",
 26171         "schema": {
 26172          "$ref": "#/definitions/v1alpha1.ClusterRoleBindingList"
 26173         }
 26174        },
 26175        "401": {
 26176         "description": "Unauthorized"
 26177        }
 26178       }
 26179      },
 26180      "post": {
 26181       "description": "create a ClusterRoleBinding",
 26182       "consumes": [
 26183        "*/*"
 26184       ],
 26185       "produces": [
 26186        "application/json",
 26187        "application/yaml",
 26188        "application/vnd.kubernetes.protobuf"
 26189       ],
 26190       "schemes": [
 26191        "https"
 26192       ],
 26193       "tags": [
 26194        "rbacAuthorization_v1alpha1"
 26195       ],
 26196       "operationId": "createRbacAuthorizationV1alpha1ClusterRoleBinding",
 26197       "parameters": [
 26198        {
 26199         "name": "body",
 26200         "in": "body",
 26201         "required": true,
 26202         "schema": {
 26203          "$ref": "#/definitions/v1alpha1.ClusterRoleBinding"
 26204         }
 26205        }
 26206       ],
 26207       "responses": {
 26208        "200": {
 26209         "description": "OK",
 26210         "schema": {
 26211          "$ref": "#/definitions/v1alpha1.ClusterRoleBinding"
 26212         }
 26213        },
 26214        "401": {
 26215         "description": "Unauthorized"
 26216        }
 26217       }
 26218      },
 26219      "delete": {
 26220       "description": "delete collection of ClusterRoleBinding",
 26221       "consumes": [
 26222        "*/*"
 26223       ],
 26224       "produces": [
 26225        "application/json",
 26226        "application/yaml",
 26227        "application/vnd.kubernetes.protobuf"
 26228       ],
 26229       "schemes": [
 26230        "https"
 26231       ],
 26232       "tags": [
 26233        "rbacAuthorization_v1alpha1"
 26234       ],
 26235       "operationId": "deleteRbacAuthorizationV1alpha1CollectionClusterRoleBinding",
 26236       "parameters": [
 26237        {
 26238         "uniqueItems": true,
 26239         "type": "string",
 26240         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 26241         "name": "fieldSelector",
 26242         "in": "query"
 26243        },
 26244        {
 26245         "uniqueItems": true,
 26246         "type": "string",
 26247         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 26248         "name": "labelSelector",
 26249         "in": "query"
 26250        },
 26251        {
 26252         "uniqueItems": true,
 26253         "type": "string",
 26254         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 26255         "name": "resourceVersion",
 26256         "in": "query"
 26257        },
 26258        {
 26259         "uniqueItems": true,
 26260         "type": "integer",
 26261         "description": "Timeout for the list/watch call.",
 26262         "name": "timeoutSeconds",
 26263         "in": "query"
 26264        },
 26265        {
 26266         "uniqueItems": true,
 26267         "type": "boolean",
 26268         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 26269         "name": "watch",
 26270         "in": "query"
 26271        }
 26272       ],
 26273       "responses": {
 26274        "200": {
 26275         "description": "OK",
 26276         "schema": {
 26277          "$ref": "#/definitions/unversioned.Status"
 26278         }
 26279        },
 26280        "401": {
 26281         "description": "Unauthorized"
 26282        }
 26283       }
 26284      },
 26285      "parameters": [
 26286       {
 26287        "uniqueItems": true,
 26288        "type": "string",
 26289        "description": "If 'true', then the output is pretty printed.",
 26290        "name": "pretty",
 26291        "in": "query"
 26292       }
 26293      ]
 26294     },
 26295     "/apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}": {
 26296      "get": {
 26297       "description": "read the specified ClusterRoleBinding",
 26298       "consumes": [
 26299        "*/*"
 26300       ],
 26301       "produces": [
 26302        "application/json",
 26303        "application/yaml",
 26304        "application/vnd.kubernetes.protobuf"
 26305       ],
 26306       "schemes": [
 26307        "https"
 26308       ],
 26309       "tags": [
 26310        "rbacAuthorization_v1alpha1"
 26311       ],
 26312       "operationId": "readRbacAuthorizationV1alpha1ClusterRoleBinding",
 26313       "responses": {
 26314        "200": {
 26315         "description": "OK",
 26316         "schema": {
 26317          "$ref": "#/definitions/v1alpha1.ClusterRoleBinding"
 26318         }
 26319        },
 26320        "401": {
 26321         "description": "Unauthorized"
 26322        }
 26323       }
 26324      },
 26325      "put": {
 26326       "description": "replace the specified ClusterRoleBinding",
 26327       "consumes": [
 26328        "*/*"
 26329       ],
 26330       "produces": [
 26331        "application/json",
 26332        "application/yaml",
 26333        "application/vnd.kubernetes.protobuf"
 26334       ],
 26335       "schemes": [
 26336        "https"
 26337       ],
 26338       "tags": [
 26339        "rbacAuthorization_v1alpha1"
 26340       ],
 26341       "operationId": "replaceRbacAuthorizationV1alpha1ClusterRoleBinding",
 26342       "parameters": [
 26343        {
 26344         "name": "body",
 26345         "in": "body",
 26346         "required": true,
 26347         "schema": {
 26348          "$ref": "#/definitions/v1alpha1.ClusterRoleBinding"
 26349         }
 26350        }
 26351       ],
 26352       "responses": {
 26353        "200": {
 26354         "description": "OK",
 26355         "schema": {
 26356          "$ref": "#/definitions/v1alpha1.ClusterRoleBinding"
 26357         }
 26358        },
 26359        "401": {
 26360         "description": "Unauthorized"
 26361        }
 26362       }
 26363      },
 26364      "delete": {
 26365       "description": "delete a ClusterRoleBinding",
 26366       "consumes": [
 26367        "*/*"
 26368       ],
 26369       "produces": [
 26370        "application/json",
 26371        "application/yaml",
 26372        "application/vnd.kubernetes.protobuf"
 26373       ],
 26374       "schemes": [
 26375        "https"
 26376       ],
 26377       "tags": [
 26378        "rbacAuthorization_v1alpha1"
 26379       ],
 26380       "operationId": "deleteRbacAuthorizationV1alpha1ClusterRoleBinding",
 26381       "parameters": [
 26382        {
 26383         "name": "body",
 26384         "in": "body",
 26385         "required": true,
 26386         "schema": {
 26387          "$ref": "#/definitions/v1.DeleteOptions"
 26388         }
 26389        }
 26390       ],
 26391       "responses": {
 26392        "200": {
 26393         "description": "OK",
 26394         "schema": {
 26395          "$ref": "#/definitions/unversioned.Status"
 26396         }
 26397        },
 26398        "401": {
 26399         "description": "Unauthorized"
 26400        }
 26401       }
 26402      },
 26403      "patch": {
 26404       "description": "partially update the specified ClusterRoleBinding",
 26405       "consumes": [
 26406        "application/json-patch+json",
 26407        "application/merge-patch+json",
 26408        "application/strategic-merge-patch+json"
 26409       ],
 26410       "produces": [
 26411        "application/json",
 26412        "application/yaml",
 26413        "application/vnd.kubernetes.protobuf"
 26414       ],
 26415       "schemes": [
 26416        "https"
 26417       ],
 26418       "tags": [
 26419        "rbacAuthorization_v1alpha1"
 26420       ],
 26421       "operationId": "patchRbacAuthorizationV1alpha1ClusterRoleBinding",
 26422       "parameters": [
 26423        {
 26424         "name": "body",
 26425         "in": "body",
 26426         "required": true,
 26427         "schema": {
 26428          "$ref": "#/definitions/unversioned.Patch"
 26429         }
 26430        }
 26431       ],
 26432       "responses": {
 26433        "200": {
 26434         "description": "OK",
 26435         "schema": {
 26436          "$ref": "#/definitions/v1alpha1.ClusterRoleBinding"
 26437         }
 26438        },
 26439        "401": {
 26440         "description": "Unauthorized"
 26441        }
 26442       }
 26443      },
 26444      "parameters": [
 26445       {
 26446        "uniqueItems": true,
 26447        "type": "string",
 26448        "description": "name of the ClusterRoleBinding",
 26449        "name": "name",
 26450        "in": "path",
 26451        "required": true
 26452       },
 26453       {
 26454        "uniqueItems": true,
 26455        "type": "string",
 26456        "description": "If 'true', then the output is pretty printed.",
 26457        "name": "pretty",
 26458        "in": "query"
 26459       }
 26460      ]
 26461     },
 26462     "/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles": {
 26463      "get": {
 26464       "description": "list or watch objects of kind ClusterRole",
 26465       "consumes": [
 26466        "*/*"
 26467       ],
 26468       "produces": [
 26469        "application/json",
 26470        "application/yaml",
 26471        "application/vnd.kubernetes.protobuf",
 26472        "application/json;stream=watch",
 26473        "application/vnd.kubernetes.protobuf;stream=watch"
 26474       ],
 26475       "schemes": [
 26476        "https"
 26477       ],
 26478       "tags": [
 26479        "rbacAuthorization_v1alpha1"
 26480       ],
 26481       "operationId": "listRbacAuthorizationV1alpha1ClusterRole",
 26482       "parameters": [
 26483        {
 26484         "uniqueItems": true,
 26485         "type": "string",
 26486         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 26487         "name": "fieldSelector",
 26488         "in": "query"
 26489        },
 26490        {
 26491         "uniqueItems": true,
 26492         "type": "string",
 26493         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 26494         "name": "labelSelector",
 26495         "in": "query"
 26496        },
 26497        {
 26498         "uniqueItems": true,
 26499         "type": "string",
 26500         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 26501         "name": "resourceVersion",
 26502         "in": "query"
 26503        },
 26504        {
 26505         "uniqueItems": true,
 26506         "type": "integer",
 26507         "description": "Timeout for the list/watch call.",
 26508         "name": "timeoutSeconds",
 26509         "in": "query"
 26510        },
 26511        {
 26512         "uniqueItems": true,
 26513         "type": "boolean",
 26514         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 26515         "name": "watch",
 26516         "in": "query"
 26517        }
 26518       ],
 26519       "responses": {
 26520        "200": {
 26521         "description": "OK",
 26522         "schema": {
 26523          "$ref": "#/definitions/v1alpha1.ClusterRoleList"
 26524         }
 26525        },
 26526        "401": {
 26527         "description": "Unauthorized"
 26528        }
 26529       }
 26530      },
 26531      "post": {
 26532       "description": "create a ClusterRole",
 26533       "consumes": [
 26534        "*/*"
 26535       ],
 26536       "produces": [
 26537        "application/json",
 26538        "application/yaml",
 26539        "application/vnd.kubernetes.protobuf"
 26540       ],
 26541       "schemes": [
 26542        "https"
 26543       ],
 26544       "tags": [
 26545        "rbacAuthorization_v1alpha1"
 26546       ],
 26547       "operationId": "createRbacAuthorizationV1alpha1ClusterRole",
 26548       "parameters": [
 26549        {
 26550         "name": "body",
 26551         "in": "body",
 26552         "required": true,
 26553         "schema": {
 26554          "$ref": "#/definitions/v1alpha1.ClusterRole"
 26555         }
 26556        }
 26557       ],
 26558       "responses": {
 26559        "200": {
 26560         "description": "OK",
 26561         "schema": {
 26562          "$ref": "#/definitions/v1alpha1.ClusterRole"
 26563         }
 26564        },
 26565        "401": {
 26566         "description": "Unauthorized"
 26567        }
 26568       }
 26569      },
 26570      "delete": {
 26571       "description": "delete collection of ClusterRole",
 26572       "consumes": [
 26573        "*/*"
 26574       ],
 26575       "produces": [
 26576        "application/json",
 26577        "application/yaml",
 26578        "application/vnd.kubernetes.protobuf"
 26579       ],
 26580       "schemes": [
 26581        "https"
 26582       ],
 26583       "tags": [
 26584        "rbacAuthorization_v1alpha1"
 26585       ],
 26586       "operationId": "deleteRbacAuthorizationV1alpha1CollectionClusterRole",
 26587       "parameters": [
 26588        {
 26589         "uniqueItems": true,
 26590         "type": "string",
 26591         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 26592         "name": "fieldSelector",
 26593         "in": "query"
 26594        },
 26595        {
 26596         "uniqueItems": true,
 26597         "type": "string",
 26598         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 26599         "name": "labelSelector",
 26600         "in": "query"
 26601        },
 26602        {
 26603         "uniqueItems": true,
 26604         "type": "string",
 26605         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 26606         "name": "resourceVersion",
 26607         "in": "query"
 26608        },
 26609        {
 26610         "uniqueItems": true,
 26611         "type": "integer",
 26612         "description": "Timeout for the list/watch call.",
 26613         "name": "timeoutSeconds",
 26614         "in": "query"
 26615        },
 26616        {
 26617         "uniqueItems": true,
 26618         "type": "boolean",
 26619         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 26620         "name": "watch",
 26621         "in": "query"
 26622        }
 26623       ],
 26624       "responses": {
 26625        "200": {
 26626         "description": "OK",
 26627         "schema": {
 26628          "$ref": "#/definitions/unversioned.Status"
 26629         }
 26630        },
 26631        "401": {
 26632         "description": "Unauthorized"
 26633        }
 26634       }
 26635      },
 26636      "parameters": [
 26637       {
 26638        "uniqueItems": true,
 26639        "type": "string",
 26640        "description": "If 'true', then the output is pretty printed.",
 26641        "name": "pretty",
 26642        "in": "query"
 26643       }
 26644      ]
 26645     },
 26646     "/apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}": {
 26647      "get": {
 26648       "description": "read the specified ClusterRole",
 26649       "consumes": [
 26650        "*/*"
 26651       ],
 26652       "produces": [
 26653        "application/json",
 26654        "application/yaml",
 26655        "application/vnd.kubernetes.protobuf"
 26656       ],
 26657       "schemes": [
 26658        "https"
 26659       ],
 26660       "tags": [
 26661        "rbacAuthorization_v1alpha1"
 26662       ],
 26663       "operationId": "readRbacAuthorizationV1alpha1ClusterRole",
 26664       "responses": {
 26665        "200": {
 26666         "description": "OK",
 26667         "schema": {
 26668          "$ref": "#/definitions/v1alpha1.ClusterRole"
 26669         }
 26670        },
 26671        "401": {
 26672         "description": "Unauthorized"
 26673        }
 26674       }
 26675      },
 26676      "put": {
 26677       "description": "replace the specified ClusterRole",
 26678       "consumes": [
 26679        "*/*"
 26680       ],
 26681       "produces": [
 26682        "application/json",
 26683        "application/yaml",
 26684        "application/vnd.kubernetes.protobuf"
 26685       ],
 26686       "schemes": [
 26687        "https"
 26688       ],
 26689       "tags": [
 26690        "rbacAuthorization_v1alpha1"
 26691       ],
 26692       "operationId": "replaceRbacAuthorizationV1alpha1ClusterRole",
 26693       "parameters": [
 26694        {
 26695         "name": "body",
 26696         "in": "body",
 26697         "required": true,
 26698         "schema": {
 26699          "$ref": "#/definitions/v1alpha1.ClusterRole"
 26700         }
 26701        }
 26702       ],
 26703       "responses": {
 26704        "200": {
 26705         "description": "OK",
 26706         "schema": {
 26707          "$ref": "#/definitions/v1alpha1.ClusterRole"
 26708         }
 26709        },
 26710        "401": {
 26711         "description": "Unauthorized"
 26712        }
 26713       }
 26714      },
 26715      "delete": {
 26716       "description": "delete a ClusterRole",
 26717       "consumes": [
 26718        "*/*"
 26719       ],
 26720       "produces": [
 26721        "application/json",
 26722        "application/yaml",
 26723        "application/vnd.kubernetes.protobuf"
 26724       ],
 26725       "schemes": [
 26726        "https"
 26727       ],
 26728       "tags": [
 26729        "rbacAuthorization_v1alpha1"
 26730       ],
 26731       "operationId": "deleteRbacAuthorizationV1alpha1ClusterRole",
 26732       "parameters": [
 26733        {
 26734         "name": "body",
 26735         "in": "body",
 26736         "required": true,
 26737         "schema": {
 26738          "$ref": "#/definitions/v1.DeleteOptions"
 26739         }
 26740        }
 26741       ],
 26742       "responses": {
 26743        "200": {
 26744         "description": "OK",
 26745         "schema": {
 26746          "$ref": "#/definitions/unversioned.Status"
 26747         }
 26748        },
 26749        "401": {
 26750         "description": "Unauthorized"
 26751        }
 26752       }
 26753      },
 26754      "patch": {
 26755       "description": "partially update the specified ClusterRole",
 26756       "consumes": [
 26757        "application/json-patch+json",
 26758        "application/merge-patch+json",
 26759        "application/strategic-merge-patch+json"
 26760       ],
 26761       "produces": [
 26762        "application/json",
 26763        "application/yaml",
 26764        "application/vnd.kubernetes.protobuf"
 26765       ],
 26766       "schemes": [
 26767        "https"
 26768       ],
 26769       "tags": [
 26770        "rbacAuthorization_v1alpha1"
 26771       ],
 26772       "operationId": "patchRbacAuthorizationV1alpha1ClusterRole",
 26773       "parameters": [
 26774        {
 26775         "name": "body",
 26776         "in": "body",
 26777         "required": true,
 26778         "schema": {
 26779          "$ref": "#/definitions/unversioned.Patch"
 26780         }
 26781        }
 26782       ],
 26783       "responses": {
 26784        "200": {
 26785         "description": "OK",
 26786         "schema": {
 26787          "$ref": "#/definitions/v1alpha1.ClusterRole"
 26788         }
 26789        },
 26790        "401": {
 26791         "description": "Unauthorized"
 26792        }
 26793       }
 26794      },
 26795      "parameters": [
 26796       {
 26797        "uniqueItems": true,
 26798        "type": "string",
 26799        "description": "name of the ClusterRole",
 26800        "name": "name",
 26801        "in": "path",
 26802        "required": true
 26803       },
 26804       {
 26805        "uniqueItems": true,
 26806        "type": "string",
 26807        "description": "If 'true', then the output is pretty printed.",
 26808        "name": "pretty",
 26809        "in": "query"
 26810       }
 26811      ]
 26812     },
 26813     "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings": {
 26814      "get": {
 26815       "description": "list or watch objects of kind RoleBinding",
 26816       "consumes": [
 26817        "*/*"
 26818       ],
 26819       "produces": [
 26820        "application/json",
 26821        "application/yaml",
 26822        "application/vnd.kubernetes.protobuf",
 26823        "application/json;stream=watch",
 26824        "application/vnd.kubernetes.protobuf;stream=watch"
 26825       ],
 26826       "schemes": [
 26827        "https"
 26828       ],
 26829       "tags": [
 26830        "rbacAuthorization_v1alpha1"
 26831       ],
 26832       "operationId": "listRbacAuthorizationV1alpha1NamespacedRoleBinding",
 26833       "parameters": [
 26834        {
 26835         "uniqueItems": true,
 26836         "type": "string",
 26837         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 26838         "name": "fieldSelector",
 26839         "in": "query"
 26840        },
 26841        {
 26842         "uniqueItems": true,
 26843         "type": "string",
 26844         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 26845         "name": "labelSelector",
 26846         "in": "query"
 26847        },
 26848        {
 26849         "uniqueItems": true,
 26850         "type": "string",
 26851         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 26852         "name": "resourceVersion",
 26853         "in": "query"
 26854        },
 26855        {
 26856         "uniqueItems": true,
 26857         "type": "integer",
 26858         "description": "Timeout for the list/watch call.",
 26859         "name": "timeoutSeconds",
 26860         "in": "query"
 26861        },
 26862        {
 26863         "uniqueItems": true,
 26864         "type": "boolean",
 26865         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 26866         "name": "watch",
 26867         "in": "query"
 26868        }
 26869       ],
 26870       "responses": {
 26871        "200": {
 26872         "description": "OK",
 26873         "schema": {
 26874          "$ref": "#/definitions/v1alpha1.RoleBindingList"
 26875         }
 26876        },
 26877        "401": {
 26878         "description": "Unauthorized"
 26879        }
 26880       }
 26881      },
 26882      "post": {
 26883       "description": "create a RoleBinding",
 26884       "consumes": [
 26885        "*/*"
 26886       ],
 26887       "produces": [
 26888        "application/json",
 26889        "application/yaml",
 26890        "application/vnd.kubernetes.protobuf"
 26891       ],
 26892       "schemes": [
 26893        "https"
 26894       ],
 26895       "tags": [
 26896        "rbacAuthorization_v1alpha1"
 26897       ],
 26898       "operationId": "createRbacAuthorizationV1alpha1NamespacedRoleBinding",
 26899       "parameters": [
 26900        {
 26901         "name": "body",
 26902         "in": "body",
 26903         "required": true,
 26904         "schema": {
 26905          "$ref": "#/definitions/v1alpha1.RoleBinding"
 26906         }
 26907        }
 26908       ],
 26909       "responses": {
 26910        "200": {
 26911         "description": "OK",
 26912         "schema": {
 26913          "$ref": "#/definitions/v1alpha1.RoleBinding"
 26914         }
 26915        },
 26916        "401": {
 26917         "description": "Unauthorized"
 26918        }
 26919       }
 26920      },
 26921      "delete": {
 26922       "description": "delete collection of RoleBinding",
 26923       "consumes": [
 26924        "*/*"
 26925       ],
 26926       "produces": [
 26927        "application/json",
 26928        "application/yaml",
 26929        "application/vnd.kubernetes.protobuf"
 26930       ],
 26931       "schemes": [
 26932        "https"
 26933       ],
 26934       "tags": [
 26935        "rbacAuthorization_v1alpha1"
 26936       ],
 26937       "operationId": "deleteRbacAuthorizationV1alpha1CollectionNamespacedRoleBinding",
 26938       "parameters": [
 26939        {
 26940         "uniqueItems": true,
 26941         "type": "string",
 26942         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 26943         "name": "fieldSelector",
 26944         "in": "query"
 26945        },
 26946        {
 26947         "uniqueItems": true,
 26948         "type": "string",
 26949         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 26950         "name": "labelSelector",
 26951         "in": "query"
 26952        },
 26953        {
 26954         "uniqueItems": true,
 26955         "type": "string",
 26956         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 26957         "name": "resourceVersion",
 26958         "in": "query"
 26959        },
 26960        {
 26961         "uniqueItems": true,
 26962         "type": "integer",
 26963         "description": "Timeout for the list/watch call.",
 26964         "name": "timeoutSeconds",
 26965         "in": "query"
 26966        },
 26967        {
 26968         "uniqueItems": true,
 26969         "type": "boolean",
 26970         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 26971         "name": "watch",
 26972         "in": "query"
 26973        }
 26974       ],
 26975       "responses": {
 26976        "200": {
 26977         "description": "OK",
 26978         "schema": {
 26979          "$ref": "#/definitions/unversioned.Status"
 26980         }
 26981        },
 26982        "401": {
 26983         "description": "Unauthorized"
 26984        }
 26985       }
 26986      },
 26987      "parameters": [
 26988       {
 26989        "uniqueItems": true,
 26990        "type": "string",
 26991        "description": "object name and auth scope, such as for teams and projects",
 26992        "name": "namespace",
 26993        "in": "path",
 26994        "required": true
 26995       },
 26996       {
 26997        "uniqueItems": true,
 26998        "type": "string",
 26999        "description": "If 'true', then the output is pretty printed.",
 27000        "name": "pretty",
 27001        "in": "query"
 27002       }
 27003      ]
 27004     },
 27005     "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings/{name}": {
 27006      "get": {
 27007       "description": "read the specified RoleBinding",
 27008       "consumes": [
 27009        "*/*"
 27010       ],
 27011       "produces": [
 27012        "application/json",
 27013        "application/yaml",
 27014        "application/vnd.kubernetes.protobuf"
 27015       ],
 27016       "schemes": [
 27017        "https"
 27018       ],
 27019       "tags": [
 27020        "rbacAuthorization_v1alpha1"
 27021       ],
 27022       "operationId": "readRbacAuthorizationV1alpha1NamespacedRoleBinding",
 27023       "responses": {
 27024        "200": {
 27025         "description": "OK",
 27026         "schema": {
 27027          "$ref": "#/definitions/v1alpha1.RoleBinding"
 27028         }
 27029        },
 27030        "401": {
 27031         "description": "Unauthorized"
 27032        }
 27033       }
 27034      },
 27035      "put": {
 27036       "description": "replace the specified RoleBinding",
 27037       "consumes": [
 27038        "*/*"
 27039       ],
 27040       "produces": [
 27041        "application/json",
 27042        "application/yaml",
 27043        "application/vnd.kubernetes.protobuf"
 27044       ],
 27045       "schemes": [
 27046        "https"
 27047       ],
 27048       "tags": [
 27049        "rbacAuthorization_v1alpha1"
 27050       ],
 27051       "operationId": "replaceRbacAuthorizationV1alpha1NamespacedRoleBinding",
 27052       "parameters": [
 27053        {
 27054         "name": "body",
 27055         "in": "body",
 27056         "required": true,
 27057         "schema": {
 27058          "$ref": "#/definitions/v1alpha1.RoleBinding"
 27059         }
 27060        }
 27061       ],
 27062       "responses": {
 27063        "200": {
 27064         "description": "OK",
 27065         "schema": {
 27066          "$ref": "#/definitions/v1alpha1.RoleBinding"
 27067         }
 27068        },
 27069        "401": {
 27070         "description": "Unauthorized"
 27071        }
 27072       }
 27073      },
 27074      "delete": {
 27075       "description": "delete a RoleBinding",
 27076       "consumes": [
 27077        "*/*"
 27078       ],
 27079       "produces": [
 27080        "application/json",
 27081        "application/yaml",
 27082        "application/vnd.kubernetes.protobuf"
 27083       ],
 27084       "schemes": [
 27085        "https"
 27086       ],
 27087       "tags": [
 27088        "rbacAuthorization_v1alpha1"
 27089       ],
 27090       "operationId": "deleteRbacAuthorizationV1alpha1NamespacedRoleBinding",
 27091       "parameters": [
 27092        {
 27093         "name": "body",
 27094         "in": "body",
 27095         "required": true,
 27096         "schema": {
 27097          "$ref": "#/definitions/v1.DeleteOptions"
 27098         }
 27099        }
 27100       ],
 27101       "responses": {
 27102        "200": {
 27103         "description": "OK",
 27104         "schema": {
 27105          "$ref": "#/definitions/unversioned.Status"
 27106         }
 27107        },
 27108        "401": {
 27109         "description": "Unauthorized"
 27110        }
 27111       }
 27112      },
 27113      "patch": {
 27114       "description": "partially update the specified RoleBinding",
 27115       "consumes": [
 27116        "application/json-patch+json",
 27117        "application/merge-patch+json",
 27118        "application/strategic-merge-patch+json"
 27119       ],
 27120       "produces": [
 27121        "application/json",
 27122        "application/yaml",
 27123        "application/vnd.kubernetes.protobuf"
 27124       ],
 27125       "schemes": [
 27126        "https"
 27127       ],
 27128       "tags": [
 27129        "rbacAuthorization_v1alpha1"
 27130       ],
 27131       "operationId": "patchRbacAuthorizationV1alpha1NamespacedRoleBinding",
 27132       "parameters": [
 27133        {
 27134         "name": "body",
 27135         "in": "body",
 27136         "required": true,
 27137         "schema": {
 27138          "$ref": "#/definitions/unversioned.Patch"
 27139         }
 27140        }
 27141       ],
 27142       "responses": {
 27143        "200": {
 27144         "description": "OK",
 27145         "schema": {
 27146          "$ref": "#/definitions/v1alpha1.RoleBinding"
 27147         }
 27148        },
 27149        "401": {
 27150         "description": "Unauthorized"
 27151        }
 27152       }
 27153      },
 27154      "parameters": [
 27155       {
 27156        "uniqueItems": true,
 27157        "type": "string",
 27158        "description": "name of the RoleBinding",
 27159        "name": "name",
 27160        "in": "path",
 27161        "required": true
 27162       },
 27163       {
 27164        "uniqueItems": true,
 27165        "type": "string",
 27166        "description": "object name and auth scope, such as for teams and projects",
 27167        "name": "namespace",
 27168        "in": "path",
 27169        "required": true
 27170       },
 27171       {
 27172        "uniqueItems": true,
 27173        "type": "string",
 27174        "description": "If 'true', then the output is pretty printed.",
 27175        "name": "pretty",
 27176        "in": "query"
 27177       }
 27178      ]
 27179     },
 27180     "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles": {
 27181      "get": {
 27182       "description": "list or watch objects of kind Role",
 27183       "consumes": [
 27184        "*/*"
 27185       ],
 27186       "produces": [
 27187        "application/json",
 27188        "application/yaml",
 27189        "application/vnd.kubernetes.protobuf",
 27190        "application/json;stream=watch",
 27191        "application/vnd.kubernetes.protobuf;stream=watch"
 27192       ],
 27193       "schemes": [
 27194        "https"
 27195       ],
 27196       "tags": [
 27197        "rbacAuthorization_v1alpha1"
 27198       ],
 27199       "operationId": "listRbacAuthorizationV1alpha1NamespacedRole",
 27200       "parameters": [
 27201        {
 27202         "uniqueItems": true,
 27203         "type": "string",
 27204         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 27205         "name": "fieldSelector",
 27206         "in": "query"
 27207        },
 27208        {
 27209         "uniqueItems": true,
 27210         "type": "string",
 27211         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 27212         "name": "labelSelector",
 27213         "in": "query"
 27214        },
 27215        {
 27216         "uniqueItems": true,
 27217         "type": "string",
 27218         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 27219         "name": "resourceVersion",
 27220         "in": "query"
 27221        },
 27222        {
 27223         "uniqueItems": true,
 27224         "type": "integer",
 27225         "description": "Timeout for the list/watch call.",
 27226         "name": "timeoutSeconds",
 27227         "in": "query"
 27228        },
 27229        {
 27230         "uniqueItems": true,
 27231         "type": "boolean",
 27232         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 27233         "name": "watch",
 27234         "in": "query"
 27235        }
 27236       ],
 27237       "responses": {
 27238        "200": {
 27239         "description": "OK",
 27240         "schema": {
 27241          "$ref": "#/definitions/v1alpha1.RoleList"
 27242         }
 27243        },
 27244        "401": {
 27245         "description": "Unauthorized"
 27246        }
 27247       }
 27248      },
 27249      "post": {
 27250       "description": "create a Role",
 27251       "consumes": [
 27252        "*/*"
 27253       ],
 27254       "produces": [
 27255        "application/json",
 27256        "application/yaml",
 27257        "application/vnd.kubernetes.protobuf"
 27258       ],
 27259       "schemes": [
 27260        "https"
 27261       ],
 27262       "tags": [
 27263        "rbacAuthorization_v1alpha1"
 27264       ],
 27265       "operationId": "createRbacAuthorizationV1alpha1NamespacedRole",
 27266       "parameters": [
 27267        {
 27268         "name": "body",
 27269         "in": "body",
 27270         "required": true,
 27271         "schema": {
 27272          "$ref": "#/definitions/v1alpha1.Role"
 27273         }
 27274        }
 27275       ],
 27276       "responses": {
 27277        "200": {
 27278         "description": "OK",
 27279         "schema": {
 27280          "$ref": "#/definitions/v1alpha1.Role"
 27281         }
 27282        },
 27283        "401": {
 27284         "description": "Unauthorized"
 27285        }
 27286       }
 27287      },
 27288      "delete": {
 27289       "description": "delete collection of Role",
 27290       "consumes": [
 27291        "*/*"
 27292       ],
 27293       "produces": [
 27294        "application/json",
 27295        "application/yaml",
 27296        "application/vnd.kubernetes.protobuf"
 27297       ],
 27298       "schemes": [
 27299        "https"
 27300       ],
 27301       "tags": [
 27302        "rbacAuthorization_v1alpha1"
 27303       ],
 27304       "operationId": "deleteRbacAuthorizationV1alpha1CollectionNamespacedRole",
 27305       "parameters": [
 27306        {
 27307         "uniqueItems": true,
 27308         "type": "string",
 27309         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 27310         "name": "fieldSelector",
 27311         "in": "query"
 27312        },
 27313        {
 27314         "uniqueItems": true,
 27315         "type": "string",
 27316         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 27317         "name": "labelSelector",
 27318         "in": "query"
 27319        },
 27320        {
 27321         "uniqueItems": true,
 27322         "type": "string",
 27323         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 27324         "name": "resourceVersion",
 27325         "in": "query"
 27326        },
 27327        {
 27328         "uniqueItems": true,
 27329         "type": "integer",
 27330         "description": "Timeout for the list/watch call.",
 27331         "name": "timeoutSeconds",
 27332         "in": "query"
 27333        },
 27334        {
 27335         "uniqueItems": true,
 27336         "type": "boolean",
 27337         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 27338         "name": "watch",
 27339         "in": "query"
 27340        }
 27341       ],
 27342       "responses": {
 27343        "200": {
 27344         "description": "OK",
 27345         "schema": {
 27346          "$ref": "#/definitions/unversioned.Status"
 27347         }
 27348        },
 27349        "401": {
 27350         "description": "Unauthorized"
 27351        }
 27352       }
 27353      },
 27354      "parameters": [
 27355       {
 27356        "uniqueItems": true,
 27357        "type": "string",
 27358        "description": "object name and auth scope, such as for teams and projects",
 27359        "name": "namespace",
 27360        "in": "path",
 27361        "required": true
 27362       },
 27363       {
 27364        "uniqueItems": true,
 27365        "type": "string",
 27366        "description": "If 'true', then the output is pretty printed.",
 27367        "name": "pretty",
 27368        "in": "query"
 27369       }
 27370      ]
 27371     },
 27372     "/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles/{name}": {
 27373      "get": {
 27374       "description": "read the specified Role",
 27375       "consumes": [
 27376        "*/*"
 27377       ],
 27378       "produces": [
 27379        "application/json",
 27380        "application/yaml",
 27381        "application/vnd.kubernetes.protobuf"
 27382       ],
 27383       "schemes": [
 27384        "https"
 27385       ],
 27386       "tags": [
 27387        "rbacAuthorization_v1alpha1"
 27388       ],
 27389       "operationId": "readRbacAuthorizationV1alpha1NamespacedRole",
 27390       "responses": {
 27391        "200": {
 27392         "description": "OK",
 27393         "schema": {
 27394          "$ref": "#/definitions/v1alpha1.Role"
 27395         }
 27396        },
 27397        "401": {
 27398         "description": "Unauthorized"
 27399        }
 27400       }
 27401      },
 27402      "put": {
 27403       "description": "replace the specified Role",
 27404       "consumes": [
 27405        "*/*"
 27406       ],
 27407       "produces": [
 27408        "application/json",
 27409        "application/yaml",
 27410        "application/vnd.kubernetes.protobuf"
 27411       ],
 27412       "schemes": [
 27413        "https"
 27414       ],
 27415       "tags": [
 27416        "rbacAuthorization_v1alpha1"
 27417       ],
 27418       "operationId": "replaceRbacAuthorizationV1alpha1NamespacedRole",
 27419       "parameters": [
 27420        {
 27421         "name": "body",
 27422         "in": "body",
 27423         "required": true,
 27424         "schema": {
 27425          "$ref": "#/definitions/v1alpha1.Role"
 27426         }
 27427        }
 27428       ],
 27429       "responses": {
 27430        "200": {
 27431         "description": "OK",
 27432         "schema": {
 27433          "$ref": "#/definitions/v1alpha1.Role"
 27434         }
 27435        },
 27436        "401": {
 27437         "description": "Unauthorized"
 27438        }
 27439       }
 27440      },
 27441      "delete": {
 27442       "description": "delete a Role",
 27443       "consumes": [
 27444        "*/*"
 27445       ],
 27446       "produces": [
 27447        "application/json",
 27448        "application/yaml",
 27449        "application/vnd.kubernetes.protobuf"
 27450       ],
 27451       "schemes": [
 27452        "https"
 27453       ],
 27454       "tags": [
 27455        "rbacAuthorization_v1alpha1"
 27456       ],
 27457       "operationId": "deleteRbacAuthorizationV1alpha1NamespacedRole",
 27458       "parameters": [
 27459        {
 27460         "name": "body",
 27461         "in": "body",
 27462         "required": true,
 27463         "schema": {
 27464          "$ref": "#/definitions/v1.DeleteOptions"
 27465         }
 27466        }
 27467       ],
 27468       "responses": {
 27469        "200": {
 27470         "description": "OK",
 27471         "schema": {
 27472          "$ref": "#/definitions/unversioned.Status"
 27473         }
 27474        },
 27475        "401": {
 27476         "description": "Unauthorized"
 27477        }
 27478       }
 27479      },
 27480      "patch": {
 27481       "description": "partially update the specified Role",
 27482       "consumes": [
 27483        "application/json-patch+json",
 27484        "application/merge-patch+json",
 27485        "application/strategic-merge-patch+json"
 27486       ],
 27487       "produces": [
 27488        "application/json",
 27489        "application/yaml",
 27490        "application/vnd.kubernetes.protobuf"
 27491       ],
 27492       "schemes": [
 27493        "https"
 27494       ],
 27495       "tags": [
 27496        "rbacAuthorization_v1alpha1"
 27497       ],
 27498       "operationId": "patchRbacAuthorizationV1alpha1NamespacedRole",
 27499       "parameters": [
 27500        {
 27501         "name": "body",
 27502         "in": "body",
 27503         "required": true,
 27504         "schema": {
 27505          "$ref": "#/definitions/unversioned.Patch"
 27506         }
 27507        }
 27508       ],
 27509       "responses": {
 27510        "200": {
 27511         "description": "OK",
 27512         "schema": {
 27513          "$ref": "#/definitions/v1alpha1.Role"
 27514         }
 27515        },
 27516        "401": {
 27517         "description": "Unauthorized"
 27518        }
 27519       }
 27520      },
 27521      "parameters": [
 27522       {
 27523        "uniqueItems": true,
 27524        "type": "string",
 27525        "description": "name of the Role",
 27526        "name": "name",
 27527        "in": "path",
 27528        "required": true
 27529       },
 27530       {
 27531        "uniqueItems": true,
 27532        "type": "string",
 27533        "description": "object name and auth scope, such as for teams and projects",
 27534        "name": "namespace",
 27535        "in": "path",
 27536        "required": true
 27537       },
 27538       {
 27539        "uniqueItems": true,
 27540        "type": "string",
 27541        "description": "If 'true', then the output is pretty printed.",
 27542        "name": "pretty",
 27543        "in": "query"
 27544       }
 27545      ]
 27546     },
 27547     "/apis/rbac.authorization.k8s.io/v1alpha1/rolebindings": {
 27548      "get": {
 27549       "description": "list or watch objects of kind RoleBinding",
 27550       "consumes": [
 27551        "*/*"
 27552       ],
 27553       "produces": [
 27554        "application/json",
 27555        "application/yaml",
 27556        "application/vnd.kubernetes.protobuf",
 27557        "application/json;stream=watch",
 27558        "application/vnd.kubernetes.protobuf;stream=watch"
 27559       ],
 27560       "schemes": [
 27561        "https"
 27562       ],
 27563       "tags": [
 27564        "rbacAuthorization_v1alpha1"
 27565       ],
 27566       "operationId": "listRbacAuthorizationV1alpha1RoleBindingForAllNamespaces",
 27567       "responses": {
 27568        "200": {
 27569         "description": "OK",
 27570         "schema": {
 27571          "$ref": "#/definitions/v1alpha1.RoleBindingList"
 27572         }
 27573        },
 27574        "401": {
 27575         "description": "Unauthorized"
 27576        }
 27577       }
 27578      },
 27579      "parameters": [
 27580       {
 27581        "uniqueItems": true,
 27582        "type": "string",
 27583        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 27584        "name": "fieldSelector",
 27585        "in": "query"
 27586       },
 27587       {
 27588        "uniqueItems": true,
 27589        "type": "string",
 27590        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 27591        "name": "labelSelector",
 27592        "in": "query"
 27593       },
 27594       {
 27595        "uniqueItems": true,
 27596        "type": "string",
 27597        "description": "If 'true', then the output is pretty printed.",
 27598        "name": "pretty",
 27599        "in": "query"
 27600       },
 27601       {
 27602        "uniqueItems": true,
 27603        "type": "string",
 27604        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 27605        "name": "resourceVersion",
 27606        "in": "query"
 27607       },
 27608       {
 27609        "uniqueItems": true,
 27610        "type": "integer",
 27611        "description": "Timeout for the list/watch call.",
 27612        "name": "timeoutSeconds",
 27613        "in": "query"
 27614       },
 27615       {
 27616        "uniqueItems": true,
 27617        "type": "boolean",
 27618        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 27619        "name": "watch",
 27620        "in": "query"
 27621       }
 27622      ]
 27623     },
 27624     "/apis/rbac.authorization.k8s.io/v1alpha1/roles": {
 27625      "get": {
 27626       "description": "list or watch objects of kind Role",
 27627       "consumes": [
 27628        "*/*"
 27629       ],
 27630       "produces": [
 27631        "application/json",
 27632        "application/yaml",
 27633        "application/vnd.kubernetes.protobuf",
 27634        "application/json;stream=watch",
 27635        "application/vnd.kubernetes.protobuf;stream=watch"
 27636       ],
 27637       "schemes": [
 27638        "https"
 27639       ],
 27640       "tags": [
 27641        "rbacAuthorization_v1alpha1"
 27642       ],
 27643       "operationId": "listRbacAuthorizationV1alpha1RoleForAllNamespaces",
 27644       "responses": {
 27645        "200": {
 27646         "description": "OK",
 27647         "schema": {
 27648          "$ref": "#/definitions/v1alpha1.RoleList"
 27649         }
 27650        },
 27651        "401": {
 27652         "description": "Unauthorized"
 27653        }
 27654       }
 27655      },
 27656      "parameters": [
 27657       {
 27658        "uniqueItems": true,
 27659        "type": "string",
 27660        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 27661        "name": "fieldSelector",
 27662        "in": "query"
 27663       },
 27664       {
 27665        "uniqueItems": true,
 27666        "type": "string",
 27667        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 27668        "name": "labelSelector",
 27669        "in": "query"
 27670       },
 27671       {
 27672        "uniqueItems": true,
 27673        "type": "string",
 27674        "description": "If 'true', then the output is pretty printed.",
 27675        "name": "pretty",
 27676        "in": "query"
 27677       },
 27678       {
 27679        "uniqueItems": true,
 27680        "type": "string",
 27681        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 27682        "name": "resourceVersion",
 27683        "in": "query"
 27684       },
 27685       {
 27686        "uniqueItems": true,
 27687        "type": "integer",
 27688        "description": "Timeout for the list/watch call.",
 27689        "name": "timeoutSeconds",
 27690        "in": "query"
 27691       },
 27692       {
 27693        "uniqueItems": true,
 27694        "type": "boolean",
 27695        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 27696        "name": "watch",
 27697        "in": "query"
 27698       }
 27699      ]
 27700     },
 27701     "/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings": {
 27702      "get": {
 27703       "description": "watch individual changes to a list of ClusterRoleBinding",
 27704       "consumes": [
 27705        "*/*"
 27706       ],
 27707       "produces": [
 27708        "application/json",
 27709        "application/yaml",
 27710        "application/vnd.kubernetes.protobuf",
 27711        "application/json;stream=watch",
 27712        "application/vnd.kubernetes.protobuf;stream=watch"
 27713       ],
 27714       "schemes": [
 27715        "https"
 27716       ],
 27717       "tags": [
 27718        "rbacAuthorization_v1alpha1"
 27719       ],
 27720       "operationId": "watchRbacAuthorizationV1alpha1ClusterRoleBindingList",
 27721       "responses": {
 27722        "200": {
 27723         "description": "OK",
 27724         "schema": {
 27725          "$ref": "#/definitions/versioned.Event"
 27726         }
 27727        },
 27728        "401": {
 27729         "description": "Unauthorized"
 27730        }
 27731       }
 27732      },
 27733      "parameters": [
 27734       {
 27735        "uniqueItems": true,
 27736        "type": "string",
 27737        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 27738        "name": "fieldSelector",
 27739        "in": "query"
 27740       },
 27741       {
 27742        "uniqueItems": true,
 27743        "type": "string",
 27744        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 27745        "name": "labelSelector",
 27746        "in": "query"
 27747       },
 27748       {
 27749        "uniqueItems": true,
 27750        "type": "string",
 27751        "description": "If 'true', then the output is pretty printed.",
 27752        "name": "pretty",
 27753        "in": "query"
 27754       },
 27755       {
 27756        "uniqueItems": true,
 27757        "type": "string",
 27758        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 27759        "name": "resourceVersion",
 27760        "in": "query"
 27761       },
 27762       {
 27763        "uniqueItems": true,
 27764        "type": "integer",
 27765        "description": "Timeout for the list/watch call.",
 27766        "name": "timeoutSeconds",
 27767        "in": "query"
 27768       },
 27769       {
 27770        "uniqueItems": true,
 27771        "type": "boolean",
 27772        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 27773        "name": "watch",
 27774        "in": "query"
 27775       }
 27776      ]
 27777     },
 27778     "/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterrolebindings/{name}": {
 27779      "get": {
 27780       "description": "watch changes to an object of kind ClusterRoleBinding",
 27781       "consumes": [
 27782        "*/*"
 27783       ],
 27784       "produces": [
 27785        "application/json",
 27786        "application/yaml",
 27787        "application/vnd.kubernetes.protobuf",
 27788        "application/json;stream=watch",
 27789        "application/vnd.kubernetes.protobuf;stream=watch"
 27790       ],
 27791       "schemes": [
 27792        "https"
 27793       ],
 27794       "tags": [
 27795        "rbacAuthorization_v1alpha1"
 27796       ],
 27797       "operationId": "watchRbacAuthorizationV1alpha1ClusterRoleBinding",
 27798       "responses": {
 27799        "200": {
 27800         "description": "OK",
 27801         "schema": {
 27802          "$ref": "#/definitions/versioned.Event"
 27803         }
 27804        },
 27805        "401": {
 27806         "description": "Unauthorized"
 27807        }
 27808       }
 27809      },
 27810      "parameters": [
 27811       {
 27812        "uniqueItems": true,
 27813        "type": "string",
 27814        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 27815        "name": "fieldSelector",
 27816        "in": "query"
 27817       },
 27818       {
 27819        "uniqueItems": true,
 27820        "type": "string",
 27821        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 27822        "name": "labelSelector",
 27823        "in": "query"
 27824       },
 27825       {
 27826        "uniqueItems": true,
 27827        "type": "string",
 27828        "description": "name of the ClusterRoleBinding",
 27829        "name": "name",
 27830        "in": "path",
 27831        "required": true
 27832       },
 27833       {
 27834        "uniqueItems": true,
 27835        "type": "string",
 27836        "description": "If 'true', then the output is pretty printed.",
 27837        "name": "pretty",
 27838        "in": "query"
 27839       },
 27840       {
 27841        "uniqueItems": true,
 27842        "type": "string",
 27843        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 27844        "name": "resourceVersion",
 27845        "in": "query"
 27846       },
 27847       {
 27848        "uniqueItems": true,
 27849        "type": "integer",
 27850        "description": "Timeout for the list/watch call.",
 27851        "name": "timeoutSeconds",
 27852        "in": "query"
 27853       },
 27854       {
 27855        "uniqueItems": true,
 27856        "type": "boolean",
 27857        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 27858        "name": "watch",
 27859        "in": "query"
 27860       }
 27861      ]
 27862     },
 27863     "/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles": {
 27864      "get": {
 27865       "description": "watch individual changes to a list of ClusterRole",
 27866       "consumes": [
 27867        "*/*"
 27868       ],
 27869       "produces": [
 27870        "application/json",
 27871        "application/yaml",
 27872        "application/vnd.kubernetes.protobuf",
 27873        "application/json;stream=watch",
 27874        "application/vnd.kubernetes.protobuf;stream=watch"
 27875       ],
 27876       "schemes": [
 27877        "https"
 27878       ],
 27879       "tags": [
 27880        "rbacAuthorization_v1alpha1"
 27881       ],
 27882       "operationId": "watchRbacAuthorizationV1alpha1ClusterRoleList",
 27883       "responses": {
 27884        "200": {
 27885         "description": "OK",
 27886         "schema": {
 27887          "$ref": "#/definitions/versioned.Event"
 27888         }
 27889        },
 27890        "401": {
 27891         "description": "Unauthorized"
 27892        }
 27893       }
 27894      },
 27895      "parameters": [
 27896       {
 27897        "uniqueItems": true,
 27898        "type": "string",
 27899        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 27900        "name": "fieldSelector",
 27901        "in": "query"
 27902       },
 27903       {
 27904        "uniqueItems": true,
 27905        "type": "string",
 27906        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 27907        "name": "labelSelector",
 27908        "in": "query"
 27909       },
 27910       {
 27911        "uniqueItems": true,
 27912        "type": "string",
 27913        "description": "If 'true', then the output is pretty printed.",
 27914        "name": "pretty",
 27915        "in": "query"
 27916       },
 27917       {
 27918        "uniqueItems": true,
 27919        "type": "string",
 27920        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 27921        "name": "resourceVersion",
 27922        "in": "query"
 27923       },
 27924       {
 27925        "uniqueItems": true,
 27926        "type": "integer",
 27927        "description": "Timeout for the list/watch call.",
 27928        "name": "timeoutSeconds",
 27929        "in": "query"
 27930       },
 27931       {
 27932        "uniqueItems": true,
 27933        "type": "boolean",
 27934        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 27935        "name": "watch",
 27936        "in": "query"
 27937       }
 27938      ]
 27939     },
 27940     "/apis/rbac.authorization.k8s.io/v1alpha1/watch/clusterroles/{name}": {
 27941      "get": {
 27942       "description": "watch changes to an object of kind ClusterRole",
 27943       "consumes": [
 27944        "*/*"
 27945       ],
 27946       "produces": [
 27947        "application/json",
 27948        "application/yaml",
 27949        "application/vnd.kubernetes.protobuf",
 27950        "application/json;stream=watch",
 27951        "application/vnd.kubernetes.protobuf;stream=watch"
 27952       ],
 27953       "schemes": [
 27954        "https"
 27955       ],
 27956       "tags": [
 27957        "rbacAuthorization_v1alpha1"
 27958       ],
 27959       "operationId": "watchRbacAuthorizationV1alpha1ClusterRole",
 27960       "responses": {
 27961        "200": {
 27962         "description": "OK",
 27963         "schema": {
 27964          "$ref": "#/definitions/versioned.Event"
 27965         }
 27966        },
 27967        "401": {
 27968         "description": "Unauthorized"
 27969        }
 27970       }
 27971      },
 27972      "parameters": [
 27973       {
 27974        "uniqueItems": true,
 27975        "type": "string",
 27976        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 27977        "name": "fieldSelector",
 27978        "in": "query"
 27979       },
 27980       {
 27981        "uniqueItems": true,
 27982        "type": "string",
 27983        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 27984        "name": "labelSelector",
 27985        "in": "query"
 27986       },
 27987       {
 27988        "uniqueItems": true,
 27989        "type": "string",
 27990        "description": "name of the ClusterRole",
 27991        "name": "name",
 27992        "in": "path",
 27993        "required": true
 27994       },
 27995       {
 27996        "uniqueItems": true,
 27997        "type": "string",
 27998        "description": "If 'true', then the output is pretty printed.",
 27999        "name": "pretty",
 28000        "in": "query"
 28001       },
 28002       {
 28003        "uniqueItems": true,
 28004        "type": "string",
 28005        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 28006        "name": "resourceVersion",
 28007        "in": "query"
 28008       },
 28009       {
 28010        "uniqueItems": true,
 28011        "type": "integer",
 28012        "description": "Timeout for the list/watch call.",
 28013        "name": "timeoutSeconds",
 28014        "in": "query"
 28015       },
 28016       {
 28017        "uniqueItems": true,
 28018        "type": "boolean",
 28019        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 28020        "name": "watch",
 28021        "in": "query"
 28022       }
 28023      ]
 28024     },
 28025     "/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/rolebindings": {
 28026      "get": {
 28027       "description": "watch individual changes to a list of RoleBinding",
 28028       "consumes": [
 28029        "*/*"
 28030       ],
 28031       "produces": [
 28032        "application/json",
 28033        "application/yaml",
 28034        "application/vnd.kubernetes.protobuf",
 28035        "application/json;stream=watch",
 28036        "application/vnd.kubernetes.protobuf;stream=watch"
 28037       ],
 28038       "schemes": [
 28039        "https"
 28040       ],
 28041       "tags": [
 28042        "rbacAuthorization_v1alpha1"
 28043       ],
 28044       "operationId": "watchRbacAuthorizationV1alpha1NamespacedRoleBindingList",
 28045       "responses": {
 28046        "200": {
 28047         "description": "OK",
 28048         "schema": {
 28049          "$ref": "#/definitions/versioned.Event"
 28050         }
 28051        },
 28052        "401": {
 28053         "description": "Unauthorized"
 28054        }
 28055       }
 28056      },
 28057      "parameters": [
 28058       {
 28059        "uniqueItems": true,
 28060        "type": "string",
 28061        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 28062        "name": "fieldSelector",
 28063        "in": "query"
 28064       },
 28065       {
 28066        "uniqueItems": true,
 28067        "type": "string",
 28068        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 28069        "name": "labelSelector",
 28070        "in": "query"
 28071       },
 28072       {
 28073        "uniqueItems": true,
 28074        "type": "string",
 28075        "description": "object name and auth scope, such as for teams and projects",
 28076        "name": "namespace",
 28077        "in": "path",
 28078        "required": true
 28079       },
 28080       {
 28081        "uniqueItems": true,
 28082        "type": "string",
 28083        "description": "If 'true', then the output is pretty printed.",
 28084        "name": "pretty",
 28085        "in": "query"
 28086       },
 28087       {
 28088        "uniqueItems": true,
 28089        "type": "string",
 28090        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 28091        "name": "resourceVersion",
 28092        "in": "query"
 28093       },
 28094       {
 28095        "uniqueItems": true,
 28096        "type": "integer",
 28097        "description": "Timeout for the list/watch call.",
 28098        "name": "timeoutSeconds",
 28099        "in": "query"
 28100       },
 28101       {
 28102        "uniqueItems": true,
 28103        "type": "boolean",
 28104        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 28105        "name": "watch",
 28106        "in": "query"
 28107       }
 28108      ]
 28109     },
 28110     "/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/rolebindings/{name}": {
 28111      "get": {
 28112       "description": "watch changes to an object of kind RoleBinding",
 28113       "consumes": [
 28114        "*/*"
 28115       ],
 28116       "produces": [
 28117        "application/json",
 28118        "application/yaml",
 28119        "application/vnd.kubernetes.protobuf",
 28120        "application/json;stream=watch",
 28121        "application/vnd.kubernetes.protobuf;stream=watch"
 28122       ],
 28123       "schemes": [
 28124        "https"
 28125       ],
 28126       "tags": [
 28127        "rbacAuthorization_v1alpha1"
 28128       ],
 28129       "operationId": "watchRbacAuthorizationV1alpha1NamespacedRoleBinding",
 28130       "responses": {
 28131        "200": {
 28132         "description": "OK",
 28133         "schema": {
 28134          "$ref": "#/definitions/versioned.Event"
 28135         }
 28136        },
 28137        "401": {
 28138         "description": "Unauthorized"
 28139        }
 28140       }
 28141      },
 28142      "parameters": [
 28143       {
 28144        "uniqueItems": true,
 28145        "type": "string",
 28146        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 28147        "name": "fieldSelector",
 28148        "in": "query"
 28149       },
 28150       {
 28151        "uniqueItems": true,
 28152        "type": "string",
 28153        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 28154        "name": "labelSelector",
 28155        "in": "query"
 28156       },
 28157       {
 28158        "uniqueItems": true,
 28159        "type": "string",
 28160        "description": "name of the RoleBinding",
 28161        "name": "name",
 28162        "in": "path",
 28163        "required": true
 28164       },
 28165       {
 28166        "uniqueItems": true,
 28167        "type": "string",
 28168        "description": "object name and auth scope, such as for teams and projects",
 28169        "name": "namespace",
 28170        "in": "path",
 28171        "required": true
 28172       },
 28173       {
 28174        "uniqueItems": true,
 28175        "type": "string",
 28176        "description": "If 'true', then the output is pretty printed.",
 28177        "name": "pretty",
 28178        "in": "query"
 28179       },
 28180       {
 28181        "uniqueItems": true,
 28182        "type": "string",
 28183        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 28184        "name": "resourceVersion",
 28185        "in": "query"
 28186       },
 28187       {
 28188        "uniqueItems": true,
 28189        "type": "integer",
 28190        "description": "Timeout for the list/watch call.",
 28191        "name": "timeoutSeconds",
 28192        "in": "query"
 28193       },
 28194       {
 28195        "uniqueItems": true,
 28196        "type": "boolean",
 28197        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 28198        "name": "watch",
 28199        "in": "query"
 28200       }
 28201      ]
 28202     },
 28203     "/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/roles": {
 28204      "get": {
 28205       "description": "watch individual changes to a list of Role",
 28206       "consumes": [
 28207        "*/*"
 28208       ],
 28209       "produces": [
 28210        "application/json",
 28211        "application/yaml",
 28212        "application/vnd.kubernetes.protobuf",
 28213        "application/json;stream=watch",
 28214        "application/vnd.kubernetes.protobuf;stream=watch"
 28215       ],
 28216       "schemes": [
 28217        "https"
 28218       ],
 28219       "tags": [
 28220        "rbacAuthorization_v1alpha1"
 28221       ],
 28222       "operationId": "watchRbacAuthorizationV1alpha1NamespacedRoleList",
 28223       "responses": {
 28224        "200": {
 28225         "description": "OK",
 28226         "schema": {
 28227          "$ref": "#/definitions/versioned.Event"
 28228         }
 28229        },
 28230        "401": {
 28231         "description": "Unauthorized"
 28232        }
 28233       }
 28234      },
 28235      "parameters": [
 28236       {
 28237        "uniqueItems": true,
 28238        "type": "string",
 28239        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 28240        "name": "fieldSelector",
 28241        "in": "query"
 28242       },
 28243       {
 28244        "uniqueItems": true,
 28245        "type": "string",
 28246        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 28247        "name": "labelSelector",
 28248        "in": "query"
 28249       },
 28250       {
 28251        "uniqueItems": true,
 28252        "type": "string",
 28253        "description": "object name and auth scope, such as for teams and projects",
 28254        "name": "namespace",
 28255        "in": "path",
 28256        "required": true
 28257       },
 28258       {
 28259        "uniqueItems": true,
 28260        "type": "string",
 28261        "description": "If 'true', then the output is pretty printed.",
 28262        "name": "pretty",
 28263        "in": "query"
 28264       },
 28265       {
 28266        "uniqueItems": true,
 28267        "type": "string",
 28268        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 28269        "name": "resourceVersion",
 28270        "in": "query"
 28271       },
 28272       {
 28273        "uniqueItems": true,
 28274        "type": "integer",
 28275        "description": "Timeout for the list/watch call.",
 28276        "name": "timeoutSeconds",
 28277        "in": "query"
 28278       },
 28279       {
 28280        "uniqueItems": true,
 28281        "type": "boolean",
 28282        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 28283        "name": "watch",
 28284        "in": "query"
 28285       }
 28286      ]
 28287     },
 28288     "/apis/rbac.authorization.k8s.io/v1alpha1/watch/namespaces/{namespace}/roles/{name}": {
 28289      "get": {
 28290       "description": "watch changes to an object of kind Role",
 28291       "consumes": [
 28292        "*/*"
 28293       ],
 28294       "produces": [
 28295        "application/json",
 28296        "application/yaml",
 28297        "application/vnd.kubernetes.protobuf",
 28298        "application/json;stream=watch",
 28299        "application/vnd.kubernetes.protobuf;stream=watch"
 28300       ],
 28301       "schemes": [
 28302        "https"
 28303       ],
 28304       "tags": [
 28305        "rbacAuthorization_v1alpha1"
 28306       ],
 28307       "operationId": "watchRbacAuthorizationV1alpha1NamespacedRole",
 28308       "responses": {
 28309        "200": {
 28310         "description": "OK",
 28311         "schema": {
 28312          "$ref": "#/definitions/versioned.Event"
 28313         }
 28314        },
 28315        "401": {
 28316         "description": "Unauthorized"
 28317        }
 28318       }
 28319      },
 28320      "parameters": [
 28321       {
 28322        "uniqueItems": true,
 28323        "type": "string",
 28324        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 28325        "name": "fieldSelector",
 28326        "in": "query"
 28327       },
 28328       {
 28329        "uniqueItems": true,
 28330        "type": "string",
 28331        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 28332        "name": "labelSelector",
 28333        "in": "query"
 28334       },
 28335       {
 28336        "uniqueItems": true,
 28337        "type": "string",
 28338        "description": "name of the Role",
 28339        "name": "name",
 28340        "in": "path",
 28341        "required": true
 28342       },
 28343       {
 28344        "uniqueItems": true,
 28345        "type": "string",
 28346        "description": "object name and auth scope, such as for teams and projects",
 28347        "name": "namespace",
 28348        "in": "path",
 28349        "required": true
 28350       },
 28351       {
 28352        "uniqueItems": true,
 28353        "type": "string",
 28354        "description": "If 'true', then the output is pretty printed.",
 28355        "name": "pretty",
 28356        "in": "query"
 28357       },
 28358       {
 28359        "uniqueItems": true,
 28360        "type": "string",
 28361        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 28362        "name": "resourceVersion",
 28363        "in": "query"
 28364       },
 28365       {
 28366        "uniqueItems": true,
 28367        "type": "integer",
 28368        "description": "Timeout for the list/watch call.",
 28369        "name": "timeoutSeconds",
 28370        "in": "query"
 28371       },
 28372       {
 28373        "uniqueItems": true,
 28374        "type": "boolean",
 28375        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 28376        "name": "watch",
 28377        "in": "query"
 28378       }
 28379      ]
 28380     },
 28381     "/apis/rbac.authorization.k8s.io/v1alpha1/watch/rolebindings": {
 28382      "get": {
 28383       "description": "watch individual changes to a list of RoleBinding",
 28384       "consumes": [
 28385        "*/*"
 28386       ],
 28387       "produces": [
 28388        "application/json",
 28389        "application/yaml",
 28390        "application/vnd.kubernetes.protobuf",
 28391        "application/json;stream=watch",
 28392        "application/vnd.kubernetes.protobuf;stream=watch"
 28393       ],
 28394       "schemes": [
 28395        "https"
 28396       ],
 28397       "tags": [
 28398        "rbacAuthorization_v1alpha1"
 28399       ],
 28400       "operationId": "watchRbacAuthorizationV1alpha1RoleBindingListForAllNamespaces",
 28401       "responses": {
 28402        "200": {
 28403         "description": "OK",
 28404         "schema": {
 28405          "$ref": "#/definitions/versioned.Event"
 28406         }
 28407        },
 28408        "401": {
 28409         "description": "Unauthorized"
 28410        }
 28411       }
 28412      },
 28413      "parameters": [
 28414       {
 28415        "uniqueItems": true,
 28416        "type": "string",
 28417        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 28418        "name": "fieldSelector",
 28419        "in": "query"
 28420       },
 28421       {
 28422        "uniqueItems": true,
 28423        "type": "string",
 28424        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 28425        "name": "labelSelector",
 28426        "in": "query"
 28427       },
 28428       {
 28429        "uniqueItems": true,
 28430        "type": "string",
 28431        "description": "If 'true', then the output is pretty printed.",
 28432        "name": "pretty",
 28433        "in": "query"
 28434       },
 28435       {
 28436        "uniqueItems": true,
 28437        "type": "string",
 28438        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 28439        "name": "resourceVersion",
 28440        "in": "query"
 28441       },
 28442       {
 28443        "uniqueItems": true,
 28444        "type": "integer",
 28445        "description": "Timeout for the list/watch call.",
 28446        "name": "timeoutSeconds",
 28447        "in": "query"
 28448       },
 28449       {
 28450        "uniqueItems": true,
 28451        "type": "boolean",
 28452        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 28453        "name": "watch",
 28454        "in": "query"
 28455       }
 28456      ]
 28457     },
 28458     "/apis/rbac.authorization.k8s.io/v1alpha1/watch/roles": {
 28459      "get": {
 28460       "description": "watch individual changes to a list of Role",
 28461       "consumes": [
 28462        "*/*"
 28463       ],
 28464       "produces": [
 28465        "application/json",
 28466        "application/yaml",
 28467        "application/vnd.kubernetes.protobuf",
 28468        "application/json;stream=watch",
 28469        "application/vnd.kubernetes.protobuf;stream=watch"
 28470       ],
 28471       "schemes": [
 28472        "https"
 28473       ],
 28474       "tags": [
 28475        "rbacAuthorization_v1alpha1"
 28476       ],
 28477       "operationId": "watchRbacAuthorizationV1alpha1RoleListForAllNamespaces",
 28478       "responses": {
 28479        "200": {
 28480         "description": "OK",
 28481         "schema": {
 28482          "$ref": "#/definitions/versioned.Event"
 28483         }
 28484        },
 28485        "401": {
 28486         "description": "Unauthorized"
 28487        }
 28488       }
 28489      },
 28490      "parameters": [
 28491       {
 28492        "uniqueItems": true,
 28493        "type": "string",
 28494        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 28495        "name": "fieldSelector",
 28496        "in": "query"
 28497       },
 28498       {
 28499        "uniqueItems": true,
 28500        "type": "string",
 28501        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 28502        "name": "labelSelector",
 28503        "in": "query"
 28504       },
 28505       {
 28506        "uniqueItems": true,
 28507        "type": "string",
 28508        "description": "If 'true', then the output is pretty printed.",
 28509        "name": "pretty",
 28510        "in": "query"
 28511       },
 28512       {
 28513        "uniqueItems": true,
 28514        "type": "string",
 28515        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 28516        "name": "resourceVersion",
 28517        "in": "query"
 28518       },
 28519       {
 28520        "uniqueItems": true,
 28521        "type": "integer",
 28522        "description": "Timeout for the list/watch call.",
 28523        "name": "timeoutSeconds",
 28524        "in": "query"
 28525       },
 28526       {
 28527        "uniqueItems": true,
 28528        "type": "boolean",
 28529        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 28530        "name": "watch",
 28531        "in": "query"
 28532       }
 28533      ]
 28534     },
 28535     "/apis/storage.k8s.io/": {
 28536      "get": {
 28537       "description": "get information of a group",
 28538       "consumes": [
 28539        "application/json",
 28540        "application/yaml",
 28541        "application/vnd.kubernetes.protobuf"
 28542       ],
 28543       "produces": [
 28544        "application/json",
 28545        "application/yaml",
 28546        "application/vnd.kubernetes.protobuf"
 28547       ],
 28548       "schemes": [
 28549        "https"
 28550       ],
 28551       "tags": [
 28552        "storage"
 28553       ],
 28554       "operationId": "getStorageAPIGroup",
 28555       "responses": {
 28556        "200": {
 28557         "description": "OK",
 28558         "schema": {
 28559          "$ref": "#/definitions/unversioned.APIGroup"
 28560         }
 28561        },
 28562        "401": {
 28563         "description": "Unauthorized"
 28564        }
 28565       }
 28566      }
 28567     },
 28568     "/apis/storage.k8s.io/v1beta1/": {
 28569      "get": {
 28570       "description": "get available resources",
 28571       "consumes": [
 28572        "application/json",
 28573        "application/yaml",
 28574        "application/vnd.kubernetes.protobuf"
 28575       ],
 28576       "produces": [
 28577        "application/json",
 28578        "application/yaml",
 28579        "application/vnd.kubernetes.protobuf"
 28580       ],
 28581       "schemes": [
 28582        "https"
 28583       ],
 28584       "tags": [
 28585        "storage_v1beta1"
 28586       ],
 28587       "operationId": "getStorageV1beta1APIResources",
 28588       "responses": {
 28589        "200": {
 28590         "description": "OK",
 28591         "schema": {
 28592          "$ref": "#/definitions/unversioned.APIResourceList"
 28593         }
 28594        },
 28595        "401": {
 28596         "description": "Unauthorized"
 28597        }
 28598       }
 28599      }
 28600     },
 28601     "/apis/storage.k8s.io/v1beta1/storageclasses": {
 28602      "get": {
 28603       "description": "list or watch objects of kind StorageClass",
 28604       "consumes": [
 28605        "*/*"
 28606       ],
 28607       "produces": [
 28608        "application/json",
 28609        "application/yaml",
 28610        "application/vnd.kubernetes.protobuf",
 28611        "application/json;stream=watch",
 28612        "application/vnd.kubernetes.protobuf;stream=watch"
 28613       ],
 28614       "schemes": [
 28615        "https"
 28616       ],
 28617       "tags": [
 28618        "storage_v1beta1"
 28619       ],
 28620       "operationId": "listStorageV1beta1StorageClass",
 28621       "parameters": [
 28622        {
 28623         "uniqueItems": true,
 28624         "type": "string",
 28625         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 28626         "name": "fieldSelector",
 28627         "in": "query"
 28628        },
 28629        {
 28630         "uniqueItems": true,
 28631         "type": "string",
 28632         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 28633         "name": "labelSelector",
 28634         "in": "query"
 28635        },
 28636        {
 28637         "uniqueItems": true,
 28638         "type": "string",
 28639         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 28640         "name": "resourceVersion",
 28641         "in": "query"
 28642        },
 28643        {
 28644         "uniqueItems": true,
 28645         "type": "integer",
 28646         "description": "Timeout for the list/watch call.",
 28647         "name": "timeoutSeconds",
 28648         "in": "query"
 28649        },
 28650        {
 28651         "uniqueItems": true,
 28652         "type": "boolean",
 28653         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 28654         "name": "watch",
 28655         "in": "query"
 28656        }
 28657       ],
 28658       "responses": {
 28659        "200": {
 28660         "description": "OK",
 28661         "schema": {
 28662          "$ref": "#/definitions/v1beta1.StorageClassList"
 28663         }
 28664        },
 28665        "401": {
 28666         "description": "Unauthorized"
 28667        }
 28668       }
 28669      },
 28670      "post": {
 28671       "description": "create a StorageClass",
 28672       "consumes": [
 28673        "*/*"
 28674       ],
 28675       "produces": [
 28676        "application/json",
 28677        "application/yaml",
 28678        "application/vnd.kubernetes.protobuf"
 28679       ],
 28680       "schemes": [
 28681        "https"
 28682       ],
 28683       "tags": [
 28684        "storage_v1beta1"
 28685       ],
 28686       "operationId": "createStorageV1beta1StorageClass",
 28687       "parameters": [
 28688        {
 28689         "name": "body",
 28690         "in": "body",
 28691         "required": true,
 28692         "schema": {
 28693          "$ref": "#/definitions/v1beta1.StorageClass"
 28694         }
 28695        }
 28696       ],
 28697       "responses": {
 28698        "200": {
 28699         "description": "OK",
 28700         "schema": {
 28701          "$ref": "#/definitions/v1beta1.StorageClass"
 28702         }
 28703        },
 28704        "401": {
 28705         "description": "Unauthorized"
 28706        }
 28707       }
 28708      },
 28709      "delete": {
 28710       "description": "delete collection of StorageClass",
 28711       "consumes": [
 28712        "*/*"
 28713       ],
 28714       "produces": [
 28715        "application/json",
 28716        "application/yaml",
 28717        "application/vnd.kubernetes.protobuf"
 28718       ],
 28719       "schemes": [
 28720        "https"
 28721       ],
 28722       "tags": [
 28723        "storage_v1beta1"
 28724       ],
 28725       "operationId": "deleteStorageV1beta1CollectionStorageClass",
 28726       "parameters": [
 28727        {
 28728         "uniqueItems": true,
 28729         "type": "string",
 28730         "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 28731         "name": "fieldSelector",
 28732         "in": "query"
 28733        },
 28734        {
 28735         "uniqueItems": true,
 28736         "type": "string",
 28737         "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 28738         "name": "labelSelector",
 28739         "in": "query"
 28740        },
 28741        {
 28742         "uniqueItems": true,
 28743         "type": "string",
 28744         "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 28745         "name": "resourceVersion",
 28746         "in": "query"
 28747        },
 28748        {
 28749         "uniqueItems": true,
 28750         "type": "integer",
 28751         "description": "Timeout for the list/watch call.",
 28752         "name": "timeoutSeconds",
 28753         "in": "query"
 28754        },
 28755        {
 28756         "uniqueItems": true,
 28757         "type": "boolean",
 28758         "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 28759         "name": "watch",
 28760         "in": "query"
 28761        }
 28762       ],
 28763       "responses": {
 28764        "200": {
 28765         "description": "OK",
 28766         "schema": {
 28767          "$ref": "#/definitions/unversioned.Status"
 28768         }
 28769        },
 28770        "401": {
 28771         "description": "Unauthorized"
 28772        }
 28773       }
 28774      },
 28775      "parameters": [
 28776       {
 28777        "uniqueItems": true,
 28778        "type": "string",
 28779        "description": "If 'true', then the output is pretty printed.",
 28780        "name": "pretty",
 28781        "in": "query"
 28782       }
 28783      ]
 28784     },
 28785     "/apis/storage.k8s.io/v1beta1/storageclasses/{name}": {
 28786      "get": {
 28787       "description": "read the specified StorageClass",
 28788       "consumes": [
 28789        "*/*"
 28790       ],
 28791       "produces": [
 28792        "application/json",
 28793        "application/yaml",
 28794        "application/vnd.kubernetes.protobuf"
 28795       ],
 28796       "schemes": [
 28797        "https"
 28798       ],
 28799       "tags": [
 28800        "storage_v1beta1"
 28801       ],
 28802       "operationId": "readStorageV1beta1StorageClass",
 28803       "parameters": [
 28804        {
 28805         "uniqueItems": true,
 28806         "type": "boolean",
 28807         "description": "Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'",
 28808         "name": "exact",
 28809         "in": "query"
 28810        },
 28811        {
 28812         "uniqueItems": true,
 28813         "type": "boolean",
 28814         "description": "Should this value be exported.  Export strips fields that a user can not specify.",
 28815         "name": "export",
 28816         "in": "query"
 28817        }
 28818       ],
 28819       "responses": {
 28820        "200": {
 28821         "description": "OK",
 28822         "schema": {
 28823          "$ref": "#/definitions/v1beta1.StorageClass"
 28824         }
 28825        },
 28826        "401": {
 28827         "description": "Unauthorized"
 28828        }
 28829       }
 28830      },
 28831      "put": {
 28832       "description": "replace the specified StorageClass",
 28833       "consumes": [
 28834        "*/*"
 28835       ],
 28836       "produces": [
 28837        "application/json",
 28838        "application/yaml",
 28839        "application/vnd.kubernetes.protobuf"
 28840       ],
 28841       "schemes": [
 28842        "https"
 28843       ],
 28844       "tags": [
 28845        "storage_v1beta1"
 28846       ],
 28847       "operationId": "replaceStorageV1beta1StorageClass",
 28848       "parameters": [
 28849        {
 28850         "name": "body",
 28851         "in": "body",
 28852         "required": true,
 28853         "schema": {
 28854          "$ref": "#/definitions/v1beta1.StorageClass"
 28855         }
 28856        }
 28857       ],
 28858       "responses": {
 28859        "200": {
 28860         "description": "OK",
 28861         "schema": {
 28862          "$ref": "#/definitions/v1beta1.StorageClass"
 28863         }
 28864        },
 28865        "401": {
 28866         "description": "Unauthorized"
 28867        }
 28868       }
 28869      },
 28870      "delete": {
 28871       "description": "delete a StorageClass",
 28872       "consumes": [
 28873        "*/*"
 28874       ],
 28875       "produces": [
 28876        "application/json",
 28877        "application/yaml",
 28878        "application/vnd.kubernetes.protobuf"
 28879       ],
 28880       "schemes": [
 28881        "https"
 28882       ],
 28883       "tags": [
 28884        "storage_v1beta1"
 28885       ],
 28886       "operationId": "deleteStorageV1beta1StorageClass",
 28887       "parameters": [
 28888        {
 28889         "name": "body",
 28890         "in": "body",
 28891         "required": true,
 28892         "schema": {
 28893          "$ref": "#/definitions/v1.DeleteOptions"
 28894         }
 28895        }
 28896       ],
 28897       "responses": {
 28898        "200": {
 28899         "description": "OK",
 28900         "schema": {
 28901          "$ref": "#/definitions/unversioned.Status"
 28902         }
 28903        },
 28904        "401": {
 28905         "description": "Unauthorized"
 28906        }
 28907       }
 28908      },
 28909      "patch": {
 28910       "description": "partially update the specified StorageClass",
 28911       "consumes": [
 28912        "application/json-patch+json",
 28913        "application/merge-patch+json",
 28914        "application/strategic-merge-patch+json"
 28915       ],
 28916       "produces": [
 28917        "application/json",
 28918        "application/yaml",
 28919        "application/vnd.kubernetes.protobuf"
 28920       ],
 28921       "schemes": [
 28922        "https"
 28923       ],
 28924       "tags": [
 28925        "storage_v1beta1"
 28926       ],
 28927       "operationId": "patchStorageV1beta1StorageClass",
 28928       "parameters": [
 28929        {
 28930         "name": "body",
 28931         "in": "body",
 28932         "required": true,
 28933         "schema": {
 28934          "$ref": "#/definitions/unversioned.Patch"
 28935         }
 28936        }
 28937       ],
 28938       "responses": {
 28939        "200": {
 28940         "description": "OK",
 28941         "schema": {
 28942          "$ref": "#/definitions/v1beta1.StorageClass"
 28943         }
 28944        },
 28945        "401": {
 28946         "description": "Unauthorized"
 28947        }
 28948       }
 28949      },
 28950      "parameters": [
 28951       {
 28952        "uniqueItems": true,
 28953        "type": "string",
 28954        "description": "name of the StorageClass",
 28955        "name": "name",
 28956        "in": "path",
 28957        "required": true
 28958       },
 28959       {
 28960        "uniqueItems": true,
 28961        "type": "string",
 28962        "description": "If 'true', then the output is pretty printed.",
 28963        "name": "pretty",
 28964        "in": "query"
 28965       }
 28966      ]
 28967     },
 28968     "/apis/storage.k8s.io/v1beta1/watch/storageclasses": {
 28969      "get": {
 28970       "description": "watch individual changes to a list of StorageClass",
 28971       "consumes": [
 28972        "*/*"
 28973       ],
 28974       "produces": [
 28975        "application/json",
 28976        "application/yaml",
 28977        "application/vnd.kubernetes.protobuf",
 28978        "application/json;stream=watch",
 28979        "application/vnd.kubernetes.protobuf;stream=watch"
 28980       ],
 28981       "schemes": [
 28982        "https"
 28983       ],
 28984       "tags": [
 28985        "storage_v1beta1"
 28986       ],
 28987       "operationId": "watchStorageV1beta1StorageClassList",
 28988       "responses": {
 28989        "200": {
 28990         "description": "OK",
 28991         "schema": {
 28992          "$ref": "#/definitions/versioned.Event"
 28993         }
 28994        },
 28995        "401": {
 28996         "description": "Unauthorized"
 28997        }
 28998       }
 28999      },
 29000      "parameters": [
 29001       {
 29002        "uniqueItems": true,
 29003        "type": "string",
 29004        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 29005        "name": "fieldSelector",
 29006        "in": "query"
 29007       },
 29008       {
 29009        "uniqueItems": true,
 29010        "type": "string",
 29011        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 29012        "name": "labelSelector",
 29013        "in": "query"
 29014       },
 29015       {
 29016        "uniqueItems": true,
 29017        "type": "string",
 29018        "description": "If 'true', then the output is pretty printed.",
 29019        "name": "pretty",
 29020        "in": "query"
 29021       },
 29022       {
 29023        "uniqueItems": true,
 29024        "type": "string",
 29025        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 29026        "name": "resourceVersion",
 29027        "in": "query"
 29028       },
 29029       {
 29030        "uniqueItems": true,
 29031        "type": "integer",
 29032        "description": "Timeout for the list/watch call.",
 29033        "name": "timeoutSeconds",
 29034        "in": "query"
 29035       },
 29036       {
 29037        "uniqueItems": true,
 29038        "type": "boolean",
 29039        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 29040        "name": "watch",
 29041        "in": "query"
 29042       }
 29043      ]
 29044     },
 29045     "/apis/storage.k8s.io/v1beta1/watch/storageclasses/{name}": {
 29046      "get": {
 29047       "description": "watch changes to an object of kind StorageClass",
 29048       "consumes": [
 29049        "*/*"
 29050       ],
 29051       "produces": [
 29052        "application/json",
 29053        "application/yaml",
 29054        "application/vnd.kubernetes.protobuf",
 29055        "application/json;stream=watch",
 29056        "application/vnd.kubernetes.protobuf;stream=watch"
 29057       ],
 29058       "schemes": [
 29059        "https"
 29060       ],
 29061       "tags": [
 29062        "storage_v1beta1"
 29063       ],
 29064       "operationId": "watchStorageV1beta1StorageClass",
 29065       "responses": {
 29066        "200": {
 29067         "description": "OK",
 29068         "schema": {
 29069          "$ref": "#/definitions/versioned.Event"
 29070         }
 29071        },
 29072        "401": {
 29073         "description": "Unauthorized"
 29074        }
 29075       }
 29076      },
 29077      "parameters": [
 29078       {
 29079        "uniqueItems": true,
 29080        "type": "string",
 29081        "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
 29082        "name": "fieldSelector",
 29083        "in": "query"
 29084       },
 29085       {
 29086        "uniqueItems": true,
 29087        "type": "string",
 29088        "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
 29089        "name": "labelSelector",
 29090        "in": "query"
 29091       },
 29092       {
 29093        "uniqueItems": true,
 29094        "type": "string",
 29095        "description": "name of the StorageClass",
 29096        "name": "name",
 29097        "in": "path",
 29098        "required": true
 29099       },
 29100       {
 29101        "uniqueItems": true,
 29102        "type": "string",
 29103        "description": "If 'true', then the output is pretty printed.",
 29104        "name": "pretty",
 29105        "in": "query"
 29106       },
 29107       {
 29108        "uniqueItems": true,
 29109        "type": "string",
 29110        "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history.",
 29111        "name": "resourceVersion",
 29112        "in": "query"
 29113       },
 29114       {
 29115        "uniqueItems": true,
 29116        "type": "integer",
 29117        "description": "Timeout for the list/watch call.",
 29118        "name": "timeoutSeconds",
 29119        "in": "query"
 29120       },
 29121       {
 29122        "uniqueItems": true,
 29123        "type": "boolean",
 29124        "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
 29125        "name": "watch",
 29126        "in": "query"
 29127       }
 29128      ]
 29129     },
 29130     "/logs/": {
 29131      "get": {
 29132       "schemes": [
 29133        "https"
 29134       ],
 29135       "tags": [
 29136        "logs"
 29137       ],
 29138       "operationId": "logFileListHandler",
 29139       "responses": {
 29140        "401": {
 29141         "description": "Unauthorized"
 29142        }
 29143       }
 29144      }
 29145     },
 29146     "/logs/{logpath}": {
 29147      "get": {
 29148       "schemes": [
 29149        "https"
 29150       ],
 29151       "tags": [
 29152        "logs"
 29153       ],
 29154       "operationId": "logFileHandler",
 29155       "responses": {
 29156        "401": {
 29157         "description": "Unauthorized"
 29158        }
 29159       }
 29160      },
 29161      "parameters": [
 29162       {
 29163        "uniqueItems": true,
 29164        "type": "string",
 29165        "description": "path to the log",
 29166        "name": "logpath",
 29167        "in": "path",
 29168        "required": true
 29169       }
 29170      ]
 29171     },
 29172     "/version/": {
 29173      "get": {
 29174       "description": "get the code version",
 29175       "consumes": [
 29176        "application/json"
 29177       ],
 29178       "produces": [
 29179        "application/json"
 29180       ],
 29181       "schemes": [
 29182        "https"
 29183       ],
 29184       "tags": [
 29185        "version"
 29186       ],
 29187       "operationId": "getCodeVersion",
 29188       "responses": {
 29189        "200": {
 29190         "description": "OK",
 29191         "schema": {
 29192          "$ref": "#/definitions/version.Info"
 29193         }
 29194        },
 29195        "401": {
 29196         "description": "Unauthorized"
 29197        }
 29198       }
 29199      }
 29200     }
 29201    },
 29202    "definitions": {
 29203     "intstr.IntOrString": {
 29204      "type": "string",
 29205      "format": "int-or-string"
 29206     },
 29207     "resource.Quantity": {
 29208      "type": "string"
 29209     },
 29210     "runtime.RawExtension": {
 29211      "description": "RawExtension is used to hold extensions in external versions.\n\nTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct. You also need to register your various plugin types.\n\n// Internal package: type MyAPIObject struct {\n\truntime.TypeMeta `json:\",inline\"`\n\tMyPlugin runtime.Object `json:\"myPlugin\"`\n} type PluginA struct {\n\tAOption string `json:\"aOption\"`\n}\n\n// External package: type MyAPIObject struct {\n\truntime.TypeMeta `json:\",inline\"`\n\tMyPlugin runtime.RawExtension `json:\"myPlugin\"`\n} type PluginA struct {\n\tAOption string `json:\"aOption\"`\n}\n\n// On the wire, the JSON will look something like this: {\n\t\"kind\":\"MyAPIObject\",\n\t\"apiVersion\":\"v1\",\n\t\"myPlugin\": {\n\t\t\"kind\":\"PluginA\",\n\t\t\"aOption\":\"foo\",\n\t},\n}\n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an unknown type, a runtime.Unknown object will be created and stored.)",
 29212      "required": [
 29213       "Raw"
 29214      ],
 29215      "properties": {
 29216       "Raw": {
 29217        "description": "Raw is the underlying serialization of this object.",
 29218        "type": "string",
 29219        "format": "byte"
 29220       }
 29221      }
 29222     },
 29223     "unversioned.APIGroup": {
 29224      "description": "APIGroup contains the name, the supported versions, and the preferred version of a group.",
 29225      "required": [
 29226       "name",
 29227       "versions",
 29228       "serverAddressByClientCIDRs"
 29229      ],
 29230      "properties": {
 29231       "name": {
 29232        "description": "name is the name of the group.",
 29233        "type": "string"
 29234       },
 29235       "preferredVersion": {
 29236        "description": "preferredVersion is the version preferred by the API server, which probably is the storage version.",
 29237        "$ref": "#/definitions/unversioned.GroupVersionForDiscovery"
 29238       },
 29239       "serverAddressByClientCIDRs": {
 29240        "description": "a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.",
 29241        "type": "array",
 29242        "items": {
 29243         "$ref": "#/definitions/unversioned.ServerAddressByClientCIDR"
 29244        }
 29245       },
 29246       "versions": {
 29247        "description": "versions are the versions supported in this group.",
 29248        "type": "array",
 29249        "items": {
 29250         "$ref": "#/definitions/unversioned.GroupVersionForDiscovery"
 29251        }
 29252       }
 29253      }
 29254     },
 29255     "unversioned.APIGroupList": {
 29256      "description": "APIGroupList is a list of APIGroup, to allow clients to discover the API at /apis.",
 29257      "required": [
 29258       "groups"
 29259      ],
 29260      "properties": {
 29261       "groups": {
 29262        "description": "groups is a list of APIGroup.",
 29263        "type": "array",
 29264        "items": {
 29265         "$ref": "#/definitions/unversioned.APIGroup"
 29266        }
 29267       }
 29268      }
 29269     },
 29270     "unversioned.APIResource": {
 29271      "description": "APIResource specifies the name of a resource and whether it is namespaced.",
 29272      "required": [
 29273       "name",
 29274       "namespaced",
 29275       "kind"
 29276      ],
 29277      "properties": {
 29278       "kind": {
 29279        "description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')",
 29280        "type": "string"
 29281       },
 29282       "name": {
 29283        "description": "name is the name of the resource.",
 29284        "type": "string"
 29285       },
 29286       "namespaced": {
 29287        "description": "namespaced indicates if a resource is namespaced or not.",
 29288        "type": "boolean"
 29289       }
 29290      }
 29291     },
 29292     "unversioned.APIResourceList": {
 29293      "description": "APIResourceList is a list of APIResource, it is used to expose the name of the resources supported in a specific group and version, and if the resource is namespaced.",
 29294      "required": [
 29295       "groupVersion",
 29296       "resources"
 29297      ],
 29298      "properties": {
 29299       "groupVersion": {
 29300        "description": "groupVersion is the group and version this APIResourceList is for.",
 29301        "type": "string"
 29302       },
 29303       "resources": {
 29304        "description": "resources contains the name of the resources and if they are namespaced.",
 29305        "type": "array",
 29306        "items": {
 29307         "$ref": "#/definitions/unversioned.APIResource"
 29308        }
 29309       }
 29310      }
 29311     },
 29312     "unversioned.APIVersions": {
 29313      "description": "APIVersions lists the versions that are available, to allow clients to discover the API at /api, which is the root path of the legacy v1 API.",
 29314      "required": [
 29315       "versions",
 29316       "serverAddressByClientCIDRs"
 29317      ],
 29318      "properties": {
 29319       "serverAddressByClientCIDRs": {
 29320        "description": "a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.",
 29321        "type": "array",
 29322        "items": {
 29323         "$ref": "#/definitions/unversioned.ServerAddressByClientCIDR"
 29324        }
 29325       },
 29326       "versions": {
 29327        "description": "versions are the api versions that are available.",
 29328        "type": "array",
 29329        "items": {
 29330         "type": "string"
 29331        }
 29332       }
 29333      }
 29334     },
 29335     "unversioned.GroupVersionForDiscovery": {
 29336      "description": "GroupVersion contains the \"group/version\" and \"version\" string of a version. It is made a struct to keep extensibility.",
 29337      "required": [
 29338       "groupVersion",
 29339       "version"
 29340      ],
 29341      "properties": {
 29342       "groupVersion": {
 29343        "description": "groupVersion specifies the API group and version in the form \"group/version\"",
 29344        "type": "string"
 29345       },
 29346       "version": {
 29347        "description": "version specifies the version in the form of \"version\". This is to save the clients the trouble of splitting the GroupVersion.",
 29348        "type": "string"
 29349       }
 29350      }
 29351     },
 29352     "unversioned.LabelSelector": {
 29353      "description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.",
 29354      "properties": {
 29355       "matchExpressions": {
 29356        "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
 29357        "type": "array",
 29358        "items": {
 29359         "$ref": "#/definitions/unversioned.LabelSelectorRequirement"
 29360        }
 29361       },
 29362       "matchLabels": {
 29363        "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
 29364        "type": "object",
 29365        "additionalProperties": {
 29366         "type": "string"
 29367        }
 29368       }
 29369      }
 29370     },
 29371     "unversioned.LabelSelectorRequirement": {
 29372      "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
 29373      "required": [
 29374       "key",
 29375       "operator"
 29376      ],
 29377      "properties": {
 29378       "key": {
 29379        "description": "key is the label key that the selector applies to.",
 29380        "type": "string"
 29381       },
 29382       "operator": {
 29383        "description": "operator represents a key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.",
 29384        "type": "string"
 29385       },
 29386       "values": {
 29387        "description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
 29388        "type": "array",
 29389        "items": {
 29390         "type": "string"
 29391        }
 29392       }
 29393      }
 29394     },
 29395     "unversioned.ListMeta": {
 29396      "description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.",
 29397      "properties": {
 29398       "resourceVersion": {
 29399        "description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#concurrency-control-and-consistency",
 29400        "type": "string"
 29401       },
 29402       "selfLink": {
 29403        "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.",
 29404        "type": "string"
 29405       }
 29406      }
 29407     },
 29408     "unversioned.Patch": {
 29409      "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body."
 29410     },
 29411     "unversioned.ServerAddressByClientCIDR": {
 29412      "description": "ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.",
 29413      "required": [
 29414       "clientCIDR",
 29415       "serverAddress"
 29416      ],
 29417      "properties": {
 29418       "clientCIDR": {
 29419        "description": "The CIDR with which clients can match their IP to figure out the server address that they should use.",
 29420        "type": "string"
 29421       },
 29422       "serverAddress": {
 29423        "description": "Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.",
 29424        "type": "string"
 29425       }
 29426      }
 29427     },
 29428     "unversioned.Status": {
 29429      "description": "Status is a return value for calls that don't return other objects.",
 29430      "properties": {
 29431       "code": {
 29432        "description": "Suggested HTTP return code for this status, 0 if not set.",
 29433        "type": "integer",
 29434        "format": "int32"
 29435       },
 29436       "details": {
 29437        "description": "Extended data associated with the reason.  Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type.",
 29438        "$ref": "#/definitions/unversioned.StatusDetails"
 29439       },
 29440       "message": {
 29441        "description": "A human-readable description of the status of this operation.",
 29442        "type": "string"
 29443       },
 29444       "metadata": {
 29445        "description": "Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds",
 29446        "$ref": "#/definitions/unversioned.ListMeta"
 29447       },
 29448       "reason": {
 29449        "description": "A machine-readable description of why this operation is in the \"Failure\" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it.",
 29450        "type": "string"
 29451       },
 29452       "status": {
 29453        "description": "Status of the operation. One of: \"Success\" or \"Failure\". More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status",
 29454        "type": "string"
 29455       }
 29456      }
 29457     },
 29458     "unversioned.StatusCause": {
 29459      "description": "StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.",
 29460      "properties": {
 29461       "field": {
 29462        "description": "The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed.  Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.\n\nExamples:\n  \"name\" - the field \"name\" on the current resource\n  \"items[0].name\" - the field \"name\" on the first array entry in \"items\"",
 29463        "type": "string"
 29464       },
 29465       "message": {
 29466        "description": "A human-readable description of the cause of the error.  This field may be presented as-is to a reader.",
 29467        "type": "string"
 29468       },
 29469       "reason": {
 29470        "description": "A machine-readable description of the cause of the error. If this value is empty there is no information available.",
 29471        "type": "string"
 29472       }
 29473      }
 29474     },
 29475     "unversioned.StatusDetails": {
 29476      "description": "StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.",
 29477      "properties": {
 29478       "causes": {
 29479        "description": "The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.",
 29480        "type": "array",
 29481        "items": {
 29482         "$ref": "#/definitions/unversioned.StatusCause"
 29483        }
 29484       },
 29485       "group": {
 29486        "description": "The group attribute of the resource associated with the status StatusReason.",
 29487        "type": "string"
 29488       },
 29489       "kind": {
 29490        "description": "The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds",
 29491        "type": "string"
 29492       },
 29493       "name": {
 29494        "description": "The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).",
 29495        "type": "string"
 29496       },
 29497       "retryAfterSeconds": {
 29498        "description": "If specified, the time in seconds before the operation should be retried.",
 29499        "type": "integer",
 29500        "format": "int32"
 29501       }
 29502      }
 29503     },
 29504     "unversioned.Time": {
 29505      "type": "string",
 29506      "format": "date-time"
 29507     },
 29508     "v1.AttachedVolume": {
 29509      "description": "AttachedVolume describes a volume attached to a node",
 29510      "required": [
 29511       "name",
 29512       "devicePath"
 29513      ],
 29514      "properties": {
 29515       "devicePath": {
 29516        "description": "DevicePath represents the device path where the volume should be available",
 29517        "type": "string"
 29518       },
 29519       "name": {
 29520        "description": "Name of the attached volume",
 29521        "type": "string"
 29522       }
 29523      }
 29524     },
 29525     "v1.Binding": {
 29526      "description": "Binding ties one object to another. For example, a pod is bound to a node by a scheduler.",
 29527      "required": [
 29528       "target"
 29529      ],
 29530      "properties": {
 29531       "metadata": {
 29532        "description": "Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 29533        "$ref": "#/definitions/v1.ObjectMeta"
 29534       },
 29535       "target": {
 29536        "description": "The target object that you want to bind to the standard object.",
 29537        "$ref": "#/definitions/v1.ObjectReference"
 29538       }
 29539      }
 29540     },
 29541     "v1.Capabilities": {
 29542      "description": "Adds and removes POSIX capabilities from running containers.",
 29543      "properties": {
 29544       "add": {
 29545        "description": "Added capabilities",
 29546        "type": "array",
 29547        "items": {
 29548         "type": "string"
 29549        }
 29550       },
 29551       "drop": {
 29552        "description": "Removed capabilities",
 29553        "type": "array",
 29554        "items": {
 29555         "type": "string"
 29556        }
 29557       }
 29558      }
 29559     },
 29560     "v1.ComponentCondition": {
 29561      "description": "Information about the condition of a component.",
 29562      "required": [
 29563       "type",
 29564       "status"
 29565      ],
 29566      "properties": {
 29567       "error": {
 29568        "description": "Condition error code for a component. For example, a health check error code.",
 29569        "type": "string"
 29570       },
 29571       "message": {
 29572        "description": "Message about the condition for a component. For example, information about a health check.",
 29573        "type": "string"
 29574       },
 29575       "status": {
 29576        "description": "Status of the condition for a component. Valid values for \"Healthy\": \"True\", \"False\", or \"Unknown\".",
 29577        "type": "string"
 29578       },
 29579       "type": {
 29580        "description": "Type of condition for a component. Valid value: \"Healthy\"",
 29581        "type": "string"
 29582       }
 29583      }
 29584     },
 29585     "v1.ComponentStatus": {
 29586      "description": "ComponentStatus (and ComponentStatusList) holds the cluster validation info.",
 29587      "properties": {
 29588       "conditions": {
 29589        "description": "List of component conditions observed",
 29590        "type": "array",
 29591        "items": {
 29592         "$ref": "#/definitions/v1.ComponentCondition"
 29593        }
 29594       },
 29595       "metadata": {
 29596        "description": "Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 29597        "$ref": "#/definitions/v1.ObjectMeta"
 29598       }
 29599      }
 29600     },
 29601     "v1.ComponentStatusList": {
 29602      "description": "Status of all the conditions for the component as a list of ComponentStatus objects.",
 29603      "required": [
 29604       "items"
 29605      ],
 29606      "properties": {
 29607       "items": {
 29608        "description": "List of ComponentStatus objects.",
 29609        "type": "array",
 29610        "items": {
 29611         "$ref": "#/definitions/v1.ComponentStatus"
 29612        }
 29613       },
 29614       "metadata": {
 29615        "description": "Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds",
 29616        "$ref": "#/definitions/unversioned.ListMeta"
 29617       }
 29618      }
 29619     },
 29620     "v1.ConfigMap": {
 29621      "description": "ConfigMap holds configuration data for pods to consume.",
 29622      "properties": {
 29623       "data": {
 29624        "description": "Data contains the configuration data. Each key must be a valid DNS_SUBDOMAIN with an optional leading dot.",
 29625        "type": "object",
 29626        "additionalProperties": {
 29627         "type": "string"
 29628        }
 29629       },
 29630       "metadata": {
 29631        "description": "Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 29632        "$ref": "#/definitions/v1.ObjectMeta"
 29633       }
 29634      }
 29635     },
 29636     "v1.ConfigMapKeySelector": {
 29637      "description": "Selects a key from a ConfigMap.",
 29638      "required": [
 29639       "key"
 29640      ],
 29641      "properties": {
 29642       "key": {
 29643        "description": "The key to select.",
 29644        "type": "string"
 29645       }
 29646      }
 29647     },
 29648     "v1.ConfigMapList": {
 29649      "description": "ConfigMapList is a resource containing a list of ConfigMap objects.",
 29650      "required": [
 29651       "items"
 29652      ],
 29653      "properties": {
 29654       "items": {
 29655        "description": "Items is the list of ConfigMaps.",
 29656        "type": "array",
 29657        "items": {
 29658         "$ref": "#/definitions/v1.ConfigMap"
 29659        }
 29660       },
 29661       "metadata": {
 29662        "description": "More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 29663        "$ref": "#/definitions/unversioned.ListMeta"
 29664       }
 29665      }
 29666     },
 29667     "v1.Container": {
 29668      "description": "A single application container that you want to run within a pod.",
 29669      "required": [
 29670       "name"
 29671      ],
 29672      "properties": {
 29673       "args": {
 29674        "description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/containers#containers-and-commands",
 29675        "type": "array",
 29676        "items": {
 29677         "type": "string"
 29678        }
 29679       },
 29680       "command": {
 29681        "description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/containers#containers-and-commands",
 29682        "type": "array",
 29683        "items": {
 29684         "type": "string"
 29685        }
 29686       },
 29687       "env": {
 29688        "description": "List of environment variables to set in the container. Cannot be updated.",
 29689        "type": "array",
 29690        "items": {
 29691         "$ref": "#/definitions/v1.EnvVar"
 29692        }
 29693       },
 29694       "image": {
 29695        "description": "Docker image name. More info: http://kubernetes.io/docs/user-guide/images",
 29696        "type": "string"
 29697       },
 29698       "imagePullPolicy": {
 29699        "description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/images#updating-images",
 29700        "type": "string"
 29701       },
 29702       "lifecycle": {
 29703        "description": "Actions that the management system should take in response to container lifecycle events. Cannot be updated.",
 29704        "$ref": "#/definitions/v1.Lifecycle"
 29705       },
 29706       "livenessProbe": {
 29707        "description": "Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/pod-states#container-probes",
 29708        "$ref": "#/definitions/v1.Probe"
 29709       },
 29710       "name": {
 29711        "description": "Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.",
 29712        "type": "string"
 29713       },
 29714       "ports": {
 29715        "description": "List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Cannot be updated.",
 29716        "type": "array",
 29717        "items": {
 29718         "$ref": "#/definitions/v1.ContainerPort"
 29719        }
 29720       },
 29721       "readinessProbe": {
 29722        "description": "Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/pod-states#container-probes",
 29723        "$ref": "#/definitions/v1.Probe"
 29724       },
 29725       "resources": {
 29726        "description": "Compute Resources required by this container. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#resources",
 29727        "$ref": "#/definitions/v1.ResourceRequirements"
 29728       },
 29729       "securityContext": {
 29730        "description": "Security options the pod should run with. More info: http://releases.k8s.io/HEAD/docs/design/security_context.md",
 29731        "$ref": "#/definitions/v1.SecurityContext"
 29732       },
 29733       "stdin": {
 29734        "description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.",
 29735        "type": "boolean"
 29736       },
 29737       "stdinOnce": {
 29738        "description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false",
 29739        "type": "boolean"
 29740       },
 29741       "terminationMessagePath": {
 29742        "description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Defaults to /dev/termination-log. Cannot be updated.",
 29743        "type": "string"
 29744       },
 29745       "tty": {
 29746        "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.",
 29747        "type": "boolean"
 29748       },
 29749       "volumeMounts": {
 29750        "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.",
 29751        "type": "array",
 29752        "items": {
 29753         "$ref": "#/definitions/v1.VolumeMount"
 29754        }
 29755       },
 29756       "workingDir": {
 29757        "description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.",
 29758        "type": "string"
 29759       }
 29760      }
 29761     },
 29762     "v1.ContainerImage": {
 29763      "description": "Describe a container image",
 29764      "required": [
 29765       "names"
 29766      ],
 29767      "properties": {
 29768       "names": {
 29769        "description": "Names by which this image is known. e.g. [\"gcr.io/google_containers/hyperkube:v1.0.7\", \"dockerhub.io/google_containers/hyperkube:v1.0.7\"]",
 29770        "type": "array",
 29771        "items": {
 29772         "type": "string"
 29773        }
 29774       },
 29775       "sizeBytes": {
 29776        "description": "The size of the image in bytes.",
 29777        "type": "integer",
 29778        "format": "int64"
 29779       }
 29780      }
 29781     },
 29782     "v1.ContainerPort": {
 29783      "description": "ContainerPort represents a network port in a single container.",
 29784      "required": [
 29785       "containerPort"
 29786      ],
 29787      "properties": {
 29788       "containerPort": {
 29789        "description": "Number of port to expose on the pod's IP address. This must be a valid port number, 0 \u003c x \u003c 65536.",
 29790        "type": "integer",
 29791        "format": "int32"
 29792       },
 29793       "hostIP": {
 29794        "description": "What host IP to bind the external port to.",
 29795        "type": "string"
 29796       },
 29797       "hostPort": {
 29798        "description": "Number of port to expose on the host. If specified, this must be a valid port number, 0 \u003c x \u003c 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.",
 29799        "type": "integer",
 29800        "format": "int32"
 29801       },
 29802       "name": {
 29803        "description": "If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.",
 29804        "type": "string"
 29805       },
 29806       "protocol": {
 29807        "description": "Protocol for port. Must be UDP or TCP. Defaults to \"TCP\".",
 29808        "type": "string"
 29809       }
 29810      }
 29811     },
 29812     "v1.ContainerState": {
 29813      "description": "ContainerState holds a possible state of container. Only one of its members may be specified. If none of them is specified, the default one is ContainerStateWaiting.",
 29814      "properties": {
 29815       "running": {
 29816        "description": "Details about a running container",
 29817        "$ref": "#/definitions/v1.ContainerStateRunning"
 29818       },
 29819       "terminated": {
 29820        "description": "Details about a terminated container",
 29821        "$ref": "#/definitions/v1.ContainerStateTerminated"
 29822       },
 29823       "waiting": {
 29824        "description": "Details about a waiting container",
 29825        "$ref": "#/definitions/v1.ContainerStateWaiting"
 29826       }
 29827      }
 29828     },
 29829     "v1.ContainerStateRunning": {
 29830      "description": "ContainerStateRunning is a running state of a container.",
 29831      "properties": {
 29832       "startedAt": {
 29833        "description": "Time at which the container was last (re-)started",
 29834        "$ref": "#/definitions/unversioned.Time"
 29835       }
 29836      }
 29837     },
 29838     "v1.ContainerStateTerminated": {
 29839      "description": "ContainerStateTerminated is a terminated state of a container.",
 29840      "required": [
 29841       "exitCode"
 29842      ],
 29843      "properties": {
 29844       "containerID": {
 29845        "description": "Container's ID in the format 'docker://\u003ccontainer_id\u003e'",
 29846        "type": "string"
 29847       },
 29848       "exitCode": {
 29849        "description": "Exit status from the last termination of the container",
 29850        "type": "integer",
 29851        "format": "int32"
 29852       },
 29853       "finishedAt": {
 29854        "description": "Time at which the container last terminated",
 29855        "$ref": "#/definitions/unversioned.Time"
 29856       },
 29857       "message": {
 29858        "description": "Message regarding the last termination of the container",
 29859        "type": "string"
 29860       },
 29861       "reason": {
 29862        "description": "(brief) reason from the last termination of the container",
 29863        "type": "string"
 29864       },
 29865       "signal": {
 29866        "description": "Signal from the last termination of the container",
 29867        "type": "integer",
 29868        "format": "int32"
 29869       },
 29870       "startedAt": {
 29871        "description": "Time at which previous execution of the container started",
 29872        "$ref": "#/definitions/unversioned.Time"
 29873       }
 29874      }
 29875     },
 29876     "v1.ContainerStateWaiting": {
 29877      "description": "ContainerStateWaiting is a waiting state of a container.",
 29878      "properties": {
 29879       "message": {
 29880        "description": "Message regarding why the container is not yet running.",
 29881        "type": "string"
 29882       },
 29883       "reason": {
 29884        "description": "(brief) reason the container is not yet running.",
 29885        "type": "string"
 29886       }
 29887      }
 29888     },
 29889     "v1.ContainerStatus": {
 29890      "description": "ContainerStatus contains details for the current status of this container.",
 29891      "required": [
 29892       "name",
 29893       "ready",
 29894       "restartCount",
 29895       "image",
 29896       "imageID"
 29897      ],
 29898      "properties": {
 29899       "containerID": {
 29900        "description": "Container's ID in the format 'docker://\u003ccontainer_id\u003e'. More info: http://kubernetes.io/docs/user-guide/container-environment#container-information",
 29901        "type": "string"
 29902       },
 29903       "image": {
 29904        "description": "The image the container is running. More info: http://kubernetes.io/docs/user-guide/images",
 29905        "type": "string"
 29906       },
 29907       "imageID": {
 29908        "description": "ImageID of the container's image.",
 29909        "type": "string"
 29910       },
 29911       "lastState": {
 29912        "description": "Details about the container's last termination condition.",
 29913        "$ref": "#/definitions/v1.ContainerState"
 29914       },
 29915       "name": {
 29916        "description": "This must be a DNS_LABEL. Each container in a pod must have a unique name. Cannot be updated.",
 29917        "type": "string"
 29918       },
 29919       "ready": {
 29920        "description": "Specifies whether the container has passed its readiness probe.",
 29921        "type": "boolean"
 29922       },
 29923       "restartCount": {
 29924        "description": "The number of times the container has been restarted, currently based on the number of dead containers that have not yet been removed. Note that this is calculated from dead containers. But those containers are subject to garbage collection. This value will get capped at 5 by GC.",
 29925        "type": "integer",
 29926        "format": "int32"
 29927       },
 29928       "state": {
 29929        "description": "Details about the container's current condition.",
 29930        "$ref": "#/definitions/v1.ContainerState"
 29931       }
 29932      }
 29933     },
 29934     "v1.CrossVersionObjectReference": {
 29935      "description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.",
 29936      "required": [
 29937       "kind",
 29938       "name"
 29939      ],
 29940      "properties": {
 29941       "apiVersion": {
 29942        "description": "API version of the referent",
 29943        "type": "string"
 29944       },
 29945       "kind": {
 29946        "description": "Kind of the referent; More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds\"",
 29947        "type": "string"
 29948       },
 29949       "name": {
 29950        "description": "Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names",
 29951        "type": "string"
 29952       }
 29953      }
 29954     },
 29955     "v1.DaemonEndpoint": {
 29956      "description": "DaemonEndpoint contains information about a single Daemon endpoint.",
 29957      "required": [
 29958       "Port"
 29959      ],
 29960      "properties": {
 29961       "Port": {
 29962        "description": "Port number of the given endpoint.",
 29963        "type": "integer",
 29964        "format": "int32"
 29965       }
 29966      }
 29967     },
 29968     "v1.DeleteOptions": {
 29969      "description": "DeleteOptions may be provided when deleting an API object",
 29970      "properties": {
 29971       "gracePeriodSeconds": {
 29972        "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
 29973        "type": "integer",
 29974        "format": "int64"
 29975       },
 29976       "orphanDependents": {
 29977        "description": "Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list.",
 29978        "type": "boolean"
 29979       },
 29980       "preconditions": {
 29981        "description": "Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned.",
 29982        "$ref": "#/definitions/v1.Preconditions"
 29983       }
 29984      }
 29985     },
 29986     "v1.EndpointAddress": {
 29987      "description": "EndpointAddress is a tuple that describes single IP address.",
 29988      "required": [
 29989       "ip"
 29990      ],
 29991      "properties": {
 29992       "hostname": {
 29993        "description": "The Hostname of this endpoint",
 29994        "type": "string"
 29995       },
 29996       "ip": {
 29997        "description": "The IP of this endpoint. May not be loopback (127.0.0.0/8), link-local (169.254.0.0/16), or link-local multicast ((224.0.0.0/24). IPv6 is also accepted but not fully supported on all platforms. Also, certain kubernetes components, like kube-proxy, are not IPv6 ready.",
 29998        "type": "string"
 29999       },
 30000       "nodeName": {
 30001        "description": "Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node.",
 30002        "type": "string"
 30003       },
 30004       "targetRef": {
 30005        "description": "Reference to object providing the endpoint.",
 30006        "$ref": "#/definitions/v1.ObjectReference"
 30007       }
 30008      }
 30009     },
 30010     "v1.EndpointPort": {
 30011      "description": "EndpointPort is a tuple that describes a single port.",
 30012      "required": [
 30013       "port"
 30014      ],
 30015      "properties": {
 30016       "name": {
 30017        "description": "The name of this port (corresponds to ServicePort.Name). Must be a DNS_LABEL. Optional only if one port is defined.",
 30018        "type": "string"
 30019       },
 30020       "port": {
 30021        "description": "The port number of the endpoint.",
 30022        "type": "integer",
 30023        "format": "int32"
 30024       },
 30025       "protocol": {
 30026        "description": "The IP protocol for this port. Must be UDP or TCP. Default is TCP.",
 30027        "type": "string"
 30028       }
 30029      }
 30030     },
 30031     "v1.EndpointSubset": {
 30032      "description": "EndpointSubset is a group of addresses with a common set of ports. The expanded set of endpoints is the Cartesian product of Addresses x Ports. For example, given:\n  {\n    Addresses: [{\"ip\": \"10.10.1.1\"}, {\"ip\": \"10.10.2.2\"}],\n    Ports:     [{\"name\": \"a\", \"port\": 8675}, {\"name\": \"b\", \"port\": 309}]\n  }\nThe resulting set of endpoints can be viewed as:\n    a: [ 10.10.1.1:8675, 10.10.2.2:8675 ],\n    b: [ 10.10.1.1:309, 10.10.2.2:309 ]",
 30033      "properties": {
 30034       "addresses": {
 30035        "description": "IP addresses which offer the related ports that are marked as ready. These endpoints should be considered safe for load balancers and clients to utilize.",
 30036        "type": "array",
 30037        "items": {
 30038         "$ref": "#/definitions/v1.EndpointAddress"
 30039        }
 30040       },
 30041       "notReadyAddresses": {
 30042        "description": "IP addresses which offer the related ports but are not currently marked as ready because they have not yet finished starting, have recently failed a readiness check, or have recently failed a liveness check.",
 30043        "type": "array",
 30044        "items": {
 30045         "$ref": "#/definitions/v1.EndpointAddress"
 30046        }
 30047       },
 30048       "ports": {
 30049        "description": "Port numbers available on the related IP addresses.",
 30050        "type": "array",
 30051        "items": {
 30052         "$ref": "#/definitions/v1.EndpointPort"
 30053        }
 30054       }
 30055      }
 30056     },
 30057     "v1.Endpoints": {
 30058      "description": "Endpoints is a collection of endpoints that implement the actual service. Example:\n  Name: \"mysvc\",\n  Subsets: [\n    {\n      Addresses: [{\"ip\": \"10.10.1.1\"}, {\"ip\": \"10.10.2.2\"}],\n      Ports: [{\"name\": \"a\", \"port\": 8675}, {\"name\": \"b\", \"port\": 309}]\n    },\n    {\n      Addresses: [{\"ip\": \"10.10.3.3\"}],\n      Ports: [{\"name\": \"a\", \"port\": 93}, {\"name\": \"b\", \"port\": 76}]\n    },\n ]",
 30059      "required": [
 30060       "subsets"
 30061      ],
 30062      "properties": {
 30063       "metadata": {
 30064        "description": "Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 30065        "$ref": "#/definitions/v1.ObjectMeta"
 30066       },
 30067       "subsets": {
 30068        "description": "The set of all endpoints is the union of all subsets. Addresses are placed into subsets according to the IPs they share. A single address with multiple ports, some of which are ready and some of which are not (because they come from different containers) will result in the address being displayed in different subsets for the different ports. No address will appear in both Addresses and NotReadyAddresses in the same subset. Sets of addresses and ports that comprise a service.",
 30069        "type": "array",
 30070        "items": {
 30071         "$ref": "#/definitions/v1.EndpointSubset"
 30072        }
 30073       }
 30074      }
 30075     },
 30076     "v1.EndpointsList": {
 30077      "description": "EndpointsList is a list of endpoints.",
 30078      "required": [
 30079       "items"
 30080      ],
 30081      "properties": {
 30082       "items": {
 30083        "description": "List of endpoints.",
 30084        "type": "array",
 30085        "items": {
 30086         "$ref": "#/definitions/v1.Endpoints"
 30087        }
 30088       },
 30089       "metadata": {
 30090        "description": "Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds",
 30091        "$ref": "#/definitions/unversioned.ListMeta"
 30092       }
 30093      }
 30094     },
 30095     "v1.EnvVar": {
 30096      "description": "EnvVar represents an environment variable present in a Container.",
 30097      "required": [
 30098       "name"
 30099      ],
 30100      "properties": {
 30101       "name": {
 30102        "description": "Name of the environment variable. Must be a C_IDENTIFIER.",
 30103        "type": "string"
 30104       },
 30105       "value": {
 30106        "description": "Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \"\".",
 30107        "type": "string"
 30108       },
 30109       "valueFrom": {
 30110        "description": "Source for the environment variable's value. Cannot be used if value is not empty.",
 30111        "$ref": "#/definitions/v1.EnvVarSource"
 30112       }
 30113      }
 30114     },
 30115     "v1.EnvVarSource": {
 30116      "description": "EnvVarSource represents a source for the value of an EnvVar.",
 30117      "properties": {
 30118       "configMapKeyRef": {
 30119        "description": "Selects a key of a ConfigMap.",
 30120        "$ref": "#/definitions/v1.ConfigMapKeySelector"
 30121       },
 30122       "fieldRef": {
 30123        "description": "Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.podIP.",
 30124        "$ref": "#/definitions/v1.ObjectFieldSelector"
 30125       },
 30126       "resourceFieldRef": {
 30127        "description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.",
 30128        "$ref": "#/definitions/v1.ResourceFieldSelector"
 30129       },
 30130       "secretKeyRef": {
 30131        "description": "Selects a key of a secret in the pod's namespace",
 30132        "$ref": "#/definitions/v1.SecretKeySelector"
 30133       }
 30134      }
 30135     },
 30136     "v1.Event": {
 30137      "description": "Event is a report of an event somewhere in the cluster.",
 30138      "required": [
 30139       "metadata",
 30140       "involvedObject"
 30141      ],
 30142      "properties": {
 30143       "count": {
 30144        "description": "The number of times this event has occurred.",
 30145        "type": "integer",
 30146        "format": "int32"
 30147       },
 30148       "firstTimestamp": {
 30149        "description": "The time at which the event was first recorded. (Time of server receipt is in TypeMeta.)",
 30150        "$ref": "#/definitions/unversioned.Time"
 30151       },
 30152       "involvedObject": {
 30153        "description": "The object that this event is about.",
 30154        "$ref": "#/definitions/v1.ObjectReference"
 30155       },
 30156       "lastTimestamp": {
 30157        "description": "The time at which the most recent occurrence of this event was recorded.",
 30158        "$ref": "#/definitions/unversioned.Time"
 30159       },
 30160       "message": {
 30161        "description": "A human-readable description of the status of this operation.",
 30162        "type": "string"
 30163       },
 30164       "metadata": {
 30165        "description": "Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 30166        "$ref": "#/definitions/v1.ObjectMeta"
 30167       },
 30168       "reason": {
 30169        "description": "This should be a short, machine understandable string that gives the reason for the transition into the object's current status.",
 30170        "type": "string"
 30171       },
 30172       "source": {
 30173        "description": "The component reporting this event. Should be a short machine understandable string.",
 30174        "$ref": "#/definitions/v1.EventSource"
 30175       },
 30176       "type": {
 30177        "description": "Type of this event (Normal, Warning), new types could be added in the future",
 30178        "type": "string"
 30179       }
 30180      }
 30181     },
 30182     "v1.EventList": {
 30183      "description": "EventList is a list of events.",
 30184      "required": [
 30185       "items"
 30186      ],
 30187      "properties": {
 30188       "items": {
 30189        "description": "List of events",
 30190        "type": "array",
 30191        "items": {
 30192         "$ref": "#/definitions/v1.Event"
 30193        }
 30194       },
 30195       "metadata": {
 30196        "description": "Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds",
 30197        "$ref": "#/definitions/unversioned.ListMeta"
 30198       }
 30199      }
 30200     },
 30201     "v1.EventSource": {
 30202      "description": "EventSource contains information for an event.",
 30203      "properties": {
 30204       "component": {
 30205        "description": "Component from which the event is generated.",
 30206        "type": "string"
 30207       },
 30208       "host": {
 30209        "description": "Node name on which the event is generated.",
 30210        "type": "string"
 30211       }
 30212      }
 30213     },
 30214     "v1.ExecAction": {
 30215      "description": "ExecAction describes a \"run in container\" action.",
 30216      "properties": {
 30217       "command": {
 30218        "description": "Command is the command line to execute inside the container, the working directory for the command  is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.",
 30219        "type": "array",
 30220        "items": {
 30221         "type": "string"
 30222        }
 30223       }
 30224      }
 30225     },
 30226     "v1.HTTPGetAction": {
 30227      "description": "HTTPGetAction describes an action based on HTTP Get requests.",
 30228      "required": [
 30229       "port"
 30230      ],
 30231      "properties": {
 30232       "host": {
 30233        "description": "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.",
 30234        "type": "string"
 30235       },
 30236       "httpHeaders": {
 30237        "description": "Custom headers to set in the request. HTTP allows repeated headers.",
 30238        "type": "array",
 30239        "items": {
 30240         "$ref": "#/definitions/v1.HTTPHeader"
 30241        }
 30242       },
 30243       "path": {
 30244        "description": "Path to access on the HTTP server.",
 30245        "type": "string"
 30246       },
 30247       "port": {
 30248        "description": "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.",
 30249        "$ref": "#/definitions/intstr.IntOrString"
 30250       },
 30251       "scheme": {
 30252        "description": "Scheme to use for connecting to the host. Defaults to HTTP.",
 30253        "type": "string"
 30254       }
 30255      }
 30256     },
 30257     "v1.HTTPHeader": {
 30258      "description": "HTTPHeader describes a custom header to be used in HTTP probes",
 30259      "required": [
 30260       "name",
 30261       "value"
 30262      ],
 30263      "properties": {
 30264       "name": {
 30265        "description": "The header field name",
 30266        "type": "string"
 30267       },
 30268       "value": {
 30269        "description": "The header field value",
 30270        "type": "string"
 30271       }
 30272      }
 30273     },
 30274     "v1.Handler": {
 30275      "description": "Handler defines a specific action that should be taken",
 30276      "properties": {
 30277       "exec": {
 30278        "description": "One and only one of the following should be specified. Exec specifies the action to take.",
 30279        "$ref": "#/definitions/v1.ExecAction"
 30280       },
 30281       "httpGet": {
 30282        "description": "HTTPGet specifies the http request to perform.",
 30283        "$ref": "#/definitions/v1.HTTPGetAction"
 30284       },
 30285       "tcpSocket": {
 30286        "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported",
 30287        "$ref": "#/definitions/v1.TCPSocketAction"
 30288       }
 30289      }
 30290     },
 30291     "v1.HorizontalPodAutoscaler": {
 30292      "description": "configuration of a horizontal pod autoscaler.",
 30293      "properties": {
 30294       "metadata": {
 30295        "description": "Standard object metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 30296        "$ref": "#/definitions/v1.ObjectMeta"
 30297       },
 30298       "spec": {
 30299        "description": "behaviour of autoscaler. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status.",
 30300        "$ref": "#/definitions/v1.HorizontalPodAutoscalerSpec"
 30301       },
 30302       "status": {
 30303        "description": "current information about the autoscaler.",
 30304        "$ref": "#/definitions/v1.HorizontalPodAutoscalerStatus"
 30305       }
 30306      }
 30307     },
 30308     "v1.HorizontalPodAutoscalerList": {
 30309      "description": "list of horizontal pod autoscaler objects.",
 30310      "required": [
 30311       "items"
 30312      ],
 30313      "properties": {
 30314       "items": {
 30315        "description": "list of horizontal pod autoscaler objects.",
 30316        "type": "array",
 30317        "items": {
 30318         "$ref": "#/definitions/v1.HorizontalPodAutoscaler"
 30319        }
 30320       },
 30321       "metadata": {
 30322        "description": "Standard list metadata.",
 30323        "$ref": "#/definitions/unversioned.ListMeta"
 30324       }
 30325      }
 30326     },
 30327     "v1.HorizontalPodAutoscalerSpec": {
 30328      "description": "specification of a horizontal pod autoscaler.",
 30329      "required": [
 30330       "scaleTargetRef",
 30331       "maxReplicas"
 30332      ],
 30333      "properties": {
 30334       "maxReplicas": {
 30335        "description": "upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas.",
 30336        "type": "integer",
 30337        "format": "int32"
 30338       },
 30339       "minReplicas": {
 30340        "description": "lower limit for the number of pods that can be set by the autoscaler, default 1.",
 30341        "type": "integer",
 30342        "format": "int32"
 30343       },
 30344       "scaleTargetRef": {
 30345        "description": "reference to scaled resource; horizontal pod autoscaler will learn the current resource consumption and will set the desired number of pods by using its Scale subresource.",
 30346        "$ref": "#/definitions/v1.CrossVersionObjectReference"
 30347       },
 30348       "targetCPUUtilizationPercentage": {
 30349        "description": "target average CPU utilization (represented as a percentage of requested CPU) over all the pods; if not specified the default autoscaling policy will be used.",
 30350        "type": "integer",
 30351        "format": "int32"
 30352       }
 30353      }
 30354     },
 30355     "v1.HorizontalPodAutoscalerStatus": {
 30356      "description": "current status of a horizontal pod autoscaler",
 30357      "required": [
 30358       "currentReplicas",
 30359       "desiredReplicas"
 30360      ],
 30361      "properties": {
 30362       "currentCPUUtilizationPercentage": {
 30363        "description": "current average CPU utilization over all pods, represented as a percentage of requested CPU, e.g. 70 means that an average pod is using now 70% of its requested CPU.",
 30364        "type": "integer",
 30365        "format": "int32"
 30366       },
 30367       "currentReplicas": {
 30368        "description": "current number of replicas of pods managed by this autoscaler.",
 30369        "type": "integer",
 30370        "format": "int32"
 30371       },
 30372       "desiredReplicas": {
 30373        "description": "desired number of replicas of pods managed by this autoscaler.",
 30374        "type": "integer",
 30375        "format": "int32"
 30376       },
 30377       "lastScaleTime": {
 30378        "description": "last time the HorizontalPodAutoscaler scaled the number of pods; used by the autoscaler to control how often the number of pods is changed.",
 30379        "$ref": "#/definitions/unversioned.Time"
 30380       },
 30381       "observedGeneration": {
 30382        "description": "most recent generation observed by this autoscaler.",
 30383        "type": "integer",
 30384        "format": "int64"
 30385       }
 30386      }
 30387     },
 30388     "v1.Job": {
 30389      "description": "Job represents the configuration of a single job.",
 30390      "properties": {
 30391       "metadata": {
 30392        "description": "Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 30393        "$ref": "#/definitions/v1.ObjectMeta"
 30394       },
 30395       "spec": {
 30396        "description": "Spec is a structure defining the expected behavior of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status",
 30397        "$ref": "#/definitions/v1.JobSpec"
 30398       },
 30399       "status": {
 30400        "description": "Status is a structure describing current status of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status",
 30401        "$ref": "#/definitions/v1.JobStatus"
 30402       }
 30403      }
 30404     },
 30405     "v1.JobCondition": {
 30406      "description": "JobCondition describes current state of a job.",
 30407      "required": [
 30408       "type",
 30409       "status"
 30410      ],
 30411      "properties": {
 30412       "lastProbeTime": {
 30413        "description": "Last time the condition was checked.",
 30414        "$ref": "#/definitions/unversioned.Time"
 30415       },
 30416       "lastTransitionTime": {
 30417        "description": "Last time the condition transit from one status to another.",
 30418        "$ref": "#/definitions/unversioned.Time"
 30419       },
 30420       "message": {
 30421        "description": "Human readable message indicating details about last transition.",
 30422        "type": "string"
 30423       },
 30424       "reason": {
 30425        "description": "(brief) reason for the condition's last transition.",
 30426        "type": "string"
 30427       },
 30428       "status": {
 30429        "description": "Status of the condition, one of True, False, Unknown.",
 30430        "type": "string"
 30431       },
 30432       "type": {
 30433        "description": "Type of job condition, Complete or Failed.",
 30434        "type": "string"
 30435       }
 30436      }
 30437     },
 30438     "v1.JobList": {
 30439      "description": "JobList is a collection of jobs.",
 30440      "required": [
 30441       "items"
 30442      ],
 30443      "properties": {
 30444       "items": {
 30445        "description": "Items is the list of Job.",
 30446        "type": "array",
 30447        "items": {
 30448         "$ref": "#/definitions/v1.Job"
 30449        }
 30450       },
 30451       "metadata": {
 30452        "description": "Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 30453        "$ref": "#/definitions/unversioned.ListMeta"
 30454       }
 30455      }
 30456     },
 30457     "v1.JobSpec": {
 30458      "description": "JobSpec describes how the job execution will look like.",
 30459      "required": [
 30460       "template"
 30461      ],
 30462      "properties": {
 30463       "activeDeadlineSeconds": {
 30464        "description": "Optional duration in seconds relative to the startTime that the job may be active before the system tries to terminate it; value must be positive integer",
 30465        "type": "integer",
 30466        "format": "int64"
 30467       },
 30468       "completions": {
 30469        "description": "Completions specifies the desired number of successfully finished pods the job should be run with.  Setting to nil means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value.  Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job. More info: http://kubernetes.io/docs/user-guide/jobs",
 30470        "type": "integer",
 30471        "format": "int32"
 30472       },
 30473       "manualSelector": {
 30474        "description": "ManualSelector controls generation of pod labels and pod selectors. Leave `manualSelector` unset unless you are certain what you are doing. When false or unset, the system pick labels unique to this job and appends those labels to the pod template.  When true, the user is responsible for picking unique labels and specifying the selector.  Failure to pick a unique label may cause this and other jobs to not function correctly.  However, You may see `manualSelector=true` in jobs that were created with the old `extensions/v1beta1` API. More info: http://releases.k8s.io/HEAD/docs/design/selector-generation.md",
 30475        "type": "boolean"
 30476       },
 30477       "parallelism": {
 30478        "description": "Parallelism specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) \u003c .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: http://kubernetes.io/docs/user-guide/jobs",
 30479        "type": "integer",
 30480        "format": "int32"
 30481       },
 30482       "selector": {
 30483        "description": "Selector is a label query over pods that should match the pod count. Normally, the system sets this field for you. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors",
 30484        "$ref": "#/definitions/unversioned.LabelSelector"
 30485       },
 30486       "template": {
 30487        "description": "Template is the object that describes the pod that will be created when executing a job. More info: http://kubernetes.io/docs/user-guide/jobs",
 30488        "$ref": "#/definitions/v1.PodTemplateSpec"
 30489       }
 30490      }
 30491     },
 30492     "v1.JobStatus": {
 30493      "description": "JobStatus represents the current state of a Job.",
 30494      "properties": {
 30495       "active": {
 30496        "description": "Active is the number of actively running pods.",
 30497        "type": "integer",
 30498        "format": "int32"
 30499       },
 30500       "completionTime": {
 30501        "description": "CompletionTime represents time when the job was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.",
 30502        "$ref": "#/definitions/unversioned.Time"
 30503       },
 30504       "conditions": {
 30505        "description": "Conditions represent the latest available observations of an object's current state. More info: http://kubernetes.io/docs/user-guide/jobs",
 30506        "type": "array",
 30507        "items": {
 30508         "$ref": "#/definitions/v1.JobCondition"
 30509        }
 30510       },
 30511       "failed": {
 30512        "description": "Failed is the number of pods which reached Phase Failed.",
 30513        "type": "integer",
 30514        "format": "int32"
 30515       },
 30516       "startTime": {
 30517        "description": "StartTime represents time when the job was acknowledged by the Job Manager. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.",
 30518        "$ref": "#/definitions/unversioned.Time"
 30519       },
 30520       "succeeded": {
 30521        "description": "Succeeded is the number of pods which reached Phase Succeeded.",
 30522        "type": "integer",
 30523        "format": "int32"
 30524       }
 30525      }
 30526     },
 30527     "v1.Lifecycle": {
 30528      "description": "Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.",
 30529      "properties": {
 30530       "postStart": {
 30531        "description": "PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: http://kubernetes.io/docs/user-guide/container-environment#hook-details",
 30532        "$ref": "#/definitions/v1.Handler"
 30533       },
 30534       "preStop": {
 30535        "description": "PreStop is called immediately before a container is terminated. The container is terminated after the handler completes. The reason for termination is passed to the handler. Regardless of the outcome of the handler, the container is eventually terminated. Other management of the container blocks until the hook completes. More info: http://kubernetes.io/docs/user-guide/container-environment#hook-details",
 30536        "$ref": "#/definitions/v1.Handler"
 30537       }
 30538      }
 30539     },
 30540     "v1.LimitRange": {
 30541      "description": "LimitRange sets resource usage limits for each kind of resource in a Namespace.",
 30542      "properties": {
 30543       "metadata": {
 30544        "description": "Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 30545        "$ref": "#/definitions/v1.ObjectMeta"
 30546       },
 30547       "spec": {
 30548        "description": "Spec defines the limits enforced. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status",
 30549        "$ref": "#/definitions/v1.LimitRangeSpec"
 30550       }
 30551      }
 30552     },
 30553     "v1.LimitRangeItem": {
 30554      "description": "LimitRangeItem defines a min/max usage limit for any resource that matches on kind.",
 30555      "properties": {
 30556       "default": {
 30557        "description": "Default resource requirement limit value by resource name if resource limit is omitted.",
 30558        "type": "object",
 30559        "additionalProperties": {
 30560         "$ref": "#/definitions/resource.Quantity"
 30561        }
 30562       },
 30563       "defaultRequest": {
 30564        "description": "DefaultRequest is the default resource requirement request value by resource name if resource request is omitted.",
 30565        "type": "object",
 30566        "additionalProperties": {
 30567         "$ref": "#/definitions/resource.Quantity"
 30568        }
 30569       },
 30570       "max": {
 30571        "description": "Max usage constraints on this kind by resource name.",
 30572        "type": "object",
 30573        "additionalProperties": {
 30574         "$ref": "#/definitions/resource.Quantity"
 30575        }
 30576       },
 30577       "maxLimitRequestRatio": {
 30578        "description": "MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource.",
 30579        "type": "object",
 30580        "additionalProperties": {
 30581         "$ref": "#/definitions/resource.Quantity"
 30582        }
 30583       },
 30584       "min": {
 30585        "description": "Min usage constraints on this kind by resource name.",
 30586        "type": "object",
 30587        "additionalProperties": {
 30588         "$ref": "#/definitions/resource.Quantity"
 30589        }
 30590       },
 30591       "type": {
 30592        "description": "Type of resource that this limit applies to.",
 30593        "type": "string"
 30594       }
 30595      }
 30596     },
 30597     "v1.LimitRangeList": {
 30598      "description": "LimitRangeList is a list of LimitRange items.",
 30599      "required": [
 30600       "items"
 30601      ],
 30602      "properties": {
 30603       "items": {
 30604        "description": "Items is a list of LimitRange objects. More info: http://releases.k8s.io/HEAD/docs/design/admission_control_limit_range.md",
 30605        "type": "array",
 30606        "items": {
 30607         "$ref": "#/definitions/v1.LimitRange"
 30608        }
 30609       },
 30610       "metadata": {
 30611        "description": "Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds",
 30612        "$ref": "#/definitions/unversioned.ListMeta"
 30613       }
 30614      }
 30615     },
 30616     "v1.LimitRangeSpec": {
 30617      "description": "LimitRangeSpec defines a min/max usage limit for resources that match on kind.",
 30618      "required": [
 30619       "limits"
 30620      ],
 30621      "properties": {
 30622       "limits": {
 30623        "description": "Limits is the list of LimitRangeItem objects that are enforced.",
 30624        "type": "array",
 30625        "items": {
 30626         "$ref": "#/definitions/v1.LimitRangeItem"
 30627        }
 30628       }
 30629      }
 30630     },
 30631     "v1.LoadBalancerIngress": {
 30632      "description": "LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.",
 30633      "properties": {
 30634       "hostname": {
 30635        "description": "Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)",
 30636        "type": "string"
 30637       },
 30638       "ip": {
 30639        "description": "IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)",
 30640        "type": "string"
 30641       }
 30642      }
 30643     },
 30644     "v1.LoadBalancerStatus": {
 30645      "description": "LoadBalancerStatus represents the status of a load-balancer.",
 30646      "properties": {
 30647       "ingress": {
 30648        "description": "Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.",
 30649        "type": "array",
 30650        "items": {
 30651         "$ref": "#/definitions/v1.LoadBalancerIngress"
 30652        }
 30653       }
 30654      }
 30655     },
 30656     "v1.LocalObjectReference": {
 30657      "description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.",
 30658      "properties": {
 30659       "name": {
 30660        "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
 30661        "type": "string"
 30662       }
 30663      }
 30664     },
 30665     "v1.Namespace": {
 30666      "description": "Namespace provides a scope for Names. Use of multiple namespaces is optional.",
 30667      "properties": {
 30668       "metadata": {
 30669        "description": "Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 30670        "$ref": "#/definitions/v1.ObjectMeta"
 30671       },
 30672       "spec": {
 30673        "description": "Spec defines the behavior of the Namespace. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status",
 30674        "$ref": "#/definitions/v1.NamespaceSpec"
 30675       },
 30676       "status": {
 30677        "description": "Status describes the current status of a Namespace. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status",
 30678        "$ref": "#/definitions/v1.NamespaceStatus"
 30679       }
 30680      }
 30681     },
 30682     "v1.NamespaceList": {
 30683      "description": "NamespaceList is a list of Namespaces.",
 30684      "required": [
 30685       "items"
 30686      ],
 30687      "properties": {
 30688       "items": {
 30689        "description": "Items is the list of Namespace objects in the list. More info: http://kubernetes.io/docs/user-guide/namespaces",
 30690        "type": "array",
 30691        "items": {
 30692         "$ref": "#/definitions/v1.Namespace"
 30693        }
 30694       },
 30695       "metadata": {
 30696        "description": "Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds",
 30697        "$ref": "#/definitions/unversioned.ListMeta"
 30698       }
 30699      }
 30700     },
 30701     "v1.NamespaceSpec": {
 30702      "description": "NamespaceSpec describes the attributes on a Namespace.",
 30703      "properties": {
 30704       "finalizers": {
 30705        "description": "Finalizers is an opaque list of values that must be empty to permanently remove object from storage. More info: http://releases.k8s.io/HEAD/docs/design/namespaces.md#finalizers",
 30706        "type": "array",
 30707        "items": {
 30708         "type": "string"
 30709        }
 30710       }
 30711      }
 30712     },
 30713     "v1.NamespaceStatus": {
 30714      "description": "NamespaceStatus is information about the current status of a Namespace.",
 30715      "properties": {
 30716       "phase": {
 30717        "description": "Phase is the current lifecycle phase of the namespace. More info: http://releases.k8s.io/HEAD/docs/design/namespaces.md#phases",
 30718        "type": "string"
 30719       }
 30720      }
 30721     },
 30722     "v1.Node": {
 30723      "description": "Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd).",
 30724      "properties": {
 30725       "metadata": {
 30726        "description": "Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 30727        "$ref": "#/definitions/v1.ObjectMeta"
 30728       },
 30729       "spec": {
 30730        "description": "Spec defines the behavior of a node. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status",
 30731        "$ref": "#/definitions/v1.NodeSpec"
 30732       },
 30733       "status": {
 30734        "description": "Most recently observed status of the node. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status",
 30735        "$ref": "#/definitions/v1.NodeStatus"
 30736       }
 30737      }
 30738     },
 30739     "v1.NodeAddress": {
 30740      "description": "NodeAddress contains information for the node's address.",
 30741      "required": [
 30742       "type",
 30743       "address"
 30744      ],
 30745      "properties": {
 30746       "address": {
 30747        "description": "The node address.",
 30748        "type": "string"
 30749       },
 30750       "type": {
 30751        "description": "Node address type, one of Hostname, ExternalIP or InternalIP.",
 30752        "type": "string"
 30753       }
 30754      }
 30755     },
 30756     "v1.NodeCondition": {
 30757      "description": "NodeCondition contains condition information for a node.",
 30758      "required": [
 30759       "type",
 30760       "status"
 30761      ],
 30762      "properties": {
 30763       "lastHeartbeatTime": {
 30764        "description": "Last time we got an update on a given condition.",
 30765        "$ref": "#/definitions/unversioned.Time"
 30766       },
 30767       "lastTransitionTime": {
 30768        "description": "Last time the condition transit from one status to another.",
 30769        "$ref": "#/definitions/unversioned.Time"
 30770       },
 30771       "message": {
 30772        "description": "Human readable message indicating details about last transition.",
 30773        "type": "string"
 30774       },
 30775       "reason": {
 30776        "description": "(brief) reason for the condition's last transition.",
 30777        "type": "string"
 30778       },
 30779       "status": {
 30780        "description": "Status of the condition, one of True, False, Unknown.",
 30781        "type": "string"
 30782       },
 30783       "type": {
 30784        "description": "Type of node condition.",
 30785        "type": "string"
 30786       }
 30787      }
 30788     },
 30789     "v1.NodeDaemonEndpoints": {
 30790      "description": "NodeDaemonEndpoints lists ports opened by daemons running on the Node.",
 30791      "properties": {
 30792       "kubeletEndpoint": {
 30793        "description": "Endpoint on which Kubelet is listening.",
 30794        "$ref": "#/definitions/v1.DaemonEndpoint"
 30795       }
 30796      }
 30797     },
 30798     "v1.NodeList": {
 30799      "description": "NodeList is the whole list of all Nodes which have been registered with master.",
 30800      "required": [
 30801       "items"
 30802      ],
 30803      "properties": {
 30804       "items": {
 30805        "description": "List of nodes",
 30806        "type": "array",
 30807        "items": {
 30808         "$ref": "#/definitions/v1.Node"
 30809        }
 30810       },
 30811       "metadata": {
 30812        "description": "Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds",
 30813        "$ref": "#/definitions/unversioned.ListMeta"
 30814       }
 30815      }
 30816     },
 30817     "v1.NodeSpec": {
 30818      "description": "NodeSpec describes the attributes that a node is created with.",
 30819      "properties": {
 30820       "externalID": {
 30821        "description": "External ID of the node assigned by some machine database (e.g. a cloud provider). Deprecated.",
 30822        "type": "string"
 30823       },
 30824       "podCIDR": {
 30825        "description": "PodCIDR represents the pod IP range assigned to the node.",
 30826        "type": "string"
 30827       },
 30828       "providerID": {
 30829        "description": "ID of the node assigned by the cloud provider in the format: \u003cProviderName\u003e://\u003cProviderSpecificNodeID\u003e",
 30830        "type": "string"
 30831       },
 30832       "unschedulable": {
 30833        "description": "Unschedulable controls node schedulability of new pods. By default, node is schedulable. More info: http://releases.k8s.io/HEAD/docs/admin/node.md#manual-node-administration\"`",
 30834        "type": "boolean"
 30835       }
 30836      }
 30837     },
 30838     "v1.NodeStatus": {
 30839      "description": "NodeStatus is information about the current status of a node.",
 30840      "properties": {
 30841       "addresses": {
 30842        "description": "List of addresses reachable to the node. Queried from cloud provider, if available. More info: http://releases.k8s.io/HEAD/docs/admin/node.md#node-addresses",
 30843        "type": "array",
 30844        "items": {
 30845         "$ref": "#/definitions/v1.NodeAddress"
 30846        }
 30847       },
 30848       "allocatable": {
 30849        "description": "Allocatable represents the resources of a node that are available for scheduling. Defaults to Capacity.",
 30850        "type": "object",
 30851        "additionalProperties": {
 30852         "$ref": "#/definitions/resource.Quantity"
 30853        }
 30854       },
 30855       "capacity": {
 30856        "description": "Capacity represents the total resources of a node. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#capacity for more details.",
 30857        "type": "object",
 30858        "additionalProperties": {
 30859         "$ref": "#/definitions/resource.Quantity"
 30860        }
 30861       },
 30862       "conditions": {
 30863        "description": "Conditions is an array of current observed node conditions. More info: http://releases.k8s.io/HEAD/docs/admin/node.md#node-condition",
 30864        "type": "array",
 30865        "items": {
 30866         "$ref": "#/definitions/v1.NodeCondition"
 30867        }
 30868       },
 30869       "daemonEndpoints": {
 30870        "description": "Endpoints of daemons running on the Node.",
 30871        "$ref": "#/definitions/v1.NodeDaemonEndpoints"
 30872       },
 30873       "images": {
 30874        "description": "List of container images on this node",
 30875        "type": "array",
 30876        "items": {
 30877         "$ref": "#/definitions/v1.ContainerImage"
 30878        }
 30879       },
 30880       "nodeInfo": {
 30881        "description": "Set of ids/uuids to uniquely identify the node. More info: http://releases.k8s.io/HEAD/docs/admin/node.md#node-info",
 30882        "$ref": "#/definitions/v1.NodeSystemInfo"
 30883       },
 30884       "phase": {
 30885        "description": "NodePhase is the recently observed lifecycle phase of the node. More info: http://releases.k8s.io/HEAD/docs/admin/node.md#node-phase The field is never populated, and now is deprecated.",
 30886        "type": "string"
 30887       },
 30888       "volumesAttached": {
 30889        "description": "List of volumes that are attached to the node.",
 30890        "type": "array",
 30891        "items": {
 30892         "$ref": "#/definitions/v1.AttachedVolume"
 30893        }
 30894       },
 30895       "volumesInUse": {
 30896        "description": "List of attachable volumes in use (mounted) by the node.",
 30897        "type": "array",
 30898        "items": {
 30899         "type": "string"
 30900        }
 30901       }
 30902      }
 30903     },
 30904     "v1.NodeSystemInfo": {
 30905      "description": "NodeSystemInfo is a set of ids/uuids to uniquely identify the node.",
 30906      "required": [
 30907       "machineID",
 30908       "systemUUID",
 30909       "bootID",
 30910       "kernelVersion",
 30911       "osImage",
 30912       "containerRuntimeVersion",
 30913       "kubeletVersion",
 30914       "kubeProxyVersion",
 30915       "operatingSystem",
 30916       "architecture"
 30917      ],
 30918      "properties": {
 30919       "architecture": {
 30920        "description": "The Architecture reported by the node",
 30921        "type": "string"
 30922       },
 30923       "bootID": {
 30924        "description": "Boot ID reported by the node.",
 30925        "type": "string"
 30926       },
 30927       "containerRuntimeVersion": {
 30928        "description": "ContainerRuntime Version reported by the node through runtime remote API (e.g. docker://1.5.0).",
 30929        "type": "string"
 30930       },
 30931       "kernelVersion": {
 30932        "description": "Kernel Version reported by the node from 'uname -r' (e.g. 3.16.0-0.bpo.4-amd64).",
 30933        "type": "string"
 30934       },
 30935       "kubeProxyVersion": {
 30936        "description": "KubeProxy Version reported by the node.",
 30937        "type": "string"
 30938       },
 30939       "kubeletVersion": {
 30940        "description": "Kubelet Version reported by the node.",
 30941        "type": "string"
 30942       },
 30943       "machineID": {
 30944        "description": "MachineID reported by the node. For unique machine identification in the cluster this field is prefered. Learn more from man(5) machine-id: http://man7.org/linux/man-pages/man5/machine-id.5.html",
 30945        "type": "string"
 30946       },
 30947       "operatingSystem": {
 30948        "description": "The Operating System reported by the node",
 30949        "type": "string"
 30950       },
 30951       "osImage": {
 30952        "description": "OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).",
 30953        "type": "string"
 30954       },
 30955       "systemUUID": {
 30956        "description": "SystemUUID reported by the node. For unique machine identification MachineID is prefered. This field is specific to Red Hat hosts https://access.redhat.com/documentation/en-US/Red_Hat_Subscription_Management/1/html/RHSM/getting-system-uuid.html",
 30957        "type": "string"
 30958       }
 30959      }
 30960     },
 30961     "v1.ObjectFieldSelector": {
 30962      "description": "ObjectFieldSelector selects an APIVersioned field of an object.",
 30963      "required": [
 30964       "fieldPath"
 30965      ],
 30966      "properties": {
 30967       "apiVersion": {
 30968        "description": "Version of the schema the FieldPath is written in terms of, defaults to \"v1\".",
 30969        "type": "string"
 30970       },
 30971       "fieldPath": {
 30972        "description": "Path of the field to select in the specified API version.",
 30973        "type": "string"
 30974       }
 30975      }
 30976     },
 30977     "v1.ObjectMeta": {
 30978      "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
 30979      "properties": {
 30980       "annotations": {
 30981        "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations",
 30982        "type": "object",
 30983        "additionalProperties": {
 30984         "type": "string"
 30985        }
 30986       },
 30987       "clusterName": {
 30988        "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.",
 30989        "type": "string"
 30990       },
 30991       "creationTimestamp": {
 30992        "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 30993        "$ref": "#/definitions/unversioned.Time"
 30994       },
 30995       "deletionGracePeriodSeconds": {
 30996        "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.",
 30997        "type": "integer",
 30998        "format": "int64"
 30999       },
 31000       "deletionTimestamp": {
 31001        "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource will be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field. Once set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. Once the resource is deleted in the API, the Kubelet will send a hard termination signal to the container. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 31002        "$ref": "#/definitions/unversioned.Time"
 31003       },
 31004       "finalizers": {
 31005        "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed.",
 31006        "type": "array",
 31007        "items": {
 31008         "type": "string"
 31009        }
 31010       },
 31011       "generateName": {
 31012        "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#idempotency",
 31013        "type": "string"
 31014       },
 31015       "generation": {
 31016        "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
 31017        "type": "integer",
 31018        "format": "int64"
 31019       },
 31020       "labels": {
 31021        "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels",
 31022        "type": "object",
 31023        "additionalProperties": {
 31024         "type": "string"
 31025        }
 31026       },
 31027       "name": {
 31028        "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
 31029        "type": "string"
 31030       },
 31031       "namespace": {
 31032        "description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces",
 31033        "type": "string"
 31034       },
 31035       "ownerReferences": {
 31036        "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.",
 31037        "type": "array",
 31038        "items": {
 31039         "$ref": "#/definitions/v1.OwnerReference"
 31040        }
 31041       },
 31042       "resourceVersion": {
 31043        "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#concurrency-control-and-consistency",
 31044        "type": "string"
 31045       },
 31046       "selfLink": {
 31047        "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.",
 31048        "type": "string"
 31049       },
 31050       "uid": {
 31051        "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
 31052        "type": "string"
 31053       }
 31054      }
 31055     },
 31056     "v1.ObjectReference": {
 31057      "description": "ObjectReference contains enough information to let you inspect or modify the referred object.",
 31058      "properties": {
 31059       "apiVersion": {
 31060        "description": "API version of the referent.",
 31061        "type": "string"
 31062       },
 31063       "fieldPath": {
 31064        "description": "If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: \"spec.containers{name}\" (where \"name\" refers to the name of the container that triggered the event) or if no container name is specified \"spec.containers[2]\" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.",
 31065        "type": "string"
 31066       },
 31067       "kind": {
 31068        "description": "Kind of the referent. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds",
 31069        "type": "string"
 31070       },
 31071       "name": {
 31072        "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
 31073        "type": "string"
 31074       },
 31075       "namespace": {
 31076        "description": "Namespace of the referent. More info: http://kubernetes.io/docs/user-guide/namespaces",
 31077        "type": "string"
 31078       },
 31079       "resourceVersion": {
 31080        "description": "Specific resourceVersion to which this reference is made, if any. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#concurrency-control-and-consistency",
 31081        "type": "string"
 31082       },
 31083       "uid": {
 31084        "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
 31085        "type": "string"
 31086       }
 31087      }
 31088     },
 31089     "v1.OwnerReference": {
 31090      "description": "OwnerReference contains enough information to let you identify an owning object. Currently, an owning object must be in the same namespace, so there is no namespace field.",
 31091      "required": [
 31092       "apiVersion",
 31093       "kind",
 31094       "name",
 31095       "uid"
 31096      ],
 31097      "properties": {
 31098       "apiVersion": {
 31099        "description": "API version of the referent.",
 31100        "type": "string"
 31101       },
 31102       "controller": {
 31103        "description": "If true, this reference points to the managing controller.",
 31104        "type": "boolean"
 31105       },
 31106       "kind": {
 31107        "description": "Kind of the referent. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds",
 31108        "type": "string"
 31109       },
 31110       "name": {
 31111        "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
 31112        "type": "string"
 31113       },
 31114       "uid": {
 31115        "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
 31116        "type": "string"
 31117       }
 31118      }
 31119     },
 31120     "v1.PersistentVolume": {
 31121      "description": "PersistentVolume (PV) is a storage resource provisioned by an administrator. It is analogous to a node. More info: http://kubernetes.io/docs/user-guide/persistent-volumes",
 31122      "properties": {
 31123       "metadata": {
 31124        "description": "Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 31125        "$ref": "#/definitions/v1.ObjectMeta"
 31126       },
 31127       "spec": {
 31128        "description": "Spec defines a specification of a persistent volume owned by the cluster. Provisioned by an administrator. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistent-volumes",
 31129        "$ref": "#/definitions/v1.PersistentVolumeSpec"
 31130       },
 31131       "status": {
 31132        "description": "Status represents the current information/status for the persistent volume. Populated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistent-volumes",
 31133        "$ref": "#/definitions/v1.PersistentVolumeStatus"
 31134       }
 31135      }
 31136     },
 31137     "v1.PersistentVolumeClaim": {
 31138      "description": "PersistentVolumeClaim is a user's request for and claim to a persistent volume",
 31139      "properties": {
 31140       "metadata": {
 31141        "description": "Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 31142        "$ref": "#/definitions/v1.ObjectMeta"
 31143       },
 31144       "spec": {
 31145        "description": "Spec defines the desired characteristics of a volume requested by a pod author. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims",
 31146        "$ref": "#/definitions/v1.PersistentVolumeClaimSpec"
 31147       },
 31148       "status": {
 31149        "description": "Status represents the current information/status of a persistent volume claim. Read-only. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims",
 31150        "$ref": "#/definitions/v1.PersistentVolumeClaimStatus"
 31151       }
 31152      }
 31153     },
 31154     "v1.PersistentVolumeClaimList": {
 31155      "description": "PersistentVolumeClaimList is a list of PersistentVolumeClaim items.",
 31156      "required": [
 31157       "items"
 31158      ],
 31159      "properties": {
 31160       "items": {
 31161        "description": "A list of persistent volume claims. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#persistentvolumeclaims",
 31162        "type": "array",
 31163        "items": {
 31164         "$ref": "#/definitions/v1.PersistentVolumeClaim"
 31165        }
 31166       },
 31167       "metadata": {
 31168        "description": "Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds",
 31169        "$ref": "#/definitions/unversioned.ListMeta"
 31170       }
 31171      }
 31172     },
 31173     "v1.PersistentVolumeClaimSpec": {
 31174      "description": "PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes",
 31175      "properties": {
 31176       "accessModes": {
 31177        "description": "AccessModes contains the desired access modes the volume should have. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#access-modes-1",
 31178        "type": "array",
 31179        "items": {
 31180         "type": "string"
 31181        }
 31182       },
 31183       "resources": {
 31184        "description": "Resources represents the minimum resources the volume should have. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#resources",
 31185        "$ref": "#/definitions/v1.ResourceRequirements"
 31186       },
 31187       "selector": {
 31188        "description": "A label query over volumes to consider for binding.",
 31189        "$ref": "#/definitions/unversioned.LabelSelector"
 31190       },
 31191       "volumeName": {
 31192        "description": "VolumeName is the binding reference to the PersistentVolume backing this claim.",
 31193        "type": "string"
 31194       }
 31195      }
 31196     },
 31197     "v1.PersistentVolumeClaimStatus": {
 31198      "description": "PersistentVolumeClaimStatus is the current status of a persistent volume claim.",
 31199      "properties": {
 31200       "accessModes": {
 31201        "description": "AccessModes contains the actual access modes the volume backing the PVC has. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#access-modes-1",
 31202        "type": "array",
 31203        "items": {
 31204         "type": "string"
 31205        }
 31206       },
 31207       "capacity": {
 31208        "description": "Represents the actual resources of the underlying volume.",
 31209        "type": "object",
 31210        "additionalProperties": {
 31211         "$ref": "#/definitions/resource.Quantity"
 31212        }
 31213       },
 31214       "phase": {
 31215        "description": "Phase represents the current phase of PersistentVolumeClaim.",
 31216        "type": "string"
 31217       }
 31218      }
 31219     },
 31220     "v1.PersistentVolumeList": {
 31221      "description": "PersistentVolumeList is a list of PersistentVolume items.",
 31222      "required": [
 31223       "items"
 31224      ],
 31225      "properties": {
 31226       "items": {
 31227        "description": "List of persistent volumes. More info: http://kubernetes.io/docs/user-guide/persistent-volumes",
 31228        "type": "array",
 31229        "items": {
 31230         "$ref": "#/definitions/v1.PersistentVolume"
 31231        }
 31232       },
 31233       "metadata": {
 31234        "description": "Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds",
 31235        "$ref": "#/definitions/unversioned.ListMeta"
 31236       }
 31237      }
 31238     },
 31239     "v1.PersistentVolumeSpec": {
 31240      "description": "PersistentVolumeSpec is the specification of a persistent volume.",
 31241      "properties": {
 31242       "accessModes": {
 31243        "description": "AccessModes contains all ways the volume can be mounted. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#access-modes",
 31244        "type": "array",
 31245        "items": {
 31246         "type": "string"
 31247        }
 31248       },
 31249       "capacity": {
 31250        "description": "A description of the persistent volume's resources and capacity. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#capacity",
 31251        "type": "object",
 31252        "additionalProperties": {
 31253         "$ref": "#/definitions/resource.Quantity"
 31254        }
 31255       },
 31256       "claimRef": {
 31257        "description": "ClaimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim. Expected to be non-nil when bound. claim.VolumeName is the authoritative bind between PV and PVC. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#binding",
 31258        "$ref": "#/definitions/v1.ObjectReference"
 31259       },
 31260       "persistentVolumeReclaimPolicy": {
 31261        "description": "What happens to a persistent volume when released from its claim. Valid options are Retain (default) and Recycle. Recycling must be supported by the volume plugin underlying this persistent volume. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#recycling-policy",
 31262        "type": "string"
 31263       }
 31264      }
 31265     },
 31266     "v1.PersistentVolumeStatus": {
 31267      "description": "PersistentVolumeStatus is the current status of a persistent volume.",
 31268      "properties": {
 31269       "message": {
 31270        "description": "A human-readable message indicating details about why the volume is in this state.",
 31271        "type": "string"
 31272       },
 31273       "phase": {
 31274        "description": "Phase indicates if a volume is available, bound to a claim, or released by a claim. More info: http://kubernetes.io/docs/user-guide/persistent-volumes#phase",
 31275        "type": "string"
 31276       },
 31277       "reason": {
 31278        "description": "Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.",
 31279        "type": "string"
 31280       }
 31281      }
 31282     },
 31283     "v1.Pod": {
 31284      "description": "Pod is a collection of containers that can run on a host. This resource is created by clients and scheduled onto hosts.",
 31285      "properties": {
 31286       "metadata": {
 31287        "description": "Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 31288        "$ref": "#/definitions/v1.ObjectMeta"
 31289       },
 31290       "spec": {
 31291        "description": "Specification of the desired behavior of the pod. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status",
 31292        "$ref": "#/definitions/v1.PodSpec"
 31293       },
 31294       "status": {
 31295        "description": "Most recently observed status of the pod. This data may not be up to date. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status",
 31296        "$ref": "#/definitions/v1.PodStatus"
 31297       }
 31298      }
 31299     },
 31300     "v1.PodCondition": {
 31301      "description": "PodCondition contains details for the current condition of this pod.",
 31302      "required": [
 31303       "type",
 31304       "status"
 31305      ],
 31306      "properties": {
 31307       "lastProbeTime": {
 31308        "description": "Last time we probed the condition.",
 31309        "$ref": "#/definitions/unversioned.Time"
 31310       },
 31311       "lastTransitionTime": {
 31312        "description": "Last time the condition transitioned from one status to another.",
 31313        "$ref": "#/definitions/unversioned.Time"
 31314       },
 31315       "message": {
 31316        "description": "Human-readable message indicating details about last transition.",
 31317        "type": "string"
 31318       },
 31319       "reason": {
 31320        "description": "Unique, one-word, CamelCase reason for the condition's last transition.",
 31321        "type": "string"
 31322       },
 31323       "status": {
 31324        "description": "Status is the status of the condition. Can be True, False, Unknown. More info: http://kubernetes.io/docs/user-guide/pod-states#pod-conditions",
 31325        "type": "string"
 31326       },
 31327       "type": {
 31328        "description": "Type is the type of the condition. Currently only Ready. More info: http://kubernetes.io/docs/user-guide/pod-states#pod-conditions",
 31329        "type": "string"
 31330       }
 31331      }
 31332     },
 31333     "v1.PodList": {
 31334      "description": "PodList is a list of Pods.",
 31335      "required": [
 31336       "items"
 31337      ],
 31338      "properties": {
 31339       "items": {
 31340        "description": "List of pods. More info: http://kubernetes.io/docs/user-guide/pods",
 31341        "type": "array",
 31342        "items": {
 31343         "$ref": "#/definitions/v1.Pod"
 31344        }
 31345       },
 31346       "metadata": {
 31347        "description": "Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds",
 31348        "$ref": "#/definitions/unversioned.ListMeta"
 31349       }
 31350      }
 31351     },
 31352     "v1.PodSecurityContext": {
 31353      "description": "PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext.  Field values of container.securityContext take precedence over field values of PodSecurityContext.",
 31354      "properties": {
 31355       "fsGroup": {
 31356        "description": "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\n\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\n\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.",
 31357        "type": "integer",
 31358        "format": "int64"
 31359       },
 31360       "runAsNonRoot": {
 31361        "description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext.  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
 31362        "type": "boolean"
 31363       },
 31364       "runAsUser": {
 31365        "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext.  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.",
 31366        "type": "integer",
 31367        "format": "int64"
 31368       },
 31369       "seLinuxOptions": {
 31370        "description": "The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container.  May also be set in SecurityContext.  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.",
 31371        "$ref": "#/definitions/v1.SELinuxOptions"
 31372       },
 31373       "supplementalGroups": {
 31374        "description": "A list of groups applied to the first process run in each container, in addition to the container's primary GID.  If unspecified, no groups will be added to any container.",
 31375        "type": "array",
 31376        "items": {
 31377         "type": "integer",
 31378         "format": "int64"
 31379        }
 31380       }
 31381      }
 31382     },
 31383     "v1.PodSpec": {
 31384      "description": "PodSpec is a description of a pod.",
 31385      "required": [
 31386       "containers"
 31387      ],
 31388      "properties": {
 31389       "activeDeadlineSeconds": {
 31390        "description": "Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.",
 31391        "type": "integer",
 31392        "format": "int64"
 31393       },
 31394       "containers": {
 31395        "description": "List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/containers",
 31396        "type": "array",
 31397        "items": {
 31398         "$ref": "#/definitions/v1.Container"
 31399        }
 31400       },
 31401       "dnsPolicy": {
 31402        "description": "Set DNS policy for containers within the pod. One of 'ClusterFirst' or 'Default'. Defaults to \"ClusterFirst\".",
 31403        "type": "string"
 31404       },
 31405       "hostIPC": {
 31406        "description": "Use the host's ipc namespace. Optional: Default to false.",
 31407        "type": "boolean"
 31408       },
 31409       "hostNetwork": {
 31410        "description": "Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.",
 31411        "type": "boolean"
 31412       },
 31413       "hostPID": {
 31414        "description": "Use the host's pid namespace. Optional: Default to false.",
 31415        "type": "boolean"
 31416       },
 31417       "hostname": {
 31418        "description": "Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.",
 31419        "type": "string"
 31420       },
 31421       "imagePullSecrets": {
 31422        "description": "ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: http://kubernetes.io/docs/user-guide/images#specifying-imagepullsecrets-on-a-pod",
 31423        "type": "array",
 31424        "items": {
 31425         "$ref": "#/definitions/v1.LocalObjectReference"
 31426        }
 31427       },
 31428       "nodeName": {
 31429        "description": "NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.",
 31430        "type": "string"
 31431       },
 31432       "nodeSelector": {
 31433        "description": "NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: http://kubernetes.io/docs/user-guide/node-selection/README",
 31434        "type": "object",
 31435        "additionalProperties": {
 31436         "type": "string"
 31437        }
 31438       },
 31439       "restartPolicy": {
 31440        "description": "Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: http://kubernetes.io/docs/user-guide/pod-states#restartpolicy",
 31441        "type": "string"
 31442       },
 31443       "securityContext": {
 31444        "description": "SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty.  See type description for default values of each field.",
 31445        "$ref": "#/definitions/v1.PodSecurityContext"
 31446       },
 31447       "serviceAccount": {
 31448        "description": "DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.",
 31449        "type": "string"
 31450       },
 31451       "serviceAccountName": {
 31452        "description": "ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: http://releases.k8s.io/HEAD/docs/design/service_accounts.md",
 31453        "type": "string"
 31454       },
 31455       "subdomain": {
 31456        "description": "If specified, the fully qualified Pod hostname will be \"\u003chostname\u003e.\u003csubdomain\u003e.\u003cpod namespace\u003e.svc.\u003ccluster domain\u003e\". If not specified, the pod will not have a domainname at all.",
 31457        "type": "string"
 31458       },
 31459       "terminationGracePeriodSeconds": {
 31460        "description": "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.",
 31461        "type": "integer",
 31462        "format": "int64"
 31463       },
 31464       "volumes": {
 31465        "description": "List of volumes that can be mounted by containers belonging to the pod. More info: http://kubernetes.io/docs/user-guide/volumes",
 31466        "type": "array",
 31467        "items": {
 31468         "$ref": "#/definitions/v1.Volume"
 31469        }
 31470       }
 31471      }
 31472     },
 31473     "v1.PodStatus": {
 31474      "description": "PodStatus represents information about the status of a pod. Status may trail the actual state of a system.",
 31475      "properties": {
 31476       "conditions": {
 31477        "description": "Current service state of pod. More info: http://kubernetes.io/docs/user-guide/pod-states#pod-conditions",
 31478        "type": "array",
 31479        "items": {
 31480         "$ref": "#/definitions/v1.PodCondition"
 31481        }
 31482       },
 31483       "containerStatuses": {
 31484        "description": "The list has one entry per container in the manifest. Each entry is currently the output of `docker inspect`. More info: http://kubernetes.io/docs/user-guide/pod-states#container-statuses",
 31485        "type": "array",
 31486        "items": {
 31487         "$ref": "#/definitions/v1.ContainerStatus"
 31488        }
 31489       },
 31490       "hostIP": {
 31491        "description": "IP address of the host to which the pod is assigned. Empty if not yet scheduled.",
 31492        "type": "string"
 31493       },
 31494       "message": {
 31495        "description": "A human readable message indicating details about why the pod is in this condition.",
 31496        "type": "string"
 31497       },
 31498       "phase": {
 31499        "description": "Current condition of the pod. More info: http://kubernetes.io/docs/user-guide/pod-states#pod-phase",
 31500        "type": "string"
 31501       },
 31502       "podIP": {
 31503        "description": "IP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated.",
 31504        "type": "string"
 31505       },
 31506       "reason": {
 31507        "description": "A brief CamelCase message indicating details about why the pod is in this state. e.g. 'OutOfDisk'",
 31508        "type": "string"
 31509       },
 31510       "startTime": {
 31511        "description": "RFC 3339 date and time at which the object was acknowledged by the Kubelet. This is before the Kubelet pulled the container image(s) for the pod.",
 31512        "$ref": "#/definitions/unversioned.Time"
 31513       }
 31514      }
 31515     },
 31516     "v1.PodTemplate": {
 31517      "description": "PodTemplate describes a template for creating copies of a predefined pod.",
 31518      "properties": {
 31519       "metadata": {
 31520        "description": "Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 31521        "$ref": "#/definitions/v1.ObjectMeta"
 31522       },
 31523       "template": {
 31524        "description": "Template defines the pods that will be created from this pod template. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status",
 31525        "$ref": "#/definitions/v1.PodTemplateSpec"
 31526       }
 31527      }
 31528     },
 31529     "v1.PodTemplateList": {
 31530      "description": "PodTemplateList is a list of PodTemplates.",
 31531      "required": [
 31532       "items"
 31533      ],
 31534      "properties": {
 31535       "items": {
 31536        "description": "List of pod templates",
 31537        "type": "array",
 31538        "items": {
 31539         "$ref": "#/definitions/v1.PodTemplate"
 31540        }
 31541       },
 31542       "metadata": {
 31543        "description": "Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds",
 31544        "$ref": "#/definitions/unversioned.ListMeta"
 31545       }
 31546      }
 31547     },
 31548     "v1.PodTemplateSpec": {
 31549      "description": "PodTemplateSpec describes the data a pod should have when created from a template",
 31550      "properties": {
 31551       "metadata": {
 31552        "description": "Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 31553        "$ref": "#/definitions/v1.ObjectMeta"
 31554       },
 31555       "spec": {
 31556        "description": "Specification of the desired behavior of the pod. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status",
 31557        "$ref": "#/definitions/v1.PodSpec"
 31558       }
 31559      }
 31560     },
 31561     "v1.Preconditions": {
 31562      "description": "Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.",
 31563      "properties": {
 31564       "uid": {
 31565        "description": "Specifies the target UID.",
 31566        "type": "string"
 31567       }
 31568      }
 31569     },
 31570     "v1.Probe": {
 31571      "description": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.",
 31572      "properties": {
 31573       "failureThreshold": {
 31574        "description": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.",
 31575        "type": "integer",
 31576        "format": "int32"
 31577       },
 31578       "initialDelaySeconds": {
 31579        "description": "Number of seconds after the container has started before liveness probes are initiated. More info: http://kubernetes.io/docs/user-guide/pod-states#container-probes",
 31580        "type": "integer",
 31581        "format": "int32"
 31582       },
 31583       "periodSeconds": {
 31584        "description": "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.",
 31585        "type": "integer",
 31586        "format": "int32"
 31587       },
 31588       "successThreshold": {
 31589        "description": "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness. Minimum value is 1.",
 31590        "type": "integer",
 31591        "format": "int32"
 31592       },
 31593       "timeoutSeconds": {
 31594        "description": "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: http://kubernetes.io/docs/user-guide/pod-states#container-probes",
 31595        "type": "integer",
 31596        "format": "int32"
 31597       }
 31598      }
 31599     },
 31600     "v1.ReplicationController": {
 31601      "description": "ReplicationController represents the configuration of a replication controller.",
 31602      "properties": {
 31603       "metadata": {
 31604        "description": "If the Labels of a ReplicationController are empty, they are defaulted to be the same as the Pod(s) that the replication controller manages. Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 31605        "$ref": "#/definitions/v1.ObjectMeta"
 31606       },
 31607       "spec": {
 31608        "description": "Spec defines the specification of the desired behavior of the replication controller. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status",
 31609        "$ref": "#/definitions/v1.ReplicationControllerSpec"
 31610       },
 31611       "status": {
 31612        "description": "Status is the most recently observed status of the replication controller. This data may be out of date by some window of time. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status",
 31613        "$ref": "#/definitions/v1.ReplicationControllerStatus"
 31614       }
 31615      }
 31616     },
 31617     "v1.ReplicationControllerCondition": {
 31618      "description": "ReplicationControllerCondition describes the state of a replication controller at a certain point.",
 31619      "required": [
 31620       "type",
 31621       "status"
 31622      ],
 31623      "properties": {
 31624       "lastTransitionTime": {
 31625        "description": "The last time the condition transitioned from one status to another.",
 31626        "$ref": "#/definitions/unversioned.Time"
 31627       },
 31628       "message": {
 31629        "description": "A human readable message indicating details about the transition.",
 31630        "type": "string"
 31631       },
 31632       "reason": {
 31633        "description": "The reason for the condition's last transition.",
 31634        "type": "string"
 31635       },
 31636       "status": {
 31637        "description": "Status of the condition, one of True, False, Unknown.",
 31638        "type": "string"
 31639       },
 31640       "type": {
 31641        "description": "Type of replication controller condition.",
 31642        "type": "string"
 31643       }
 31644      }
 31645     },
 31646     "v1.ReplicationControllerList": {
 31647      "description": "ReplicationControllerList is a collection of replication controllers.",
 31648      "required": [
 31649       "items"
 31650      ],
 31651      "properties": {
 31652       "items": {
 31653        "description": "List of replication controllers. More info: http://kubernetes.io/docs/user-guide/replication-controller",
 31654        "type": "array",
 31655        "items": {
 31656         "$ref": "#/definitions/v1.ReplicationController"
 31657        }
 31658       },
 31659       "metadata": {
 31660        "description": "Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds",
 31661        "$ref": "#/definitions/unversioned.ListMeta"
 31662       }
 31663      }
 31664     },
 31665     "v1.ReplicationControllerSpec": {
 31666      "description": "ReplicationControllerSpec is the specification of a replication controller.",
 31667      "properties": {
 31668       "minReadySeconds": {
 31669        "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)",
 31670        "type": "integer",
 31671        "format": "int32"
 31672       },
 31673       "replicas": {
 31674        "description": "Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: http://kubernetes.io/docs/user-guide/replication-controller#what-is-a-replication-controller",
 31675        "type": "integer",
 31676        "format": "int32"
 31677       },
 31678       "selector": {
 31679        "description": "Selector is a label query over pods that should match the Replicas count. If Selector is empty, it is defaulted to the labels present on the Pod template. Label keys and values that must match in order to be controlled by this replication controller, if empty defaulted to labels on Pod template. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors",
 31680        "type": "object",
 31681        "additionalProperties": {
 31682         "type": "string"
 31683        }
 31684       },
 31685       "template": {
 31686        "description": "Template is the object that describes the pod that will be created if insufficient replicas are detected. This takes precedence over a TemplateRef. More info: http://kubernetes.io/docs/user-guide/replication-controller#pod-template",
 31687        "$ref": "#/definitions/v1.PodTemplateSpec"
 31688       }
 31689      }
 31690     },
 31691     "v1.ReplicationControllerStatus": {
 31692      "description": "ReplicationControllerStatus represents the current status of a replication controller.",
 31693      "required": [
 31694       "replicas"
 31695      ],
 31696      "properties": {
 31697       "availableReplicas": {
 31698        "description": "The number of available replicas (ready for at least minReadySeconds) for this replication controller.",
 31699        "type": "integer",
 31700        "format": "int32"
 31701       },
 31702       "conditions": {
 31703        "description": "Represents the latest available observations of a replication controller's current state.",
 31704        "type": "array",
 31705        "items": {
 31706         "$ref": "#/definitions/v1.ReplicationControllerCondition"
 31707        }
 31708       },
 31709       "fullyLabeledReplicas": {
 31710        "description": "The number of pods that have labels matching the labels of the pod template of the replication controller.",
 31711        "type": "integer",
 31712        "format": "int32"
 31713       },
 31714       "observedGeneration": {
 31715        "description": "ObservedGeneration reflects the generation of the most recently observed replication controller.",
 31716        "type": "integer",
 31717        "format": "int64"
 31718       },
 31719       "readyReplicas": {
 31720        "description": "The number of ready replicas for this replication controller.",
 31721        "type": "integer",
 31722        "format": "int32"
 31723       },
 31724       "replicas": {
 31725        "description": "Replicas is the most recently oberved number of replicas. More info: http://kubernetes.io/docs/user-guide/replication-controller#what-is-a-replication-controller",
 31726        "type": "integer",
 31727        "format": "int32"
 31728       }
 31729      }
 31730     },
 31731     "v1.ResourceFieldSelector": {
 31732      "description": "ResourceFieldSelector represents container resources (cpu, memory) and their output format",
 31733      "required": [
 31734       "resource"
 31735      ],
 31736      "properties": {
 31737       "containerName": {
 31738        "description": "Container name: required for volumes, optional for env vars",
 31739        "type": "string"
 31740       },
 31741       "divisor": {
 31742        "description": "Specifies the output format of the exposed resources, defaults to \"1\"",
 31743        "$ref": "#/definitions/resource.Quantity"
 31744       },
 31745       "resource": {
 31746        "description": "Required: resource to select",
 31747        "type": "string"
 31748       }
 31749      }
 31750     },
 31751     "v1.ResourceQuota": {
 31752      "description": "ResourceQuota sets aggregate quota restrictions enforced per namespace",
 31753      "properties": {
 31754       "metadata": {
 31755        "description": "Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 31756        "$ref": "#/definitions/v1.ObjectMeta"
 31757       },
 31758       "spec": {
 31759        "description": "Spec defines the desired quota. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status",
 31760        "$ref": "#/definitions/v1.ResourceQuotaSpec"
 31761       },
 31762       "status": {
 31763        "description": "Status defines the actual enforced quota and its current usage. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status",
 31764        "$ref": "#/definitions/v1.ResourceQuotaStatus"
 31765       }
 31766      }
 31767     },
 31768     "v1.ResourceQuotaList": {
 31769      "description": "ResourceQuotaList is a list of ResourceQuota items.",
 31770      "required": [
 31771       "items"
 31772      ],
 31773      "properties": {
 31774       "items": {
 31775        "description": "Items is a list of ResourceQuota objects. More info: http://releases.k8s.io/HEAD/docs/design/admission_control_resource_quota.md#admissioncontrol-plugin-resourcequota",
 31776        "type": "array",
 31777        "items": {
 31778         "$ref": "#/definitions/v1.ResourceQuota"
 31779        }
 31780       },
 31781       "metadata": {
 31782        "description": "Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds",
 31783        "$ref": "#/definitions/unversioned.ListMeta"
 31784       }
 31785      }
 31786     },
 31787     "v1.ResourceQuotaSpec": {
 31788      "description": "ResourceQuotaSpec defines the desired hard limits to enforce for Quota.",
 31789      "properties": {
 31790       "hard": {
 31791        "description": "Hard is the set of desired hard limits for each named resource. More info: http://releases.k8s.io/HEAD/docs/design/admission_control_resource_quota.md#admissioncontrol-plugin-resourcequota",
 31792        "type": "object",
 31793        "additionalProperties": {
 31794         "$ref": "#/definitions/resource.Quantity"
 31795        }
 31796       },
 31797       "scopes": {
 31798        "description": "A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects.",
 31799        "type": "array",
 31800        "items": {
 31801         "type": "string"
 31802        }
 31803       }
 31804      }
 31805     },
 31806     "v1.ResourceQuotaStatus": {
 31807      "description": "ResourceQuotaStatus defines the enforced hard limits and observed use.",
 31808      "properties": {
 31809       "hard": {
 31810        "description": "Hard is the set of enforced hard limits for each named resource. More info: http://releases.k8s.io/HEAD/docs/design/admission_control_resource_quota.md#admissioncontrol-plugin-resourcequota",
 31811        "type": "object",
 31812        "additionalProperties": {
 31813         "$ref": "#/definitions/resource.Quantity"
 31814        }
 31815       },
 31816       "used": {
 31817        "description": "Used is the current observed total usage of the resource in the namespace.",
 31818        "type": "object",
 31819        "additionalProperties": {
 31820         "$ref": "#/definitions/resource.Quantity"
 31821        }
 31822       }
 31823      }
 31824     },
 31825     "v1.ResourceRequirements": {
 31826      "description": "ResourceRequirements describes the compute resource requirements.",
 31827      "properties": {
 31828       "limits": {
 31829        "description": "Limits describes the maximum amount of compute resources allowed. More info: http://kubernetes.io/docs/user-guide/compute-resources/",
 31830        "type": "object",
 31831        "additionalProperties": {
 31832         "$ref": "#/definitions/resource.Quantity"
 31833        }
 31834       },
 31835       "requests": {
 31836        "description": "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: http://kubernetes.io/docs/user-guide/compute-resources/",
 31837        "type": "object",
 31838        "additionalProperties": {
 31839         "$ref": "#/definitions/resource.Quantity"
 31840        }
 31841       }
 31842      }
 31843     },
 31844     "v1.SELinuxOptions": {
 31845      "description": "SELinuxOptions are the labels to be applied to the container",
 31846      "properties": {
 31847       "level": {
 31848        "description": "Level is SELinux level label that applies to the container.",
 31849        "type": "string"
 31850       },
 31851       "role": {
 31852        "description": "Role is a SELinux role label that applies to the container.",
 31853        "type": "string"
 31854       },
 31855       "type": {
 31856        "description": "Type is a SELinux type label that applies to the container.",
 31857        "type": "string"
 31858       },
 31859       "user": {
 31860        "description": "User is a SELinux user label that applies to the container.",
 31861        "type": "string"
 31862       }
 31863      }
 31864     },
 31865     "v1.Scale": {
 31866      "description": "Scale represents a scaling request for a resource.",
 31867      "properties": {
 31868       "metadata": {
 31869        "description": "Standard object metadata; More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata.",
 31870        "$ref": "#/definitions/v1.ObjectMeta"
 31871       },
 31872       "spec": {
 31873        "description": "defines the behavior of the scale. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status.",
 31874        "$ref": "#/definitions/v1.ScaleSpec"
 31875       },
 31876       "status": {
 31877        "description": "current status of the scale. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. Read-only.",
 31878        "$ref": "#/definitions/v1.ScaleStatus"
 31879       }
 31880      }
 31881     },
 31882     "v1.ScaleSpec": {
 31883      "description": "ScaleSpec describes the attributes of a scale subresource.",
 31884      "properties": {
 31885       "replicas": {
 31886        "description": "desired number of instances for the scaled object.",
 31887        "type": "integer",
 31888        "format": "int32"
 31889       }
 31890      }
 31891     },
 31892     "v1.ScaleStatus": {
 31893      "description": "ScaleStatus represents the current status of a scale subresource.",
 31894      "required": [
 31895       "replicas"
 31896      ],
 31897      "properties": {
 31898       "replicas": {
 31899        "description": "actual number of observed instances of the scaled object.",
 31900        "type": "integer",
 31901        "format": "int32"
 31902       },
 31903       "selector": {
 31904        "description": "label query over pods that should match the replicas count. This is same as the label selector but in the string format to avoid introspection by clients. The string will be in the same format as the query-param syntax. More info about label selectors: http://kubernetes.io/docs/user-guide/labels#label-selectors",
 31905        "type": "string"
 31906       }
 31907      }
 31908     },
 31909     "v1.Secret": {
 31910      "description": "Secret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes.",
 31911      "properties": {
 31912       "data": {
 31913        "description": "Data contains the secret data. Each key must be a valid DNS_SUBDOMAIN or leading dot followed by valid DNS_SUBDOMAIN. The serialized form of the secret data is a base64 encoded string, representing the arbitrary (possibly non-string) data value here. Described in https://tools.ietf.org/html/rfc4648#section-4",
 31914        "type": "object",
 31915        "additionalProperties": {
 31916         "type": "array",
 31917         "items": {
 31918          "type": "integer",
 31919          "format": "byte"
 31920         }
 31921        }
 31922       },
 31923       "metadata": {
 31924        "description": "Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 31925        "$ref": "#/definitions/v1.ObjectMeta"
 31926       },
 31927       "stringData": {
 31928        "description": "stringData allows specifying non-binary secret data in string form. It is provided as a write-only convenience method. All keys and values are merged into the data field on write, overwriting any existing values. It is never output when reading from the API.",
 31929        "type": "object",
 31930        "additionalProperties": {
 31931         "type": "string"
 31932        }
 31933       },
 31934       "type": {
 31935        "description": "Used to facilitate programmatic handling of secret data.",
 31936        "type": "string"
 31937       }
 31938      }
 31939     },
 31940     "v1.SecretKeySelector": {
 31941      "description": "SecretKeySelector selects a key of a Secret.",
 31942      "required": [
 31943       "key"
 31944      ],
 31945      "properties": {
 31946       "key": {
 31947        "description": "The key of the secret to select from.  Must be a valid secret key.",
 31948        "type": "string"
 31949       }
 31950      }
 31951     },
 31952     "v1.SecretList": {
 31953      "description": "SecretList is a list of Secret.",
 31954      "required": [
 31955       "items"
 31956      ],
 31957      "properties": {
 31958       "items": {
 31959        "description": "Items is a list of secret objects. More info: http://kubernetes.io/docs/user-guide/secrets",
 31960        "type": "array",
 31961        "items": {
 31962         "$ref": "#/definitions/v1.Secret"
 31963        }
 31964       },
 31965       "metadata": {
 31966        "description": "Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds",
 31967        "$ref": "#/definitions/unversioned.ListMeta"
 31968       }
 31969      }
 31970     },
 31971     "v1.SecurityContext": {
 31972      "description": "SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext.  When both are set, the values in SecurityContext take precedence.",
 31973      "properties": {
 31974       "capabilities": {
 31975        "description": "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime.",
 31976        "$ref": "#/definitions/v1.Capabilities"
 31977       },
 31978       "privileged": {
 31979        "description": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.",
 31980        "type": "boolean"
 31981       },
 31982       "readOnlyRootFilesystem": {
 31983        "description": "Whether this container has a read-only root filesystem. Default is false.",
 31984        "type": "boolean"
 31985       },
 31986       "runAsNonRoot": {
 31987        "description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext.  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
 31988        "type": "boolean"
 31989       },
 31990       "runAsUser": {
 31991        "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext.  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
 31992        "type": "integer",
 31993        "format": "int64"
 31994       },
 31995       "seLinuxOptions": {
 31996        "description": "The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container.  May also be set in PodSecurityContext.  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.",
 31997        "$ref": "#/definitions/v1.SELinuxOptions"
 31998       }
 31999      }
 32000     },
 32001     "v1.Service": {
 32002      "description": "Service is a named abstraction of software service (for example, mysql) consisting of local port (for example 3306) that the proxy listens on, and the selector that determines which pods will answer requests sent through the proxy.",
 32003      "properties": {
 32004       "metadata": {
 32005        "description": "Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 32006        "$ref": "#/definitions/v1.ObjectMeta"
 32007       },
 32008       "spec": {
 32009        "description": "Spec defines the behavior of a service. http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status",
 32010        "$ref": "#/definitions/v1.ServiceSpec"
 32011       },
 32012       "status": {
 32013        "description": "Most recently observed status of the service. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status",
 32014        "$ref": "#/definitions/v1.ServiceStatus"
 32015       }
 32016      }
 32017     },
 32018     "v1.ServiceAccount": {
 32019      "description": "ServiceAccount binds together: * a name, understood by users, and perhaps by peripheral systems, for an identity * a principal that can be authenticated and authorized * a set of secrets",
 32020      "properties": {
 32021       "imagePullSecrets": {
 32022        "description": "ImagePullSecrets is a list of references to secrets in the same namespace to use for pulling any images in pods that reference this ServiceAccount. ImagePullSecrets are distinct from Secrets because Secrets can be mounted in the pod, but ImagePullSecrets are only accessed by the kubelet. More info: http://kubernetes.io/docs/user-guide/secrets#manually-specifying-an-imagepullsecret",
 32023        "type": "array",
 32024        "items": {
 32025         "$ref": "#/definitions/v1.LocalObjectReference"
 32026        }
 32027       },
 32028       "metadata": {
 32029        "description": "Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 32030        "$ref": "#/definitions/v1.ObjectMeta"
 32031       },
 32032       "secrets": {
 32033        "description": "Secrets is the list of secrets allowed to be used by pods running using this ServiceAccount. More info: http://kubernetes.io/docs/user-guide/secrets",
 32034        "type": "array",
 32035        "items": {
 32036         "$ref": "#/definitions/v1.ObjectReference"
 32037        }
 32038       }
 32039      }
 32040     },
 32041     "v1.ServiceAccountList": {
 32042      "description": "ServiceAccountList is a list of ServiceAccount objects",
 32043      "required": [
 32044       "items"
 32045      ],
 32046      "properties": {
 32047       "items": {
 32048        "description": "List of ServiceAccounts. More info: http://releases.k8s.io/HEAD/docs/design/service_accounts.md#service-accounts",
 32049        "type": "array",
 32050        "items": {
 32051         "$ref": "#/definitions/v1.ServiceAccount"
 32052        }
 32053       },
 32054       "metadata": {
 32055        "description": "Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds",
 32056        "$ref": "#/definitions/unversioned.ListMeta"
 32057       }
 32058      }
 32059     },
 32060     "v1.ServiceList": {
 32061      "description": "ServiceList holds a list of services.",
 32062      "required": [
 32063       "items"
 32064      ],
 32065      "properties": {
 32066       "items": {
 32067        "description": "List of services",
 32068        "type": "array",
 32069        "items": {
 32070         "$ref": "#/definitions/v1.Service"
 32071        }
 32072       },
 32073       "metadata": {
 32074        "description": "Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds",
 32075        "$ref": "#/definitions/unversioned.ListMeta"
 32076       }
 32077      }
 32078     },
 32079     "v1.ServicePort": {
 32080      "description": "ServicePort contains information on service's port.",
 32081      "required": [
 32082       "port"
 32083      ],
 32084      "properties": {
 32085       "name": {
 32086        "description": "The name of this port within the service. This must be a DNS_LABEL. All ports within a ServiceSpec must have unique names. This maps to the 'Name' field in EndpointPort objects. Optional if only one ServicePort is defined on this service.",
 32087        "type": "string"
 32088       },
 32089       "nodePort": {
 32090        "description": "The port on each node on which this service is exposed when type=NodePort or LoadBalancer. Usually assigned by the system. If specified, it will be allocated to the service if unused or else creation of the service will fail. Default is to auto-allocate a port if the ServiceType of this Service requires one. More info: http://kubernetes.io/docs/user-guide/services#type--nodeport",
 32091        "type": "integer",
 32092        "format": "int32"
 32093       },
 32094       "port": {
 32095        "description": "The port that will be exposed by this service.",
 32096        "type": "integer",
 32097        "format": "int32"
 32098       },
 32099       "protocol": {
 32100        "description": "The IP protocol for this port. Supports \"TCP\" and \"UDP\". Default is TCP.",
 32101        "type": "string"
 32102       },
 32103       "targetPort": {
 32104        "description": "Number or name of the port to access on the pods targeted by the service. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. If this is a string, it will be looked up as a named port in the target Pod's container ports. If this is not specified, the value of the 'port' field is used (an identity map). This field is ignored for services with clusterIP=None, and should be omitted or set equal to the 'port' field. More info: http://kubernetes.io/docs/user-guide/services#defining-a-service",
 32105        "$ref": "#/definitions/intstr.IntOrString"
 32106       }
 32107      }
 32108     },
 32109     "v1.ServiceSpec": {
 32110      "description": "ServiceSpec describes the attributes that a user creates on a service.",
 32111      "required": [
 32112       "ports"
 32113      ],
 32114      "properties": {
 32115       "clusterIP": {
 32116        "description": "clusterIP is the IP address of the service and is usually assigned randomly by the master. If an address is specified manually and is not in use by others, it will be allocated to the service; otherwise, creation of the service will fail. This field can not be changed through updates. Valid values are \"None\", empty string (\"\"), or a valid IP address. \"None\" can be specified for headless services when proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: http://kubernetes.io/docs/user-guide/services#virtual-ips-and-service-proxies",
 32117        "type": "string"
 32118       },
 32119       "deprecatedPublicIPs": {
 32120        "description": "deprecatedPublicIPs is deprecated and replaced by the externalIPs field with almost the exact same semantics.  This field is retained in the v1 API for compatibility until at least 8/20/2016.  It will be removed from any new API revisions.  If both deprecatedPublicIPs *and* externalIPs are set, deprecatedPublicIPs is used.",
 32121        "type": "array",
 32122        "items": {
 32123         "type": "string"
 32124        }
 32125       },
 32126       "externalIPs": {
 32127        "description": "externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service.  These IPs are not managed by Kubernetes.  The user is responsible for ensuring that traffic arrives at a node with this IP.  A common example is external load-balancers that are not part of the Kubernetes system.  A previous form of this functionality exists as the deprecatedPublicIPs field.  When using this field, callers should also clear the deprecatedPublicIPs field.",
 32128        "type": "array",
 32129        "items": {
 32130         "type": "string"
 32131        }
 32132       },
 32133       "externalName": {
 32134        "description": "externalName is the external reference that kubedns or equivalent will return as a CNAME record for this service. No proxying will be involved. Must be a valid DNS name and requires Type to be ExternalName.",
 32135        "type": "string"
 32136       },
 32137       "loadBalancerIP": {
 32138        "description": "Only applies to Service Type: LoadBalancer LoadBalancer will get created with the IP specified in this field. This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created. This field will be ignored if the cloud-provider does not support the feature.",
 32139        "type": "string"
 32140       },
 32141       "loadBalancerSourceRanges": {
 32142        "description": "If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature.\" More info: http://kubernetes.io/docs/user-guide/services-firewalls",
 32143        "type": "array",
 32144        "items": {
 32145         "type": "string"
 32146        }
 32147       },
 32148       "ports": {
 32149        "description": "The list of ports that are exposed by this service. More info: http://kubernetes.io/docs/user-guide/services#virtual-ips-and-service-proxies",
 32150        "type": "array",
 32151        "items": {
 32152         "$ref": "#/definitions/v1.ServicePort"
 32153        }
 32154       },
 32155       "selector": {
 32156        "description": "Route service traffic to pods with label keys and values matching this selector. If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: http://kubernetes.io/docs/user-guide/services#overview",
 32157        "type": "object",
 32158        "additionalProperties": {
 32159         "type": "string"
 32160        }
 32161       },
 32162       "sessionAffinity": {
 32163        "description": "Supports \"ClientIP\" and \"None\". Used to maintain session affinity. Enable client IP based session affinity. Must be ClientIP or None. Defaults to None. More info: http://kubernetes.io/docs/user-guide/services#virtual-ips-and-service-proxies",
 32164        "type": "string"
 32165       },
 32166       "type": {
 32167        "description": "type determines how the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer. \"ExternalName\" maps to the specified externalName. \"ClusterIP\" allocates a cluster-internal IP address for load-balancing to endpoints. Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object. If clusterIP is \"None\", no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a stable IP. \"NodePort\" builds on ClusterIP and allocates a port on every node which routes to the clusterIP. \"LoadBalancer\" builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the clusterIP. More info: http://kubernetes.io/docs/user-guide/services#overview",
 32168        "type": "string"
 32169       }
 32170      }
 32171     },
 32172     "v1.ServiceStatus": {
 32173      "description": "ServiceStatus represents the current status of a service.",
 32174      "properties": {
 32175       "loadBalancer": {
 32176        "description": "LoadBalancer contains the current status of the load-balancer, if one is present.",
 32177        "$ref": "#/definitions/v1.LoadBalancerStatus"
 32178       }
 32179      }
 32180     },
 32181     "v1.TCPSocketAction": {
 32182      "description": "TCPSocketAction describes an action based on opening a socket",
 32183      "required": [
 32184       "port"
 32185      ],
 32186      "properties": {
 32187       "port": {
 32188        "description": "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.",
 32189        "$ref": "#/definitions/intstr.IntOrString"
 32190       }
 32191      }
 32192     },
 32193     "v1.Volume": {
 32194      "description": "Volume represents a named volume in a pod that may be accessed by any container in the pod.",
 32195      "required": [
 32196       "name"
 32197      ],
 32198      "properties": {
 32199       "name": {
 32200        "description": "Volume's name. Must be a DNS_LABEL and unique within the pod. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
 32201        "type": "string"
 32202       }
 32203      }
 32204     },
 32205     "v1.VolumeMount": {
 32206      "description": "VolumeMount describes a mounting of a Volume within a container.",
 32207      "required": [
 32208       "name",
 32209       "mountPath"
 32210      ],
 32211      "properties": {
 32212       "mountPath": {
 32213        "description": "Path within the container at which the volume should be mounted.  Must not contain ':'.",
 32214        "type": "string"
 32215       },
 32216       "name": {
 32217        "description": "This must match the Name of a Volume.",
 32218        "type": "string"
 32219       },
 32220       "readOnly": {
 32221        "description": "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.",
 32222        "type": "boolean"
 32223       },
 32224       "subPath": {
 32225        "description": "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).",
 32226        "type": "string"
 32227       }
 32228      }
 32229     },
 32230     "v1alpha1.CertificateSigningRequest": {
 32231      "description": "Describes a certificate signing request",
 32232      "properties": {
 32233       "metadata": {
 32234        "$ref": "#/definitions/v1.ObjectMeta"
 32235       },
 32236       "spec": {
 32237        "description": "The certificate request itself and any additional information.",
 32238        "$ref": "#/definitions/v1alpha1.CertificateSigningRequestSpec"
 32239       },
 32240       "status": {
 32241        "description": "Derived information about the request.",
 32242        "$ref": "#/definitions/v1alpha1.CertificateSigningRequestStatus"
 32243       }
 32244      }
 32245     },
 32246     "v1alpha1.CertificateSigningRequestCondition": {
 32247      "required": [
 32248       "type"
 32249      ],
 32250      "properties": {
 32251       "lastUpdateTime": {
 32252        "description": "timestamp for the last update to this condition",
 32253        "$ref": "#/definitions/unversioned.Time"
 32254       },
 32255       "message": {
 32256        "description": "human readable message with details about the request state",
 32257        "type": "string"
 32258       },
 32259       "reason": {
 32260        "description": "brief reason for the request state",
 32261        "type": "string"
 32262       },
 32263       "type": {
 32264        "description": "request approval state, currently Approved or Denied.",
 32265        "type": "string"
 32266       }
 32267      }
 32268     },
 32269     "v1alpha1.CertificateSigningRequestList": {
 32270      "required": [
 32271       "items"
 32272      ],
 32273      "properties": {
 32274       "items": {
 32275        "type": "array",
 32276        "items": {
 32277         "$ref": "#/definitions/v1alpha1.CertificateSigningRequest"
 32278        }
 32279       },
 32280       "metadata": {
 32281        "$ref": "#/definitions/unversioned.ListMeta"
 32282       }
 32283      }
 32284     },
 32285     "v1alpha1.CertificateSigningRequestSpec": {
 32286      "description": "This information is immutable after the request is created. Only the Request and ExtraInfo fields can be set on creation, other fields are derived by Kubernetes and cannot be modified by users.",
 32287      "required": [
 32288       "request"
 32289      ],
 32290      "properties": {
 32291       "groups": {
 32292        "type": "array",
 32293        "items": {
 32294         "type": "string"
 32295        }
 32296       },
 32297       "request": {
 32298        "description": "Base64-encoded PKCS#10 CSR data",
 32299        "type": "string",
 32300        "format": "byte"
 32301       },
 32302       "uid": {
 32303        "type": "string"
 32304       },
 32305       "username": {
 32306        "description": "Information about the requesting user (if relevant) See user.Info interface for details",
 32307        "type": "string"
 32308       }
 32309      }
 32310     },
 32311     "v1alpha1.CertificateSigningRequestStatus": {
 32312      "properties": {
 32313       "certificate": {
 32314        "description": "If request was approved, the controller will place the issued certificate here.",
 32315        "type": "string",
 32316        "format": "byte"
 32317       },
 32318       "conditions": {
 32319        "description": "Conditions applied to the request, such as approval or denial.",
 32320        "type": "array",
 32321        "items": {
 32322         "$ref": "#/definitions/v1alpha1.CertificateSigningRequestCondition"
 32323        }
 32324       }
 32325      }
 32326     },
 32327     "v1alpha1.ClusterRole": {
 32328      "description": "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.",
 32329      "required": [
 32330       "rules"
 32331      ],
 32332      "properties": {
 32333       "metadata": {
 32334        "description": "Standard object's metadata.",
 32335        "$ref": "#/definitions/v1.ObjectMeta"
 32336       },
 32337       "rules": {
 32338        "description": "Rules holds all the PolicyRules for this ClusterRole",
 32339        "type": "array",
 32340        "items": {
 32341         "$ref": "#/definitions/v1alpha1.PolicyRule"
 32342        }
 32343       }
 32344      }
 32345     },
 32346     "v1alpha1.ClusterRoleBinding": {
 32347      "description": "ClusterRoleBinding references a ClusterRole, but not contain it.  It can reference a ClusterRole in the global namespace, and adds who information via Subject.",
 32348      "required": [
 32349       "subjects",
 32350       "roleRef"
 32351      ],
 32352      "properties": {
 32353       "metadata": {
 32354        "description": "Standard object's metadata.",
 32355        "$ref": "#/definitions/v1.ObjectMeta"
 32356       },
 32357       "roleRef": {
 32358        "description": "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error.",
 32359        "$ref": "#/definitions/v1alpha1.RoleRef"
 32360       },
 32361       "subjects": {
 32362        "description": "Subjects holds references to the objects the role applies to.",
 32363        "type": "array",
 32364        "items": {
 32365         "$ref": "#/definitions/v1alpha1.Subject"
 32366        }
 32367       }
 32368      }
 32369     },
 32370     "v1alpha1.ClusterRoleBindingList": {
 32371      "description": "ClusterRoleBindingList is a collection of ClusterRoleBindings",
 32372      "required": [
 32373       "items"
 32374      ],
 32375      "properties": {
 32376       "items": {
 32377        "description": "Items is a list of ClusterRoleBindings",
 32378        "type": "array",
 32379        "items": {
 32380         "$ref": "#/definitions/v1alpha1.ClusterRoleBinding"
 32381        }
 32382       },
 32383       "metadata": {
 32384        "description": "Standard object's metadata.",
 32385        "$ref": "#/definitions/unversioned.ListMeta"
 32386       }
 32387      }
 32388     },
 32389     "v1alpha1.ClusterRoleList": {
 32390      "description": "ClusterRoleList is a collection of ClusterRoles",
 32391      "required": [
 32392       "items"
 32393      ],
 32394      "properties": {
 32395       "items": {
 32396        "description": "Items is a list of ClusterRoles",
 32397        "type": "array",
 32398        "items": {
 32399         "$ref": "#/definitions/v1alpha1.ClusterRole"
 32400        }
 32401       },
 32402       "metadata": {
 32403        "description": "Standard object's metadata.",
 32404        "$ref": "#/definitions/unversioned.ListMeta"
 32405       }
 32406      }
 32407     },
 32408     "v1alpha1.Eviction": {
 32409      "description": "Eviction evicts a pod from its node subject to certain policies and safety constraints. This is a subresource of Pod.  A request to cause such an eviction is created by POSTing to .../pods/\u003cpod name\u003e/eviction.",
 32410      "properties": {
 32411       "deleteOptions": {
 32412        "description": "DeleteOptions may be provided",
 32413        "$ref": "#/definitions/v1.DeleteOptions"
 32414       },
 32415       "metadata": {
 32416        "description": "ObjectMeta describes the pod that is being evicted.",
 32417        "$ref": "#/definitions/v1.ObjectMeta"
 32418       }
 32419      }
 32420     },
 32421     "v1alpha1.PodDisruptionBudget": {
 32422      "description": "PodDisruptionBudget is an object to define the max disruption that can be caused to a collection of pods",
 32423      "properties": {
 32424       "metadata": {
 32425        "$ref": "#/definitions/v1.ObjectMeta"
 32426       },
 32427       "spec": {
 32428        "description": "Specification of the desired behavior of the PodDisruptionBudget.",
 32429        "$ref": "#/definitions/v1alpha1.PodDisruptionBudgetSpec"
 32430       },
 32431       "status": {
 32432        "description": "Most recently observed status of the PodDisruptionBudget.",
 32433        "$ref": "#/definitions/v1alpha1.PodDisruptionBudgetStatus"
 32434       }
 32435      }
 32436     },
 32437     "v1alpha1.PodDisruptionBudgetList": {
 32438      "description": "PodDisruptionBudgetList is a collection of PodDisruptionBudgets.",
 32439      "required": [
 32440       "items"
 32441      ],
 32442      "properties": {
 32443       "items": {
 32444        "type": "array",
 32445        "items": {
 32446         "$ref": "#/definitions/v1alpha1.PodDisruptionBudget"
 32447        }
 32448       },
 32449       "metadata": {
 32450        "$ref": "#/definitions/unversioned.ListMeta"
 32451       }
 32452      }
 32453     },
 32454     "v1alpha1.PodDisruptionBudgetSpec": {
 32455      "description": "PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.",
 32456      "properties": {
 32457       "minAvailable": {
 32458        "description": "An eviction is allowed if at least \"minAvailable\" pods selected by \"selector\" will still be available after the eviction, i.e. even in the absence of the evicted pod.  So for example you can prevent all voluntary evictions by specifying \"100%\".",
 32459        "$ref": "#/definitions/intstr.IntOrString"
 32460       },
 32461       "selector": {
 32462        "description": "Label query over pods whose evictions are managed by the disruption budget.",
 32463        "$ref": "#/definitions/unversioned.LabelSelector"
 32464       }
 32465      }
 32466     },
 32467     "v1alpha1.PodDisruptionBudgetStatus": {
 32468      "description": "PodDisruptionBudgetStatus represents information about the status of a PodDisruptionBudget. Status may trail the actual state of a system.",
 32469      "required": [
 32470       "disruptionAllowed",
 32471       "currentHealthy",
 32472       "desiredHealthy",
 32473       "expectedPods"
 32474      ],
 32475      "properties": {
 32476       "currentHealthy": {
 32477        "description": "current number of healthy pods",
 32478        "type": "integer",
 32479        "format": "int32"
 32480       },
 32481       "desiredHealthy": {
 32482        "description": "minimum desired number of healthy pods",
 32483        "type": "integer",
 32484        "format": "int32"
 32485       },
 32486       "disruptionAllowed": {
 32487        "description": "Whether or not a disruption is currently allowed.",
 32488        "type": "boolean"
 32489       },
 32490       "expectedPods": {
 32491        "description": "total number of pods counted by this disruption budget",
 32492        "type": "integer",
 32493        "format": "int32"
 32494       }
 32495      }
 32496     },
 32497     "v1alpha1.PolicyRule": {
 32498      "description": "PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.",
 32499      "required": [
 32500       "verbs"
 32501      ],
 32502      "properties": {
 32503       "apiGroups": {
 32504        "description": "APIGroups is the name of the APIGroup that contains the resources.  If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed.",
 32505        "type": "array",
 32506        "items": {
 32507         "type": "string"
 32508        }
 32509       },
 32510       "attributeRestrictions": {
 32511        "description": "AttributeRestrictions will vary depending on what the Authorizer/AuthorizationAttributeBuilder pair supports. If the Authorizer does not recognize how to handle the AttributeRestrictions, the Authorizer should report an error.",
 32512        "$ref": "#/definitions/runtime.RawExtension"
 32513       },
 32514       "nonResourceURLs": {
 32515        "description": "NonResourceURLs is a set of partial urls that a user should have access to.  *s are allowed, but only as the full, final step in the path This name is intentionally different than the internal type so that the DefaultConvert works nicely and because the ordering may be different. Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as \"pods\" or \"secrets\") or non-resource URL paths (such as \"/api\"),  but not both.",
 32516        "type": "array",
 32517        "items": {
 32518         "type": "string"
 32519        }
 32520       },
 32521       "resourceNames": {
 32522        "description": "ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.",
 32523        "type": "array",
 32524        "items": {
 32525         "type": "string"
 32526        }
 32527       },
 32528       "resources": {
 32529        "description": "Resources is a list of resources this rule applies to.  ResourceAll represents all resources.",
 32530        "type": "array",
 32531        "items": {
 32532         "type": "string"
 32533        }
 32534       },
 32535       "verbs": {
 32536        "description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule.  VerbAll represents all kinds.",
 32537        "type": "array",
 32538        "items": {
 32539         "type": "string"
 32540        }
 32541       }
 32542      }
 32543     },
 32544     "v1alpha1.Role": {
 32545      "description": "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.",
 32546      "required": [
 32547       "rules"
 32548      ],
 32549      "properties": {
 32550       "metadata": {
 32551        "description": "Standard object's metadata.",
 32552        "$ref": "#/definitions/v1.ObjectMeta"
 32553       },
 32554       "rules": {
 32555        "description": "Rules holds all the PolicyRules for this Role",
 32556        "type": "array",
 32557        "items": {
 32558         "$ref": "#/definitions/v1alpha1.PolicyRule"
 32559        }
 32560       }
 32561      }
 32562     },
 32563     "v1alpha1.RoleBinding": {
 32564      "description": "RoleBinding references a role, but does not contain it.  It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in.  RoleBindings in a given namespace only have effect in that namespace.",
 32565      "required": [
 32566       "subjects",
 32567       "roleRef"
 32568      ],
 32569      "properties": {
 32570       "metadata": {
 32571        "description": "Standard object's metadata.",
 32572        "$ref": "#/definitions/v1.ObjectMeta"
 32573       },
 32574       "roleRef": {
 32575        "description": "RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error.",
 32576        "$ref": "#/definitions/v1alpha1.RoleRef"
 32577       },
 32578       "subjects": {
 32579        "description": "Subjects holds references to the objects the role applies to.",
 32580        "type": "array",
 32581        "items": {
 32582         "$ref": "#/definitions/v1alpha1.Subject"
 32583        }
 32584       }
 32585      }
 32586     },
 32587     "v1alpha1.RoleBindingList": {
 32588      "description": "RoleBindingList is a collection of RoleBindings",
 32589      "required": [
 32590       "items"
 32591      ],
 32592      "properties": {
 32593       "items": {
 32594        "description": "Items is a list of RoleBindings",
 32595        "type": "array",
 32596        "items": {
 32597         "$ref": "#/definitions/v1alpha1.RoleBinding"
 32598        }
 32599       },
 32600       "metadata": {
 32601        "description": "Standard object's metadata.",
 32602        "$ref": "#/definitions/unversioned.ListMeta"
 32603       }
 32604      }
 32605     },
 32606     "v1alpha1.RoleList": {
 32607      "description": "RoleList is a collection of Roles",
 32608      "required": [
 32609       "items"
 32610      ],
 32611      "properties": {
 32612       "items": {
 32613        "description": "Items is a list of Roles",
 32614        "type": "array",
 32615        "items": {
 32616         "$ref": "#/definitions/v1alpha1.Role"
 32617        }
 32618       },
 32619       "metadata": {
 32620        "description": "Standard object's metadata.",
 32621        "$ref": "#/definitions/unversioned.ListMeta"
 32622       }
 32623      }
 32624     },
 32625     "v1alpha1.RoleRef": {
 32626      "description": "RoleRef contains information that points to the role being used",
 32627      "required": [
 32628       "apiGroup",
 32629       "kind",
 32630       "name"
 32631      ],
 32632      "properties": {
 32633       "apiGroup": {
 32634        "description": "APIGroup is the group for the resource being referenced",
 32635        "type": "string"
 32636       },
 32637       "kind": {
 32638        "description": "Kind is the type of resource being referenced",
 32639        "type": "string"
 32640       },
 32641       "name": {
 32642        "description": "Name is the name of resource being referenced",
 32643        "type": "string"
 32644       }
 32645      }
 32646     },
 32647     "v1alpha1.StatefulSet": {
 32648      "description": "StatefulSet represents a set of pods with consistent identities. Identities are defined as:\n - Network: A single stable DNS and hostname.\n - Storage: As many VolumeClaims as requested.\nThe StatefulSet guarantees that a given network identity will always map to the same storage identity. StatefulSet is currently in alpha and subject to change without notice.",
 32649      "properties": {
 32650       "metadata": {
 32651        "$ref": "#/definitions/v1.ObjectMeta"
 32652       },
 32653       "spec": {
 32654        "description": "Spec defines the desired identities of pods in this set.",
 32655        "$ref": "#/definitions/v1alpha1.StatefulSetSpec"
 32656       },
 32657       "status": {
 32658        "description": "Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time.",
 32659        "$ref": "#/definitions/v1alpha1.StatefulSetStatus"
 32660       }
 32661      }
 32662     },
 32663     "v1alpha1.StatefulSetList": {
 32664      "description": "StatefulSetList is a collection of StatefulSets.",
 32665      "required": [
 32666       "items"
 32667      ],
 32668      "properties": {
 32669       "items": {
 32670        "type": "array",
 32671        "items": {
 32672         "$ref": "#/definitions/v1alpha1.StatefulSet"
 32673        }
 32674       },
 32675       "metadata": {
 32676        "$ref": "#/definitions/unversioned.ListMeta"
 32677       }
 32678      }
 32679     },
 32680     "v1alpha1.StatefulSetSpec": {
 32681      "description": "A StatefulSetSpec is the specification of a StatefulSet.",
 32682      "required": [
 32683       "template",
 32684       "serviceName"
 32685      ],
 32686      "properties": {
 32687       "replicas": {
 32688        "description": "Replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1.",
 32689        "type": "integer",
 32690        "format": "int32"
 32691       },
 32692       "selector": {
 32693        "description": "Selector is a label query over pods that should match the replica count. If empty, defaulted to labels on the pod template. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors",
 32694        "$ref": "#/definitions/unversioned.LabelSelector"
 32695       },
 32696       "serviceName": {
 32697        "description": "ServiceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where \"pod-specific-string\" is managed by the StatefulSet controller.",
 32698        "type": "string"
 32699       },
 32700       "template": {
 32701        "description": "Template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet.",
 32702        "$ref": "#/definitions/v1.PodTemplateSpec"
 32703       },
 32704       "volumeClaimTemplates": {
 32705        "description": "VolumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name.",
 32706        "type": "array",
 32707        "items": {
 32708         "$ref": "#/definitions/v1.PersistentVolumeClaim"
 32709        }
 32710       }
 32711      }
 32712     },
 32713     "v1alpha1.StatefulSetStatus": {
 32714      "description": "StatefulSetStatus represents the current state of a StatefulSet.",
 32715      "required": [
 32716       "replicas"
 32717      ],
 32718      "properties": {
 32719       "observedGeneration": {
 32720        "description": "most recent generation observed by this autoscaler.",
 32721        "type": "integer",
 32722        "format": "int64"
 32723       },
 32724       "replicas": {
 32725        "description": "Replicas is the number of actual replicas.",
 32726        "type": "integer",
 32727        "format": "int32"
 32728       }
 32729      }
 32730     },
 32731     "v1alpha1.Subject": {
 32732      "description": "Subject contains a reference to the object or user identities a role binding applies to.  This can either hold a direct API object reference, or a value for non-objects such as user and group names.",
 32733      "required": [
 32734       "kind",
 32735       "name"
 32736      ],
 32737      "properties": {
 32738       "apiVersion": {
 32739        "description": "APIVersion holds the API group and version of the referenced object.",
 32740        "type": "string"
 32741       },
 32742       "kind": {
 32743        "description": "Kind of object being referenced. Values defined by this API group are \"User\", \"Group\", and \"ServiceAccount\". If the Authorizer does not recognized the kind value, the Authorizer should report an error.",
 32744        "type": "string"
 32745       },
 32746       "name": {
 32747        "description": "Name of the object being referenced.",
 32748        "type": "string"
 32749       },
 32750       "namespace": {
 32751        "description": "Namespace of the referenced object.  If the object kind is non-namespace, such as \"User\" or \"Group\", and this value is not empty the Authorizer should report an error.",
 32752        "type": "string"
 32753       }
 32754      }
 32755     },
 32756     "v1beta1.APIVersion": {
 32757      "description": "An APIVersion represents a single concrete version of an object model.",
 32758      "properties": {
 32759       "name": {
 32760        "description": "Name of this version (e.g. 'v1').",
 32761        "type": "string"
 32762       }
 32763      }
 32764     },
 32765     "v1beta1.CPUTargetUtilization": {
 32766      "required": [
 32767       "targetPercentage"
 32768      ],
 32769      "properties": {
 32770       "targetPercentage": {
 32771        "description": "fraction of the requested CPU that should be utilized/used, e.g. 70 means that 70% of the requested CPU should be in use.",
 32772        "type": "integer",
 32773        "format": "int32"
 32774       }
 32775      }
 32776     },
 32777     "v1beta1.DaemonSet": {
 32778      "description": "DaemonSet represents the configuration of a daemon set.",
 32779      "properties": {
 32780       "metadata": {
 32781        "description": "Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 32782        "$ref": "#/definitions/v1.ObjectMeta"
 32783       },
 32784       "spec": {
 32785        "description": "Spec defines the desired behavior of this daemon set. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status",
 32786        "$ref": "#/definitions/v1beta1.DaemonSetSpec"
 32787       },
 32788       "status": {
 32789        "description": "Status is the current status of this daemon set. This data may be out of date by some window of time. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status",
 32790        "$ref": "#/definitions/v1beta1.DaemonSetStatus"
 32791       }
 32792      }
 32793     },
 32794     "v1beta1.DaemonSetList": {
 32795      "description": "DaemonSetList is a collection of daemon sets.",
 32796      "required": [
 32797       "items"
 32798      ],
 32799      "properties": {
 32800       "items": {
 32801        "description": "Items is a list of daemon sets.",
 32802        "type": "array",
 32803        "items": {
 32804         "$ref": "#/definitions/v1beta1.DaemonSet"
 32805        }
 32806       },
 32807       "metadata": {
 32808        "description": "Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 32809        "$ref": "#/definitions/unversioned.ListMeta"
 32810       }
 32811      }
 32812     },
 32813     "v1beta1.DaemonSetSpec": {
 32814      "description": "DaemonSetSpec is the specification of a daemon set.",
 32815      "required": [
 32816       "template"
 32817      ],
 32818      "properties": {
 32819       "selector": {
 32820        "description": "Selector is a label query over pods that are managed by the daemon set. Must match in order to be controlled. If empty, defaulted to labels on Pod template. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors",
 32821        "$ref": "#/definitions/unversioned.LabelSelector"
 32822       },
 32823       "template": {
 32824        "description": "Template is the object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). More info: http://kubernetes.io/docs/user-guide/replication-controller#pod-template",
 32825        "$ref": "#/definitions/v1.PodTemplateSpec"
 32826       }
 32827      }
 32828     },
 32829     "v1beta1.DaemonSetStatus": {
 32830      "description": "DaemonSetStatus represents the current status of a daemon set.",
 32831      "required": [
 32832       "currentNumberScheduled",
 32833       "numberMisscheduled",
 32834       "desiredNumberScheduled",
 32835       "numberReady"
 32836      ],
 32837      "properties": {
 32838       "currentNumberScheduled": {
 32839        "description": "CurrentNumberScheduled is the number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: http://releases.k8s.io/HEAD/docs/admin/daemons.md",
 32840        "type": "integer",
 32841        "format": "int32"
 32842       },
 32843       "desiredNumberScheduled": {
 32844        "description": "DesiredNumberScheduled is the total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: http://releases.k8s.io/HEAD/docs/admin/daemons.md",
 32845        "type": "integer",
 32846        "format": "int32"
 32847       },
 32848       "numberMisscheduled": {
 32849        "description": "NumberMisscheduled is the number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: http://releases.k8s.io/HEAD/docs/admin/daemons.md",
 32850        "type": "integer",
 32851        "format": "int32"
 32852       },
 32853       "numberReady": {
 32854        "description": "NumberReady is the number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.",
 32855        "type": "integer",
 32856        "format": "int32"
 32857       }
 32858      }
 32859     },
 32860     "v1beta1.Deployment": {
 32861      "description": "Deployment enables declarative updates for Pods and ReplicaSets.",
 32862      "properties": {
 32863       "metadata": {
 32864        "description": "Standard object metadata.",
 32865        "$ref": "#/definitions/v1.ObjectMeta"
 32866       },
 32867       "spec": {
 32868        "description": "Specification of the desired behavior of the Deployment.",
 32869        "$ref": "#/definitions/v1beta1.DeploymentSpec"
 32870       },
 32871       "status": {
 32872        "description": "Most recently observed status of the Deployment.",
 32873        "$ref": "#/definitions/v1beta1.DeploymentStatus"
 32874       }
 32875      }
 32876     },
 32877     "v1beta1.DeploymentCondition": {
 32878      "description": "DeploymentCondition describes the state of a deployment at a certain point.",
 32879      "required": [
 32880       "type",
 32881       "status",
 32882       "lastUpdateTime",
 32883       "lastTransitionTime",
 32884       "reason",
 32885       "message"
 32886      ],
 32887      "properties": {
 32888       "lastTransitionTime": {
 32889        "description": "Last time the condition transitioned from one status to another.",
 32890        "$ref": "#/definitions/unversioned.Time"
 32891       },
 32892       "lastUpdateTime": {
 32893        "description": "The last time this condition was updated.",
 32894        "$ref": "#/definitions/unversioned.Time"
 32895       },
 32896       "message": {
 32897        "description": "A human readable message indicating details about the transition.",
 32898        "type": "string"
 32899       },
 32900       "reason": {
 32901        "description": "The reason for the condition's last transition.",
 32902        "type": "string"
 32903       },
 32904       "status": {
 32905        "description": "Status of the condition, one of True, False, Unknown.",
 32906        "type": "string"
 32907       },
 32908       "type": {
 32909        "description": "Type of deployment condition.",
 32910        "type": "string"
 32911       }
 32912      }
 32913     },
 32914     "v1beta1.DeploymentList": {
 32915      "description": "DeploymentList is a list of Deployments.",
 32916      "required": [
 32917       "items"
 32918      ],
 32919      "properties": {
 32920       "items": {
 32921        "description": "Items is the list of Deployments.",
 32922        "type": "array",
 32923        "items": {
 32924         "$ref": "#/definitions/v1beta1.Deployment"
 32925        }
 32926       },
 32927       "metadata": {
 32928        "description": "Standard list metadata.",
 32929        "$ref": "#/definitions/unversioned.ListMeta"
 32930       }
 32931      }
 32932     },
 32933     "v1beta1.DeploymentRollback": {
 32934      "description": "DeploymentRollback stores the information required to rollback a deployment.",
 32935      "required": [
 32936       "name",
 32937       "rollbackTo"
 32938      ],
 32939      "properties": {
 32940       "name": {
 32941        "description": "Required: This must match the Name of a deployment.",
 32942        "type": "string"
 32943       },
 32944       "rollbackTo": {
 32945        "description": "The config of this deployment rollback.",
 32946        "$ref": "#/definitions/v1beta1.RollbackConfig"
 32947       },
 32948       "updatedAnnotations": {
 32949        "description": "The annotations to be updated to a deployment",
 32950        "type": "object",
 32951        "additionalProperties": {
 32952         "type": "string"
 32953        }
 32954       }
 32955      }
 32956     },
 32957     "v1beta1.DeploymentSpec": {
 32958      "description": "DeploymentSpec is the specification of the desired behavior of the Deployment.",
 32959      "required": [
 32960       "template",
 32961       "progressDeadlineSeconds"
 32962      ],
 32963      "properties": {
 32964       "minReadySeconds": {
 32965        "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)",
 32966        "type": "integer",
 32967        "format": "int32"
 32968       },
 32969       "paused": {
 32970        "description": "Indicates that the deployment is paused and will not be processed by the deployment controller.",
 32971        "type": "boolean"
 32972       },
 32973       "progressDeadlineSeconds": {
 32974        "description": "The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Once autoRollback is implemented, the deployment controller will automatically rollback failed deployments. Note that progress will not be estimated during the time a deployment is paused. This is not set by default.",
 32975        "type": "integer",
 32976        "format": "int32"
 32977       },
 32978       "replicas": {
 32979        "description": "Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.",
 32980        "type": "integer",
 32981        "format": "int32"
 32982       },
 32983       "revisionHistoryLimit": {
 32984        "description": "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified.",
 32985        "type": "integer",
 32986        "format": "int32"
 32987       },
 32988       "rollbackTo": {
 32989        "description": "The config this deployment is rolling back to. Will be cleared after rollback is done.",
 32990        "$ref": "#/definitions/v1beta1.RollbackConfig"
 32991       },
 32992       "selector": {
 32993        "description": "Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment.",
 32994        "$ref": "#/definitions/unversioned.LabelSelector"
 32995       },
 32996       "strategy": {
 32997        "description": "The deployment strategy to use to replace existing pods with new ones.",
 32998        "$ref": "#/definitions/v1beta1.DeploymentStrategy"
 32999       },
 33000       "template": {
 33001        "description": "Template describes the pods that will be created.",
 33002        "$ref": "#/definitions/v1.PodTemplateSpec"
 33003       }
 33004      }
 33005     },
 33006     "v1beta1.DeploymentStatus": {
 33007      "description": "DeploymentStatus is the most recently observed status of the Deployment.",
 33008      "required": [
 33009       "conditions"
 33010      ],
 33011      "properties": {
 33012       "availableReplicas": {
 33013        "description": "Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.",
 33014        "type": "integer",
 33015        "format": "int32"
 33016       },
 33017       "conditions": {
 33018        "description": "Represents the latest available observations of a deployment's current state.",
 33019        "type": "array",
 33020        "items": {
 33021         "$ref": "#/definitions/v1beta1.DeploymentCondition"
 33022        }
 33023       },
 33024       "observedGeneration": {
 33025        "description": "The generation observed by the deployment controller.",
 33026        "type": "integer",
 33027        "format": "int64"
 33028       },
 33029       "replicas": {
 33030        "description": "Total number of non-terminated pods targeted by this deployment (their labels match the selector).",
 33031        "type": "integer",
 33032        "format": "int32"
 33033       },
 33034       "unavailableReplicas": {
 33035        "description": "Total number of unavailable pods targeted by this deployment.",
 33036        "type": "integer",
 33037        "format": "int32"
 33038       },
 33039       "updatedReplicas": {
 33040        "description": "Total number of non-terminated pods targeted by this deployment that have the desired template spec.",
 33041        "type": "integer",
 33042        "format": "int32"
 33043       }
 33044      }
 33045     },
 33046     "v1beta1.DeploymentStrategy": {
 33047      "description": "DeploymentStrategy describes how to replace existing pods with new ones.",
 33048      "properties": {
 33049       "rollingUpdate": {
 33050        "description": "Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.",
 33051        "$ref": "#/definitions/v1beta1.RollingUpdateDeployment"
 33052       },
 33053       "type": {
 33054        "description": "Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate.",
 33055        "type": "string"
 33056       }
 33057      }
 33058     },
 33059     "v1beta1.HorizontalPodAutoscaler": {
 33060      "description": "configuration of a horizontal pod autoscaler.",
 33061      "properties": {
 33062       "metadata": {
 33063        "description": "Standard object metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 33064        "$ref": "#/definitions/v1.ObjectMeta"
 33065       },
 33066       "spec": {
 33067        "description": "behaviour of autoscaler. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status.",
 33068        "$ref": "#/definitions/v1beta1.HorizontalPodAutoscalerSpec"
 33069       },
 33070       "status": {
 33071        "description": "current information about the autoscaler.",
 33072        "$ref": "#/definitions/v1beta1.HorizontalPodAutoscalerStatus"
 33073       }
 33074      }
 33075     },
 33076     "v1beta1.HorizontalPodAutoscalerList": {
 33077      "description": "list of horizontal pod autoscaler objects.",
 33078      "required": [
 33079       "items"
 33080      ],
 33081      "properties": {
 33082       "items": {
 33083        "description": "list of horizontal pod autoscaler objects.",
 33084        "type": "array",
 33085        "items": {
 33086         "$ref": "#/definitions/v1beta1.HorizontalPodAutoscaler"
 33087        }
 33088       },
 33089       "metadata": {
 33090        "description": "Standard list metadata.",
 33091        "$ref": "#/definitions/unversioned.ListMeta"
 33092       }
 33093      }
 33094     },
 33095     "v1beta1.HorizontalPodAutoscalerSpec": {
 33096      "description": "specification of a horizontal pod autoscaler.",
 33097      "required": [
 33098       "scaleRef",
 33099       "maxReplicas"
 33100      ],
 33101      "properties": {
 33102       "cpuUtilization": {
 33103        "description": "target average CPU utilization (represented as a percentage of requested CPU) over all the pods; if not specified it defaults to the target CPU utilization at 80% of the requested resources.",
 33104        "$ref": "#/definitions/v1beta1.CPUTargetUtilization"
 33105       },
 33106       "maxReplicas": {
 33107        "description": "upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas.",
 33108        "type": "integer",
 33109        "format": "int32"
 33110       },
 33111       "minReplicas": {
 33112        "description": "lower limit for the number of pods that can be set by the autoscaler, default 1.",
 33113        "type": "integer",
 33114        "format": "int32"
 33115       },
 33116       "scaleRef": {
 33117        "description": "reference to Scale subresource; horizontal pod autoscaler will learn the current resource consumption from its status, and will set the desired number of pods by modifying its spec.",
 33118        "$ref": "#/definitions/v1beta1.SubresourceReference"
 33119       }
 33120      }
 33121     },
 33122     "v1beta1.HorizontalPodAutoscalerStatus": {
 33123      "description": "current status of a horizontal pod autoscaler",
 33124      "required": [
 33125       "currentReplicas",
 33126       "desiredReplicas"
 33127      ],
 33128      "properties": {
 33129       "currentCPUUtilizationPercentage": {
 33130        "description": "current average CPU utilization over all pods, represented as a percentage of requested CPU, e.g. 70 means that an average pod is using now 70% of its requested CPU.",
 33131        "type": "integer",
 33132        "format": "int32"
 33133       },
 33134       "currentReplicas": {
 33135        "description": "current number of replicas of pods managed by this autoscaler.",
 33136        "type": "integer",
 33137        "format": "int32"
 33138       },
 33139       "desiredReplicas": {
 33140        "description": "desired number of replicas of pods managed by this autoscaler.",
 33141        "type": "integer",
 33142        "format": "int32"
 33143       },
 33144       "lastScaleTime": {
 33145        "description": "last time the HorizontalPodAutoscaler scaled the number of pods; used by the autoscaler to control how often the number of pods is changed.",
 33146        "$ref": "#/definitions/unversioned.Time"
 33147       },
 33148       "observedGeneration": {
 33149        "description": "most recent generation observed by this autoscaler.",
 33150        "type": "integer",
 33151        "format": "int64"
 33152       }
 33153      }
 33154     },
 33155     "v1beta1.Ingress": {
 33156      "description": "Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.",
 33157      "properties": {
 33158       "metadata": {
 33159        "description": "Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 33160        "$ref": "#/definitions/v1.ObjectMeta"
 33161       },
 33162       "spec": {
 33163        "description": "Spec is the desired state of the Ingress. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status",
 33164        "$ref": "#/definitions/v1beta1.IngressSpec"
 33165       },
 33166       "status": {
 33167        "description": "Status is the current state of the Ingress. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status",
 33168        "$ref": "#/definitions/v1beta1.IngressStatus"
 33169       }
 33170      }
 33171     },
 33172     "v1beta1.IngressBackend": {
 33173      "description": "IngressBackend describes all endpoints for a given service and port.",
 33174      "required": [
 33175       "serviceName",
 33176       "servicePort"
 33177      ],
 33178      "properties": {
 33179       "serviceName": {
 33180        "description": "Specifies the name of the referenced service.",
 33181        "type": "string"
 33182       },
 33183       "servicePort": {
 33184        "description": "Specifies the port of the referenced service.",
 33185        "$ref": "#/definitions/intstr.IntOrString"
 33186       }
 33187      }
 33188     },
 33189     "v1beta1.IngressList": {
 33190      "description": "IngressList is a collection of Ingress.",
 33191      "required": [
 33192       "items"
 33193      ],
 33194      "properties": {
 33195       "items": {
 33196        "description": "Items is the list of Ingress.",
 33197        "type": "array",
 33198        "items": {
 33199         "$ref": "#/definitions/v1beta1.Ingress"
 33200        }
 33201       },
 33202       "metadata": {
 33203        "description": "Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 33204        "$ref": "#/definitions/unversioned.ListMeta"
 33205       }
 33206      }
 33207     },
 33208     "v1beta1.IngressRule": {
 33209      "description": "IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.",
 33210      "properties": {
 33211       "host": {
 33212        "description": "Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in the RFC: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to the\n\t  IP in the Spec of the parent Ingress.\n2. The `:` delimiter is not respected because ports are not allowed.\n\t  Currently the port of an Ingress is implicitly :80 for http and\n\t  :443 for https.\nBoth these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.",
 33213        "type": "string"
 33214       }
 33215      }
 33216     },
 33217     "v1beta1.IngressSpec": {
 33218      "description": "IngressSpec describes the Ingress the user wishes to exist.",
 33219      "properties": {
 33220       "backend": {
 33221        "description": "A default backend capable of servicing requests that don't match any rule. At least one of 'backend' or 'rules' must be specified. This field is optional to allow the loadbalancer controller or defaulting logic to specify a global default.",
 33222        "$ref": "#/definitions/v1beta1.IngressBackend"
 33223       },
 33224       "rules": {
 33225        "description": "A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.",
 33226        "type": "array",
 33227        "items": {
 33228         "$ref": "#/definitions/v1beta1.IngressRule"
 33229        }
 33230       },
 33231       "tls": {
 33232        "description": "TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.",
 33233        "type": "array",
 33234        "items": {
 33235         "$ref": "#/definitions/v1beta1.IngressTLS"
 33236        }
 33237       }
 33238      }
 33239     },
 33240     "v1beta1.IngressStatus": {
 33241      "description": "IngressStatus describe the current state of the Ingress.",
 33242      "properties": {
 33243       "loadBalancer": {
 33244        "description": "LoadBalancer contains the current status of the load-balancer.",
 33245        "$ref": "#/definitions/v1.LoadBalancerStatus"
 33246       }
 33247      }
 33248     },
 33249     "v1beta1.IngressTLS": {
 33250      "description": "IngressTLS describes the transport layer security associated with an Ingress.",
 33251      "properties": {
 33252       "hosts": {
 33253        "description": "Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.",
 33254        "type": "array",
 33255        "items": {
 33256         "type": "string"
 33257        }
 33258       },
 33259       "secretName": {
 33260        "description": "SecretName is the name of the secret used to terminate SSL traffic on 443. Field is left optional to allow SSL routing based on SNI hostname alone. If the SNI host in a listener conflicts with the \"Host\" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.",
 33261        "type": "string"
 33262       }
 33263      }
 33264     },
 33265     "v1beta1.Job": {
 33266      "description": "Job represents the configuration of a single job.",
 33267      "properties": {
 33268       "metadata": {
 33269        "description": "Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 33270        "$ref": "#/definitions/v1.ObjectMeta"
 33271       },
 33272       "spec": {
 33273        "description": "Spec is a structure defining the expected behavior of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status",
 33274        "$ref": "#/definitions/v1beta1.JobSpec"
 33275       },
 33276       "status": {
 33277        "description": "Status is a structure describing current status of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status",
 33278        "$ref": "#/definitions/v1beta1.JobStatus"
 33279       }
 33280      }
 33281     },
 33282     "v1beta1.JobCondition": {
 33283      "description": "JobCondition describes current state of a job.",
 33284      "required": [
 33285       "type",
 33286       "status"
 33287      ],
 33288      "properties": {
 33289       "lastProbeTime": {
 33290        "description": "Last time the condition was checked.",
 33291        "$ref": "#/definitions/unversioned.Time"
 33292       },
 33293       "lastTransitionTime": {
 33294        "description": "Last time the condition transit from one status to another.",
 33295        "$ref": "#/definitions/unversioned.Time"
 33296       },
 33297       "message": {
 33298        "description": "Human readable message indicating details about last transition.",
 33299        "type": "string"
 33300       },
 33301       "reason": {
 33302        "description": "(brief) reason for the condition's last transition.",
 33303        "type": "string"
 33304       },
 33305       "status": {
 33306        "description": "Status of the condition, one of True, False, Unknown.",
 33307        "type": "string"
 33308       },
 33309       "type": {
 33310        "description": "Type of job condition, Complete or Failed.",
 33311        "type": "string"
 33312       }
 33313      }
 33314     },
 33315     "v1beta1.JobList": {
 33316      "description": "JobList is a collection of jobs.",
 33317      "required": [
 33318       "items"
 33319      ],
 33320      "properties": {
 33321       "items": {
 33322        "description": "Items is the list of Job.",
 33323        "type": "array",
 33324        "items": {
 33325         "$ref": "#/definitions/v1beta1.Job"
 33326        }
 33327       },
 33328       "metadata": {
 33329        "description": "Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 33330        "$ref": "#/definitions/unversioned.ListMeta"
 33331       }
 33332      }
 33333     },
 33334     "v1beta1.JobSpec": {
 33335      "description": "JobSpec describes how the job execution will look like.",
 33336      "required": [
 33337       "template"
 33338      ],
 33339      "properties": {
 33340       "activeDeadlineSeconds": {
 33341        "description": "Optional duration in seconds relative to the startTime that the job may be active before the system tries to terminate it; value must be positive integer",
 33342        "type": "integer",
 33343        "format": "int64"
 33344       },
 33345       "autoSelector": {
 33346        "description": "AutoSelector controls generation of pod labels and pod selectors. It was not present in the original extensions/v1beta1 Job definition, but exists to allow conversion from batch/v1 Jobs, where it corresponds to, but has the opposite meaning as, ManualSelector. More info: http://releases.k8s.io/HEAD/docs/design/selector-generation.md",
 33347        "type": "boolean"
 33348       },
 33349       "completions": {
 33350        "description": "Completions specifies the desired number of successfully finished pods the job should be run with.  Setting to nil means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value.  Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job. More info: http://kubernetes.io/docs/user-guide/jobs",
 33351        "type": "integer",
 33352        "format": "int32"
 33353       },
 33354       "parallelism": {
 33355        "description": "Parallelism specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) \u003c .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: http://kubernetes.io/docs/user-guide/jobs",
 33356        "type": "integer",
 33357        "format": "int32"
 33358       },
 33359       "selector": {
 33360        "description": "Selector is a label query over pods that should match the pod count. Normally, the system sets this field for you. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors",
 33361        "$ref": "#/definitions/unversioned.LabelSelector"
 33362       },
 33363       "template": {
 33364        "description": "Template is the object that describes the pod that will be created when executing a job. More info: http://kubernetes.io/docs/user-guide/jobs",
 33365        "$ref": "#/definitions/v1.PodTemplateSpec"
 33366       }
 33367      }
 33368     },
 33369     "v1beta1.JobStatus": {
 33370      "description": "JobStatus represents the current state of a Job.",
 33371      "properties": {
 33372       "active": {
 33373        "description": "Active is the number of actively running pods.",
 33374        "type": "integer",
 33375        "format": "int32"
 33376       },
 33377       "completionTime": {
 33378        "description": "CompletionTime represents time when the job was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.",
 33379        "$ref": "#/definitions/unversioned.Time"
 33380       },
 33381       "conditions": {
 33382        "description": "Conditions represent the latest available observations of an object's current state. More info: http://kubernetes.io/docs/user-guide/jobs",
 33383        "type": "array",
 33384        "items": {
 33385         "$ref": "#/definitions/v1beta1.JobCondition"
 33386        }
 33387       },
 33388       "failed": {
 33389        "description": "Failed is the number of pods which reached Phase Failed.",
 33390        "type": "integer",
 33391        "format": "int32"
 33392       },
 33393       "startTime": {
 33394        "description": "StartTime represents time when the job was acknowledged by the Job Manager. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.",
 33395        "$ref": "#/definitions/unversioned.Time"
 33396       },
 33397       "succeeded": {
 33398        "description": "Succeeded is the number of pods which reached Phase Succeeded.",
 33399        "type": "integer",
 33400        "format": "int32"
 33401       }
 33402      }
 33403     },
 33404     "v1beta1.LocalSubjectAccessReview": {
 33405      "description": "LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking.",
 33406      "required": [
 33407       "spec"
 33408      ],
 33409      "properties": {
 33410       "metadata": {
 33411        "$ref": "#/definitions/v1.ObjectMeta"
 33412       },
 33413       "spec": {
 33414        "description": "Spec holds information about the request being evaluated.  spec.namespace must be equal to the namespace you made the request against.  If empty, it is defaulted.",
 33415        "$ref": "#/definitions/v1beta1.SubjectAccessReviewSpec"
 33416       },
 33417       "status": {
 33418        "description": "Status is filled in by the server and indicates whether the request is allowed or not",
 33419        "$ref": "#/definitions/v1beta1.SubjectAccessReviewStatus"
 33420       }
 33421      }
 33422     },
 33423     "v1beta1.NetworkPolicy": {
 33424      "properties": {
 33425       "metadata": {
 33426        "description": "Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 33427        "$ref": "#/definitions/v1.ObjectMeta"
 33428       },
 33429       "spec": {
 33430        "description": "Specification of the desired behavior for this NetworkPolicy.",
 33431        "$ref": "#/definitions/v1beta1.NetworkPolicySpec"
 33432       }
 33433      }
 33434     },
 33435     "v1beta1.NetworkPolicyIngressRule": {
 33436      "description": "This NetworkPolicyIngressRule matches traffic if and only if the traffic matches both ports AND from.",
 33437      "properties": {
 33438       "from": {
 33439        "description": "List of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is not provided, this rule matches all sources (traffic not restricted by source). If this field is empty, this rule matches no sources (no traffic matches). If this field is present and contains at least on item, this rule allows traffic only if the traffic matches at least one item in the from list.",
 33440        "type": "array",
 33441        "items": {
 33442         "$ref": "#/definitions/v1beta1.NetworkPolicyPeer"
 33443        }
 33444       },
 33445       "ports": {
 33446        "description": "List of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is not provided, this rule matches all ports (traffic not restricted by port). If this field is empty, this rule matches no ports (no traffic matches). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.",
 33447        "type": "array",
 33448        "items": {
 33449         "$ref": "#/definitions/v1beta1.NetworkPolicyPort"
 33450        }
 33451       }
 33452      }
 33453     },
 33454     "v1beta1.NetworkPolicyList": {
 33455      "description": "Network Policy List is a list of NetworkPolicy objects.",
 33456      "required": [
 33457       "items"
 33458      ],
 33459      "properties": {
 33460       "items": {
 33461        "description": "Items is a list of schema objects.",
 33462        "type": "array",
 33463        "items": {
 33464         "$ref": "#/definitions/v1beta1.NetworkPolicy"
 33465        }
 33466       },
 33467       "metadata": {
 33468        "description": "Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 33469        "$ref": "#/definitions/unversioned.ListMeta"
 33470       }
 33471      }
 33472     },
 33473     "v1beta1.NetworkPolicyPeer": {
 33474      "properties": {
 33475       "namespaceSelector": {
 33476        "description": "Selects Namespaces using cluster scoped-labels.  This matches all pods in all namespaces selected by this label selector. This field follows standard label selector semantics. If omitted, this selector selects no namespaces. If present but empty, this selector selects all namespaces.",
 33477        "$ref": "#/definitions/unversioned.LabelSelector"
 33478       },
 33479       "podSelector": {
 33480        "description": "This is a label selector which selects Pods in this namespace. This field follows standard label selector semantics. If not provided, this selector selects no pods. If present but empty, this selector selects all pods in this namespace.",
 33481        "$ref": "#/definitions/unversioned.LabelSelector"
 33482       }
 33483      }
 33484     },
 33485     "v1beta1.NetworkPolicyPort": {
 33486      "properties": {
 33487       "port": {
 33488        "description": "If specified, the port on the given protocol.  This can either be a numerical or named port on a pod.  If this field is not provided, this matches all port names and numbers. If present, only traffic on the specified protocol AND port will be matched.",
 33489        "$ref": "#/definitions/intstr.IntOrString"
 33490       },
 33491       "protocol": {
 33492        "description": "Optional.  The protocol (TCP or UDP) which traffic must match. If not specified, this field defaults to TCP.",
 33493        "type": "string"
 33494       }
 33495      }
 33496     },
 33497     "v1beta1.NetworkPolicySpec": {
 33498      "required": [
 33499       "podSelector"
 33500      ],
 33501      "properties": {
 33502       "ingress": {
 33503        "description": "List of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if namespace.networkPolicy.ingress.isolation is undefined and cluster policy allows it, OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not affect ingress isolation. If this field is present and contains at least one rule, this policy allows any traffic which matches at least one of the ingress rules in this list.",
 33504        "type": "array",
 33505        "items": {
 33506         "$ref": "#/definitions/v1beta1.NetworkPolicyIngressRule"
 33507        }
 33508       },
 33509       "podSelector": {
 33510        "description": "Selects the pods to which this NetworkPolicy object applies.  The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods.  In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace.",
 33511        "$ref": "#/definitions/unversioned.LabelSelector"
 33512       }
 33513      }
 33514     },
 33515     "v1beta1.NonResourceAttributes": {
 33516      "description": "NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface",
 33517      "properties": {
 33518       "path": {
 33519        "description": "Path is the URL path of the request",
 33520        "type": "string"
 33521       },
 33522       "verb": {
 33523        "description": "Verb is the standard HTTP verb",
 33524        "type": "string"
 33525       }
 33526      }
 33527     },
 33528     "v1beta1.ReplicaSet": {
 33529      "description": "ReplicaSet represents the configuration of a ReplicaSet.",
 33530      "properties": {
 33531       "metadata": {
 33532        "description": "If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 33533        "$ref": "#/definitions/v1.ObjectMeta"
 33534       },
 33535       "spec": {
 33536        "description": "Spec defines the specification of the desired behavior of the ReplicaSet. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status",
 33537        "$ref": "#/definitions/v1beta1.ReplicaSetSpec"
 33538       },
 33539       "status": {
 33540        "description": "Status is the most recently observed status of the ReplicaSet. This data may be out of date by some window of time. Populated by the system. Read-only. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status",
 33541        "$ref": "#/definitions/v1beta1.ReplicaSetStatus"
 33542       }
 33543      }
 33544     },
 33545     "v1beta1.ReplicaSetCondition": {
 33546      "description": "ReplicaSetCondition describes the state of a replica set at a certain point.",
 33547      "required": [
 33548       "type",
 33549       "status"
 33550      ],
 33551      "properties": {
 33552       "lastTransitionTime": {
 33553        "description": "The last time the condition transitioned from one status to another.",
 33554        "$ref": "#/definitions/unversioned.Time"
 33555       },
 33556       "message": {
 33557        "description": "A human readable message indicating details about the transition.",
 33558        "type": "string"
 33559       },
 33560       "reason": {
 33561        "description": "The reason for the condition's last transition.",
 33562        "type": "string"
 33563       },
 33564       "status": {
 33565        "description": "Status of the condition, one of True, False, Unknown.",
 33566        "type": "string"
 33567       },
 33568       "type": {
 33569        "description": "Type of replica set condition.",
 33570        "type": "string"
 33571       }
 33572      }
 33573     },
 33574     "v1beta1.ReplicaSetList": {
 33575      "description": "ReplicaSetList is a collection of ReplicaSets.",
 33576      "required": [
 33577       "items"
 33578      ],
 33579      "properties": {
 33580       "items": {
 33581        "description": "List of ReplicaSets. More info: http://kubernetes.io/docs/user-guide/replication-controller",
 33582        "type": "array",
 33583        "items": {
 33584         "$ref": "#/definitions/v1beta1.ReplicaSet"
 33585        }
 33586       },
 33587       "metadata": {
 33588        "description": "Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds",
 33589        "$ref": "#/definitions/unversioned.ListMeta"
 33590       }
 33591      }
 33592     },
 33593     "v1beta1.ReplicaSetSpec": {
 33594      "description": "ReplicaSetSpec is the specification of a ReplicaSet.",
 33595      "properties": {
 33596       "minReadySeconds": {
 33597        "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)",
 33598        "type": "integer",
 33599        "format": "int32"
 33600       },
 33601       "replicas": {
 33602        "description": "Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: http://kubernetes.io/docs/user-guide/replication-controller#what-is-a-replication-controller",
 33603        "type": "integer",
 33604        "format": "int32"
 33605       },
 33606       "selector": {
 33607        "description": "Selector is a label query over pods that should match the replica count. If the selector is empty, it is defaulted to the labels present on the pod template. Label keys and values that must match in order to be controlled by this replica set. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors",
 33608        "$ref": "#/definitions/unversioned.LabelSelector"
 33609       },
 33610       "template": {
 33611        "description": "Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: http://kubernetes.io/docs/user-guide/replication-controller#pod-template",
 33612        "$ref": "#/definitions/v1.PodTemplateSpec"
 33613       }
 33614      }
 33615     },
 33616     "v1beta1.ReplicaSetStatus": {
 33617      "description": "ReplicaSetStatus represents the current status of a ReplicaSet.",
 33618      "required": [
 33619       "replicas"
 33620      ],
 33621      "properties": {
 33622       "availableReplicas": {
 33623        "description": "The number of available replicas (ready for at least minReadySeconds) for this replica set.",
 33624        "type": "integer",
 33625        "format": "int32"
 33626       },
 33627       "conditions": {
 33628        "description": "Represents the latest available observations of a replica set's current state.",
 33629        "type": "array",
 33630        "items": {
 33631         "$ref": "#/definitions/v1beta1.ReplicaSetCondition"
 33632        }
 33633       },
 33634       "fullyLabeledReplicas": {
 33635        "description": "The number of pods that have labels matching the labels of the pod template of the replicaset.",
 33636        "type": "integer",
 33637        "format": "int32"
 33638       },
 33639       "observedGeneration": {
 33640        "description": "ObservedGeneration reflects the generation of the most recently observed ReplicaSet.",
 33641        "type": "integer",
 33642        "format": "int64"
 33643       },
 33644       "readyReplicas": {
 33645        "description": "The number of ready replicas for this replica set.",
 33646        "type": "integer",
 33647        "format": "int32"
 33648       },
 33649       "replicas": {
 33650        "description": "Replicas is the most recently oberved number of replicas. More info: http://kubernetes.io/docs/user-guide/replication-controller#what-is-a-replication-controller",
 33651        "type": "integer",
 33652        "format": "int32"
 33653       }
 33654      }
 33655     },
 33656     "v1beta1.ResourceAttributes": {
 33657      "description": "ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface",
 33658      "properties": {
 33659       "group": {
 33660        "description": "Group is the API Group of the Resource.  \"*\" means all.",
 33661        "type": "string"
 33662       },
 33663       "name": {
 33664        "description": "Name is the name of the resource being requested for a \"get\" or deleted for a \"delete\". \"\" (empty) means all.",
 33665        "type": "string"
 33666       },
 33667       "namespace": {
 33668        "description": "Namespace is the namespace of the action being requested.  Currently, there is no distinction between no namespace and all namespaces \"\" (empty) is defaulted for LocalSubjectAccessReviews \"\" (empty) is empty for cluster-scoped resources \"\" (empty) means \"all\" for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview",
 33669        "type": "string"
 33670       },
 33671       "resource": {
 33672        "description": "Resource is one of the existing resource types.  \"*\" means all.",
 33673        "type": "string"
 33674       },
 33675       "subresource": {
 33676        "description": "Subresource is one of the existing resource types.  \"\" means none.",
 33677        "type": "string"
 33678       },
 33679       "verb": {
 33680        "description": "Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy.  \"*\" means all.",
 33681        "type": "string"
 33682       },
 33683       "version": {
 33684        "description": "Version is the API Version of the Resource.  \"*\" means all.",
 33685        "type": "string"
 33686       }
 33687      }
 33688     },
 33689     "v1beta1.RollbackConfig": {
 33690      "properties": {
 33691       "revision": {
 33692        "description": "The revision to rollback to. If set to 0, rollbck to the last revision.",
 33693        "type": "integer",
 33694        "format": "int64"
 33695       }
 33696      }
 33697     },
 33698     "v1beta1.RollingUpdateDeployment": {
 33699      "description": "Spec to control the desired behavior of rolling update.",
 33700      "properties": {
 33701       "maxSurge": {
 33702        "description": "The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. By default, a value of 1 is used. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods.",
 33703        "$ref": "#/definitions/intstr.IntOrString"
 33704       },
 33705       "maxUnavailable": {
 33706        "description": "The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding up. This can not be 0 if MaxSurge is 0. By default, a fixed value of 1 is used. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.",
 33707        "$ref": "#/definitions/intstr.IntOrString"
 33708       }
 33709      }
 33710     },
 33711     "v1beta1.Scale": {
 33712      "description": "represents a scaling request for a resource.",
 33713      "properties": {
 33714       "metadata": {
 33715        "description": "Standard object metadata; More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata.",
 33716        "$ref": "#/definitions/v1.ObjectMeta"
 33717       },
 33718       "spec": {
 33719        "description": "defines the behavior of the scale. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status.",
 33720        "$ref": "#/definitions/v1beta1.ScaleSpec"
 33721       },
 33722       "status": {
 33723        "description": "current status of the scale. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status. Read-only.",
 33724        "$ref": "#/definitions/v1beta1.ScaleStatus"
 33725       }
 33726      }
 33727     },
 33728     "v1beta1.ScaleSpec": {
 33729      "description": "describes the attributes of a scale subresource",
 33730      "properties": {
 33731       "replicas": {
 33732        "description": "desired number of instances for the scaled object.",
 33733        "type": "integer",
 33734        "format": "int32"
 33735       }
 33736      }
 33737     },
 33738     "v1beta1.ScaleStatus": {
 33739      "description": "represents the current status of a scale subresource.",
 33740      "required": [
 33741       "replicas"
 33742      ],
 33743      "properties": {
 33744       "replicas": {
 33745        "description": "actual number of observed instances of the scaled object.",
 33746        "type": "integer",
 33747        "format": "int32"
 33748       },
 33749       "selector": {
 33750        "description": "label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors",
 33751        "type": "object",
 33752        "additionalProperties": {
 33753         "type": "string"
 33754        }
 33755       },
 33756       "targetSelector": {
 33757        "description": "label selector for pods that should match the replicas count. This is a serializated version of both map-based and more expressive set-based selectors. This is done to avoid introspection in the clients. The string will be in the same format as the query-param syntax. If the target type only supports map-based selectors, both this field and map-based selector field are populated. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors",
 33758        "type": "string"
 33759       }
 33760      }
 33761     },
 33762     "v1beta1.SelfSubjectAccessReview": {
 33763      "description": "SelfSubjectAccessReview checks whether or the current user can perform an action.  Not filling in a spec.namespace means \"in all namespaces\".  Self is a special case, because users should always be able to check whether they can perform an action",
 33764      "required": [
 33765       "spec"
 33766      ],
 33767      "properties": {
 33768       "metadata": {
 33769        "$ref": "#/definitions/v1.ObjectMeta"
 33770       },
 33771       "spec": {
 33772        "description": "Spec holds information about the request being evaluated.  user and groups must be empty",
 33773        "$ref": "#/definitions/v1beta1.SelfSubjectAccessReviewSpec"
 33774       },
 33775       "status": {
 33776        "description": "Status is filled in by the server and indicates whether the request is allowed or not",
 33777        "$ref": "#/definitions/v1beta1.SubjectAccessReviewStatus"
 33778       }
 33779      }
 33780     },
 33781     "v1beta1.SelfSubjectAccessReviewSpec": {
 33782      "description": "SelfSubjectAccessReviewSpec is a description of the access request.  Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set",
 33783      "properties": {
 33784       "nonResourceAttributes": {
 33785        "description": "NonResourceAttributes describes information for a non-resource access request",
 33786        "$ref": "#/definitions/v1beta1.NonResourceAttributes"
 33787       },
 33788       "resourceAttributes": {
 33789        "description": "ResourceAuthorizationAttributes describes information for a resource access request",
 33790        "$ref": "#/definitions/v1beta1.ResourceAttributes"
 33791       }
 33792      }
 33793     },
 33794     "v1beta1.StorageClass": {
 33795      "description": "StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned.\n\nStorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name.",
 33796      "required": [
 33797       "provisioner"
 33798      ],
 33799      "properties": {
 33800       "metadata": {
 33801        "description": "Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 33802        "$ref": "#/definitions/v1.ObjectMeta"
 33803       },
 33804       "parameters": {
 33805        "description": "Parameters holds the parameters for the provisioner that should create volumes of this storage class.",
 33806        "type": "object",
 33807        "additionalProperties": {
 33808         "type": "string"
 33809        }
 33810       },
 33811       "provisioner": {
 33812        "description": "Provisioner indicates the type of the provisioner.",
 33813        "type": "string"
 33814       }
 33815      }
 33816     },
 33817     "v1beta1.StorageClassList": {
 33818      "description": "StorageClassList is a collection of storage classes.",
 33819      "required": [
 33820       "items"
 33821      ],
 33822      "properties": {
 33823       "items": {
 33824        "description": "Items is the list of StorageClasses",
 33825        "type": "array",
 33826        "items": {
 33827         "$ref": "#/definitions/v1beta1.StorageClass"
 33828        }
 33829       },
 33830       "metadata": {
 33831        "description": "Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
 33832        "$ref": "#/definitions/unversioned.ListMeta"
 33833       }
 33834      }
 33835     },
 33836     "v1beta1.SubjectAccessReview": {
 33837      "description": "SubjectAccessReview checks whether or not a user or group can perform an action.",
 33838      "required": [
 33839       "spec"
 33840      ],
 33841      "properties": {
 33842       "metadata": {
 33843        "$ref": "#/definitions/v1.ObjectMeta"
 33844       },
 33845       "spec": {
 33846        "description": "Spec holds information about the request being evaluated",
 33847        "$ref": "#/definitions/v1beta1.SubjectAccessReviewSpec"
 33848       },
 33849       "status": {
 33850        "description": "Status is filled in by the server and indicates whether the request is allowed or not",
 33851        "$ref": "#/definitions/v1beta1.SubjectAccessReviewStatus"
 33852       }
 33853      }
 33854     },
 33855     "v1beta1.SubjectAccessReviewSpec": {
 33856      "description": "SubjectAccessReviewSpec is a description of the access request.  Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set",
 33857      "properties": {
 33858       "extra": {
 33859        "description": "Extra corresponds to the user.Info.GetExtra() method from the authenticator.  Since that is input to the authorizer it needs a reflection here.",
 33860        "type": "object",
 33861        "additionalProperties": {
 33862         "type": "array",
 33863         "items": {
 33864          "type": "string"
 33865         }
 33866        }
 33867       },
 33868       "group": {
 33869        "description": "Groups is the groups you're testing for.",
 33870        "type": "array",
 33871        "items": {
 33872         "type": "string"
 33873        }
 33874       },
 33875       "nonResourceAttributes": {
 33876        "description": "NonResourceAttributes describes information for a non-resource access request",
 33877        "$ref": "#/definitions/v1beta1.NonResourceAttributes"
 33878       },
 33879       "resourceAttributes": {
 33880        "description": "ResourceAuthorizationAttributes describes information for a resource access request",
 33881        "$ref": "#/definitions/v1beta1.ResourceAttributes"
 33882       },
 33883       "user": {
 33884        "description": "User is the user you're testing for. If you specify \"User\" but not \"Group\", then is it interpreted as \"What if User were not a member of any groups",
 33885        "type": "string"
 33886       }
 33887      }
 33888     },
 33889     "v1beta1.SubjectAccessReviewStatus": {
 33890      "description": "SubjectAccessReviewStatus",
 33891      "required": [
 33892       "allowed"
 33893      ],
 33894      "properties": {
 33895       "allowed": {
 33896        "description": "Allowed is required.  True if the action would be allowed, false otherwise.",
 33897        "type": "boolean"
 33898       },
 33899       "evaluationError": {
 33900        "description": "EvaluationError is an indication that some error occurred during the authorization check. It is entirely possible to get an error and be able to continue determine authorization status in spite of it. For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request.",
 33901        "type": "string"
 33902       },
 33903       "reason": {
 33904        "description": "Reason is optional.  It indicates why a request was allowed or denied.",
 33905        "type": "string"
 33906       }
 33907      }
 33908     },
 33909     "v1beta1.SubresourceReference": {
 33910      "description": "SubresourceReference contains enough information to let you inspect or modify the referred subresource.",
 33911      "properties": {
 33912       "apiVersion": {
 33913        "description": "API version of the referent",
 33914        "type": "string"
 33915       },
 33916       "kind": {
 33917        "description": "Kind of the referent; More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds",
 33918        "type": "string"
 33919       },
 33920       "name": {
 33921        "description": "Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names",
 33922        "type": "string"
 33923       },
 33924       "subresource": {
 33925        "description": "Subresource name of the referent",
 33926        "type": "string"
 33927       }
 33928      }
 33929     },
 33930     "v1beta1.ThirdPartyResource": {
 33931      "description": "A ThirdPartyResource is a generic representation of a resource, it is used by add-ons and plugins to add new resource types to the API.  It consists of one or more Versions of the api.",
 33932      "properties": {
 33933       "description": {
 33934        "description": "Description is the description of this object.",
 33935        "type": "string"
 33936       },
 33937       "metadata": {
 33938        "description": "Standard object metadata",
 33939        "$ref": "#/definitions/v1.ObjectMeta"
 33940       },
 33941       "versions": {
 33942        "description": "Versions are versions for this third party object",
 33943        "type": "array",
 33944        "items": {
 33945         "$ref": "#/definitions/v1beta1.APIVersion"
 33946        }
 33947       }
 33948      }
 33949     },
 33950     "v1beta1.ThirdPartyResourceList": {
 33951      "description": "ThirdPartyResourceList is a list of ThirdPartyResources.",
 33952      "required": [
 33953       "items"
 33954      ],
 33955      "properties": {
 33956       "items": {
 33957        "description": "Items is the list of ThirdPartyResources.",
 33958        "type": "array",
 33959        "items": {
 33960         "$ref": "#/definitions/v1beta1.ThirdPartyResource"
 33961        }
 33962       },
 33963       "metadata": {
 33964        "description": "Standard list metadata.",
 33965        "$ref": "#/definitions/unversioned.ListMeta"
 33966       }
 33967      }
 33968     },
 33969     "v1beta1.TokenReview": {
 33970      "description": "TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver.",
 33971      "required": [
 33972       "spec"
 33973      ],
 33974      "properties": {
 33975       "metadata": {
 33976        "$ref": "#/definitions/v1.ObjectMeta"
 33977       },
 33978       "spec": {
 33979        "description": "Spec holds information about the request being evaluated",
 33980        "$ref": "#/definitions/v1beta1.TokenReviewSpec"
 33981       },
 33982       "status": {
 33983        "description": "Status is filled in by the server and indicates whether the request can be authenticated.",
 33984        "$ref": "#/definitions/v1beta1.TokenReviewStatus"
 33985       }
 33986      }
 33987     },
 33988     "v1beta1.TokenReviewSpec": {
 33989      "description": "TokenReviewSpec is a description of the token authentication request.",
 33990      "properties": {
 33991       "token": {
 33992        "description": "Token is the opaque bearer token.",
 33993        "type": "string"
 33994       }
 33995      }
 33996     },
 33997     "v1beta1.TokenReviewStatus": {
 33998      "description": "TokenReviewStatus is the result of the token authentication request.",
 33999      "properties": {
 34000       "authenticated": {
 34001        "description": "Authenticated indicates that the token was associated with a known user.",
 34002        "type": "boolean"
 34003       },
 34004       "error": {
 34005        "description": "Error indicates that the token couldn't be checked",
 34006        "type": "string"
 34007       },
 34008       "user": {
 34009        "description": "User is the UserInfo associated with the provided token.",
 34010        "$ref": "#/definitions/v1beta1.UserInfo"
 34011       }
 34012      }
 34013     },
 34014     "v1beta1.UserInfo": {
 34015      "description": "UserInfo holds the information about the user needed to implement the user.Info interface.",
 34016      "properties": {
 34017       "extra": {
 34018        "description": "Any additional information provided by the authenticator.",
 34019        "type": "object",
 34020        "additionalProperties": {
 34021         "type": "array",
 34022         "items": {
 34023          "type": "string"
 34024         }
 34025        }
 34026       },
 34027       "groups": {
 34028        "description": "The names of groups this user is a part of.",
 34029        "type": "array",
 34030        "items": {
 34031         "type": "string"
 34032        }
 34033       },
 34034       "uid": {
 34035        "description": "A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.",
 34036        "type": "string"
 34037       },
 34038       "username": {
 34039        "description": "The name that uniquely identifies this user among all active users.",
 34040        "type": "string"
 34041       }
 34042      }
 34043     },
 34044     "version.Info": {
 34045      "description": "Info contains versioning information. how we'll want to distribute that information.",
 34046      "required": [
 34047       "major",
 34048       "minor",
 34049       "gitVersion",
 34050       "gitCommit",
 34051       "gitTreeState",
 34052       "buildDate",
 34053       "goVersion",
 34054       "compiler",
 34055       "platform"
 34056      ],
 34057      "properties": {
 34058       "buildDate": {
 34059        "type": "string"
 34060       },
 34061       "compiler": {
 34062        "type": "string"
 34063       },
 34064       "gitCommit": {
 34065        "type": "string"
 34066       },
 34067       "gitTreeState": {
 34068        "type": "string"
 34069       },
 34070       "gitVersion": {
 34071        "type": "string"
 34072       },
 34073       "goVersion": {
 34074        "type": "string"
 34075       },
 34076       "major": {
 34077        "type": "string"
 34078       },
 34079       "minor": {
 34080        "type": "string"
 34081       },
 34082       "platform": {
 34083        "type": "string"
 34084       }
 34085      }
 34086     },
 34087     "versioned.Event": {
 34088      "description": "Event represents a single event to a watched resource.",
 34089      "required": [
 34090       "type",
 34091       "object"
 34092      ],
 34093      "properties": {
 34094       "object": {
 34095        "description": "Object is:\n * If Type is Added or Modified: the new state of the object.\n * If Type is Deleted: the state of the object immediately before deletion.\n * If Type is Error: *api.Status is recommended; other types may make sense\n   depending on context.",
 34096        "$ref": "#/definitions/runtime.RawExtension"
 34097       },
 34098       "type": {
 34099        "type": "string"
 34100       }
 34101      }
 34102     }
 34103    },
 34104    "securityDefinitions": {
 34105     "BearerToken": {
 34106      "description": "Bearer Token authentication",
 34107      "type": "apiKey",
 34108      "name": "authorization",
 34109      "in": "header"
 34110     }
 34111    },
 34112    "security": [
 34113     {
 34114      "BearerToken": []
 34115     }
 34116    ]
 34117   }