...

Text file src/k8s.io/kubernetes/api/openapi-spec/v3/apis__rbac.authorization.k8s.io__v1_openapi.json

Documentation: k8s.io/kubernetes/api/openapi-spec/v3

     1{
     2  "components": {
     3    "schemas": {
     4      "io.k8s.api.rbac.v1.AggregationRule": {
     5        "description": "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole",
     6        "properties": {
     7          "clusterRoleSelectors": {
     8            "description": "ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added",
     9            "items": {
    10              "allOf": [
    11                {
    12                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector"
    13                }
    14              ],
    15              "default": {}
    16            },
    17            "type": "array",
    18            "x-kubernetes-list-type": "atomic"
    19          }
    20        },
    21        "type": "object"
    22      },
    23      "io.k8s.api.rbac.v1.ClusterRole": {
    24        "description": "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.",
    25        "properties": {
    26          "aggregationRule": {
    27            "allOf": [
    28              {
    29                "$ref": "#/components/schemas/io.k8s.api.rbac.v1.AggregationRule"
    30              }
    31            ],
    32            "description": "AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller."
    33          },
    34          "apiVersion": {
    35            "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
    36            "type": "string"
    37          },
    38          "kind": {
    39            "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
    40            "type": "string"
    41          },
    42          "metadata": {
    43            "allOf": [
    44              {
    45                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
    46              }
    47            ],
    48            "default": {},
    49            "description": "Standard object's metadata."
    50          },
    51          "rules": {
    52            "description": "Rules holds all the PolicyRules for this ClusterRole",
    53            "items": {
    54              "allOf": [
    55                {
    56                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.PolicyRule"
    57                }
    58              ],
    59              "default": {}
    60            },
    61            "type": "array",
    62            "x-kubernetes-list-type": "atomic"
    63          }
    64        },
    65        "type": "object",
    66        "x-kubernetes-group-version-kind": [
    67          {
    68            "group": "rbac.authorization.k8s.io",
    69            "kind": "ClusterRole",
    70            "version": "v1"
    71          }
    72        ]
    73      },
    74      "io.k8s.api.rbac.v1.ClusterRoleBinding": {
    75        "description": "ClusterRoleBinding references a ClusterRole, but not contain it.  It can reference a ClusterRole in the global namespace, and adds who information via Subject.",
    76        "properties": {
    77          "apiVersion": {
    78            "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
    79            "type": "string"
    80          },
    81          "kind": {
    82            "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
    83            "type": "string"
    84          },
    85          "metadata": {
    86            "allOf": [
    87              {
    88                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
    89              }
    90            ],
    91            "default": {},
    92            "description": "Standard object's metadata."
    93          },
    94          "roleRef": {
    95            "allOf": [
    96              {
    97                "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleRef"
    98              }
    99            ],
   100            "default": {},
   101            "description": "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error. This field is immutable."
   102          },
   103          "subjects": {
   104            "description": "Subjects holds references to the objects the role applies to.",
   105            "items": {
   106              "allOf": [
   107                {
   108                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Subject"
   109                }
   110              ],
   111              "default": {}
   112            },
   113            "type": "array",
   114            "x-kubernetes-list-type": "atomic"
   115          }
   116        },
   117        "required": [
   118          "roleRef"
   119        ],
   120        "type": "object",
   121        "x-kubernetes-group-version-kind": [
   122          {
   123            "group": "rbac.authorization.k8s.io",
   124            "kind": "ClusterRoleBinding",
   125            "version": "v1"
   126          }
   127        ]
   128      },
   129      "io.k8s.api.rbac.v1.ClusterRoleBindingList": {
   130        "description": "ClusterRoleBindingList is a collection of ClusterRoleBindings",
   131        "properties": {
   132          "apiVersion": {
   133            "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
   134            "type": "string"
   135          },
   136          "items": {
   137            "description": "Items is a list of ClusterRoleBindings",
   138            "items": {
   139              "allOf": [
   140                {
   141                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding"
   142                }
   143              ],
   144              "default": {}
   145            },
   146            "type": "array"
   147          },
   148          "kind": {
   149            "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
   150            "type": "string"
   151          },
   152          "metadata": {
   153            "allOf": [
   154              {
   155                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
   156              }
   157            ],
   158            "default": {},
   159            "description": "Standard object's metadata."
   160          }
   161        },
   162        "required": [
   163          "items"
   164        ],
   165        "type": "object",
   166        "x-kubernetes-group-version-kind": [
   167          {
   168            "group": "rbac.authorization.k8s.io",
   169            "kind": "ClusterRoleBindingList",
   170            "version": "v1"
   171          }
   172        ]
   173      },
   174      "io.k8s.api.rbac.v1.ClusterRoleList": {
   175        "description": "ClusterRoleList is a collection of ClusterRoles",
   176        "properties": {
   177          "apiVersion": {
   178            "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
   179            "type": "string"
   180          },
   181          "items": {
   182            "description": "Items is a list of ClusterRoles",
   183            "items": {
   184              "allOf": [
   185                {
   186                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole"
   187                }
   188              ],
   189              "default": {}
   190            },
   191            "type": "array"
   192          },
   193          "kind": {
   194            "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
   195            "type": "string"
   196          },
   197          "metadata": {
   198            "allOf": [
   199              {
   200                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
   201              }
   202            ],
   203            "default": {},
   204            "description": "Standard object's metadata."
   205          }
   206        },
   207        "required": [
   208          "items"
   209        ],
   210        "type": "object",
   211        "x-kubernetes-group-version-kind": [
   212          {
   213            "group": "rbac.authorization.k8s.io",
   214            "kind": "ClusterRoleList",
   215            "version": "v1"
   216          }
   217        ]
   218      },
   219      "io.k8s.api.rbac.v1.PolicyRule": {
   220        "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.",
   221        "properties": {
   222          "apiGroups": {
   223            "description": "APIGroups is the name of the APIGroup that contains the resources.  If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. \"\" represents the core API group and \"*\" represents all API groups.",
   224            "items": {
   225              "default": "",
   226              "type": "string"
   227            },
   228            "type": "array",
   229            "x-kubernetes-list-type": "atomic"
   230          },
   231          "nonResourceURLs": {
   232            "description": "NonResourceURLs is a set of partial urls that a user should have access to.  *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as \"pods\" or \"secrets\") or non-resource URL paths (such as \"/api\"),  but not both.",
   233            "items": {
   234              "default": "",
   235              "type": "string"
   236            },
   237            "type": "array",
   238            "x-kubernetes-list-type": "atomic"
   239          },
   240          "resourceNames": {
   241            "description": "ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.",
   242            "items": {
   243              "default": "",
   244              "type": "string"
   245            },
   246            "type": "array",
   247            "x-kubernetes-list-type": "atomic"
   248          },
   249          "resources": {
   250            "description": "Resources is a list of resources this rule applies to. '*' represents all resources.",
   251            "items": {
   252              "default": "",
   253              "type": "string"
   254            },
   255            "type": "array",
   256            "x-kubernetes-list-type": "atomic"
   257          },
   258          "verbs": {
   259            "description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.",
   260            "items": {
   261              "default": "",
   262              "type": "string"
   263            },
   264            "type": "array",
   265            "x-kubernetes-list-type": "atomic"
   266          }
   267        },
   268        "required": [
   269          "verbs"
   270        ],
   271        "type": "object"
   272      },
   273      "io.k8s.api.rbac.v1.Role": {
   274        "description": "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.",
   275        "properties": {
   276          "apiVersion": {
   277            "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
   278            "type": "string"
   279          },
   280          "kind": {
   281            "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
   282            "type": "string"
   283          },
   284          "metadata": {
   285            "allOf": [
   286              {
   287                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
   288              }
   289            ],
   290            "default": {},
   291            "description": "Standard object's metadata."
   292          },
   293          "rules": {
   294            "description": "Rules holds all the PolicyRules for this Role",
   295            "items": {
   296              "allOf": [
   297                {
   298                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.PolicyRule"
   299                }
   300              ],
   301              "default": {}
   302            },
   303            "type": "array",
   304            "x-kubernetes-list-type": "atomic"
   305          }
   306        },
   307        "type": "object",
   308        "x-kubernetes-group-version-kind": [
   309          {
   310            "group": "rbac.authorization.k8s.io",
   311            "kind": "Role",
   312            "version": "v1"
   313          }
   314        ]
   315      },
   316      "io.k8s.api.rbac.v1.RoleBinding": {
   317        "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.",
   318        "properties": {
   319          "apiVersion": {
   320            "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
   321            "type": "string"
   322          },
   323          "kind": {
   324            "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
   325            "type": "string"
   326          },
   327          "metadata": {
   328            "allOf": [
   329              {
   330                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
   331              }
   332            ],
   333            "default": {},
   334            "description": "Standard object's metadata."
   335          },
   336          "roleRef": {
   337            "allOf": [
   338              {
   339                "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleRef"
   340              }
   341            ],
   342            "default": {},
   343            "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. This field is immutable."
   344          },
   345          "subjects": {
   346            "description": "Subjects holds references to the objects the role applies to.",
   347            "items": {
   348              "allOf": [
   349                {
   350                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Subject"
   351                }
   352              ],
   353              "default": {}
   354            },
   355            "type": "array",
   356            "x-kubernetes-list-type": "atomic"
   357          }
   358        },
   359        "required": [
   360          "roleRef"
   361        ],
   362        "type": "object",
   363        "x-kubernetes-group-version-kind": [
   364          {
   365            "group": "rbac.authorization.k8s.io",
   366            "kind": "RoleBinding",
   367            "version": "v1"
   368          }
   369        ]
   370      },
   371      "io.k8s.api.rbac.v1.RoleBindingList": {
   372        "description": "RoleBindingList is a collection of RoleBindings",
   373        "properties": {
   374          "apiVersion": {
   375            "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
   376            "type": "string"
   377          },
   378          "items": {
   379            "description": "Items is a list of RoleBindings",
   380            "items": {
   381              "allOf": [
   382                {
   383                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding"
   384                }
   385              ],
   386              "default": {}
   387            },
   388            "type": "array"
   389          },
   390          "kind": {
   391            "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
   392            "type": "string"
   393          },
   394          "metadata": {
   395            "allOf": [
   396              {
   397                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
   398              }
   399            ],
   400            "default": {},
   401            "description": "Standard object's metadata."
   402          }
   403        },
   404        "required": [
   405          "items"
   406        ],
   407        "type": "object",
   408        "x-kubernetes-group-version-kind": [
   409          {
   410            "group": "rbac.authorization.k8s.io",
   411            "kind": "RoleBindingList",
   412            "version": "v1"
   413          }
   414        ]
   415      },
   416      "io.k8s.api.rbac.v1.RoleList": {
   417        "description": "RoleList is a collection of Roles",
   418        "properties": {
   419          "apiVersion": {
   420            "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
   421            "type": "string"
   422          },
   423          "items": {
   424            "description": "Items is a list of Roles",
   425            "items": {
   426              "allOf": [
   427                {
   428                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role"
   429                }
   430              ],
   431              "default": {}
   432            },
   433            "type": "array"
   434          },
   435          "kind": {
   436            "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
   437            "type": "string"
   438          },
   439          "metadata": {
   440            "allOf": [
   441              {
   442                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
   443              }
   444            ],
   445            "default": {},
   446            "description": "Standard object's metadata."
   447          }
   448        },
   449        "required": [
   450          "items"
   451        ],
   452        "type": "object",
   453        "x-kubernetes-group-version-kind": [
   454          {
   455            "group": "rbac.authorization.k8s.io",
   456            "kind": "RoleList",
   457            "version": "v1"
   458          }
   459        ]
   460      },
   461      "io.k8s.api.rbac.v1.RoleRef": {
   462        "description": "RoleRef contains information that points to the role being used",
   463        "properties": {
   464          "apiGroup": {
   465            "default": "",
   466            "description": "APIGroup is the group for the resource being referenced",
   467            "type": "string"
   468          },
   469          "kind": {
   470            "default": "",
   471            "description": "Kind is the type of resource being referenced",
   472            "type": "string"
   473          },
   474          "name": {
   475            "default": "",
   476            "description": "Name is the name of resource being referenced",
   477            "type": "string"
   478          }
   479        },
   480        "required": [
   481          "apiGroup",
   482          "kind",
   483          "name"
   484        ],
   485        "type": "object",
   486        "x-kubernetes-map-type": "atomic"
   487      },
   488      "io.k8s.api.rbac.v1.Subject": {
   489        "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.",
   490        "properties": {
   491          "apiGroup": {
   492            "description": "APIGroup holds the API group of the referenced subject. Defaults to \"\" for ServiceAccount subjects. Defaults to \"rbac.authorization.k8s.io\" for User and Group subjects.",
   493            "type": "string"
   494          },
   495          "kind": {
   496            "default": "",
   497            "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.",
   498            "type": "string"
   499          },
   500          "name": {
   501            "default": "",
   502            "description": "Name of the object being referenced.",
   503            "type": "string"
   504          },
   505          "namespace": {
   506            "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.",
   507            "type": "string"
   508          }
   509        },
   510        "required": [
   511          "kind",
   512          "name"
   513        ],
   514        "type": "object",
   515        "x-kubernetes-map-type": "atomic"
   516      },
   517      "io.k8s.apimachinery.pkg.apis.meta.v1.APIResource": {
   518        "description": "APIResource specifies the name of a resource and whether it is namespaced.",
   519        "properties": {
   520          "categories": {
   521            "description": "categories is a list of the grouped resources this resource belongs to (e.g. 'all')",
   522            "items": {
   523              "default": "",
   524              "type": "string"
   525            },
   526            "type": "array",
   527            "x-kubernetes-list-type": "atomic"
   528          },
   529          "group": {
   530            "description": "group is the preferred group of the resource.  Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale\".",
   531            "type": "string"
   532          },
   533          "kind": {
   534            "default": "",
   535            "description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')",
   536            "type": "string"
   537          },
   538          "name": {
   539            "default": "",
   540            "description": "name is the plural name of the resource.",
   541            "type": "string"
   542          },
   543          "namespaced": {
   544            "default": false,
   545            "description": "namespaced indicates if a resource is namespaced or not.",
   546            "type": "boolean"
   547          },
   548          "shortNames": {
   549            "description": "shortNames is a list of suggested short names of the resource.",
   550            "items": {
   551              "default": "",
   552              "type": "string"
   553            },
   554            "type": "array",
   555            "x-kubernetes-list-type": "atomic"
   556          },
   557          "singularName": {
   558            "default": "",
   559            "description": "singularName is the singular name of the resource.  This allows clients to handle plural and singular opaquely. The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface.",
   560            "type": "string"
   561          },
   562          "storageVersionHash": {
   563            "description": "The hash value of the storage version, the version this resource is converted to when written to the data store. Value must be treated as opaque by clients. Only equality comparison on the value is valid. This is an alpha feature and may change or be removed in the future. The field is populated by the apiserver only if the StorageVersionHash feature gate is enabled. This field will remain optional even if it graduates.",
   564            "type": "string"
   565          },
   566          "verbs": {
   567            "description": "verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)",
   568            "items": {
   569              "default": "",
   570              "type": "string"
   571            },
   572            "type": "array"
   573          },
   574          "version": {
   575            "description": "version is the preferred version of the resource.  Empty implies the version of the containing resource list For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource's group)\".",
   576            "type": "string"
   577          }
   578        },
   579        "required": [
   580          "name",
   581          "singularName",
   582          "namespaced",
   583          "kind",
   584          "verbs"
   585        ],
   586        "type": "object"
   587      },
   588      "io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList": {
   589        "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.",
   590        "properties": {
   591          "apiVersion": {
   592            "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
   593            "type": "string"
   594          },
   595          "groupVersion": {
   596            "default": "",
   597            "description": "groupVersion is the group and version this APIResourceList is for.",
   598            "type": "string"
   599          },
   600          "kind": {
   601            "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
   602            "type": "string"
   603          },
   604          "resources": {
   605            "description": "resources contains the name of the resources and if they are namespaced.",
   606            "items": {
   607              "allOf": [
   608                {
   609                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResource"
   610                }
   611              ],
   612              "default": {}
   613            },
   614            "type": "array",
   615            "x-kubernetes-list-type": "atomic"
   616          }
   617        },
   618        "required": [
   619          "groupVersion",
   620          "resources"
   621        ],
   622        "type": "object",
   623        "x-kubernetes-group-version-kind": [
   624          {
   625            "group": "",
   626            "kind": "APIResourceList",
   627            "version": "v1"
   628          }
   629        ]
   630      },
   631      "io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions": {
   632        "description": "DeleteOptions may be provided when deleting an API object.",
   633        "properties": {
   634          "apiVersion": {
   635            "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
   636            "type": "string"
   637          },
   638          "dryRun": {
   639            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
   640            "items": {
   641              "default": "",
   642              "type": "string"
   643            },
   644            "type": "array",
   645            "x-kubernetes-list-type": "atomic"
   646          },
   647          "gracePeriodSeconds": {
   648            "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.",
   649            "format": "int64",
   650            "type": "integer"
   651          },
   652          "kind": {
   653            "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
   654            "type": "string"
   655          },
   656          "orphanDependents": {
   657            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
   658            "type": "boolean"
   659          },
   660          "preconditions": {
   661            "allOf": [
   662              {
   663                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions"
   664              }
   665            ],
   666            "description": "Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned."
   667          },
   668          "propagationPolicy": {
   669            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
   670            "type": "string"
   671          }
   672        },
   673        "type": "object",
   674        "x-kubernetes-group-version-kind": [
   675          {
   676            "group": "",
   677            "kind": "DeleteOptions",
   678            "version": "v1"
   679          },
   680          {
   681            "group": "admission.k8s.io",
   682            "kind": "DeleteOptions",
   683            "version": "v1"
   684          },
   685          {
   686            "group": "admission.k8s.io",
   687            "kind": "DeleteOptions",
   688            "version": "v1beta1"
   689          },
   690          {
   691            "group": "admissionregistration.k8s.io",
   692            "kind": "DeleteOptions",
   693            "version": "v1"
   694          },
   695          {
   696            "group": "admissionregistration.k8s.io",
   697            "kind": "DeleteOptions",
   698            "version": "v1alpha1"
   699          },
   700          {
   701            "group": "admissionregistration.k8s.io",
   702            "kind": "DeleteOptions",
   703            "version": "v1beta1"
   704          },
   705          {
   706            "group": "apiextensions.k8s.io",
   707            "kind": "DeleteOptions",
   708            "version": "v1"
   709          },
   710          {
   711            "group": "apiextensions.k8s.io",
   712            "kind": "DeleteOptions",
   713            "version": "v1beta1"
   714          },
   715          {
   716            "group": "apiregistration.k8s.io",
   717            "kind": "DeleteOptions",
   718            "version": "v1"
   719          },
   720          {
   721            "group": "apiregistration.k8s.io",
   722            "kind": "DeleteOptions",
   723            "version": "v1beta1"
   724          },
   725          {
   726            "group": "apps",
   727            "kind": "DeleteOptions",
   728            "version": "v1"
   729          },
   730          {
   731            "group": "apps",
   732            "kind": "DeleteOptions",
   733            "version": "v1beta1"
   734          },
   735          {
   736            "group": "apps",
   737            "kind": "DeleteOptions",
   738            "version": "v1beta2"
   739          },
   740          {
   741            "group": "authentication.k8s.io",
   742            "kind": "DeleteOptions",
   743            "version": "v1"
   744          },
   745          {
   746            "group": "authentication.k8s.io",
   747            "kind": "DeleteOptions",
   748            "version": "v1alpha1"
   749          },
   750          {
   751            "group": "authentication.k8s.io",
   752            "kind": "DeleteOptions",
   753            "version": "v1beta1"
   754          },
   755          {
   756            "group": "authorization.k8s.io",
   757            "kind": "DeleteOptions",
   758            "version": "v1"
   759          },
   760          {
   761            "group": "authorization.k8s.io",
   762            "kind": "DeleteOptions",
   763            "version": "v1beta1"
   764          },
   765          {
   766            "group": "autoscaling",
   767            "kind": "DeleteOptions",
   768            "version": "v1"
   769          },
   770          {
   771            "group": "autoscaling",
   772            "kind": "DeleteOptions",
   773            "version": "v2"
   774          },
   775          {
   776            "group": "autoscaling",
   777            "kind": "DeleteOptions",
   778            "version": "v2beta1"
   779          },
   780          {
   781            "group": "autoscaling",
   782            "kind": "DeleteOptions",
   783            "version": "v2beta2"
   784          },
   785          {
   786            "group": "batch",
   787            "kind": "DeleteOptions",
   788            "version": "v1"
   789          },
   790          {
   791            "group": "batch",
   792            "kind": "DeleteOptions",
   793            "version": "v1beta1"
   794          },
   795          {
   796            "group": "certificates.k8s.io",
   797            "kind": "DeleteOptions",
   798            "version": "v1"
   799          },
   800          {
   801            "group": "certificates.k8s.io",
   802            "kind": "DeleteOptions",
   803            "version": "v1alpha1"
   804          },
   805          {
   806            "group": "certificates.k8s.io",
   807            "kind": "DeleteOptions",
   808            "version": "v1beta1"
   809          },
   810          {
   811            "group": "coordination.k8s.io",
   812            "kind": "DeleteOptions",
   813            "version": "v1"
   814          },
   815          {
   816            "group": "coordination.k8s.io",
   817            "kind": "DeleteOptions",
   818            "version": "v1beta1"
   819          },
   820          {
   821            "group": "discovery.k8s.io",
   822            "kind": "DeleteOptions",
   823            "version": "v1"
   824          },
   825          {
   826            "group": "discovery.k8s.io",
   827            "kind": "DeleteOptions",
   828            "version": "v1beta1"
   829          },
   830          {
   831            "group": "events.k8s.io",
   832            "kind": "DeleteOptions",
   833            "version": "v1"
   834          },
   835          {
   836            "group": "events.k8s.io",
   837            "kind": "DeleteOptions",
   838            "version": "v1beta1"
   839          },
   840          {
   841            "group": "extensions",
   842            "kind": "DeleteOptions",
   843            "version": "v1beta1"
   844          },
   845          {
   846            "group": "flowcontrol.apiserver.k8s.io",
   847            "kind": "DeleteOptions",
   848            "version": "v1"
   849          },
   850          {
   851            "group": "flowcontrol.apiserver.k8s.io",
   852            "kind": "DeleteOptions",
   853            "version": "v1beta1"
   854          },
   855          {
   856            "group": "flowcontrol.apiserver.k8s.io",
   857            "kind": "DeleteOptions",
   858            "version": "v1beta2"
   859          },
   860          {
   861            "group": "flowcontrol.apiserver.k8s.io",
   862            "kind": "DeleteOptions",
   863            "version": "v1beta3"
   864          },
   865          {
   866            "group": "imagepolicy.k8s.io",
   867            "kind": "DeleteOptions",
   868            "version": "v1alpha1"
   869          },
   870          {
   871            "group": "internal.apiserver.k8s.io",
   872            "kind": "DeleteOptions",
   873            "version": "v1alpha1"
   874          },
   875          {
   876            "group": "networking.k8s.io",
   877            "kind": "DeleteOptions",
   878            "version": "v1"
   879          },
   880          {
   881            "group": "networking.k8s.io",
   882            "kind": "DeleteOptions",
   883            "version": "v1alpha1"
   884          },
   885          {
   886            "group": "networking.k8s.io",
   887            "kind": "DeleteOptions",
   888            "version": "v1beta1"
   889          },
   890          {
   891            "group": "node.k8s.io",
   892            "kind": "DeleteOptions",
   893            "version": "v1"
   894          },
   895          {
   896            "group": "node.k8s.io",
   897            "kind": "DeleteOptions",
   898            "version": "v1alpha1"
   899          },
   900          {
   901            "group": "node.k8s.io",
   902            "kind": "DeleteOptions",
   903            "version": "v1beta1"
   904          },
   905          {
   906            "group": "policy",
   907            "kind": "DeleteOptions",
   908            "version": "v1"
   909          },
   910          {
   911            "group": "policy",
   912            "kind": "DeleteOptions",
   913            "version": "v1beta1"
   914          },
   915          {
   916            "group": "rbac.authorization.k8s.io",
   917            "kind": "DeleteOptions",
   918            "version": "v1"
   919          },
   920          {
   921            "group": "rbac.authorization.k8s.io",
   922            "kind": "DeleteOptions",
   923            "version": "v1alpha1"
   924          },
   925          {
   926            "group": "rbac.authorization.k8s.io",
   927            "kind": "DeleteOptions",
   928            "version": "v1beta1"
   929          },
   930          {
   931            "group": "resource.k8s.io",
   932            "kind": "DeleteOptions",
   933            "version": "v1alpha2"
   934          },
   935          {
   936            "group": "scheduling.k8s.io",
   937            "kind": "DeleteOptions",
   938            "version": "v1"
   939          },
   940          {
   941            "group": "scheduling.k8s.io",
   942            "kind": "DeleteOptions",
   943            "version": "v1alpha1"
   944          },
   945          {
   946            "group": "scheduling.k8s.io",
   947            "kind": "DeleteOptions",
   948            "version": "v1beta1"
   949          },
   950          {
   951            "group": "storage.k8s.io",
   952            "kind": "DeleteOptions",
   953            "version": "v1"
   954          },
   955          {
   956            "group": "storage.k8s.io",
   957            "kind": "DeleteOptions",
   958            "version": "v1alpha1"
   959          },
   960          {
   961            "group": "storage.k8s.io",
   962            "kind": "DeleteOptions",
   963            "version": "v1beta1"
   964          },
   965          {
   966            "group": "storagemigration.k8s.io",
   967            "kind": "DeleteOptions",
   968            "version": "v1alpha1"
   969          }
   970        ]
   971      },
   972      "io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1": {
   973        "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of  a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
   974        "type": "object"
   975      },
   976      "io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector": {
   977        "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.",
   978        "properties": {
   979          "matchExpressions": {
   980            "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
   981            "items": {
   982              "allOf": [
   983                {
   984                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement"
   985                }
   986              ],
   987              "default": {}
   988            },
   989            "type": "array",
   990            "x-kubernetes-list-type": "atomic"
   991          },
   992          "matchLabels": {
   993            "additionalProperties": {
   994              "default": "",
   995              "type": "string"
   996            },
   997            "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.",
   998            "type": "object"
   999          }
  1000        },
  1001        "type": "object",
  1002        "x-kubernetes-map-type": "atomic"
  1003      },
  1004      "io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement": {
  1005        "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
  1006        "properties": {
  1007          "key": {
  1008            "default": "",
  1009            "description": "key is the label key that the selector applies to.",
  1010            "type": "string"
  1011          },
  1012          "operator": {
  1013            "default": "",
  1014            "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.",
  1015            "type": "string"
  1016          },
  1017          "values": {
  1018            "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.",
  1019            "items": {
  1020              "default": "",
  1021              "type": "string"
  1022            },
  1023            "type": "array",
  1024            "x-kubernetes-list-type": "atomic"
  1025          }
  1026        },
  1027        "required": [
  1028          "key",
  1029          "operator"
  1030        ],
  1031        "type": "object"
  1032      },
  1033      "io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta": {
  1034        "description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.",
  1035        "properties": {
  1036          "continue": {
  1037            "description": "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.",
  1038            "type": "string"
  1039          },
  1040          "remainingItemCount": {
  1041            "description": "remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.",
  1042            "format": "int64",
  1043            "type": "integer"
  1044          },
  1045          "resourceVersion": {
  1046            "description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
  1047            "type": "string"
  1048          },
  1049          "selfLink": {
  1050            "description": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.",
  1051            "type": "string"
  1052          }
  1053        },
  1054        "type": "object"
  1055      },
  1056      "io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry": {
  1057        "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
  1058        "properties": {
  1059          "apiVersion": {
  1060            "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
  1061            "type": "string"
  1062          },
  1063          "fieldsType": {
  1064            "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
  1065            "type": "string"
  1066          },
  1067          "fieldsV1": {
  1068            "allOf": [
  1069              {
  1070                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1"
  1071              }
  1072            ],
  1073            "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type."
  1074          },
  1075          "manager": {
  1076            "description": "Manager is an identifier of the workflow managing these fields.",
  1077            "type": "string"
  1078          },
  1079          "operation": {
  1080            "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
  1081            "type": "string"
  1082          },
  1083          "subresource": {
  1084            "description": "Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.",
  1085            "type": "string"
  1086          },
  1087          "time": {
  1088            "allOf": [
  1089              {
  1090                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
  1091              }
  1092            ],
  1093            "description": "Time is the timestamp of when the ManagedFields entry was added. The timestamp will also be updated if a field is added, the manager changes any of the owned fields value or removes a field. The timestamp does not update when a field is removed from the entry because another manager took it over."
  1094          }
  1095        },
  1096        "type": "object"
  1097      },
  1098      "io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta": {
  1099        "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
  1100        "properties": {
  1101          "annotations": {
  1102            "additionalProperties": {
  1103              "default": "",
  1104              "type": "string"
  1105            },
  1106            "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations",
  1107            "type": "object"
  1108          },
  1109          "creationTimestamp": {
  1110            "allOf": [
  1111              {
  1112                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
  1113              }
  1114            ],
  1115            "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: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
  1116          },
  1117          "deletionGracePeriodSeconds": {
  1118            "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.",
  1119            "format": "int64",
  1120            "type": "integer"
  1121          },
  1122          "deletionTimestamp": {
  1123            "allOf": [
  1124              {
  1125                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
  1126              }
  1127            ],
  1128            "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 is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
  1129          },
  1130          "finalizers": {
  1131            "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order.  Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.",
  1132            "items": {
  1133              "default": "",
  1134              "type": "string"
  1135            },
  1136            "type": "array",
  1137            "x-kubernetes-list-type": "set",
  1138            "x-kubernetes-patch-strategy": "merge"
  1139          },
  1140          "generateName": {
  1141            "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will return a 409.\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency",
  1142            "type": "string"
  1143          },
  1144          "generation": {
  1145            "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
  1146            "format": "int64",
  1147            "type": "integer"
  1148          },
  1149          "labels": {
  1150            "additionalProperties": {
  1151              "default": "",
  1152              "type": "string"
  1153            },
  1154            "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels",
  1155            "type": "object"
  1156          },
  1157          "managedFields": {
  1158            "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.",
  1159            "items": {
  1160              "allOf": [
  1161                {
  1162                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry"
  1163                }
  1164              ],
  1165              "default": {}
  1166            },
  1167            "type": "array",
  1168            "x-kubernetes-list-type": "atomic"
  1169          },
  1170          "name": {
  1171            "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names",
  1172            "type": "string"
  1173          },
  1174          "namespace": {
  1175            "description": "Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces",
  1176            "type": "string"
  1177          },
  1178          "ownerReferences": {
  1179            "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.",
  1180            "items": {
  1181              "allOf": [
  1182                {
  1183                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference"
  1184                }
  1185              ],
  1186              "default": {}
  1187            },
  1188            "type": "array",
  1189            "x-kubernetes-list-map-keys": [
  1190              "uid"
  1191            ],
  1192            "x-kubernetes-list-type": "map",
  1193            "x-kubernetes-patch-merge-key": "uid",
  1194            "x-kubernetes-patch-strategy": "merge"
  1195          },
  1196          "resourceVersion": {
  1197            "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
  1198            "type": "string"
  1199          },
  1200          "selfLink": {
  1201            "description": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.",
  1202            "type": "string"
  1203          },
  1204          "uid": {
  1205            "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
  1206            "type": "string"
  1207          }
  1208        },
  1209        "type": "object"
  1210      },
  1211      "io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference": {
  1212        "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.",
  1213        "properties": {
  1214          "apiVersion": {
  1215            "default": "",
  1216            "description": "API version of the referent.",
  1217            "type": "string"
  1218          },
  1219          "blockOwnerDeletion": {
  1220            "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.",
  1221            "type": "boolean"
  1222          },
  1223          "controller": {
  1224            "description": "If true, this reference points to the managing controller.",
  1225            "type": "boolean"
  1226          },
  1227          "kind": {
  1228            "default": "",
  1229            "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
  1230            "type": "string"
  1231          },
  1232          "name": {
  1233            "default": "",
  1234            "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names",
  1235            "type": "string"
  1236          },
  1237          "uid": {
  1238            "default": "",
  1239            "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
  1240            "type": "string"
  1241          }
  1242        },
  1243        "required": [
  1244          "apiVersion",
  1245          "kind",
  1246          "name",
  1247          "uid"
  1248        ],
  1249        "type": "object",
  1250        "x-kubernetes-map-type": "atomic"
  1251      },
  1252      "io.k8s.apimachinery.pkg.apis.meta.v1.Patch": {
  1253        "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.",
  1254        "type": "object"
  1255      },
  1256      "io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions": {
  1257        "description": "Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.",
  1258        "properties": {
  1259          "resourceVersion": {
  1260            "description": "Specifies the target ResourceVersion",
  1261            "type": "string"
  1262          },
  1263          "uid": {
  1264            "description": "Specifies the target UID.",
  1265            "type": "string"
  1266          }
  1267        },
  1268        "type": "object"
  1269      },
  1270      "io.k8s.apimachinery.pkg.apis.meta.v1.Status": {
  1271        "description": "Status is a return value for calls that don't return other objects.",
  1272        "properties": {
  1273          "apiVersion": {
  1274            "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
  1275            "type": "string"
  1276          },
  1277          "code": {
  1278            "description": "Suggested HTTP return code for this status, 0 if not set.",
  1279            "format": "int32",
  1280            "type": "integer"
  1281          },
  1282          "details": {
  1283            "allOf": [
  1284              {
  1285                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails"
  1286              }
  1287            ],
  1288            "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.",
  1289            "x-kubernetes-list-type": "atomic"
  1290          },
  1291          "kind": {
  1292            "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
  1293            "type": "string"
  1294          },
  1295          "message": {
  1296            "description": "A human-readable description of the status of this operation.",
  1297            "type": "string"
  1298          },
  1299          "metadata": {
  1300            "allOf": [
  1301              {
  1302                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
  1303              }
  1304            ],
  1305            "default": {},
  1306            "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
  1307          },
  1308          "reason": {
  1309            "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.",
  1310            "type": "string"
  1311          },
  1312          "status": {
  1313            "description": "Status of the operation. One of: \"Success\" or \"Failure\". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status",
  1314            "type": "string"
  1315          }
  1316        },
  1317        "type": "object",
  1318        "x-kubernetes-group-version-kind": [
  1319          {
  1320            "group": "",
  1321            "kind": "Status",
  1322            "version": "v1"
  1323          },
  1324          {
  1325            "group": "resource.k8s.io",
  1326            "kind": "Status",
  1327            "version": "v1alpha2"
  1328          }
  1329        ]
  1330      },
  1331      "io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause": {
  1332        "description": "StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.",
  1333        "properties": {
  1334          "field": {
  1335            "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\"",
  1336            "type": "string"
  1337          },
  1338          "message": {
  1339            "description": "A human-readable description of the cause of the error.  This field may be presented as-is to a reader.",
  1340            "type": "string"
  1341          },
  1342          "reason": {
  1343            "description": "A machine-readable description of the cause of the error. If this value is empty there is no information available.",
  1344            "type": "string"
  1345          }
  1346        },
  1347        "type": "object"
  1348      },
  1349      "io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails": {
  1350        "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.",
  1351        "properties": {
  1352          "causes": {
  1353            "description": "The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.",
  1354            "items": {
  1355              "allOf": [
  1356                {
  1357                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause"
  1358                }
  1359              ],
  1360              "default": {}
  1361            },
  1362            "type": "array",
  1363            "x-kubernetes-list-type": "atomic"
  1364          },
  1365          "group": {
  1366            "description": "The group attribute of the resource associated with the status StatusReason.",
  1367            "type": "string"
  1368          },
  1369          "kind": {
  1370            "description": "The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
  1371            "type": "string"
  1372          },
  1373          "name": {
  1374            "description": "The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).",
  1375            "type": "string"
  1376          },
  1377          "retryAfterSeconds": {
  1378            "description": "If specified, the time in seconds before the operation should be retried. Some errors may indicate the client must take an alternate action - for those errors this field may indicate how long to wait before taking the alternate action.",
  1379            "format": "int32",
  1380            "type": "integer"
  1381          },
  1382          "uid": {
  1383            "description": "UID of the resource. (when there is a single resource which can be described). More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
  1384            "type": "string"
  1385          }
  1386        },
  1387        "type": "object"
  1388      },
  1389      "io.k8s.apimachinery.pkg.apis.meta.v1.Time": {
  1390        "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON.  Wrappers are provided for many of the factory methods that the time package offers.",
  1391        "format": "date-time",
  1392        "type": "string"
  1393      },
  1394      "io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent": {
  1395        "description": "Event represents a single event to a watched resource.",
  1396        "properties": {
  1397          "object": {
  1398            "allOf": [
  1399              {
  1400                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.runtime.RawExtension"
  1401              }
  1402            ],
  1403            "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: *Status is recommended; other types may make sense\n   depending on context."
  1404          },
  1405          "type": {
  1406            "default": "",
  1407            "type": "string"
  1408          }
  1409        },
  1410        "required": [
  1411          "type",
  1412          "object"
  1413        ],
  1414        "type": "object",
  1415        "x-kubernetes-group-version-kind": [
  1416          {
  1417            "group": "",
  1418            "kind": "WatchEvent",
  1419            "version": "v1"
  1420          },
  1421          {
  1422            "group": "admission.k8s.io",
  1423            "kind": "WatchEvent",
  1424            "version": "v1"
  1425          },
  1426          {
  1427            "group": "admission.k8s.io",
  1428            "kind": "WatchEvent",
  1429            "version": "v1beta1"
  1430          },
  1431          {
  1432            "group": "admissionregistration.k8s.io",
  1433            "kind": "WatchEvent",
  1434            "version": "v1"
  1435          },
  1436          {
  1437            "group": "admissionregistration.k8s.io",
  1438            "kind": "WatchEvent",
  1439            "version": "v1alpha1"
  1440          },
  1441          {
  1442            "group": "admissionregistration.k8s.io",
  1443            "kind": "WatchEvent",
  1444            "version": "v1beta1"
  1445          },
  1446          {
  1447            "group": "apiextensions.k8s.io",
  1448            "kind": "WatchEvent",
  1449            "version": "v1"
  1450          },
  1451          {
  1452            "group": "apiextensions.k8s.io",
  1453            "kind": "WatchEvent",
  1454            "version": "v1beta1"
  1455          },
  1456          {
  1457            "group": "apiregistration.k8s.io",
  1458            "kind": "WatchEvent",
  1459            "version": "v1"
  1460          },
  1461          {
  1462            "group": "apiregistration.k8s.io",
  1463            "kind": "WatchEvent",
  1464            "version": "v1beta1"
  1465          },
  1466          {
  1467            "group": "apps",
  1468            "kind": "WatchEvent",
  1469            "version": "v1"
  1470          },
  1471          {
  1472            "group": "apps",
  1473            "kind": "WatchEvent",
  1474            "version": "v1beta1"
  1475          },
  1476          {
  1477            "group": "apps",
  1478            "kind": "WatchEvent",
  1479            "version": "v1beta2"
  1480          },
  1481          {
  1482            "group": "authentication.k8s.io",
  1483            "kind": "WatchEvent",
  1484            "version": "v1"
  1485          },
  1486          {
  1487            "group": "authentication.k8s.io",
  1488            "kind": "WatchEvent",
  1489            "version": "v1alpha1"
  1490          },
  1491          {
  1492            "group": "authentication.k8s.io",
  1493            "kind": "WatchEvent",
  1494            "version": "v1beta1"
  1495          },
  1496          {
  1497            "group": "authorization.k8s.io",
  1498            "kind": "WatchEvent",
  1499            "version": "v1"
  1500          },
  1501          {
  1502            "group": "authorization.k8s.io",
  1503            "kind": "WatchEvent",
  1504            "version": "v1beta1"
  1505          },
  1506          {
  1507            "group": "autoscaling",
  1508            "kind": "WatchEvent",
  1509            "version": "v1"
  1510          },
  1511          {
  1512            "group": "autoscaling",
  1513            "kind": "WatchEvent",
  1514            "version": "v2"
  1515          },
  1516          {
  1517            "group": "autoscaling",
  1518            "kind": "WatchEvent",
  1519            "version": "v2beta1"
  1520          },
  1521          {
  1522            "group": "autoscaling",
  1523            "kind": "WatchEvent",
  1524            "version": "v2beta2"
  1525          },
  1526          {
  1527            "group": "batch",
  1528            "kind": "WatchEvent",
  1529            "version": "v1"
  1530          },
  1531          {
  1532            "group": "batch",
  1533            "kind": "WatchEvent",
  1534            "version": "v1beta1"
  1535          },
  1536          {
  1537            "group": "certificates.k8s.io",
  1538            "kind": "WatchEvent",
  1539            "version": "v1"
  1540          },
  1541          {
  1542            "group": "certificates.k8s.io",
  1543            "kind": "WatchEvent",
  1544            "version": "v1alpha1"
  1545          },
  1546          {
  1547            "group": "certificates.k8s.io",
  1548            "kind": "WatchEvent",
  1549            "version": "v1beta1"
  1550          },
  1551          {
  1552            "group": "coordination.k8s.io",
  1553            "kind": "WatchEvent",
  1554            "version": "v1"
  1555          },
  1556          {
  1557            "group": "coordination.k8s.io",
  1558            "kind": "WatchEvent",
  1559            "version": "v1beta1"
  1560          },
  1561          {
  1562            "group": "discovery.k8s.io",
  1563            "kind": "WatchEvent",
  1564            "version": "v1"
  1565          },
  1566          {
  1567            "group": "discovery.k8s.io",
  1568            "kind": "WatchEvent",
  1569            "version": "v1beta1"
  1570          },
  1571          {
  1572            "group": "events.k8s.io",
  1573            "kind": "WatchEvent",
  1574            "version": "v1"
  1575          },
  1576          {
  1577            "group": "events.k8s.io",
  1578            "kind": "WatchEvent",
  1579            "version": "v1beta1"
  1580          },
  1581          {
  1582            "group": "extensions",
  1583            "kind": "WatchEvent",
  1584            "version": "v1beta1"
  1585          },
  1586          {
  1587            "group": "flowcontrol.apiserver.k8s.io",
  1588            "kind": "WatchEvent",
  1589            "version": "v1"
  1590          },
  1591          {
  1592            "group": "flowcontrol.apiserver.k8s.io",
  1593            "kind": "WatchEvent",
  1594            "version": "v1beta1"
  1595          },
  1596          {
  1597            "group": "flowcontrol.apiserver.k8s.io",
  1598            "kind": "WatchEvent",
  1599            "version": "v1beta2"
  1600          },
  1601          {
  1602            "group": "flowcontrol.apiserver.k8s.io",
  1603            "kind": "WatchEvent",
  1604            "version": "v1beta3"
  1605          },
  1606          {
  1607            "group": "imagepolicy.k8s.io",
  1608            "kind": "WatchEvent",
  1609            "version": "v1alpha1"
  1610          },
  1611          {
  1612            "group": "internal.apiserver.k8s.io",
  1613            "kind": "WatchEvent",
  1614            "version": "v1alpha1"
  1615          },
  1616          {
  1617            "group": "networking.k8s.io",
  1618            "kind": "WatchEvent",
  1619            "version": "v1"
  1620          },
  1621          {
  1622            "group": "networking.k8s.io",
  1623            "kind": "WatchEvent",
  1624            "version": "v1alpha1"
  1625          },
  1626          {
  1627            "group": "networking.k8s.io",
  1628            "kind": "WatchEvent",
  1629            "version": "v1beta1"
  1630          },
  1631          {
  1632            "group": "node.k8s.io",
  1633            "kind": "WatchEvent",
  1634            "version": "v1"
  1635          },
  1636          {
  1637            "group": "node.k8s.io",
  1638            "kind": "WatchEvent",
  1639            "version": "v1alpha1"
  1640          },
  1641          {
  1642            "group": "node.k8s.io",
  1643            "kind": "WatchEvent",
  1644            "version": "v1beta1"
  1645          },
  1646          {
  1647            "group": "policy",
  1648            "kind": "WatchEvent",
  1649            "version": "v1"
  1650          },
  1651          {
  1652            "group": "policy",
  1653            "kind": "WatchEvent",
  1654            "version": "v1beta1"
  1655          },
  1656          {
  1657            "group": "rbac.authorization.k8s.io",
  1658            "kind": "WatchEvent",
  1659            "version": "v1"
  1660          },
  1661          {
  1662            "group": "rbac.authorization.k8s.io",
  1663            "kind": "WatchEvent",
  1664            "version": "v1alpha1"
  1665          },
  1666          {
  1667            "group": "rbac.authorization.k8s.io",
  1668            "kind": "WatchEvent",
  1669            "version": "v1beta1"
  1670          },
  1671          {
  1672            "group": "resource.k8s.io",
  1673            "kind": "WatchEvent",
  1674            "version": "v1alpha2"
  1675          },
  1676          {
  1677            "group": "scheduling.k8s.io",
  1678            "kind": "WatchEvent",
  1679            "version": "v1"
  1680          },
  1681          {
  1682            "group": "scheduling.k8s.io",
  1683            "kind": "WatchEvent",
  1684            "version": "v1alpha1"
  1685          },
  1686          {
  1687            "group": "scheduling.k8s.io",
  1688            "kind": "WatchEvent",
  1689            "version": "v1beta1"
  1690          },
  1691          {
  1692            "group": "storage.k8s.io",
  1693            "kind": "WatchEvent",
  1694            "version": "v1"
  1695          },
  1696          {
  1697            "group": "storage.k8s.io",
  1698            "kind": "WatchEvent",
  1699            "version": "v1alpha1"
  1700          },
  1701          {
  1702            "group": "storage.k8s.io",
  1703            "kind": "WatchEvent",
  1704            "version": "v1beta1"
  1705          },
  1706          {
  1707            "group": "storagemigration.k8s.io",
  1708            "kind": "WatchEvent",
  1709            "version": "v1alpha1"
  1710          }
  1711        ]
  1712      },
  1713      "io.k8s.apimachinery.pkg.runtime.RawExtension": {
  1714        "description": "RawExtension is used to hold extensions in external versions.\n\nTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct. You also need to register your various plugin types.\n\n// Internal package:\n\n\ttype MyAPIObject struct {\n\t\truntime.TypeMeta `json:\",inline\"`\n\t\tMyPlugin runtime.Object `json:\"myPlugin\"`\n\t}\n\n\ttype PluginA struct {\n\t\tAOption string `json:\"aOption\"`\n\t}\n\n// External package:\n\n\ttype MyAPIObject struct {\n\t\truntime.TypeMeta `json:\",inline\"`\n\t\tMyPlugin runtime.RawExtension `json:\"myPlugin\"`\n\t}\n\n\ttype PluginA struct {\n\t\tAOption string `json:\"aOption\"`\n\t}\n\n// On the wire, the JSON will look something like this:\n\n\t{\n\t\t\"kind\":\"MyAPIObject\",\n\t\t\"apiVersion\":\"v1\",\n\t\t\"myPlugin\": {\n\t\t\t\"kind\":\"PluginA\",\n\t\t\t\"aOption\":\"foo\",\n\t\t},\n\t}\n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an unknown type, a runtime.Unknown object will be created and stored.)",
  1715        "type": "object"
  1716      }
  1717    },
  1718    "securitySchemes": {
  1719      "BearerToken": {
  1720        "description": "Bearer Token authentication",
  1721        "in": "header",
  1722        "name": "authorization",
  1723        "type": "apiKey"
  1724      }
  1725    }
  1726  },
  1727  "info": {
  1728    "title": "Kubernetes",
  1729    "version": "unversioned"
  1730  },
  1731  "openapi": "3.0.0",
  1732  "paths": {
  1733    "/apis/rbac.authorization.k8s.io/v1/": {
  1734      "get": {
  1735        "description": "get available resources",
  1736        "operationId": "getRbacAuthorizationV1APIResources",
  1737        "responses": {
  1738          "200": {
  1739            "content": {
  1740              "application/json": {
  1741                "schema": {
  1742                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
  1743                }
  1744              },
  1745              "application/vnd.kubernetes.protobuf": {
  1746                "schema": {
  1747                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
  1748                }
  1749              },
  1750              "application/yaml": {
  1751                "schema": {
  1752                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList"
  1753                }
  1754              }
  1755            },
  1756            "description": "OK"
  1757          },
  1758          "401": {
  1759            "description": "Unauthorized"
  1760          }
  1761        },
  1762        "tags": [
  1763          "rbacAuthorization_v1"
  1764        ]
  1765      }
  1766    },
  1767    "/apis/rbac.authorization.k8s.io/v1/clusterrolebindings": {
  1768      "delete": {
  1769        "description": "delete collection of ClusterRoleBinding",
  1770        "operationId": "deleteRbacAuthorizationV1CollectionClusterRoleBinding",
  1771        "parameters": [
  1772          {
  1773            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
  1774            "in": "query",
  1775            "name": "continue",
  1776            "schema": {
  1777              "type": "string",
  1778              "uniqueItems": true
  1779            }
  1780          },
  1781          {
  1782            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
  1783            "in": "query",
  1784            "name": "dryRun",
  1785            "schema": {
  1786              "type": "string",
  1787              "uniqueItems": true
  1788            }
  1789          },
  1790          {
  1791            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  1792            "in": "query",
  1793            "name": "fieldSelector",
  1794            "schema": {
  1795              "type": "string",
  1796              "uniqueItems": true
  1797            }
  1798          },
  1799          {
  1800            "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.",
  1801            "in": "query",
  1802            "name": "gracePeriodSeconds",
  1803            "schema": {
  1804              "type": "integer",
  1805              "uniqueItems": true
  1806            }
  1807          },
  1808          {
  1809            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  1810            "in": "query",
  1811            "name": "labelSelector",
  1812            "schema": {
  1813              "type": "string",
  1814              "uniqueItems": true
  1815            }
  1816          },
  1817          {
  1818            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
  1819            "in": "query",
  1820            "name": "limit",
  1821            "schema": {
  1822              "type": "integer",
  1823              "uniqueItems": true
  1824            }
  1825          },
  1826          {
  1827            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
  1828            "in": "query",
  1829            "name": "orphanDependents",
  1830            "schema": {
  1831              "type": "boolean",
  1832              "uniqueItems": true
  1833            }
  1834          },
  1835          {
  1836            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
  1837            "in": "query",
  1838            "name": "propagationPolicy",
  1839            "schema": {
  1840              "type": "string",
  1841              "uniqueItems": true
  1842            }
  1843          },
  1844          {
  1845            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  1846            "in": "query",
  1847            "name": "resourceVersion",
  1848            "schema": {
  1849              "type": "string",
  1850              "uniqueItems": true
  1851            }
  1852          },
  1853          {
  1854            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  1855            "in": "query",
  1856            "name": "resourceVersionMatch",
  1857            "schema": {
  1858              "type": "string",
  1859              "uniqueItems": true
  1860            }
  1861          },
  1862          {
  1863            "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event  will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n  is interpreted as \"data at least as new as the provided `resourceVersion`\"\n  and the bookmark event is send when the state is synced\n  to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n  If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n  bookmark event is send when the state is synced at least to the moment\n  when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n  Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
  1864            "in": "query",
  1865            "name": "sendInitialEvents",
  1866            "schema": {
  1867              "type": "boolean",
  1868              "uniqueItems": true
  1869            }
  1870          },
  1871          {
  1872            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
  1873            "in": "query",
  1874            "name": "timeoutSeconds",
  1875            "schema": {
  1876              "type": "integer",
  1877              "uniqueItems": true
  1878            }
  1879          }
  1880        ],
  1881        "requestBody": {
  1882          "content": {
  1883            "*/*": {
  1884              "schema": {
  1885                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
  1886              }
  1887            }
  1888          }
  1889        },
  1890        "responses": {
  1891          "200": {
  1892            "content": {
  1893              "application/json": {
  1894                "schema": {
  1895                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  1896                }
  1897              },
  1898              "application/vnd.kubernetes.protobuf": {
  1899                "schema": {
  1900                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  1901                }
  1902              },
  1903              "application/yaml": {
  1904                "schema": {
  1905                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  1906                }
  1907              }
  1908            },
  1909            "description": "OK"
  1910          },
  1911          "401": {
  1912            "description": "Unauthorized"
  1913          }
  1914        },
  1915        "tags": [
  1916          "rbacAuthorization_v1"
  1917        ],
  1918        "x-kubernetes-action": "deletecollection",
  1919        "x-kubernetes-group-version-kind": {
  1920          "group": "rbac.authorization.k8s.io",
  1921          "kind": "ClusterRoleBinding",
  1922          "version": "v1"
  1923        }
  1924      },
  1925      "get": {
  1926        "description": "list or watch objects of kind ClusterRoleBinding",
  1927        "operationId": "listRbacAuthorizationV1ClusterRoleBinding",
  1928        "parameters": [
  1929          {
  1930            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
  1931            "in": "query",
  1932            "name": "allowWatchBookmarks",
  1933            "schema": {
  1934              "type": "boolean",
  1935              "uniqueItems": true
  1936            }
  1937          },
  1938          {
  1939            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
  1940            "in": "query",
  1941            "name": "continue",
  1942            "schema": {
  1943              "type": "string",
  1944              "uniqueItems": true
  1945            }
  1946          },
  1947          {
  1948            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  1949            "in": "query",
  1950            "name": "fieldSelector",
  1951            "schema": {
  1952              "type": "string",
  1953              "uniqueItems": true
  1954            }
  1955          },
  1956          {
  1957            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  1958            "in": "query",
  1959            "name": "labelSelector",
  1960            "schema": {
  1961              "type": "string",
  1962              "uniqueItems": true
  1963            }
  1964          },
  1965          {
  1966            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
  1967            "in": "query",
  1968            "name": "limit",
  1969            "schema": {
  1970              "type": "integer",
  1971              "uniqueItems": true
  1972            }
  1973          },
  1974          {
  1975            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  1976            "in": "query",
  1977            "name": "resourceVersion",
  1978            "schema": {
  1979              "type": "string",
  1980              "uniqueItems": true
  1981            }
  1982          },
  1983          {
  1984            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  1985            "in": "query",
  1986            "name": "resourceVersionMatch",
  1987            "schema": {
  1988              "type": "string",
  1989              "uniqueItems": true
  1990            }
  1991          },
  1992          {
  1993            "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event  will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n  is interpreted as \"data at least as new as the provided `resourceVersion`\"\n  and the bookmark event is send when the state is synced\n  to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n  If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n  bookmark event is send when the state is synced at least to the moment\n  when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n  Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
  1994            "in": "query",
  1995            "name": "sendInitialEvents",
  1996            "schema": {
  1997              "type": "boolean",
  1998              "uniqueItems": true
  1999            }
  2000          },
  2001          {
  2002            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
  2003            "in": "query",
  2004            "name": "timeoutSeconds",
  2005            "schema": {
  2006              "type": "integer",
  2007              "uniqueItems": true
  2008            }
  2009          },
  2010          {
  2011            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  2012            "in": "query",
  2013            "name": "watch",
  2014            "schema": {
  2015              "type": "boolean",
  2016              "uniqueItems": true
  2017            }
  2018          }
  2019        ],
  2020        "responses": {
  2021          "200": {
  2022            "content": {
  2023              "application/json": {
  2024                "schema": {
  2025                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBindingList"
  2026                }
  2027              },
  2028              "application/json;stream=watch": {
  2029                "schema": {
  2030                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBindingList"
  2031                }
  2032              },
  2033              "application/vnd.kubernetes.protobuf": {
  2034                "schema": {
  2035                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBindingList"
  2036                }
  2037              },
  2038              "application/vnd.kubernetes.protobuf;stream=watch": {
  2039                "schema": {
  2040                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBindingList"
  2041                }
  2042              },
  2043              "application/yaml": {
  2044                "schema": {
  2045                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBindingList"
  2046                }
  2047              }
  2048            },
  2049            "description": "OK"
  2050          },
  2051          "401": {
  2052            "description": "Unauthorized"
  2053          }
  2054        },
  2055        "tags": [
  2056          "rbacAuthorization_v1"
  2057        ],
  2058        "x-kubernetes-action": "list",
  2059        "x-kubernetes-group-version-kind": {
  2060          "group": "rbac.authorization.k8s.io",
  2061          "kind": "ClusterRoleBinding",
  2062          "version": "v1"
  2063        }
  2064      },
  2065      "parameters": [
  2066        {
  2067          "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
  2068          "in": "query",
  2069          "name": "pretty",
  2070          "schema": {
  2071            "type": "string",
  2072            "uniqueItems": true
  2073          }
  2074        }
  2075      ],
  2076      "post": {
  2077        "description": "create a ClusterRoleBinding",
  2078        "operationId": "createRbacAuthorizationV1ClusterRoleBinding",
  2079        "parameters": [
  2080          {
  2081            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
  2082            "in": "query",
  2083            "name": "dryRun",
  2084            "schema": {
  2085              "type": "string",
  2086              "uniqueItems": true
  2087            }
  2088          },
  2089          {
  2090            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
  2091            "in": "query",
  2092            "name": "fieldManager",
  2093            "schema": {
  2094              "type": "string",
  2095              "uniqueItems": true
  2096            }
  2097          },
  2098          {
  2099            "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
  2100            "in": "query",
  2101            "name": "fieldValidation",
  2102            "schema": {
  2103              "type": "string",
  2104              "uniqueItems": true
  2105            }
  2106          }
  2107        ],
  2108        "requestBody": {
  2109          "content": {
  2110            "*/*": {
  2111              "schema": {
  2112                "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding"
  2113              }
  2114            }
  2115          },
  2116          "required": true
  2117        },
  2118        "responses": {
  2119          "200": {
  2120            "content": {
  2121              "application/json": {
  2122                "schema": {
  2123                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding"
  2124                }
  2125              },
  2126              "application/vnd.kubernetes.protobuf": {
  2127                "schema": {
  2128                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding"
  2129                }
  2130              },
  2131              "application/yaml": {
  2132                "schema": {
  2133                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding"
  2134                }
  2135              }
  2136            },
  2137            "description": "OK"
  2138          },
  2139          "201": {
  2140            "content": {
  2141              "application/json": {
  2142                "schema": {
  2143                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding"
  2144                }
  2145              },
  2146              "application/vnd.kubernetes.protobuf": {
  2147                "schema": {
  2148                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding"
  2149                }
  2150              },
  2151              "application/yaml": {
  2152                "schema": {
  2153                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding"
  2154                }
  2155              }
  2156            },
  2157            "description": "Created"
  2158          },
  2159          "202": {
  2160            "content": {
  2161              "application/json": {
  2162                "schema": {
  2163                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding"
  2164                }
  2165              },
  2166              "application/vnd.kubernetes.protobuf": {
  2167                "schema": {
  2168                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding"
  2169                }
  2170              },
  2171              "application/yaml": {
  2172                "schema": {
  2173                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding"
  2174                }
  2175              }
  2176            },
  2177            "description": "Accepted"
  2178          },
  2179          "401": {
  2180            "description": "Unauthorized"
  2181          }
  2182        },
  2183        "tags": [
  2184          "rbacAuthorization_v1"
  2185        ],
  2186        "x-kubernetes-action": "post",
  2187        "x-kubernetes-group-version-kind": {
  2188          "group": "rbac.authorization.k8s.io",
  2189          "kind": "ClusterRoleBinding",
  2190          "version": "v1"
  2191        }
  2192      }
  2193    },
  2194    "/apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}": {
  2195      "delete": {
  2196        "description": "delete a ClusterRoleBinding",
  2197        "operationId": "deleteRbacAuthorizationV1ClusterRoleBinding",
  2198        "parameters": [
  2199          {
  2200            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
  2201            "in": "query",
  2202            "name": "dryRun",
  2203            "schema": {
  2204              "type": "string",
  2205              "uniqueItems": true
  2206            }
  2207          },
  2208          {
  2209            "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.",
  2210            "in": "query",
  2211            "name": "gracePeriodSeconds",
  2212            "schema": {
  2213              "type": "integer",
  2214              "uniqueItems": true
  2215            }
  2216          },
  2217          {
  2218            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
  2219            "in": "query",
  2220            "name": "orphanDependents",
  2221            "schema": {
  2222              "type": "boolean",
  2223              "uniqueItems": true
  2224            }
  2225          },
  2226          {
  2227            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
  2228            "in": "query",
  2229            "name": "propagationPolicy",
  2230            "schema": {
  2231              "type": "string",
  2232              "uniqueItems": true
  2233            }
  2234          }
  2235        ],
  2236        "requestBody": {
  2237          "content": {
  2238            "*/*": {
  2239              "schema": {
  2240                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
  2241              }
  2242            }
  2243          }
  2244        },
  2245        "responses": {
  2246          "200": {
  2247            "content": {
  2248              "application/json": {
  2249                "schema": {
  2250                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  2251                }
  2252              },
  2253              "application/vnd.kubernetes.protobuf": {
  2254                "schema": {
  2255                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  2256                }
  2257              },
  2258              "application/yaml": {
  2259                "schema": {
  2260                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  2261                }
  2262              }
  2263            },
  2264            "description": "OK"
  2265          },
  2266          "202": {
  2267            "content": {
  2268              "application/json": {
  2269                "schema": {
  2270                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  2271                }
  2272              },
  2273              "application/vnd.kubernetes.protobuf": {
  2274                "schema": {
  2275                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  2276                }
  2277              },
  2278              "application/yaml": {
  2279                "schema": {
  2280                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  2281                }
  2282              }
  2283            },
  2284            "description": "Accepted"
  2285          },
  2286          "401": {
  2287            "description": "Unauthorized"
  2288          }
  2289        },
  2290        "tags": [
  2291          "rbacAuthorization_v1"
  2292        ],
  2293        "x-kubernetes-action": "delete",
  2294        "x-kubernetes-group-version-kind": {
  2295          "group": "rbac.authorization.k8s.io",
  2296          "kind": "ClusterRoleBinding",
  2297          "version": "v1"
  2298        }
  2299      },
  2300      "get": {
  2301        "description": "read the specified ClusterRoleBinding",
  2302        "operationId": "readRbacAuthorizationV1ClusterRoleBinding",
  2303        "responses": {
  2304          "200": {
  2305            "content": {
  2306              "application/json": {
  2307                "schema": {
  2308                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding"
  2309                }
  2310              },
  2311              "application/vnd.kubernetes.protobuf": {
  2312                "schema": {
  2313                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding"
  2314                }
  2315              },
  2316              "application/yaml": {
  2317                "schema": {
  2318                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding"
  2319                }
  2320              }
  2321            },
  2322            "description": "OK"
  2323          },
  2324          "401": {
  2325            "description": "Unauthorized"
  2326          }
  2327        },
  2328        "tags": [
  2329          "rbacAuthorization_v1"
  2330        ],
  2331        "x-kubernetes-action": "get",
  2332        "x-kubernetes-group-version-kind": {
  2333          "group": "rbac.authorization.k8s.io",
  2334          "kind": "ClusterRoleBinding",
  2335          "version": "v1"
  2336        }
  2337      },
  2338      "parameters": [
  2339        {
  2340          "description": "name of the ClusterRoleBinding",
  2341          "in": "path",
  2342          "name": "name",
  2343          "required": true,
  2344          "schema": {
  2345            "type": "string",
  2346            "uniqueItems": true
  2347          }
  2348        },
  2349        {
  2350          "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
  2351          "in": "query",
  2352          "name": "pretty",
  2353          "schema": {
  2354            "type": "string",
  2355            "uniqueItems": true
  2356          }
  2357        }
  2358      ],
  2359      "patch": {
  2360        "description": "partially update the specified ClusterRoleBinding",
  2361        "operationId": "patchRbacAuthorizationV1ClusterRoleBinding",
  2362        "parameters": [
  2363          {
  2364            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
  2365            "in": "query",
  2366            "name": "dryRun",
  2367            "schema": {
  2368              "type": "string",
  2369              "uniqueItems": true
  2370            }
  2371          },
  2372          {
  2373            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
  2374            "in": "query",
  2375            "name": "fieldManager",
  2376            "schema": {
  2377              "type": "string",
  2378              "uniqueItems": true
  2379            }
  2380          },
  2381          {
  2382            "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
  2383            "in": "query",
  2384            "name": "fieldValidation",
  2385            "schema": {
  2386              "type": "string",
  2387              "uniqueItems": true
  2388            }
  2389          },
  2390          {
  2391            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
  2392            "in": "query",
  2393            "name": "force",
  2394            "schema": {
  2395              "type": "boolean",
  2396              "uniqueItems": true
  2397            }
  2398          }
  2399        ],
  2400        "requestBody": {
  2401          "content": {
  2402            "application/apply-patch+yaml": {
  2403              "schema": {
  2404                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
  2405              }
  2406            },
  2407            "application/json-patch+json": {
  2408              "schema": {
  2409                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
  2410              }
  2411            },
  2412            "application/merge-patch+json": {
  2413              "schema": {
  2414                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
  2415              }
  2416            },
  2417            "application/strategic-merge-patch+json": {
  2418              "schema": {
  2419                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
  2420              }
  2421            }
  2422          },
  2423          "required": true
  2424        },
  2425        "responses": {
  2426          "200": {
  2427            "content": {
  2428              "application/json": {
  2429                "schema": {
  2430                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding"
  2431                }
  2432              },
  2433              "application/vnd.kubernetes.protobuf": {
  2434                "schema": {
  2435                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding"
  2436                }
  2437              },
  2438              "application/yaml": {
  2439                "schema": {
  2440                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding"
  2441                }
  2442              }
  2443            },
  2444            "description": "OK"
  2445          },
  2446          "201": {
  2447            "content": {
  2448              "application/json": {
  2449                "schema": {
  2450                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding"
  2451                }
  2452              },
  2453              "application/vnd.kubernetes.protobuf": {
  2454                "schema": {
  2455                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding"
  2456                }
  2457              },
  2458              "application/yaml": {
  2459                "schema": {
  2460                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding"
  2461                }
  2462              }
  2463            },
  2464            "description": "Created"
  2465          },
  2466          "401": {
  2467            "description": "Unauthorized"
  2468          }
  2469        },
  2470        "tags": [
  2471          "rbacAuthorization_v1"
  2472        ],
  2473        "x-kubernetes-action": "patch",
  2474        "x-kubernetes-group-version-kind": {
  2475          "group": "rbac.authorization.k8s.io",
  2476          "kind": "ClusterRoleBinding",
  2477          "version": "v1"
  2478        }
  2479      },
  2480      "put": {
  2481        "description": "replace the specified ClusterRoleBinding",
  2482        "operationId": "replaceRbacAuthorizationV1ClusterRoleBinding",
  2483        "parameters": [
  2484          {
  2485            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
  2486            "in": "query",
  2487            "name": "dryRun",
  2488            "schema": {
  2489              "type": "string",
  2490              "uniqueItems": true
  2491            }
  2492          },
  2493          {
  2494            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
  2495            "in": "query",
  2496            "name": "fieldManager",
  2497            "schema": {
  2498              "type": "string",
  2499              "uniqueItems": true
  2500            }
  2501          },
  2502          {
  2503            "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
  2504            "in": "query",
  2505            "name": "fieldValidation",
  2506            "schema": {
  2507              "type": "string",
  2508              "uniqueItems": true
  2509            }
  2510          }
  2511        ],
  2512        "requestBody": {
  2513          "content": {
  2514            "*/*": {
  2515              "schema": {
  2516                "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding"
  2517              }
  2518            }
  2519          },
  2520          "required": true
  2521        },
  2522        "responses": {
  2523          "200": {
  2524            "content": {
  2525              "application/json": {
  2526                "schema": {
  2527                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding"
  2528                }
  2529              },
  2530              "application/vnd.kubernetes.protobuf": {
  2531                "schema": {
  2532                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding"
  2533                }
  2534              },
  2535              "application/yaml": {
  2536                "schema": {
  2537                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding"
  2538                }
  2539              }
  2540            },
  2541            "description": "OK"
  2542          },
  2543          "201": {
  2544            "content": {
  2545              "application/json": {
  2546                "schema": {
  2547                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding"
  2548                }
  2549              },
  2550              "application/vnd.kubernetes.protobuf": {
  2551                "schema": {
  2552                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding"
  2553                }
  2554              },
  2555              "application/yaml": {
  2556                "schema": {
  2557                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleBinding"
  2558                }
  2559              }
  2560            },
  2561            "description": "Created"
  2562          },
  2563          "401": {
  2564            "description": "Unauthorized"
  2565          }
  2566        },
  2567        "tags": [
  2568          "rbacAuthorization_v1"
  2569        ],
  2570        "x-kubernetes-action": "put",
  2571        "x-kubernetes-group-version-kind": {
  2572          "group": "rbac.authorization.k8s.io",
  2573          "kind": "ClusterRoleBinding",
  2574          "version": "v1"
  2575        }
  2576      }
  2577    },
  2578    "/apis/rbac.authorization.k8s.io/v1/clusterroles": {
  2579      "delete": {
  2580        "description": "delete collection of ClusterRole",
  2581        "operationId": "deleteRbacAuthorizationV1CollectionClusterRole",
  2582        "parameters": [
  2583          {
  2584            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
  2585            "in": "query",
  2586            "name": "continue",
  2587            "schema": {
  2588              "type": "string",
  2589              "uniqueItems": true
  2590            }
  2591          },
  2592          {
  2593            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
  2594            "in": "query",
  2595            "name": "dryRun",
  2596            "schema": {
  2597              "type": "string",
  2598              "uniqueItems": true
  2599            }
  2600          },
  2601          {
  2602            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  2603            "in": "query",
  2604            "name": "fieldSelector",
  2605            "schema": {
  2606              "type": "string",
  2607              "uniqueItems": true
  2608            }
  2609          },
  2610          {
  2611            "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.",
  2612            "in": "query",
  2613            "name": "gracePeriodSeconds",
  2614            "schema": {
  2615              "type": "integer",
  2616              "uniqueItems": true
  2617            }
  2618          },
  2619          {
  2620            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  2621            "in": "query",
  2622            "name": "labelSelector",
  2623            "schema": {
  2624              "type": "string",
  2625              "uniqueItems": true
  2626            }
  2627          },
  2628          {
  2629            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
  2630            "in": "query",
  2631            "name": "limit",
  2632            "schema": {
  2633              "type": "integer",
  2634              "uniqueItems": true
  2635            }
  2636          },
  2637          {
  2638            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
  2639            "in": "query",
  2640            "name": "orphanDependents",
  2641            "schema": {
  2642              "type": "boolean",
  2643              "uniqueItems": true
  2644            }
  2645          },
  2646          {
  2647            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
  2648            "in": "query",
  2649            "name": "propagationPolicy",
  2650            "schema": {
  2651              "type": "string",
  2652              "uniqueItems": true
  2653            }
  2654          },
  2655          {
  2656            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  2657            "in": "query",
  2658            "name": "resourceVersion",
  2659            "schema": {
  2660              "type": "string",
  2661              "uniqueItems": true
  2662            }
  2663          },
  2664          {
  2665            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  2666            "in": "query",
  2667            "name": "resourceVersionMatch",
  2668            "schema": {
  2669              "type": "string",
  2670              "uniqueItems": true
  2671            }
  2672          },
  2673          {
  2674            "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event  will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n  is interpreted as \"data at least as new as the provided `resourceVersion`\"\n  and the bookmark event is send when the state is synced\n  to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n  If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n  bookmark event is send when the state is synced at least to the moment\n  when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n  Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
  2675            "in": "query",
  2676            "name": "sendInitialEvents",
  2677            "schema": {
  2678              "type": "boolean",
  2679              "uniqueItems": true
  2680            }
  2681          },
  2682          {
  2683            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
  2684            "in": "query",
  2685            "name": "timeoutSeconds",
  2686            "schema": {
  2687              "type": "integer",
  2688              "uniqueItems": true
  2689            }
  2690          }
  2691        ],
  2692        "requestBody": {
  2693          "content": {
  2694            "*/*": {
  2695              "schema": {
  2696                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
  2697              }
  2698            }
  2699          }
  2700        },
  2701        "responses": {
  2702          "200": {
  2703            "content": {
  2704              "application/json": {
  2705                "schema": {
  2706                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  2707                }
  2708              },
  2709              "application/vnd.kubernetes.protobuf": {
  2710                "schema": {
  2711                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  2712                }
  2713              },
  2714              "application/yaml": {
  2715                "schema": {
  2716                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  2717                }
  2718              }
  2719            },
  2720            "description": "OK"
  2721          },
  2722          "401": {
  2723            "description": "Unauthorized"
  2724          }
  2725        },
  2726        "tags": [
  2727          "rbacAuthorization_v1"
  2728        ],
  2729        "x-kubernetes-action": "deletecollection",
  2730        "x-kubernetes-group-version-kind": {
  2731          "group": "rbac.authorization.k8s.io",
  2732          "kind": "ClusterRole",
  2733          "version": "v1"
  2734        }
  2735      },
  2736      "get": {
  2737        "description": "list or watch objects of kind ClusterRole",
  2738        "operationId": "listRbacAuthorizationV1ClusterRole",
  2739        "parameters": [
  2740          {
  2741            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
  2742            "in": "query",
  2743            "name": "allowWatchBookmarks",
  2744            "schema": {
  2745              "type": "boolean",
  2746              "uniqueItems": true
  2747            }
  2748          },
  2749          {
  2750            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
  2751            "in": "query",
  2752            "name": "continue",
  2753            "schema": {
  2754              "type": "string",
  2755              "uniqueItems": true
  2756            }
  2757          },
  2758          {
  2759            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  2760            "in": "query",
  2761            "name": "fieldSelector",
  2762            "schema": {
  2763              "type": "string",
  2764              "uniqueItems": true
  2765            }
  2766          },
  2767          {
  2768            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  2769            "in": "query",
  2770            "name": "labelSelector",
  2771            "schema": {
  2772              "type": "string",
  2773              "uniqueItems": true
  2774            }
  2775          },
  2776          {
  2777            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
  2778            "in": "query",
  2779            "name": "limit",
  2780            "schema": {
  2781              "type": "integer",
  2782              "uniqueItems": true
  2783            }
  2784          },
  2785          {
  2786            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  2787            "in": "query",
  2788            "name": "resourceVersion",
  2789            "schema": {
  2790              "type": "string",
  2791              "uniqueItems": true
  2792            }
  2793          },
  2794          {
  2795            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  2796            "in": "query",
  2797            "name": "resourceVersionMatch",
  2798            "schema": {
  2799              "type": "string",
  2800              "uniqueItems": true
  2801            }
  2802          },
  2803          {
  2804            "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event  will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n  is interpreted as \"data at least as new as the provided `resourceVersion`\"\n  and the bookmark event is send when the state is synced\n  to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n  If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n  bookmark event is send when the state is synced at least to the moment\n  when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n  Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
  2805            "in": "query",
  2806            "name": "sendInitialEvents",
  2807            "schema": {
  2808              "type": "boolean",
  2809              "uniqueItems": true
  2810            }
  2811          },
  2812          {
  2813            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
  2814            "in": "query",
  2815            "name": "timeoutSeconds",
  2816            "schema": {
  2817              "type": "integer",
  2818              "uniqueItems": true
  2819            }
  2820          },
  2821          {
  2822            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  2823            "in": "query",
  2824            "name": "watch",
  2825            "schema": {
  2826              "type": "boolean",
  2827              "uniqueItems": true
  2828            }
  2829          }
  2830        ],
  2831        "responses": {
  2832          "200": {
  2833            "content": {
  2834              "application/json": {
  2835                "schema": {
  2836                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleList"
  2837                }
  2838              },
  2839              "application/json;stream=watch": {
  2840                "schema": {
  2841                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleList"
  2842                }
  2843              },
  2844              "application/vnd.kubernetes.protobuf": {
  2845                "schema": {
  2846                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleList"
  2847                }
  2848              },
  2849              "application/vnd.kubernetes.protobuf;stream=watch": {
  2850                "schema": {
  2851                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleList"
  2852                }
  2853              },
  2854              "application/yaml": {
  2855                "schema": {
  2856                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRoleList"
  2857                }
  2858              }
  2859            },
  2860            "description": "OK"
  2861          },
  2862          "401": {
  2863            "description": "Unauthorized"
  2864          }
  2865        },
  2866        "tags": [
  2867          "rbacAuthorization_v1"
  2868        ],
  2869        "x-kubernetes-action": "list",
  2870        "x-kubernetes-group-version-kind": {
  2871          "group": "rbac.authorization.k8s.io",
  2872          "kind": "ClusterRole",
  2873          "version": "v1"
  2874        }
  2875      },
  2876      "parameters": [
  2877        {
  2878          "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
  2879          "in": "query",
  2880          "name": "pretty",
  2881          "schema": {
  2882            "type": "string",
  2883            "uniqueItems": true
  2884          }
  2885        }
  2886      ],
  2887      "post": {
  2888        "description": "create a ClusterRole",
  2889        "operationId": "createRbacAuthorizationV1ClusterRole",
  2890        "parameters": [
  2891          {
  2892            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
  2893            "in": "query",
  2894            "name": "dryRun",
  2895            "schema": {
  2896              "type": "string",
  2897              "uniqueItems": true
  2898            }
  2899          },
  2900          {
  2901            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
  2902            "in": "query",
  2903            "name": "fieldManager",
  2904            "schema": {
  2905              "type": "string",
  2906              "uniqueItems": true
  2907            }
  2908          },
  2909          {
  2910            "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
  2911            "in": "query",
  2912            "name": "fieldValidation",
  2913            "schema": {
  2914              "type": "string",
  2915              "uniqueItems": true
  2916            }
  2917          }
  2918        ],
  2919        "requestBody": {
  2920          "content": {
  2921            "*/*": {
  2922              "schema": {
  2923                "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole"
  2924              }
  2925            }
  2926          },
  2927          "required": true
  2928        },
  2929        "responses": {
  2930          "200": {
  2931            "content": {
  2932              "application/json": {
  2933                "schema": {
  2934                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole"
  2935                }
  2936              },
  2937              "application/vnd.kubernetes.protobuf": {
  2938                "schema": {
  2939                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole"
  2940                }
  2941              },
  2942              "application/yaml": {
  2943                "schema": {
  2944                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole"
  2945                }
  2946              }
  2947            },
  2948            "description": "OK"
  2949          },
  2950          "201": {
  2951            "content": {
  2952              "application/json": {
  2953                "schema": {
  2954                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole"
  2955                }
  2956              },
  2957              "application/vnd.kubernetes.protobuf": {
  2958                "schema": {
  2959                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole"
  2960                }
  2961              },
  2962              "application/yaml": {
  2963                "schema": {
  2964                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole"
  2965                }
  2966              }
  2967            },
  2968            "description": "Created"
  2969          },
  2970          "202": {
  2971            "content": {
  2972              "application/json": {
  2973                "schema": {
  2974                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole"
  2975                }
  2976              },
  2977              "application/vnd.kubernetes.protobuf": {
  2978                "schema": {
  2979                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole"
  2980                }
  2981              },
  2982              "application/yaml": {
  2983                "schema": {
  2984                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole"
  2985                }
  2986              }
  2987            },
  2988            "description": "Accepted"
  2989          },
  2990          "401": {
  2991            "description": "Unauthorized"
  2992          }
  2993        },
  2994        "tags": [
  2995          "rbacAuthorization_v1"
  2996        ],
  2997        "x-kubernetes-action": "post",
  2998        "x-kubernetes-group-version-kind": {
  2999          "group": "rbac.authorization.k8s.io",
  3000          "kind": "ClusterRole",
  3001          "version": "v1"
  3002        }
  3003      }
  3004    },
  3005    "/apis/rbac.authorization.k8s.io/v1/clusterroles/{name}": {
  3006      "delete": {
  3007        "description": "delete a ClusterRole",
  3008        "operationId": "deleteRbacAuthorizationV1ClusterRole",
  3009        "parameters": [
  3010          {
  3011            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
  3012            "in": "query",
  3013            "name": "dryRun",
  3014            "schema": {
  3015              "type": "string",
  3016              "uniqueItems": true
  3017            }
  3018          },
  3019          {
  3020            "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.",
  3021            "in": "query",
  3022            "name": "gracePeriodSeconds",
  3023            "schema": {
  3024              "type": "integer",
  3025              "uniqueItems": true
  3026            }
  3027          },
  3028          {
  3029            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
  3030            "in": "query",
  3031            "name": "orphanDependents",
  3032            "schema": {
  3033              "type": "boolean",
  3034              "uniqueItems": true
  3035            }
  3036          },
  3037          {
  3038            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
  3039            "in": "query",
  3040            "name": "propagationPolicy",
  3041            "schema": {
  3042              "type": "string",
  3043              "uniqueItems": true
  3044            }
  3045          }
  3046        ],
  3047        "requestBody": {
  3048          "content": {
  3049            "*/*": {
  3050              "schema": {
  3051                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
  3052              }
  3053            }
  3054          }
  3055        },
  3056        "responses": {
  3057          "200": {
  3058            "content": {
  3059              "application/json": {
  3060                "schema": {
  3061                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  3062                }
  3063              },
  3064              "application/vnd.kubernetes.protobuf": {
  3065                "schema": {
  3066                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  3067                }
  3068              },
  3069              "application/yaml": {
  3070                "schema": {
  3071                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  3072                }
  3073              }
  3074            },
  3075            "description": "OK"
  3076          },
  3077          "202": {
  3078            "content": {
  3079              "application/json": {
  3080                "schema": {
  3081                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  3082                }
  3083              },
  3084              "application/vnd.kubernetes.protobuf": {
  3085                "schema": {
  3086                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  3087                }
  3088              },
  3089              "application/yaml": {
  3090                "schema": {
  3091                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  3092                }
  3093              }
  3094            },
  3095            "description": "Accepted"
  3096          },
  3097          "401": {
  3098            "description": "Unauthorized"
  3099          }
  3100        },
  3101        "tags": [
  3102          "rbacAuthorization_v1"
  3103        ],
  3104        "x-kubernetes-action": "delete",
  3105        "x-kubernetes-group-version-kind": {
  3106          "group": "rbac.authorization.k8s.io",
  3107          "kind": "ClusterRole",
  3108          "version": "v1"
  3109        }
  3110      },
  3111      "get": {
  3112        "description": "read the specified ClusterRole",
  3113        "operationId": "readRbacAuthorizationV1ClusterRole",
  3114        "responses": {
  3115          "200": {
  3116            "content": {
  3117              "application/json": {
  3118                "schema": {
  3119                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole"
  3120                }
  3121              },
  3122              "application/vnd.kubernetes.protobuf": {
  3123                "schema": {
  3124                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole"
  3125                }
  3126              },
  3127              "application/yaml": {
  3128                "schema": {
  3129                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole"
  3130                }
  3131              }
  3132            },
  3133            "description": "OK"
  3134          },
  3135          "401": {
  3136            "description": "Unauthorized"
  3137          }
  3138        },
  3139        "tags": [
  3140          "rbacAuthorization_v1"
  3141        ],
  3142        "x-kubernetes-action": "get",
  3143        "x-kubernetes-group-version-kind": {
  3144          "group": "rbac.authorization.k8s.io",
  3145          "kind": "ClusterRole",
  3146          "version": "v1"
  3147        }
  3148      },
  3149      "parameters": [
  3150        {
  3151          "description": "name of the ClusterRole",
  3152          "in": "path",
  3153          "name": "name",
  3154          "required": true,
  3155          "schema": {
  3156            "type": "string",
  3157            "uniqueItems": true
  3158          }
  3159        },
  3160        {
  3161          "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
  3162          "in": "query",
  3163          "name": "pretty",
  3164          "schema": {
  3165            "type": "string",
  3166            "uniqueItems": true
  3167          }
  3168        }
  3169      ],
  3170      "patch": {
  3171        "description": "partially update the specified ClusterRole",
  3172        "operationId": "patchRbacAuthorizationV1ClusterRole",
  3173        "parameters": [
  3174          {
  3175            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
  3176            "in": "query",
  3177            "name": "dryRun",
  3178            "schema": {
  3179              "type": "string",
  3180              "uniqueItems": true
  3181            }
  3182          },
  3183          {
  3184            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
  3185            "in": "query",
  3186            "name": "fieldManager",
  3187            "schema": {
  3188              "type": "string",
  3189              "uniqueItems": true
  3190            }
  3191          },
  3192          {
  3193            "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
  3194            "in": "query",
  3195            "name": "fieldValidation",
  3196            "schema": {
  3197              "type": "string",
  3198              "uniqueItems": true
  3199            }
  3200          },
  3201          {
  3202            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
  3203            "in": "query",
  3204            "name": "force",
  3205            "schema": {
  3206              "type": "boolean",
  3207              "uniqueItems": true
  3208            }
  3209          }
  3210        ],
  3211        "requestBody": {
  3212          "content": {
  3213            "application/apply-patch+yaml": {
  3214              "schema": {
  3215                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
  3216              }
  3217            },
  3218            "application/json-patch+json": {
  3219              "schema": {
  3220                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
  3221              }
  3222            },
  3223            "application/merge-patch+json": {
  3224              "schema": {
  3225                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
  3226              }
  3227            },
  3228            "application/strategic-merge-patch+json": {
  3229              "schema": {
  3230                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
  3231              }
  3232            }
  3233          },
  3234          "required": true
  3235        },
  3236        "responses": {
  3237          "200": {
  3238            "content": {
  3239              "application/json": {
  3240                "schema": {
  3241                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole"
  3242                }
  3243              },
  3244              "application/vnd.kubernetes.protobuf": {
  3245                "schema": {
  3246                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole"
  3247                }
  3248              },
  3249              "application/yaml": {
  3250                "schema": {
  3251                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole"
  3252                }
  3253              }
  3254            },
  3255            "description": "OK"
  3256          },
  3257          "201": {
  3258            "content": {
  3259              "application/json": {
  3260                "schema": {
  3261                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole"
  3262                }
  3263              },
  3264              "application/vnd.kubernetes.protobuf": {
  3265                "schema": {
  3266                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole"
  3267                }
  3268              },
  3269              "application/yaml": {
  3270                "schema": {
  3271                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole"
  3272                }
  3273              }
  3274            },
  3275            "description": "Created"
  3276          },
  3277          "401": {
  3278            "description": "Unauthorized"
  3279          }
  3280        },
  3281        "tags": [
  3282          "rbacAuthorization_v1"
  3283        ],
  3284        "x-kubernetes-action": "patch",
  3285        "x-kubernetes-group-version-kind": {
  3286          "group": "rbac.authorization.k8s.io",
  3287          "kind": "ClusterRole",
  3288          "version": "v1"
  3289        }
  3290      },
  3291      "put": {
  3292        "description": "replace the specified ClusterRole",
  3293        "operationId": "replaceRbacAuthorizationV1ClusterRole",
  3294        "parameters": [
  3295          {
  3296            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
  3297            "in": "query",
  3298            "name": "dryRun",
  3299            "schema": {
  3300              "type": "string",
  3301              "uniqueItems": true
  3302            }
  3303          },
  3304          {
  3305            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
  3306            "in": "query",
  3307            "name": "fieldManager",
  3308            "schema": {
  3309              "type": "string",
  3310              "uniqueItems": true
  3311            }
  3312          },
  3313          {
  3314            "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
  3315            "in": "query",
  3316            "name": "fieldValidation",
  3317            "schema": {
  3318              "type": "string",
  3319              "uniqueItems": true
  3320            }
  3321          }
  3322        ],
  3323        "requestBody": {
  3324          "content": {
  3325            "*/*": {
  3326              "schema": {
  3327                "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole"
  3328              }
  3329            }
  3330          },
  3331          "required": true
  3332        },
  3333        "responses": {
  3334          "200": {
  3335            "content": {
  3336              "application/json": {
  3337                "schema": {
  3338                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole"
  3339                }
  3340              },
  3341              "application/vnd.kubernetes.protobuf": {
  3342                "schema": {
  3343                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole"
  3344                }
  3345              },
  3346              "application/yaml": {
  3347                "schema": {
  3348                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole"
  3349                }
  3350              }
  3351            },
  3352            "description": "OK"
  3353          },
  3354          "201": {
  3355            "content": {
  3356              "application/json": {
  3357                "schema": {
  3358                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole"
  3359                }
  3360              },
  3361              "application/vnd.kubernetes.protobuf": {
  3362                "schema": {
  3363                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole"
  3364                }
  3365              },
  3366              "application/yaml": {
  3367                "schema": {
  3368                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.ClusterRole"
  3369                }
  3370              }
  3371            },
  3372            "description": "Created"
  3373          },
  3374          "401": {
  3375            "description": "Unauthorized"
  3376          }
  3377        },
  3378        "tags": [
  3379          "rbacAuthorization_v1"
  3380        ],
  3381        "x-kubernetes-action": "put",
  3382        "x-kubernetes-group-version-kind": {
  3383          "group": "rbac.authorization.k8s.io",
  3384          "kind": "ClusterRole",
  3385          "version": "v1"
  3386        }
  3387      }
  3388    },
  3389    "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings": {
  3390      "delete": {
  3391        "description": "delete collection of RoleBinding",
  3392        "operationId": "deleteRbacAuthorizationV1CollectionNamespacedRoleBinding",
  3393        "parameters": [
  3394          {
  3395            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
  3396            "in": "query",
  3397            "name": "continue",
  3398            "schema": {
  3399              "type": "string",
  3400              "uniqueItems": true
  3401            }
  3402          },
  3403          {
  3404            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
  3405            "in": "query",
  3406            "name": "dryRun",
  3407            "schema": {
  3408              "type": "string",
  3409              "uniqueItems": true
  3410            }
  3411          },
  3412          {
  3413            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  3414            "in": "query",
  3415            "name": "fieldSelector",
  3416            "schema": {
  3417              "type": "string",
  3418              "uniqueItems": true
  3419            }
  3420          },
  3421          {
  3422            "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.",
  3423            "in": "query",
  3424            "name": "gracePeriodSeconds",
  3425            "schema": {
  3426              "type": "integer",
  3427              "uniqueItems": true
  3428            }
  3429          },
  3430          {
  3431            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  3432            "in": "query",
  3433            "name": "labelSelector",
  3434            "schema": {
  3435              "type": "string",
  3436              "uniqueItems": true
  3437            }
  3438          },
  3439          {
  3440            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
  3441            "in": "query",
  3442            "name": "limit",
  3443            "schema": {
  3444              "type": "integer",
  3445              "uniqueItems": true
  3446            }
  3447          },
  3448          {
  3449            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
  3450            "in": "query",
  3451            "name": "orphanDependents",
  3452            "schema": {
  3453              "type": "boolean",
  3454              "uniqueItems": true
  3455            }
  3456          },
  3457          {
  3458            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
  3459            "in": "query",
  3460            "name": "propagationPolicy",
  3461            "schema": {
  3462              "type": "string",
  3463              "uniqueItems": true
  3464            }
  3465          },
  3466          {
  3467            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  3468            "in": "query",
  3469            "name": "resourceVersion",
  3470            "schema": {
  3471              "type": "string",
  3472              "uniqueItems": true
  3473            }
  3474          },
  3475          {
  3476            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  3477            "in": "query",
  3478            "name": "resourceVersionMatch",
  3479            "schema": {
  3480              "type": "string",
  3481              "uniqueItems": true
  3482            }
  3483          },
  3484          {
  3485            "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event  will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n  is interpreted as \"data at least as new as the provided `resourceVersion`\"\n  and the bookmark event is send when the state is synced\n  to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n  If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n  bookmark event is send when the state is synced at least to the moment\n  when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n  Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
  3486            "in": "query",
  3487            "name": "sendInitialEvents",
  3488            "schema": {
  3489              "type": "boolean",
  3490              "uniqueItems": true
  3491            }
  3492          },
  3493          {
  3494            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
  3495            "in": "query",
  3496            "name": "timeoutSeconds",
  3497            "schema": {
  3498              "type": "integer",
  3499              "uniqueItems": true
  3500            }
  3501          }
  3502        ],
  3503        "requestBody": {
  3504          "content": {
  3505            "*/*": {
  3506              "schema": {
  3507                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
  3508              }
  3509            }
  3510          }
  3511        },
  3512        "responses": {
  3513          "200": {
  3514            "content": {
  3515              "application/json": {
  3516                "schema": {
  3517                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  3518                }
  3519              },
  3520              "application/vnd.kubernetes.protobuf": {
  3521                "schema": {
  3522                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  3523                }
  3524              },
  3525              "application/yaml": {
  3526                "schema": {
  3527                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  3528                }
  3529              }
  3530            },
  3531            "description": "OK"
  3532          },
  3533          "401": {
  3534            "description": "Unauthorized"
  3535          }
  3536        },
  3537        "tags": [
  3538          "rbacAuthorization_v1"
  3539        ],
  3540        "x-kubernetes-action": "deletecollection",
  3541        "x-kubernetes-group-version-kind": {
  3542          "group": "rbac.authorization.k8s.io",
  3543          "kind": "RoleBinding",
  3544          "version": "v1"
  3545        }
  3546      },
  3547      "get": {
  3548        "description": "list or watch objects of kind RoleBinding",
  3549        "operationId": "listRbacAuthorizationV1NamespacedRoleBinding",
  3550        "parameters": [
  3551          {
  3552            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
  3553            "in": "query",
  3554            "name": "allowWatchBookmarks",
  3555            "schema": {
  3556              "type": "boolean",
  3557              "uniqueItems": true
  3558            }
  3559          },
  3560          {
  3561            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
  3562            "in": "query",
  3563            "name": "continue",
  3564            "schema": {
  3565              "type": "string",
  3566              "uniqueItems": true
  3567            }
  3568          },
  3569          {
  3570            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  3571            "in": "query",
  3572            "name": "fieldSelector",
  3573            "schema": {
  3574              "type": "string",
  3575              "uniqueItems": true
  3576            }
  3577          },
  3578          {
  3579            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  3580            "in": "query",
  3581            "name": "labelSelector",
  3582            "schema": {
  3583              "type": "string",
  3584              "uniqueItems": true
  3585            }
  3586          },
  3587          {
  3588            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
  3589            "in": "query",
  3590            "name": "limit",
  3591            "schema": {
  3592              "type": "integer",
  3593              "uniqueItems": true
  3594            }
  3595          },
  3596          {
  3597            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  3598            "in": "query",
  3599            "name": "resourceVersion",
  3600            "schema": {
  3601              "type": "string",
  3602              "uniqueItems": true
  3603            }
  3604          },
  3605          {
  3606            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  3607            "in": "query",
  3608            "name": "resourceVersionMatch",
  3609            "schema": {
  3610              "type": "string",
  3611              "uniqueItems": true
  3612            }
  3613          },
  3614          {
  3615            "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event  will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n  is interpreted as \"data at least as new as the provided `resourceVersion`\"\n  and the bookmark event is send when the state is synced\n  to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n  If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n  bookmark event is send when the state is synced at least to the moment\n  when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n  Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
  3616            "in": "query",
  3617            "name": "sendInitialEvents",
  3618            "schema": {
  3619              "type": "boolean",
  3620              "uniqueItems": true
  3621            }
  3622          },
  3623          {
  3624            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
  3625            "in": "query",
  3626            "name": "timeoutSeconds",
  3627            "schema": {
  3628              "type": "integer",
  3629              "uniqueItems": true
  3630            }
  3631          },
  3632          {
  3633            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  3634            "in": "query",
  3635            "name": "watch",
  3636            "schema": {
  3637              "type": "boolean",
  3638              "uniqueItems": true
  3639            }
  3640          }
  3641        ],
  3642        "responses": {
  3643          "200": {
  3644            "content": {
  3645              "application/json": {
  3646                "schema": {
  3647                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBindingList"
  3648                }
  3649              },
  3650              "application/json;stream=watch": {
  3651                "schema": {
  3652                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBindingList"
  3653                }
  3654              },
  3655              "application/vnd.kubernetes.protobuf": {
  3656                "schema": {
  3657                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBindingList"
  3658                }
  3659              },
  3660              "application/vnd.kubernetes.protobuf;stream=watch": {
  3661                "schema": {
  3662                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBindingList"
  3663                }
  3664              },
  3665              "application/yaml": {
  3666                "schema": {
  3667                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBindingList"
  3668                }
  3669              }
  3670            },
  3671            "description": "OK"
  3672          },
  3673          "401": {
  3674            "description": "Unauthorized"
  3675          }
  3676        },
  3677        "tags": [
  3678          "rbacAuthorization_v1"
  3679        ],
  3680        "x-kubernetes-action": "list",
  3681        "x-kubernetes-group-version-kind": {
  3682          "group": "rbac.authorization.k8s.io",
  3683          "kind": "RoleBinding",
  3684          "version": "v1"
  3685        }
  3686      },
  3687      "parameters": [
  3688        {
  3689          "description": "object name and auth scope, such as for teams and projects",
  3690          "in": "path",
  3691          "name": "namespace",
  3692          "required": true,
  3693          "schema": {
  3694            "type": "string",
  3695            "uniqueItems": true
  3696          }
  3697        },
  3698        {
  3699          "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
  3700          "in": "query",
  3701          "name": "pretty",
  3702          "schema": {
  3703            "type": "string",
  3704            "uniqueItems": true
  3705          }
  3706        }
  3707      ],
  3708      "post": {
  3709        "description": "create a RoleBinding",
  3710        "operationId": "createRbacAuthorizationV1NamespacedRoleBinding",
  3711        "parameters": [
  3712          {
  3713            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
  3714            "in": "query",
  3715            "name": "dryRun",
  3716            "schema": {
  3717              "type": "string",
  3718              "uniqueItems": true
  3719            }
  3720          },
  3721          {
  3722            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
  3723            "in": "query",
  3724            "name": "fieldManager",
  3725            "schema": {
  3726              "type": "string",
  3727              "uniqueItems": true
  3728            }
  3729          },
  3730          {
  3731            "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
  3732            "in": "query",
  3733            "name": "fieldValidation",
  3734            "schema": {
  3735              "type": "string",
  3736              "uniqueItems": true
  3737            }
  3738          }
  3739        ],
  3740        "requestBody": {
  3741          "content": {
  3742            "*/*": {
  3743              "schema": {
  3744                "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding"
  3745              }
  3746            }
  3747          },
  3748          "required": true
  3749        },
  3750        "responses": {
  3751          "200": {
  3752            "content": {
  3753              "application/json": {
  3754                "schema": {
  3755                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding"
  3756                }
  3757              },
  3758              "application/vnd.kubernetes.protobuf": {
  3759                "schema": {
  3760                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding"
  3761                }
  3762              },
  3763              "application/yaml": {
  3764                "schema": {
  3765                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding"
  3766                }
  3767              }
  3768            },
  3769            "description": "OK"
  3770          },
  3771          "201": {
  3772            "content": {
  3773              "application/json": {
  3774                "schema": {
  3775                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding"
  3776                }
  3777              },
  3778              "application/vnd.kubernetes.protobuf": {
  3779                "schema": {
  3780                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding"
  3781                }
  3782              },
  3783              "application/yaml": {
  3784                "schema": {
  3785                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding"
  3786                }
  3787              }
  3788            },
  3789            "description": "Created"
  3790          },
  3791          "202": {
  3792            "content": {
  3793              "application/json": {
  3794                "schema": {
  3795                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding"
  3796                }
  3797              },
  3798              "application/vnd.kubernetes.protobuf": {
  3799                "schema": {
  3800                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding"
  3801                }
  3802              },
  3803              "application/yaml": {
  3804                "schema": {
  3805                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding"
  3806                }
  3807              }
  3808            },
  3809            "description": "Accepted"
  3810          },
  3811          "401": {
  3812            "description": "Unauthorized"
  3813          }
  3814        },
  3815        "tags": [
  3816          "rbacAuthorization_v1"
  3817        ],
  3818        "x-kubernetes-action": "post",
  3819        "x-kubernetes-group-version-kind": {
  3820          "group": "rbac.authorization.k8s.io",
  3821          "kind": "RoleBinding",
  3822          "version": "v1"
  3823        }
  3824      }
  3825    },
  3826    "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings/{name}": {
  3827      "delete": {
  3828        "description": "delete a RoleBinding",
  3829        "operationId": "deleteRbacAuthorizationV1NamespacedRoleBinding",
  3830        "parameters": [
  3831          {
  3832            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
  3833            "in": "query",
  3834            "name": "dryRun",
  3835            "schema": {
  3836              "type": "string",
  3837              "uniqueItems": true
  3838            }
  3839          },
  3840          {
  3841            "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.",
  3842            "in": "query",
  3843            "name": "gracePeriodSeconds",
  3844            "schema": {
  3845              "type": "integer",
  3846              "uniqueItems": true
  3847            }
  3848          },
  3849          {
  3850            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
  3851            "in": "query",
  3852            "name": "orphanDependents",
  3853            "schema": {
  3854              "type": "boolean",
  3855              "uniqueItems": true
  3856            }
  3857          },
  3858          {
  3859            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
  3860            "in": "query",
  3861            "name": "propagationPolicy",
  3862            "schema": {
  3863              "type": "string",
  3864              "uniqueItems": true
  3865            }
  3866          }
  3867        ],
  3868        "requestBody": {
  3869          "content": {
  3870            "*/*": {
  3871              "schema": {
  3872                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
  3873              }
  3874            }
  3875          }
  3876        },
  3877        "responses": {
  3878          "200": {
  3879            "content": {
  3880              "application/json": {
  3881                "schema": {
  3882                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  3883                }
  3884              },
  3885              "application/vnd.kubernetes.protobuf": {
  3886                "schema": {
  3887                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  3888                }
  3889              },
  3890              "application/yaml": {
  3891                "schema": {
  3892                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  3893                }
  3894              }
  3895            },
  3896            "description": "OK"
  3897          },
  3898          "202": {
  3899            "content": {
  3900              "application/json": {
  3901                "schema": {
  3902                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  3903                }
  3904              },
  3905              "application/vnd.kubernetes.protobuf": {
  3906                "schema": {
  3907                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  3908                }
  3909              },
  3910              "application/yaml": {
  3911                "schema": {
  3912                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  3913                }
  3914              }
  3915            },
  3916            "description": "Accepted"
  3917          },
  3918          "401": {
  3919            "description": "Unauthorized"
  3920          }
  3921        },
  3922        "tags": [
  3923          "rbacAuthorization_v1"
  3924        ],
  3925        "x-kubernetes-action": "delete",
  3926        "x-kubernetes-group-version-kind": {
  3927          "group": "rbac.authorization.k8s.io",
  3928          "kind": "RoleBinding",
  3929          "version": "v1"
  3930        }
  3931      },
  3932      "get": {
  3933        "description": "read the specified RoleBinding",
  3934        "operationId": "readRbacAuthorizationV1NamespacedRoleBinding",
  3935        "responses": {
  3936          "200": {
  3937            "content": {
  3938              "application/json": {
  3939                "schema": {
  3940                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding"
  3941                }
  3942              },
  3943              "application/vnd.kubernetes.protobuf": {
  3944                "schema": {
  3945                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding"
  3946                }
  3947              },
  3948              "application/yaml": {
  3949                "schema": {
  3950                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding"
  3951                }
  3952              }
  3953            },
  3954            "description": "OK"
  3955          },
  3956          "401": {
  3957            "description": "Unauthorized"
  3958          }
  3959        },
  3960        "tags": [
  3961          "rbacAuthorization_v1"
  3962        ],
  3963        "x-kubernetes-action": "get",
  3964        "x-kubernetes-group-version-kind": {
  3965          "group": "rbac.authorization.k8s.io",
  3966          "kind": "RoleBinding",
  3967          "version": "v1"
  3968        }
  3969      },
  3970      "parameters": [
  3971        {
  3972          "description": "name of the RoleBinding",
  3973          "in": "path",
  3974          "name": "name",
  3975          "required": true,
  3976          "schema": {
  3977            "type": "string",
  3978            "uniqueItems": true
  3979          }
  3980        },
  3981        {
  3982          "description": "object name and auth scope, such as for teams and projects",
  3983          "in": "path",
  3984          "name": "namespace",
  3985          "required": true,
  3986          "schema": {
  3987            "type": "string",
  3988            "uniqueItems": true
  3989          }
  3990        },
  3991        {
  3992          "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
  3993          "in": "query",
  3994          "name": "pretty",
  3995          "schema": {
  3996            "type": "string",
  3997            "uniqueItems": true
  3998          }
  3999        }
  4000      ],
  4001      "patch": {
  4002        "description": "partially update the specified RoleBinding",
  4003        "operationId": "patchRbacAuthorizationV1NamespacedRoleBinding",
  4004        "parameters": [
  4005          {
  4006            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
  4007            "in": "query",
  4008            "name": "dryRun",
  4009            "schema": {
  4010              "type": "string",
  4011              "uniqueItems": true
  4012            }
  4013          },
  4014          {
  4015            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
  4016            "in": "query",
  4017            "name": "fieldManager",
  4018            "schema": {
  4019              "type": "string",
  4020              "uniqueItems": true
  4021            }
  4022          },
  4023          {
  4024            "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
  4025            "in": "query",
  4026            "name": "fieldValidation",
  4027            "schema": {
  4028              "type": "string",
  4029              "uniqueItems": true
  4030            }
  4031          },
  4032          {
  4033            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
  4034            "in": "query",
  4035            "name": "force",
  4036            "schema": {
  4037              "type": "boolean",
  4038              "uniqueItems": true
  4039            }
  4040          }
  4041        ],
  4042        "requestBody": {
  4043          "content": {
  4044            "application/apply-patch+yaml": {
  4045              "schema": {
  4046                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
  4047              }
  4048            },
  4049            "application/json-patch+json": {
  4050              "schema": {
  4051                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
  4052              }
  4053            },
  4054            "application/merge-patch+json": {
  4055              "schema": {
  4056                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
  4057              }
  4058            },
  4059            "application/strategic-merge-patch+json": {
  4060              "schema": {
  4061                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
  4062              }
  4063            }
  4064          },
  4065          "required": true
  4066        },
  4067        "responses": {
  4068          "200": {
  4069            "content": {
  4070              "application/json": {
  4071                "schema": {
  4072                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding"
  4073                }
  4074              },
  4075              "application/vnd.kubernetes.protobuf": {
  4076                "schema": {
  4077                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding"
  4078                }
  4079              },
  4080              "application/yaml": {
  4081                "schema": {
  4082                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding"
  4083                }
  4084              }
  4085            },
  4086            "description": "OK"
  4087          },
  4088          "201": {
  4089            "content": {
  4090              "application/json": {
  4091                "schema": {
  4092                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding"
  4093                }
  4094              },
  4095              "application/vnd.kubernetes.protobuf": {
  4096                "schema": {
  4097                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding"
  4098                }
  4099              },
  4100              "application/yaml": {
  4101                "schema": {
  4102                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding"
  4103                }
  4104              }
  4105            },
  4106            "description": "Created"
  4107          },
  4108          "401": {
  4109            "description": "Unauthorized"
  4110          }
  4111        },
  4112        "tags": [
  4113          "rbacAuthorization_v1"
  4114        ],
  4115        "x-kubernetes-action": "patch",
  4116        "x-kubernetes-group-version-kind": {
  4117          "group": "rbac.authorization.k8s.io",
  4118          "kind": "RoleBinding",
  4119          "version": "v1"
  4120        }
  4121      },
  4122      "put": {
  4123        "description": "replace the specified RoleBinding",
  4124        "operationId": "replaceRbacAuthorizationV1NamespacedRoleBinding",
  4125        "parameters": [
  4126          {
  4127            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
  4128            "in": "query",
  4129            "name": "dryRun",
  4130            "schema": {
  4131              "type": "string",
  4132              "uniqueItems": true
  4133            }
  4134          },
  4135          {
  4136            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
  4137            "in": "query",
  4138            "name": "fieldManager",
  4139            "schema": {
  4140              "type": "string",
  4141              "uniqueItems": true
  4142            }
  4143          },
  4144          {
  4145            "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
  4146            "in": "query",
  4147            "name": "fieldValidation",
  4148            "schema": {
  4149              "type": "string",
  4150              "uniqueItems": true
  4151            }
  4152          }
  4153        ],
  4154        "requestBody": {
  4155          "content": {
  4156            "*/*": {
  4157              "schema": {
  4158                "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding"
  4159              }
  4160            }
  4161          },
  4162          "required": true
  4163        },
  4164        "responses": {
  4165          "200": {
  4166            "content": {
  4167              "application/json": {
  4168                "schema": {
  4169                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding"
  4170                }
  4171              },
  4172              "application/vnd.kubernetes.protobuf": {
  4173                "schema": {
  4174                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding"
  4175                }
  4176              },
  4177              "application/yaml": {
  4178                "schema": {
  4179                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding"
  4180                }
  4181              }
  4182            },
  4183            "description": "OK"
  4184          },
  4185          "201": {
  4186            "content": {
  4187              "application/json": {
  4188                "schema": {
  4189                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding"
  4190                }
  4191              },
  4192              "application/vnd.kubernetes.protobuf": {
  4193                "schema": {
  4194                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding"
  4195                }
  4196              },
  4197              "application/yaml": {
  4198                "schema": {
  4199                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBinding"
  4200                }
  4201              }
  4202            },
  4203            "description": "Created"
  4204          },
  4205          "401": {
  4206            "description": "Unauthorized"
  4207          }
  4208        },
  4209        "tags": [
  4210          "rbacAuthorization_v1"
  4211        ],
  4212        "x-kubernetes-action": "put",
  4213        "x-kubernetes-group-version-kind": {
  4214          "group": "rbac.authorization.k8s.io",
  4215          "kind": "RoleBinding",
  4216          "version": "v1"
  4217        }
  4218      }
  4219    },
  4220    "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles": {
  4221      "delete": {
  4222        "description": "delete collection of Role",
  4223        "operationId": "deleteRbacAuthorizationV1CollectionNamespacedRole",
  4224        "parameters": [
  4225          {
  4226            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
  4227            "in": "query",
  4228            "name": "continue",
  4229            "schema": {
  4230              "type": "string",
  4231              "uniqueItems": true
  4232            }
  4233          },
  4234          {
  4235            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
  4236            "in": "query",
  4237            "name": "dryRun",
  4238            "schema": {
  4239              "type": "string",
  4240              "uniqueItems": true
  4241            }
  4242          },
  4243          {
  4244            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  4245            "in": "query",
  4246            "name": "fieldSelector",
  4247            "schema": {
  4248              "type": "string",
  4249              "uniqueItems": true
  4250            }
  4251          },
  4252          {
  4253            "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.",
  4254            "in": "query",
  4255            "name": "gracePeriodSeconds",
  4256            "schema": {
  4257              "type": "integer",
  4258              "uniqueItems": true
  4259            }
  4260          },
  4261          {
  4262            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  4263            "in": "query",
  4264            "name": "labelSelector",
  4265            "schema": {
  4266              "type": "string",
  4267              "uniqueItems": true
  4268            }
  4269          },
  4270          {
  4271            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
  4272            "in": "query",
  4273            "name": "limit",
  4274            "schema": {
  4275              "type": "integer",
  4276              "uniqueItems": true
  4277            }
  4278          },
  4279          {
  4280            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
  4281            "in": "query",
  4282            "name": "orphanDependents",
  4283            "schema": {
  4284              "type": "boolean",
  4285              "uniqueItems": true
  4286            }
  4287          },
  4288          {
  4289            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
  4290            "in": "query",
  4291            "name": "propagationPolicy",
  4292            "schema": {
  4293              "type": "string",
  4294              "uniqueItems": true
  4295            }
  4296          },
  4297          {
  4298            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  4299            "in": "query",
  4300            "name": "resourceVersion",
  4301            "schema": {
  4302              "type": "string",
  4303              "uniqueItems": true
  4304            }
  4305          },
  4306          {
  4307            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  4308            "in": "query",
  4309            "name": "resourceVersionMatch",
  4310            "schema": {
  4311              "type": "string",
  4312              "uniqueItems": true
  4313            }
  4314          },
  4315          {
  4316            "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event  will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n  is interpreted as \"data at least as new as the provided `resourceVersion`\"\n  and the bookmark event is send when the state is synced\n  to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n  If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n  bookmark event is send when the state is synced at least to the moment\n  when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n  Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
  4317            "in": "query",
  4318            "name": "sendInitialEvents",
  4319            "schema": {
  4320              "type": "boolean",
  4321              "uniqueItems": true
  4322            }
  4323          },
  4324          {
  4325            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
  4326            "in": "query",
  4327            "name": "timeoutSeconds",
  4328            "schema": {
  4329              "type": "integer",
  4330              "uniqueItems": true
  4331            }
  4332          }
  4333        ],
  4334        "requestBody": {
  4335          "content": {
  4336            "*/*": {
  4337              "schema": {
  4338                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
  4339              }
  4340            }
  4341          }
  4342        },
  4343        "responses": {
  4344          "200": {
  4345            "content": {
  4346              "application/json": {
  4347                "schema": {
  4348                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  4349                }
  4350              },
  4351              "application/vnd.kubernetes.protobuf": {
  4352                "schema": {
  4353                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  4354                }
  4355              },
  4356              "application/yaml": {
  4357                "schema": {
  4358                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  4359                }
  4360              }
  4361            },
  4362            "description": "OK"
  4363          },
  4364          "401": {
  4365            "description": "Unauthorized"
  4366          }
  4367        },
  4368        "tags": [
  4369          "rbacAuthorization_v1"
  4370        ],
  4371        "x-kubernetes-action": "deletecollection",
  4372        "x-kubernetes-group-version-kind": {
  4373          "group": "rbac.authorization.k8s.io",
  4374          "kind": "Role",
  4375          "version": "v1"
  4376        }
  4377      },
  4378      "get": {
  4379        "description": "list or watch objects of kind Role",
  4380        "operationId": "listRbacAuthorizationV1NamespacedRole",
  4381        "parameters": [
  4382          {
  4383            "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
  4384            "in": "query",
  4385            "name": "allowWatchBookmarks",
  4386            "schema": {
  4387              "type": "boolean",
  4388              "uniqueItems": true
  4389            }
  4390          },
  4391          {
  4392            "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
  4393            "in": "query",
  4394            "name": "continue",
  4395            "schema": {
  4396              "type": "string",
  4397              "uniqueItems": true
  4398            }
  4399          },
  4400          {
  4401            "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  4402            "in": "query",
  4403            "name": "fieldSelector",
  4404            "schema": {
  4405              "type": "string",
  4406              "uniqueItems": true
  4407            }
  4408          },
  4409          {
  4410            "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  4411            "in": "query",
  4412            "name": "labelSelector",
  4413            "schema": {
  4414              "type": "string",
  4415              "uniqueItems": true
  4416            }
  4417          },
  4418          {
  4419            "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
  4420            "in": "query",
  4421            "name": "limit",
  4422            "schema": {
  4423              "type": "integer",
  4424              "uniqueItems": true
  4425            }
  4426          },
  4427          {
  4428            "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  4429            "in": "query",
  4430            "name": "resourceVersion",
  4431            "schema": {
  4432              "type": "string",
  4433              "uniqueItems": true
  4434            }
  4435          },
  4436          {
  4437            "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  4438            "in": "query",
  4439            "name": "resourceVersionMatch",
  4440            "schema": {
  4441              "type": "string",
  4442              "uniqueItems": true
  4443            }
  4444          },
  4445          {
  4446            "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event  will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n  is interpreted as \"data at least as new as the provided `resourceVersion`\"\n  and the bookmark event is send when the state is synced\n  to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n  If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n  bookmark event is send when the state is synced at least to the moment\n  when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n  Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
  4447            "in": "query",
  4448            "name": "sendInitialEvents",
  4449            "schema": {
  4450              "type": "boolean",
  4451              "uniqueItems": true
  4452            }
  4453          },
  4454          {
  4455            "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
  4456            "in": "query",
  4457            "name": "timeoutSeconds",
  4458            "schema": {
  4459              "type": "integer",
  4460              "uniqueItems": true
  4461            }
  4462          },
  4463          {
  4464            "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  4465            "in": "query",
  4466            "name": "watch",
  4467            "schema": {
  4468              "type": "boolean",
  4469              "uniqueItems": true
  4470            }
  4471          }
  4472        ],
  4473        "responses": {
  4474          "200": {
  4475            "content": {
  4476              "application/json": {
  4477                "schema": {
  4478                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleList"
  4479                }
  4480              },
  4481              "application/json;stream=watch": {
  4482                "schema": {
  4483                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleList"
  4484                }
  4485              },
  4486              "application/vnd.kubernetes.protobuf": {
  4487                "schema": {
  4488                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleList"
  4489                }
  4490              },
  4491              "application/vnd.kubernetes.protobuf;stream=watch": {
  4492                "schema": {
  4493                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleList"
  4494                }
  4495              },
  4496              "application/yaml": {
  4497                "schema": {
  4498                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleList"
  4499                }
  4500              }
  4501            },
  4502            "description": "OK"
  4503          },
  4504          "401": {
  4505            "description": "Unauthorized"
  4506          }
  4507        },
  4508        "tags": [
  4509          "rbacAuthorization_v1"
  4510        ],
  4511        "x-kubernetes-action": "list",
  4512        "x-kubernetes-group-version-kind": {
  4513          "group": "rbac.authorization.k8s.io",
  4514          "kind": "Role",
  4515          "version": "v1"
  4516        }
  4517      },
  4518      "parameters": [
  4519        {
  4520          "description": "object name and auth scope, such as for teams and projects",
  4521          "in": "path",
  4522          "name": "namespace",
  4523          "required": true,
  4524          "schema": {
  4525            "type": "string",
  4526            "uniqueItems": true
  4527          }
  4528        },
  4529        {
  4530          "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
  4531          "in": "query",
  4532          "name": "pretty",
  4533          "schema": {
  4534            "type": "string",
  4535            "uniqueItems": true
  4536          }
  4537        }
  4538      ],
  4539      "post": {
  4540        "description": "create a Role",
  4541        "operationId": "createRbacAuthorizationV1NamespacedRole",
  4542        "parameters": [
  4543          {
  4544            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
  4545            "in": "query",
  4546            "name": "dryRun",
  4547            "schema": {
  4548              "type": "string",
  4549              "uniqueItems": true
  4550            }
  4551          },
  4552          {
  4553            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
  4554            "in": "query",
  4555            "name": "fieldManager",
  4556            "schema": {
  4557              "type": "string",
  4558              "uniqueItems": true
  4559            }
  4560          },
  4561          {
  4562            "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
  4563            "in": "query",
  4564            "name": "fieldValidation",
  4565            "schema": {
  4566              "type": "string",
  4567              "uniqueItems": true
  4568            }
  4569          }
  4570        ],
  4571        "requestBody": {
  4572          "content": {
  4573            "*/*": {
  4574              "schema": {
  4575                "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role"
  4576              }
  4577            }
  4578          },
  4579          "required": true
  4580        },
  4581        "responses": {
  4582          "200": {
  4583            "content": {
  4584              "application/json": {
  4585                "schema": {
  4586                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role"
  4587                }
  4588              },
  4589              "application/vnd.kubernetes.protobuf": {
  4590                "schema": {
  4591                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role"
  4592                }
  4593              },
  4594              "application/yaml": {
  4595                "schema": {
  4596                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role"
  4597                }
  4598              }
  4599            },
  4600            "description": "OK"
  4601          },
  4602          "201": {
  4603            "content": {
  4604              "application/json": {
  4605                "schema": {
  4606                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role"
  4607                }
  4608              },
  4609              "application/vnd.kubernetes.protobuf": {
  4610                "schema": {
  4611                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role"
  4612                }
  4613              },
  4614              "application/yaml": {
  4615                "schema": {
  4616                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role"
  4617                }
  4618              }
  4619            },
  4620            "description": "Created"
  4621          },
  4622          "202": {
  4623            "content": {
  4624              "application/json": {
  4625                "schema": {
  4626                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role"
  4627                }
  4628              },
  4629              "application/vnd.kubernetes.protobuf": {
  4630                "schema": {
  4631                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role"
  4632                }
  4633              },
  4634              "application/yaml": {
  4635                "schema": {
  4636                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role"
  4637                }
  4638              }
  4639            },
  4640            "description": "Accepted"
  4641          },
  4642          "401": {
  4643            "description": "Unauthorized"
  4644          }
  4645        },
  4646        "tags": [
  4647          "rbacAuthorization_v1"
  4648        ],
  4649        "x-kubernetes-action": "post",
  4650        "x-kubernetes-group-version-kind": {
  4651          "group": "rbac.authorization.k8s.io",
  4652          "kind": "Role",
  4653          "version": "v1"
  4654        }
  4655      }
  4656    },
  4657    "/apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles/{name}": {
  4658      "delete": {
  4659        "description": "delete a Role",
  4660        "operationId": "deleteRbacAuthorizationV1NamespacedRole",
  4661        "parameters": [
  4662          {
  4663            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
  4664            "in": "query",
  4665            "name": "dryRun",
  4666            "schema": {
  4667              "type": "string",
  4668              "uniqueItems": true
  4669            }
  4670          },
  4671          {
  4672            "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.",
  4673            "in": "query",
  4674            "name": "gracePeriodSeconds",
  4675            "schema": {
  4676              "type": "integer",
  4677              "uniqueItems": true
  4678            }
  4679          },
  4680          {
  4681            "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
  4682            "in": "query",
  4683            "name": "orphanDependents",
  4684            "schema": {
  4685              "type": "boolean",
  4686              "uniqueItems": true
  4687            }
  4688          },
  4689          {
  4690            "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.",
  4691            "in": "query",
  4692            "name": "propagationPolicy",
  4693            "schema": {
  4694              "type": "string",
  4695              "uniqueItems": true
  4696            }
  4697          }
  4698        ],
  4699        "requestBody": {
  4700          "content": {
  4701            "*/*": {
  4702              "schema": {
  4703                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions"
  4704              }
  4705            }
  4706          }
  4707        },
  4708        "responses": {
  4709          "200": {
  4710            "content": {
  4711              "application/json": {
  4712                "schema": {
  4713                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  4714                }
  4715              },
  4716              "application/vnd.kubernetes.protobuf": {
  4717                "schema": {
  4718                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  4719                }
  4720              },
  4721              "application/yaml": {
  4722                "schema": {
  4723                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  4724                }
  4725              }
  4726            },
  4727            "description": "OK"
  4728          },
  4729          "202": {
  4730            "content": {
  4731              "application/json": {
  4732                "schema": {
  4733                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  4734                }
  4735              },
  4736              "application/vnd.kubernetes.protobuf": {
  4737                "schema": {
  4738                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  4739                }
  4740              },
  4741              "application/yaml": {
  4742                "schema": {
  4743                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status"
  4744                }
  4745              }
  4746            },
  4747            "description": "Accepted"
  4748          },
  4749          "401": {
  4750            "description": "Unauthorized"
  4751          }
  4752        },
  4753        "tags": [
  4754          "rbacAuthorization_v1"
  4755        ],
  4756        "x-kubernetes-action": "delete",
  4757        "x-kubernetes-group-version-kind": {
  4758          "group": "rbac.authorization.k8s.io",
  4759          "kind": "Role",
  4760          "version": "v1"
  4761        }
  4762      },
  4763      "get": {
  4764        "description": "read the specified Role",
  4765        "operationId": "readRbacAuthorizationV1NamespacedRole",
  4766        "responses": {
  4767          "200": {
  4768            "content": {
  4769              "application/json": {
  4770                "schema": {
  4771                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role"
  4772                }
  4773              },
  4774              "application/vnd.kubernetes.protobuf": {
  4775                "schema": {
  4776                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role"
  4777                }
  4778              },
  4779              "application/yaml": {
  4780                "schema": {
  4781                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role"
  4782                }
  4783              }
  4784            },
  4785            "description": "OK"
  4786          },
  4787          "401": {
  4788            "description": "Unauthorized"
  4789          }
  4790        },
  4791        "tags": [
  4792          "rbacAuthorization_v1"
  4793        ],
  4794        "x-kubernetes-action": "get",
  4795        "x-kubernetes-group-version-kind": {
  4796          "group": "rbac.authorization.k8s.io",
  4797          "kind": "Role",
  4798          "version": "v1"
  4799        }
  4800      },
  4801      "parameters": [
  4802        {
  4803          "description": "name of the Role",
  4804          "in": "path",
  4805          "name": "name",
  4806          "required": true,
  4807          "schema": {
  4808            "type": "string",
  4809            "uniqueItems": true
  4810          }
  4811        },
  4812        {
  4813          "description": "object name and auth scope, such as for teams and projects",
  4814          "in": "path",
  4815          "name": "namespace",
  4816          "required": true,
  4817          "schema": {
  4818            "type": "string",
  4819            "uniqueItems": true
  4820          }
  4821        },
  4822        {
  4823          "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
  4824          "in": "query",
  4825          "name": "pretty",
  4826          "schema": {
  4827            "type": "string",
  4828            "uniqueItems": true
  4829          }
  4830        }
  4831      ],
  4832      "patch": {
  4833        "description": "partially update the specified Role",
  4834        "operationId": "patchRbacAuthorizationV1NamespacedRole",
  4835        "parameters": [
  4836          {
  4837            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
  4838            "in": "query",
  4839            "name": "dryRun",
  4840            "schema": {
  4841              "type": "string",
  4842              "uniqueItems": true
  4843            }
  4844          },
  4845          {
  4846            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).",
  4847            "in": "query",
  4848            "name": "fieldManager",
  4849            "schema": {
  4850              "type": "string",
  4851              "uniqueItems": true
  4852            }
  4853          },
  4854          {
  4855            "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
  4856            "in": "query",
  4857            "name": "fieldValidation",
  4858            "schema": {
  4859              "type": "string",
  4860              "uniqueItems": true
  4861            }
  4862          },
  4863          {
  4864            "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
  4865            "in": "query",
  4866            "name": "force",
  4867            "schema": {
  4868              "type": "boolean",
  4869              "uniqueItems": true
  4870            }
  4871          }
  4872        ],
  4873        "requestBody": {
  4874          "content": {
  4875            "application/apply-patch+yaml": {
  4876              "schema": {
  4877                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
  4878              }
  4879            },
  4880            "application/json-patch+json": {
  4881              "schema": {
  4882                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
  4883              }
  4884            },
  4885            "application/merge-patch+json": {
  4886              "schema": {
  4887                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
  4888              }
  4889            },
  4890            "application/strategic-merge-patch+json": {
  4891              "schema": {
  4892                "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch"
  4893              }
  4894            }
  4895          },
  4896          "required": true
  4897        },
  4898        "responses": {
  4899          "200": {
  4900            "content": {
  4901              "application/json": {
  4902                "schema": {
  4903                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role"
  4904                }
  4905              },
  4906              "application/vnd.kubernetes.protobuf": {
  4907                "schema": {
  4908                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role"
  4909                }
  4910              },
  4911              "application/yaml": {
  4912                "schema": {
  4913                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role"
  4914                }
  4915              }
  4916            },
  4917            "description": "OK"
  4918          },
  4919          "201": {
  4920            "content": {
  4921              "application/json": {
  4922                "schema": {
  4923                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role"
  4924                }
  4925              },
  4926              "application/vnd.kubernetes.protobuf": {
  4927                "schema": {
  4928                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role"
  4929                }
  4930              },
  4931              "application/yaml": {
  4932                "schema": {
  4933                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role"
  4934                }
  4935              }
  4936            },
  4937            "description": "Created"
  4938          },
  4939          "401": {
  4940            "description": "Unauthorized"
  4941          }
  4942        },
  4943        "tags": [
  4944          "rbacAuthorization_v1"
  4945        ],
  4946        "x-kubernetes-action": "patch",
  4947        "x-kubernetes-group-version-kind": {
  4948          "group": "rbac.authorization.k8s.io",
  4949          "kind": "Role",
  4950          "version": "v1"
  4951        }
  4952      },
  4953      "put": {
  4954        "description": "replace the specified Role",
  4955        "operationId": "replaceRbacAuthorizationV1NamespacedRole",
  4956        "parameters": [
  4957          {
  4958            "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
  4959            "in": "query",
  4960            "name": "dryRun",
  4961            "schema": {
  4962              "type": "string",
  4963              "uniqueItems": true
  4964            }
  4965          },
  4966          {
  4967            "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
  4968            "in": "query",
  4969            "name": "fieldManager",
  4970            "schema": {
  4971              "type": "string",
  4972              "uniqueItems": true
  4973            }
  4974          },
  4975          {
  4976            "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.",
  4977            "in": "query",
  4978            "name": "fieldValidation",
  4979            "schema": {
  4980              "type": "string",
  4981              "uniqueItems": true
  4982            }
  4983          }
  4984        ],
  4985        "requestBody": {
  4986          "content": {
  4987            "*/*": {
  4988              "schema": {
  4989                "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role"
  4990              }
  4991            }
  4992          },
  4993          "required": true
  4994        },
  4995        "responses": {
  4996          "200": {
  4997            "content": {
  4998              "application/json": {
  4999                "schema": {
  5000                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role"
  5001                }
  5002              },
  5003              "application/vnd.kubernetes.protobuf": {
  5004                "schema": {
  5005                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role"
  5006                }
  5007              },
  5008              "application/yaml": {
  5009                "schema": {
  5010                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role"
  5011                }
  5012              }
  5013            },
  5014            "description": "OK"
  5015          },
  5016          "201": {
  5017            "content": {
  5018              "application/json": {
  5019                "schema": {
  5020                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role"
  5021                }
  5022              },
  5023              "application/vnd.kubernetes.protobuf": {
  5024                "schema": {
  5025                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role"
  5026                }
  5027              },
  5028              "application/yaml": {
  5029                "schema": {
  5030                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.Role"
  5031                }
  5032              }
  5033            },
  5034            "description": "Created"
  5035          },
  5036          "401": {
  5037            "description": "Unauthorized"
  5038          }
  5039        },
  5040        "tags": [
  5041          "rbacAuthorization_v1"
  5042        ],
  5043        "x-kubernetes-action": "put",
  5044        "x-kubernetes-group-version-kind": {
  5045          "group": "rbac.authorization.k8s.io",
  5046          "kind": "Role",
  5047          "version": "v1"
  5048        }
  5049      }
  5050    },
  5051    "/apis/rbac.authorization.k8s.io/v1/rolebindings": {
  5052      "get": {
  5053        "description": "list or watch objects of kind RoleBinding",
  5054        "operationId": "listRbacAuthorizationV1RoleBindingForAllNamespaces",
  5055        "responses": {
  5056          "200": {
  5057            "content": {
  5058              "application/json": {
  5059                "schema": {
  5060                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBindingList"
  5061                }
  5062              },
  5063              "application/json;stream=watch": {
  5064                "schema": {
  5065                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBindingList"
  5066                }
  5067              },
  5068              "application/vnd.kubernetes.protobuf": {
  5069                "schema": {
  5070                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBindingList"
  5071                }
  5072              },
  5073              "application/vnd.kubernetes.protobuf;stream=watch": {
  5074                "schema": {
  5075                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBindingList"
  5076                }
  5077              },
  5078              "application/yaml": {
  5079                "schema": {
  5080                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleBindingList"
  5081                }
  5082              }
  5083            },
  5084            "description": "OK"
  5085          },
  5086          "401": {
  5087            "description": "Unauthorized"
  5088          }
  5089        },
  5090        "tags": [
  5091          "rbacAuthorization_v1"
  5092        ],
  5093        "x-kubernetes-action": "list",
  5094        "x-kubernetes-group-version-kind": {
  5095          "group": "rbac.authorization.k8s.io",
  5096          "kind": "RoleBinding",
  5097          "version": "v1"
  5098        }
  5099      },
  5100      "parameters": [
  5101        {
  5102          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
  5103          "in": "query",
  5104          "name": "allowWatchBookmarks",
  5105          "schema": {
  5106            "type": "boolean",
  5107            "uniqueItems": true
  5108          }
  5109        },
  5110        {
  5111          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
  5112          "in": "query",
  5113          "name": "continue",
  5114          "schema": {
  5115            "type": "string",
  5116            "uniqueItems": true
  5117          }
  5118        },
  5119        {
  5120          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  5121          "in": "query",
  5122          "name": "fieldSelector",
  5123          "schema": {
  5124            "type": "string",
  5125            "uniqueItems": true
  5126          }
  5127        },
  5128        {
  5129          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  5130          "in": "query",
  5131          "name": "labelSelector",
  5132          "schema": {
  5133            "type": "string",
  5134            "uniqueItems": true
  5135          }
  5136        },
  5137        {
  5138          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
  5139          "in": "query",
  5140          "name": "limit",
  5141          "schema": {
  5142            "type": "integer",
  5143            "uniqueItems": true
  5144          }
  5145        },
  5146        {
  5147          "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
  5148          "in": "query",
  5149          "name": "pretty",
  5150          "schema": {
  5151            "type": "string",
  5152            "uniqueItems": true
  5153          }
  5154        },
  5155        {
  5156          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  5157          "in": "query",
  5158          "name": "resourceVersion",
  5159          "schema": {
  5160            "type": "string",
  5161            "uniqueItems": true
  5162          }
  5163        },
  5164        {
  5165          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  5166          "in": "query",
  5167          "name": "resourceVersionMatch",
  5168          "schema": {
  5169            "type": "string",
  5170            "uniqueItems": true
  5171          }
  5172        },
  5173        {
  5174          "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event  will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n  is interpreted as \"data at least as new as the provided `resourceVersion`\"\n  and the bookmark event is send when the state is synced\n  to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n  If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n  bookmark event is send when the state is synced at least to the moment\n  when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n  Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
  5175          "in": "query",
  5176          "name": "sendInitialEvents",
  5177          "schema": {
  5178            "type": "boolean",
  5179            "uniqueItems": true
  5180          }
  5181        },
  5182        {
  5183          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
  5184          "in": "query",
  5185          "name": "timeoutSeconds",
  5186          "schema": {
  5187            "type": "integer",
  5188            "uniqueItems": true
  5189          }
  5190        },
  5191        {
  5192          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  5193          "in": "query",
  5194          "name": "watch",
  5195          "schema": {
  5196            "type": "boolean",
  5197            "uniqueItems": true
  5198          }
  5199        }
  5200      ]
  5201    },
  5202    "/apis/rbac.authorization.k8s.io/v1/roles": {
  5203      "get": {
  5204        "description": "list or watch objects of kind Role",
  5205        "operationId": "listRbacAuthorizationV1RoleForAllNamespaces",
  5206        "responses": {
  5207          "200": {
  5208            "content": {
  5209              "application/json": {
  5210                "schema": {
  5211                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleList"
  5212                }
  5213              },
  5214              "application/json;stream=watch": {
  5215                "schema": {
  5216                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleList"
  5217                }
  5218              },
  5219              "application/vnd.kubernetes.protobuf": {
  5220                "schema": {
  5221                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleList"
  5222                }
  5223              },
  5224              "application/vnd.kubernetes.protobuf;stream=watch": {
  5225                "schema": {
  5226                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleList"
  5227                }
  5228              },
  5229              "application/yaml": {
  5230                "schema": {
  5231                  "$ref": "#/components/schemas/io.k8s.api.rbac.v1.RoleList"
  5232                }
  5233              }
  5234            },
  5235            "description": "OK"
  5236          },
  5237          "401": {
  5238            "description": "Unauthorized"
  5239          }
  5240        },
  5241        "tags": [
  5242          "rbacAuthorization_v1"
  5243        ],
  5244        "x-kubernetes-action": "list",
  5245        "x-kubernetes-group-version-kind": {
  5246          "group": "rbac.authorization.k8s.io",
  5247          "kind": "Role",
  5248          "version": "v1"
  5249        }
  5250      },
  5251      "parameters": [
  5252        {
  5253          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
  5254          "in": "query",
  5255          "name": "allowWatchBookmarks",
  5256          "schema": {
  5257            "type": "boolean",
  5258            "uniqueItems": true
  5259          }
  5260        },
  5261        {
  5262          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
  5263          "in": "query",
  5264          "name": "continue",
  5265          "schema": {
  5266            "type": "string",
  5267            "uniqueItems": true
  5268          }
  5269        },
  5270        {
  5271          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  5272          "in": "query",
  5273          "name": "fieldSelector",
  5274          "schema": {
  5275            "type": "string",
  5276            "uniqueItems": true
  5277          }
  5278        },
  5279        {
  5280          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  5281          "in": "query",
  5282          "name": "labelSelector",
  5283          "schema": {
  5284            "type": "string",
  5285            "uniqueItems": true
  5286          }
  5287        },
  5288        {
  5289          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
  5290          "in": "query",
  5291          "name": "limit",
  5292          "schema": {
  5293            "type": "integer",
  5294            "uniqueItems": true
  5295          }
  5296        },
  5297        {
  5298          "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
  5299          "in": "query",
  5300          "name": "pretty",
  5301          "schema": {
  5302            "type": "string",
  5303            "uniqueItems": true
  5304          }
  5305        },
  5306        {
  5307          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  5308          "in": "query",
  5309          "name": "resourceVersion",
  5310          "schema": {
  5311            "type": "string",
  5312            "uniqueItems": true
  5313          }
  5314        },
  5315        {
  5316          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  5317          "in": "query",
  5318          "name": "resourceVersionMatch",
  5319          "schema": {
  5320            "type": "string",
  5321            "uniqueItems": true
  5322          }
  5323        },
  5324        {
  5325          "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event  will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n  is interpreted as \"data at least as new as the provided `resourceVersion`\"\n  and the bookmark event is send when the state is synced\n  to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n  If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n  bookmark event is send when the state is synced at least to the moment\n  when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n  Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
  5326          "in": "query",
  5327          "name": "sendInitialEvents",
  5328          "schema": {
  5329            "type": "boolean",
  5330            "uniqueItems": true
  5331          }
  5332        },
  5333        {
  5334          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
  5335          "in": "query",
  5336          "name": "timeoutSeconds",
  5337          "schema": {
  5338            "type": "integer",
  5339            "uniqueItems": true
  5340          }
  5341        },
  5342        {
  5343          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  5344          "in": "query",
  5345          "name": "watch",
  5346          "schema": {
  5347            "type": "boolean",
  5348            "uniqueItems": true
  5349          }
  5350        }
  5351      ]
  5352    },
  5353    "/apis/rbac.authorization.k8s.io/v1/watch/clusterrolebindings": {
  5354      "get": {
  5355        "description": "watch individual changes to a list of ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
  5356        "operationId": "watchRbacAuthorizationV1ClusterRoleBindingList",
  5357        "responses": {
  5358          "200": {
  5359            "content": {
  5360              "application/json": {
  5361                "schema": {
  5362                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  5363                }
  5364              },
  5365              "application/json;stream=watch": {
  5366                "schema": {
  5367                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  5368                }
  5369              },
  5370              "application/vnd.kubernetes.protobuf": {
  5371                "schema": {
  5372                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  5373                }
  5374              },
  5375              "application/vnd.kubernetes.protobuf;stream=watch": {
  5376                "schema": {
  5377                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  5378                }
  5379              },
  5380              "application/yaml": {
  5381                "schema": {
  5382                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  5383                }
  5384              }
  5385            },
  5386            "description": "OK"
  5387          },
  5388          "401": {
  5389            "description": "Unauthorized"
  5390          }
  5391        },
  5392        "tags": [
  5393          "rbacAuthorization_v1"
  5394        ],
  5395        "x-kubernetes-action": "watchlist",
  5396        "x-kubernetes-group-version-kind": {
  5397          "group": "rbac.authorization.k8s.io",
  5398          "kind": "ClusterRoleBinding",
  5399          "version": "v1"
  5400        }
  5401      },
  5402      "parameters": [
  5403        {
  5404          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
  5405          "in": "query",
  5406          "name": "allowWatchBookmarks",
  5407          "schema": {
  5408            "type": "boolean",
  5409            "uniqueItems": true
  5410          }
  5411        },
  5412        {
  5413          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
  5414          "in": "query",
  5415          "name": "continue",
  5416          "schema": {
  5417            "type": "string",
  5418            "uniqueItems": true
  5419          }
  5420        },
  5421        {
  5422          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  5423          "in": "query",
  5424          "name": "fieldSelector",
  5425          "schema": {
  5426            "type": "string",
  5427            "uniqueItems": true
  5428          }
  5429        },
  5430        {
  5431          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  5432          "in": "query",
  5433          "name": "labelSelector",
  5434          "schema": {
  5435            "type": "string",
  5436            "uniqueItems": true
  5437          }
  5438        },
  5439        {
  5440          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
  5441          "in": "query",
  5442          "name": "limit",
  5443          "schema": {
  5444            "type": "integer",
  5445            "uniqueItems": true
  5446          }
  5447        },
  5448        {
  5449          "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
  5450          "in": "query",
  5451          "name": "pretty",
  5452          "schema": {
  5453            "type": "string",
  5454            "uniqueItems": true
  5455          }
  5456        },
  5457        {
  5458          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  5459          "in": "query",
  5460          "name": "resourceVersion",
  5461          "schema": {
  5462            "type": "string",
  5463            "uniqueItems": true
  5464          }
  5465        },
  5466        {
  5467          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  5468          "in": "query",
  5469          "name": "resourceVersionMatch",
  5470          "schema": {
  5471            "type": "string",
  5472            "uniqueItems": true
  5473          }
  5474        },
  5475        {
  5476          "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event  will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n  is interpreted as \"data at least as new as the provided `resourceVersion`\"\n  and the bookmark event is send when the state is synced\n  to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n  If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n  bookmark event is send when the state is synced at least to the moment\n  when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n  Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
  5477          "in": "query",
  5478          "name": "sendInitialEvents",
  5479          "schema": {
  5480            "type": "boolean",
  5481            "uniqueItems": true
  5482          }
  5483        },
  5484        {
  5485          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
  5486          "in": "query",
  5487          "name": "timeoutSeconds",
  5488          "schema": {
  5489            "type": "integer",
  5490            "uniqueItems": true
  5491          }
  5492        },
  5493        {
  5494          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  5495          "in": "query",
  5496          "name": "watch",
  5497          "schema": {
  5498            "type": "boolean",
  5499            "uniqueItems": true
  5500          }
  5501        }
  5502      ]
  5503    },
  5504    "/apis/rbac.authorization.k8s.io/v1/watch/clusterrolebindings/{name}": {
  5505      "get": {
  5506        "description": "watch changes to an object of kind ClusterRoleBinding. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
  5507        "operationId": "watchRbacAuthorizationV1ClusterRoleBinding",
  5508        "responses": {
  5509          "200": {
  5510            "content": {
  5511              "application/json": {
  5512                "schema": {
  5513                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  5514                }
  5515              },
  5516              "application/json;stream=watch": {
  5517                "schema": {
  5518                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  5519                }
  5520              },
  5521              "application/vnd.kubernetes.protobuf": {
  5522                "schema": {
  5523                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  5524                }
  5525              },
  5526              "application/vnd.kubernetes.protobuf;stream=watch": {
  5527                "schema": {
  5528                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  5529                }
  5530              },
  5531              "application/yaml": {
  5532                "schema": {
  5533                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  5534                }
  5535              }
  5536            },
  5537            "description": "OK"
  5538          },
  5539          "401": {
  5540            "description": "Unauthorized"
  5541          }
  5542        },
  5543        "tags": [
  5544          "rbacAuthorization_v1"
  5545        ],
  5546        "x-kubernetes-action": "watch",
  5547        "x-kubernetes-group-version-kind": {
  5548          "group": "rbac.authorization.k8s.io",
  5549          "kind": "ClusterRoleBinding",
  5550          "version": "v1"
  5551        }
  5552      },
  5553      "parameters": [
  5554        {
  5555          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
  5556          "in": "query",
  5557          "name": "allowWatchBookmarks",
  5558          "schema": {
  5559            "type": "boolean",
  5560            "uniqueItems": true
  5561          }
  5562        },
  5563        {
  5564          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
  5565          "in": "query",
  5566          "name": "continue",
  5567          "schema": {
  5568            "type": "string",
  5569            "uniqueItems": true
  5570          }
  5571        },
  5572        {
  5573          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  5574          "in": "query",
  5575          "name": "fieldSelector",
  5576          "schema": {
  5577            "type": "string",
  5578            "uniqueItems": true
  5579          }
  5580        },
  5581        {
  5582          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  5583          "in": "query",
  5584          "name": "labelSelector",
  5585          "schema": {
  5586            "type": "string",
  5587            "uniqueItems": true
  5588          }
  5589        },
  5590        {
  5591          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
  5592          "in": "query",
  5593          "name": "limit",
  5594          "schema": {
  5595            "type": "integer",
  5596            "uniqueItems": true
  5597          }
  5598        },
  5599        {
  5600          "description": "name of the ClusterRoleBinding",
  5601          "in": "path",
  5602          "name": "name",
  5603          "required": true,
  5604          "schema": {
  5605            "type": "string",
  5606            "uniqueItems": true
  5607          }
  5608        },
  5609        {
  5610          "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
  5611          "in": "query",
  5612          "name": "pretty",
  5613          "schema": {
  5614            "type": "string",
  5615            "uniqueItems": true
  5616          }
  5617        },
  5618        {
  5619          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  5620          "in": "query",
  5621          "name": "resourceVersion",
  5622          "schema": {
  5623            "type": "string",
  5624            "uniqueItems": true
  5625          }
  5626        },
  5627        {
  5628          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  5629          "in": "query",
  5630          "name": "resourceVersionMatch",
  5631          "schema": {
  5632            "type": "string",
  5633            "uniqueItems": true
  5634          }
  5635        },
  5636        {
  5637          "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event  will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n  is interpreted as \"data at least as new as the provided `resourceVersion`\"\n  and the bookmark event is send when the state is synced\n  to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n  If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n  bookmark event is send when the state is synced at least to the moment\n  when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n  Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
  5638          "in": "query",
  5639          "name": "sendInitialEvents",
  5640          "schema": {
  5641            "type": "boolean",
  5642            "uniqueItems": true
  5643          }
  5644        },
  5645        {
  5646          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
  5647          "in": "query",
  5648          "name": "timeoutSeconds",
  5649          "schema": {
  5650            "type": "integer",
  5651            "uniqueItems": true
  5652          }
  5653        },
  5654        {
  5655          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  5656          "in": "query",
  5657          "name": "watch",
  5658          "schema": {
  5659            "type": "boolean",
  5660            "uniqueItems": true
  5661          }
  5662        }
  5663      ]
  5664    },
  5665    "/apis/rbac.authorization.k8s.io/v1/watch/clusterroles": {
  5666      "get": {
  5667        "description": "watch individual changes to a list of ClusterRole. deprecated: use the 'watch' parameter with a list operation instead.",
  5668        "operationId": "watchRbacAuthorizationV1ClusterRoleList",
  5669        "responses": {
  5670          "200": {
  5671            "content": {
  5672              "application/json": {
  5673                "schema": {
  5674                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  5675                }
  5676              },
  5677              "application/json;stream=watch": {
  5678                "schema": {
  5679                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  5680                }
  5681              },
  5682              "application/vnd.kubernetes.protobuf": {
  5683                "schema": {
  5684                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  5685                }
  5686              },
  5687              "application/vnd.kubernetes.protobuf;stream=watch": {
  5688                "schema": {
  5689                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  5690                }
  5691              },
  5692              "application/yaml": {
  5693                "schema": {
  5694                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  5695                }
  5696              }
  5697            },
  5698            "description": "OK"
  5699          },
  5700          "401": {
  5701            "description": "Unauthorized"
  5702          }
  5703        },
  5704        "tags": [
  5705          "rbacAuthorization_v1"
  5706        ],
  5707        "x-kubernetes-action": "watchlist",
  5708        "x-kubernetes-group-version-kind": {
  5709          "group": "rbac.authorization.k8s.io",
  5710          "kind": "ClusterRole",
  5711          "version": "v1"
  5712        }
  5713      },
  5714      "parameters": [
  5715        {
  5716          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
  5717          "in": "query",
  5718          "name": "allowWatchBookmarks",
  5719          "schema": {
  5720            "type": "boolean",
  5721            "uniqueItems": true
  5722          }
  5723        },
  5724        {
  5725          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
  5726          "in": "query",
  5727          "name": "continue",
  5728          "schema": {
  5729            "type": "string",
  5730            "uniqueItems": true
  5731          }
  5732        },
  5733        {
  5734          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  5735          "in": "query",
  5736          "name": "fieldSelector",
  5737          "schema": {
  5738            "type": "string",
  5739            "uniqueItems": true
  5740          }
  5741        },
  5742        {
  5743          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  5744          "in": "query",
  5745          "name": "labelSelector",
  5746          "schema": {
  5747            "type": "string",
  5748            "uniqueItems": true
  5749          }
  5750        },
  5751        {
  5752          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
  5753          "in": "query",
  5754          "name": "limit",
  5755          "schema": {
  5756            "type": "integer",
  5757            "uniqueItems": true
  5758          }
  5759        },
  5760        {
  5761          "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
  5762          "in": "query",
  5763          "name": "pretty",
  5764          "schema": {
  5765            "type": "string",
  5766            "uniqueItems": true
  5767          }
  5768        },
  5769        {
  5770          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  5771          "in": "query",
  5772          "name": "resourceVersion",
  5773          "schema": {
  5774            "type": "string",
  5775            "uniqueItems": true
  5776          }
  5777        },
  5778        {
  5779          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  5780          "in": "query",
  5781          "name": "resourceVersionMatch",
  5782          "schema": {
  5783            "type": "string",
  5784            "uniqueItems": true
  5785          }
  5786        },
  5787        {
  5788          "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event  will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n  is interpreted as \"data at least as new as the provided `resourceVersion`\"\n  and the bookmark event is send when the state is synced\n  to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n  If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n  bookmark event is send when the state is synced at least to the moment\n  when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n  Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
  5789          "in": "query",
  5790          "name": "sendInitialEvents",
  5791          "schema": {
  5792            "type": "boolean",
  5793            "uniqueItems": true
  5794          }
  5795        },
  5796        {
  5797          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
  5798          "in": "query",
  5799          "name": "timeoutSeconds",
  5800          "schema": {
  5801            "type": "integer",
  5802            "uniqueItems": true
  5803          }
  5804        },
  5805        {
  5806          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  5807          "in": "query",
  5808          "name": "watch",
  5809          "schema": {
  5810            "type": "boolean",
  5811            "uniqueItems": true
  5812          }
  5813        }
  5814      ]
  5815    },
  5816    "/apis/rbac.authorization.k8s.io/v1/watch/clusterroles/{name}": {
  5817      "get": {
  5818        "description": "watch changes to an object of kind ClusterRole. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
  5819        "operationId": "watchRbacAuthorizationV1ClusterRole",
  5820        "responses": {
  5821          "200": {
  5822            "content": {
  5823              "application/json": {
  5824                "schema": {
  5825                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  5826                }
  5827              },
  5828              "application/json;stream=watch": {
  5829                "schema": {
  5830                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  5831                }
  5832              },
  5833              "application/vnd.kubernetes.protobuf": {
  5834                "schema": {
  5835                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  5836                }
  5837              },
  5838              "application/vnd.kubernetes.protobuf;stream=watch": {
  5839                "schema": {
  5840                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  5841                }
  5842              },
  5843              "application/yaml": {
  5844                "schema": {
  5845                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  5846                }
  5847              }
  5848            },
  5849            "description": "OK"
  5850          },
  5851          "401": {
  5852            "description": "Unauthorized"
  5853          }
  5854        },
  5855        "tags": [
  5856          "rbacAuthorization_v1"
  5857        ],
  5858        "x-kubernetes-action": "watch",
  5859        "x-kubernetes-group-version-kind": {
  5860          "group": "rbac.authorization.k8s.io",
  5861          "kind": "ClusterRole",
  5862          "version": "v1"
  5863        }
  5864      },
  5865      "parameters": [
  5866        {
  5867          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
  5868          "in": "query",
  5869          "name": "allowWatchBookmarks",
  5870          "schema": {
  5871            "type": "boolean",
  5872            "uniqueItems": true
  5873          }
  5874        },
  5875        {
  5876          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
  5877          "in": "query",
  5878          "name": "continue",
  5879          "schema": {
  5880            "type": "string",
  5881            "uniqueItems": true
  5882          }
  5883        },
  5884        {
  5885          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  5886          "in": "query",
  5887          "name": "fieldSelector",
  5888          "schema": {
  5889            "type": "string",
  5890            "uniqueItems": true
  5891          }
  5892        },
  5893        {
  5894          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  5895          "in": "query",
  5896          "name": "labelSelector",
  5897          "schema": {
  5898            "type": "string",
  5899            "uniqueItems": true
  5900          }
  5901        },
  5902        {
  5903          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
  5904          "in": "query",
  5905          "name": "limit",
  5906          "schema": {
  5907            "type": "integer",
  5908            "uniqueItems": true
  5909          }
  5910        },
  5911        {
  5912          "description": "name of the ClusterRole",
  5913          "in": "path",
  5914          "name": "name",
  5915          "required": true,
  5916          "schema": {
  5917            "type": "string",
  5918            "uniqueItems": true
  5919          }
  5920        },
  5921        {
  5922          "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
  5923          "in": "query",
  5924          "name": "pretty",
  5925          "schema": {
  5926            "type": "string",
  5927            "uniqueItems": true
  5928          }
  5929        },
  5930        {
  5931          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  5932          "in": "query",
  5933          "name": "resourceVersion",
  5934          "schema": {
  5935            "type": "string",
  5936            "uniqueItems": true
  5937          }
  5938        },
  5939        {
  5940          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  5941          "in": "query",
  5942          "name": "resourceVersionMatch",
  5943          "schema": {
  5944            "type": "string",
  5945            "uniqueItems": true
  5946          }
  5947        },
  5948        {
  5949          "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event  will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n  is interpreted as \"data at least as new as the provided `resourceVersion`\"\n  and the bookmark event is send when the state is synced\n  to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n  If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n  bookmark event is send when the state is synced at least to the moment\n  when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n  Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
  5950          "in": "query",
  5951          "name": "sendInitialEvents",
  5952          "schema": {
  5953            "type": "boolean",
  5954            "uniqueItems": true
  5955          }
  5956        },
  5957        {
  5958          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
  5959          "in": "query",
  5960          "name": "timeoutSeconds",
  5961          "schema": {
  5962            "type": "integer",
  5963            "uniqueItems": true
  5964          }
  5965        },
  5966        {
  5967          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  5968          "in": "query",
  5969          "name": "watch",
  5970          "schema": {
  5971            "type": "boolean",
  5972            "uniqueItems": true
  5973          }
  5974        }
  5975      ]
  5976    },
  5977    "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/rolebindings": {
  5978      "get": {
  5979        "description": "watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
  5980        "operationId": "watchRbacAuthorizationV1NamespacedRoleBindingList",
  5981        "responses": {
  5982          "200": {
  5983            "content": {
  5984              "application/json": {
  5985                "schema": {
  5986                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  5987                }
  5988              },
  5989              "application/json;stream=watch": {
  5990                "schema": {
  5991                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  5992                }
  5993              },
  5994              "application/vnd.kubernetes.protobuf": {
  5995                "schema": {
  5996                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  5997                }
  5998              },
  5999              "application/vnd.kubernetes.protobuf;stream=watch": {
  6000                "schema": {
  6001                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  6002                }
  6003              },
  6004              "application/yaml": {
  6005                "schema": {
  6006                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  6007                }
  6008              }
  6009            },
  6010            "description": "OK"
  6011          },
  6012          "401": {
  6013            "description": "Unauthorized"
  6014          }
  6015        },
  6016        "tags": [
  6017          "rbacAuthorization_v1"
  6018        ],
  6019        "x-kubernetes-action": "watchlist",
  6020        "x-kubernetes-group-version-kind": {
  6021          "group": "rbac.authorization.k8s.io",
  6022          "kind": "RoleBinding",
  6023          "version": "v1"
  6024        }
  6025      },
  6026      "parameters": [
  6027        {
  6028          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
  6029          "in": "query",
  6030          "name": "allowWatchBookmarks",
  6031          "schema": {
  6032            "type": "boolean",
  6033            "uniqueItems": true
  6034          }
  6035        },
  6036        {
  6037          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
  6038          "in": "query",
  6039          "name": "continue",
  6040          "schema": {
  6041            "type": "string",
  6042            "uniqueItems": true
  6043          }
  6044        },
  6045        {
  6046          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  6047          "in": "query",
  6048          "name": "fieldSelector",
  6049          "schema": {
  6050            "type": "string",
  6051            "uniqueItems": true
  6052          }
  6053        },
  6054        {
  6055          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  6056          "in": "query",
  6057          "name": "labelSelector",
  6058          "schema": {
  6059            "type": "string",
  6060            "uniqueItems": true
  6061          }
  6062        },
  6063        {
  6064          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
  6065          "in": "query",
  6066          "name": "limit",
  6067          "schema": {
  6068            "type": "integer",
  6069            "uniqueItems": true
  6070          }
  6071        },
  6072        {
  6073          "description": "object name and auth scope, such as for teams and projects",
  6074          "in": "path",
  6075          "name": "namespace",
  6076          "required": true,
  6077          "schema": {
  6078            "type": "string",
  6079            "uniqueItems": true
  6080          }
  6081        },
  6082        {
  6083          "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
  6084          "in": "query",
  6085          "name": "pretty",
  6086          "schema": {
  6087            "type": "string",
  6088            "uniqueItems": true
  6089          }
  6090        },
  6091        {
  6092          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  6093          "in": "query",
  6094          "name": "resourceVersion",
  6095          "schema": {
  6096            "type": "string",
  6097            "uniqueItems": true
  6098          }
  6099        },
  6100        {
  6101          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  6102          "in": "query",
  6103          "name": "resourceVersionMatch",
  6104          "schema": {
  6105            "type": "string",
  6106            "uniqueItems": true
  6107          }
  6108        },
  6109        {
  6110          "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event  will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n  is interpreted as \"data at least as new as the provided `resourceVersion`\"\n  and the bookmark event is send when the state is synced\n  to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n  If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n  bookmark event is send when the state is synced at least to the moment\n  when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n  Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
  6111          "in": "query",
  6112          "name": "sendInitialEvents",
  6113          "schema": {
  6114            "type": "boolean",
  6115            "uniqueItems": true
  6116          }
  6117        },
  6118        {
  6119          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
  6120          "in": "query",
  6121          "name": "timeoutSeconds",
  6122          "schema": {
  6123            "type": "integer",
  6124            "uniqueItems": true
  6125          }
  6126        },
  6127        {
  6128          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  6129          "in": "query",
  6130          "name": "watch",
  6131          "schema": {
  6132            "type": "boolean",
  6133            "uniqueItems": true
  6134          }
  6135        }
  6136      ]
  6137    },
  6138    "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/rolebindings/{name}": {
  6139      "get": {
  6140        "description": "watch changes to an object of kind RoleBinding. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
  6141        "operationId": "watchRbacAuthorizationV1NamespacedRoleBinding",
  6142        "responses": {
  6143          "200": {
  6144            "content": {
  6145              "application/json": {
  6146                "schema": {
  6147                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  6148                }
  6149              },
  6150              "application/json;stream=watch": {
  6151                "schema": {
  6152                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  6153                }
  6154              },
  6155              "application/vnd.kubernetes.protobuf": {
  6156                "schema": {
  6157                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  6158                }
  6159              },
  6160              "application/vnd.kubernetes.protobuf;stream=watch": {
  6161                "schema": {
  6162                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  6163                }
  6164              },
  6165              "application/yaml": {
  6166                "schema": {
  6167                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  6168                }
  6169              }
  6170            },
  6171            "description": "OK"
  6172          },
  6173          "401": {
  6174            "description": "Unauthorized"
  6175          }
  6176        },
  6177        "tags": [
  6178          "rbacAuthorization_v1"
  6179        ],
  6180        "x-kubernetes-action": "watch",
  6181        "x-kubernetes-group-version-kind": {
  6182          "group": "rbac.authorization.k8s.io",
  6183          "kind": "RoleBinding",
  6184          "version": "v1"
  6185        }
  6186      },
  6187      "parameters": [
  6188        {
  6189          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
  6190          "in": "query",
  6191          "name": "allowWatchBookmarks",
  6192          "schema": {
  6193            "type": "boolean",
  6194            "uniqueItems": true
  6195          }
  6196        },
  6197        {
  6198          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
  6199          "in": "query",
  6200          "name": "continue",
  6201          "schema": {
  6202            "type": "string",
  6203            "uniqueItems": true
  6204          }
  6205        },
  6206        {
  6207          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  6208          "in": "query",
  6209          "name": "fieldSelector",
  6210          "schema": {
  6211            "type": "string",
  6212            "uniqueItems": true
  6213          }
  6214        },
  6215        {
  6216          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  6217          "in": "query",
  6218          "name": "labelSelector",
  6219          "schema": {
  6220            "type": "string",
  6221            "uniqueItems": true
  6222          }
  6223        },
  6224        {
  6225          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
  6226          "in": "query",
  6227          "name": "limit",
  6228          "schema": {
  6229            "type": "integer",
  6230            "uniqueItems": true
  6231          }
  6232        },
  6233        {
  6234          "description": "name of the RoleBinding",
  6235          "in": "path",
  6236          "name": "name",
  6237          "required": true,
  6238          "schema": {
  6239            "type": "string",
  6240            "uniqueItems": true
  6241          }
  6242        },
  6243        {
  6244          "description": "object name and auth scope, such as for teams and projects",
  6245          "in": "path",
  6246          "name": "namespace",
  6247          "required": true,
  6248          "schema": {
  6249            "type": "string",
  6250            "uniqueItems": true
  6251          }
  6252        },
  6253        {
  6254          "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
  6255          "in": "query",
  6256          "name": "pretty",
  6257          "schema": {
  6258            "type": "string",
  6259            "uniqueItems": true
  6260          }
  6261        },
  6262        {
  6263          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  6264          "in": "query",
  6265          "name": "resourceVersion",
  6266          "schema": {
  6267            "type": "string",
  6268            "uniqueItems": true
  6269          }
  6270        },
  6271        {
  6272          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  6273          "in": "query",
  6274          "name": "resourceVersionMatch",
  6275          "schema": {
  6276            "type": "string",
  6277            "uniqueItems": true
  6278          }
  6279        },
  6280        {
  6281          "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event  will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n  is interpreted as \"data at least as new as the provided `resourceVersion`\"\n  and the bookmark event is send when the state is synced\n  to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n  If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n  bookmark event is send when the state is synced at least to the moment\n  when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n  Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
  6282          "in": "query",
  6283          "name": "sendInitialEvents",
  6284          "schema": {
  6285            "type": "boolean",
  6286            "uniqueItems": true
  6287          }
  6288        },
  6289        {
  6290          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
  6291          "in": "query",
  6292          "name": "timeoutSeconds",
  6293          "schema": {
  6294            "type": "integer",
  6295            "uniqueItems": true
  6296          }
  6297        },
  6298        {
  6299          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  6300          "in": "query",
  6301          "name": "watch",
  6302          "schema": {
  6303            "type": "boolean",
  6304            "uniqueItems": true
  6305          }
  6306        }
  6307      ]
  6308    },
  6309    "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/roles": {
  6310      "get": {
  6311        "description": "watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead.",
  6312        "operationId": "watchRbacAuthorizationV1NamespacedRoleList",
  6313        "responses": {
  6314          "200": {
  6315            "content": {
  6316              "application/json": {
  6317                "schema": {
  6318                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  6319                }
  6320              },
  6321              "application/json;stream=watch": {
  6322                "schema": {
  6323                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  6324                }
  6325              },
  6326              "application/vnd.kubernetes.protobuf": {
  6327                "schema": {
  6328                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  6329                }
  6330              },
  6331              "application/vnd.kubernetes.protobuf;stream=watch": {
  6332                "schema": {
  6333                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  6334                }
  6335              },
  6336              "application/yaml": {
  6337                "schema": {
  6338                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  6339                }
  6340              }
  6341            },
  6342            "description": "OK"
  6343          },
  6344          "401": {
  6345            "description": "Unauthorized"
  6346          }
  6347        },
  6348        "tags": [
  6349          "rbacAuthorization_v1"
  6350        ],
  6351        "x-kubernetes-action": "watchlist",
  6352        "x-kubernetes-group-version-kind": {
  6353          "group": "rbac.authorization.k8s.io",
  6354          "kind": "Role",
  6355          "version": "v1"
  6356        }
  6357      },
  6358      "parameters": [
  6359        {
  6360          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
  6361          "in": "query",
  6362          "name": "allowWatchBookmarks",
  6363          "schema": {
  6364            "type": "boolean",
  6365            "uniqueItems": true
  6366          }
  6367        },
  6368        {
  6369          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
  6370          "in": "query",
  6371          "name": "continue",
  6372          "schema": {
  6373            "type": "string",
  6374            "uniqueItems": true
  6375          }
  6376        },
  6377        {
  6378          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  6379          "in": "query",
  6380          "name": "fieldSelector",
  6381          "schema": {
  6382            "type": "string",
  6383            "uniqueItems": true
  6384          }
  6385        },
  6386        {
  6387          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  6388          "in": "query",
  6389          "name": "labelSelector",
  6390          "schema": {
  6391            "type": "string",
  6392            "uniqueItems": true
  6393          }
  6394        },
  6395        {
  6396          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
  6397          "in": "query",
  6398          "name": "limit",
  6399          "schema": {
  6400            "type": "integer",
  6401            "uniqueItems": true
  6402          }
  6403        },
  6404        {
  6405          "description": "object name and auth scope, such as for teams and projects",
  6406          "in": "path",
  6407          "name": "namespace",
  6408          "required": true,
  6409          "schema": {
  6410            "type": "string",
  6411            "uniqueItems": true
  6412          }
  6413        },
  6414        {
  6415          "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
  6416          "in": "query",
  6417          "name": "pretty",
  6418          "schema": {
  6419            "type": "string",
  6420            "uniqueItems": true
  6421          }
  6422        },
  6423        {
  6424          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  6425          "in": "query",
  6426          "name": "resourceVersion",
  6427          "schema": {
  6428            "type": "string",
  6429            "uniqueItems": true
  6430          }
  6431        },
  6432        {
  6433          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  6434          "in": "query",
  6435          "name": "resourceVersionMatch",
  6436          "schema": {
  6437            "type": "string",
  6438            "uniqueItems": true
  6439          }
  6440        },
  6441        {
  6442          "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event  will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n  is interpreted as \"data at least as new as the provided `resourceVersion`\"\n  and the bookmark event is send when the state is synced\n  to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n  If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n  bookmark event is send when the state is synced at least to the moment\n  when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n  Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
  6443          "in": "query",
  6444          "name": "sendInitialEvents",
  6445          "schema": {
  6446            "type": "boolean",
  6447            "uniqueItems": true
  6448          }
  6449        },
  6450        {
  6451          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
  6452          "in": "query",
  6453          "name": "timeoutSeconds",
  6454          "schema": {
  6455            "type": "integer",
  6456            "uniqueItems": true
  6457          }
  6458        },
  6459        {
  6460          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  6461          "in": "query",
  6462          "name": "watch",
  6463          "schema": {
  6464            "type": "boolean",
  6465            "uniqueItems": true
  6466          }
  6467        }
  6468      ]
  6469    },
  6470    "/apis/rbac.authorization.k8s.io/v1/watch/namespaces/{namespace}/roles/{name}": {
  6471      "get": {
  6472        "description": "watch changes to an object of kind Role. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.",
  6473        "operationId": "watchRbacAuthorizationV1NamespacedRole",
  6474        "responses": {
  6475          "200": {
  6476            "content": {
  6477              "application/json": {
  6478                "schema": {
  6479                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  6480                }
  6481              },
  6482              "application/json;stream=watch": {
  6483                "schema": {
  6484                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  6485                }
  6486              },
  6487              "application/vnd.kubernetes.protobuf": {
  6488                "schema": {
  6489                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  6490                }
  6491              },
  6492              "application/vnd.kubernetes.protobuf;stream=watch": {
  6493                "schema": {
  6494                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  6495                }
  6496              },
  6497              "application/yaml": {
  6498                "schema": {
  6499                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  6500                }
  6501              }
  6502            },
  6503            "description": "OK"
  6504          },
  6505          "401": {
  6506            "description": "Unauthorized"
  6507          }
  6508        },
  6509        "tags": [
  6510          "rbacAuthorization_v1"
  6511        ],
  6512        "x-kubernetes-action": "watch",
  6513        "x-kubernetes-group-version-kind": {
  6514          "group": "rbac.authorization.k8s.io",
  6515          "kind": "Role",
  6516          "version": "v1"
  6517        }
  6518      },
  6519      "parameters": [
  6520        {
  6521          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
  6522          "in": "query",
  6523          "name": "allowWatchBookmarks",
  6524          "schema": {
  6525            "type": "boolean",
  6526            "uniqueItems": true
  6527          }
  6528        },
  6529        {
  6530          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
  6531          "in": "query",
  6532          "name": "continue",
  6533          "schema": {
  6534            "type": "string",
  6535            "uniqueItems": true
  6536          }
  6537        },
  6538        {
  6539          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  6540          "in": "query",
  6541          "name": "fieldSelector",
  6542          "schema": {
  6543            "type": "string",
  6544            "uniqueItems": true
  6545          }
  6546        },
  6547        {
  6548          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  6549          "in": "query",
  6550          "name": "labelSelector",
  6551          "schema": {
  6552            "type": "string",
  6553            "uniqueItems": true
  6554          }
  6555        },
  6556        {
  6557          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
  6558          "in": "query",
  6559          "name": "limit",
  6560          "schema": {
  6561            "type": "integer",
  6562            "uniqueItems": true
  6563          }
  6564        },
  6565        {
  6566          "description": "name of the Role",
  6567          "in": "path",
  6568          "name": "name",
  6569          "required": true,
  6570          "schema": {
  6571            "type": "string",
  6572            "uniqueItems": true
  6573          }
  6574        },
  6575        {
  6576          "description": "object name and auth scope, such as for teams and projects",
  6577          "in": "path",
  6578          "name": "namespace",
  6579          "required": true,
  6580          "schema": {
  6581            "type": "string",
  6582            "uniqueItems": true
  6583          }
  6584        },
  6585        {
  6586          "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
  6587          "in": "query",
  6588          "name": "pretty",
  6589          "schema": {
  6590            "type": "string",
  6591            "uniqueItems": true
  6592          }
  6593        },
  6594        {
  6595          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  6596          "in": "query",
  6597          "name": "resourceVersion",
  6598          "schema": {
  6599            "type": "string",
  6600            "uniqueItems": true
  6601          }
  6602        },
  6603        {
  6604          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  6605          "in": "query",
  6606          "name": "resourceVersionMatch",
  6607          "schema": {
  6608            "type": "string",
  6609            "uniqueItems": true
  6610          }
  6611        },
  6612        {
  6613          "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event  will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n  is interpreted as \"data at least as new as the provided `resourceVersion`\"\n  and the bookmark event is send when the state is synced\n  to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n  If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n  bookmark event is send when the state is synced at least to the moment\n  when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n  Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
  6614          "in": "query",
  6615          "name": "sendInitialEvents",
  6616          "schema": {
  6617            "type": "boolean",
  6618            "uniqueItems": true
  6619          }
  6620        },
  6621        {
  6622          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
  6623          "in": "query",
  6624          "name": "timeoutSeconds",
  6625          "schema": {
  6626            "type": "integer",
  6627            "uniqueItems": true
  6628          }
  6629        },
  6630        {
  6631          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  6632          "in": "query",
  6633          "name": "watch",
  6634          "schema": {
  6635            "type": "boolean",
  6636            "uniqueItems": true
  6637          }
  6638        }
  6639      ]
  6640    },
  6641    "/apis/rbac.authorization.k8s.io/v1/watch/rolebindings": {
  6642      "get": {
  6643        "description": "watch individual changes to a list of RoleBinding. deprecated: use the 'watch' parameter with a list operation instead.",
  6644        "operationId": "watchRbacAuthorizationV1RoleBindingListForAllNamespaces",
  6645        "responses": {
  6646          "200": {
  6647            "content": {
  6648              "application/json": {
  6649                "schema": {
  6650                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  6651                }
  6652              },
  6653              "application/json;stream=watch": {
  6654                "schema": {
  6655                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  6656                }
  6657              },
  6658              "application/vnd.kubernetes.protobuf": {
  6659                "schema": {
  6660                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  6661                }
  6662              },
  6663              "application/vnd.kubernetes.protobuf;stream=watch": {
  6664                "schema": {
  6665                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  6666                }
  6667              },
  6668              "application/yaml": {
  6669                "schema": {
  6670                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  6671                }
  6672              }
  6673            },
  6674            "description": "OK"
  6675          },
  6676          "401": {
  6677            "description": "Unauthorized"
  6678          }
  6679        },
  6680        "tags": [
  6681          "rbacAuthorization_v1"
  6682        ],
  6683        "x-kubernetes-action": "watchlist",
  6684        "x-kubernetes-group-version-kind": {
  6685          "group": "rbac.authorization.k8s.io",
  6686          "kind": "RoleBinding",
  6687          "version": "v1"
  6688        }
  6689      },
  6690      "parameters": [
  6691        {
  6692          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
  6693          "in": "query",
  6694          "name": "allowWatchBookmarks",
  6695          "schema": {
  6696            "type": "boolean",
  6697            "uniqueItems": true
  6698          }
  6699        },
  6700        {
  6701          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
  6702          "in": "query",
  6703          "name": "continue",
  6704          "schema": {
  6705            "type": "string",
  6706            "uniqueItems": true
  6707          }
  6708        },
  6709        {
  6710          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  6711          "in": "query",
  6712          "name": "fieldSelector",
  6713          "schema": {
  6714            "type": "string",
  6715            "uniqueItems": true
  6716          }
  6717        },
  6718        {
  6719          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  6720          "in": "query",
  6721          "name": "labelSelector",
  6722          "schema": {
  6723            "type": "string",
  6724            "uniqueItems": true
  6725          }
  6726        },
  6727        {
  6728          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
  6729          "in": "query",
  6730          "name": "limit",
  6731          "schema": {
  6732            "type": "integer",
  6733            "uniqueItems": true
  6734          }
  6735        },
  6736        {
  6737          "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
  6738          "in": "query",
  6739          "name": "pretty",
  6740          "schema": {
  6741            "type": "string",
  6742            "uniqueItems": true
  6743          }
  6744        },
  6745        {
  6746          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  6747          "in": "query",
  6748          "name": "resourceVersion",
  6749          "schema": {
  6750            "type": "string",
  6751            "uniqueItems": true
  6752          }
  6753        },
  6754        {
  6755          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  6756          "in": "query",
  6757          "name": "resourceVersionMatch",
  6758          "schema": {
  6759            "type": "string",
  6760            "uniqueItems": true
  6761          }
  6762        },
  6763        {
  6764          "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event  will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n  is interpreted as \"data at least as new as the provided `resourceVersion`\"\n  and the bookmark event is send when the state is synced\n  to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n  If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n  bookmark event is send when the state is synced at least to the moment\n  when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n  Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
  6765          "in": "query",
  6766          "name": "sendInitialEvents",
  6767          "schema": {
  6768            "type": "boolean",
  6769            "uniqueItems": true
  6770          }
  6771        },
  6772        {
  6773          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
  6774          "in": "query",
  6775          "name": "timeoutSeconds",
  6776          "schema": {
  6777            "type": "integer",
  6778            "uniqueItems": true
  6779          }
  6780        },
  6781        {
  6782          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  6783          "in": "query",
  6784          "name": "watch",
  6785          "schema": {
  6786            "type": "boolean",
  6787            "uniqueItems": true
  6788          }
  6789        }
  6790      ]
  6791    },
  6792    "/apis/rbac.authorization.k8s.io/v1/watch/roles": {
  6793      "get": {
  6794        "description": "watch individual changes to a list of Role. deprecated: use the 'watch' parameter with a list operation instead.",
  6795        "operationId": "watchRbacAuthorizationV1RoleListForAllNamespaces",
  6796        "responses": {
  6797          "200": {
  6798            "content": {
  6799              "application/json": {
  6800                "schema": {
  6801                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  6802                }
  6803              },
  6804              "application/json;stream=watch": {
  6805                "schema": {
  6806                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  6807                }
  6808              },
  6809              "application/vnd.kubernetes.protobuf": {
  6810                "schema": {
  6811                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  6812                }
  6813              },
  6814              "application/vnd.kubernetes.protobuf;stream=watch": {
  6815                "schema": {
  6816                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  6817                }
  6818              },
  6819              "application/yaml": {
  6820                "schema": {
  6821                  "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent"
  6822                }
  6823              }
  6824            },
  6825            "description": "OK"
  6826          },
  6827          "401": {
  6828            "description": "Unauthorized"
  6829          }
  6830        },
  6831        "tags": [
  6832          "rbacAuthorization_v1"
  6833        ],
  6834        "x-kubernetes-action": "watchlist",
  6835        "x-kubernetes-group-version-kind": {
  6836          "group": "rbac.authorization.k8s.io",
  6837          "kind": "Role",
  6838          "version": "v1"
  6839        }
  6840      },
  6841      "parameters": [
  6842        {
  6843          "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
  6844          "in": "query",
  6845          "name": "allowWatchBookmarks",
  6846          "schema": {
  6847            "type": "boolean",
  6848            "uniqueItems": true
  6849          }
  6850        },
  6851        {
  6852          "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.",
  6853          "in": "query",
  6854          "name": "continue",
  6855          "schema": {
  6856            "type": "string",
  6857            "uniqueItems": true
  6858          }
  6859        },
  6860        {
  6861          "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.",
  6862          "in": "query",
  6863          "name": "fieldSelector",
  6864          "schema": {
  6865            "type": "string",
  6866            "uniqueItems": true
  6867          }
  6868        },
  6869        {
  6870          "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.",
  6871          "in": "query",
  6872          "name": "labelSelector",
  6873          "schema": {
  6874            "type": "string",
  6875            "uniqueItems": true
  6876          }
  6877        },
  6878        {
  6879          "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.",
  6880          "in": "query",
  6881          "name": "limit",
  6882          "schema": {
  6883            "type": "integer",
  6884            "uniqueItems": true
  6885          }
  6886        },
  6887        {
  6888          "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
  6889          "in": "query",
  6890          "name": "pretty",
  6891          "schema": {
  6892            "type": "string",
  6893            "uniqueItems": true
  6894          }
  6895        },
  6896        {
  6897          "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  6898          "in": "query",
  6899          "name": "resourceVersion",
  6900          "schema": {
  6901            "type": "string",
  6902            "uniqueItems": true
  6903          }
  6904        },
  6905        {
  6906          "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
  6907          "in": "query",
  6908          "name": "resourceVersionMatch",
  6909          "schema": {
  6910            "type": "string",
  6911            "uniqueItems": true
  6912          }
  6913        },
  6914        {
  6915          "description": "`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event  will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n  is interpreted as \"data at least as new as the provided `resourceVersion`\"\n  and the bookmark event is send when the state is synced\n  to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n  If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n  bookmark event is send when the state is synced at least to the moment\n  when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n  Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise.",
  6916          "in": "query",
  6917          "name": "sendInitialEvents",
  6918          "schema": {
  6919            "type": "boolean",
  6920            "uniqueItems": true
  6921          }
  6922        },
  6923        {
  6924          "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
  6925          "in": "query",
  6926          "name": "timeoutSeconds",
  6927          "schema": {
  6928            "type": "integer",
  6929            "uniqueItems": true
  6930          }
  6931        },
  6932        {
  6933          "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
  6934          "in": "query",
  6935          "name": "watch",
  6936          "schema": {
  6937            "type": "boolean",
  6938            "uniqueItems": true
  6939          }
  6940        }
  6941      ]
  6942    }
  6943  }
  6944}

View as plain text