52 lines
1.6 KiB
JavaScript
52 lines
1.6 KiB
JavaScript
"use strict";
|
|
/**
|
|
* Kubernetes
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
*
|
|
* The version of the OpenAPI document: v1.22.2
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.V1SelfSubjectAccessReview = void 0;
|
|
/**
|
|
* SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means \"in all namespaces\". Self is a special case, because users should always be able to check whether they can perform an action
|
|
*/
|
|
class V1SelfSubjectAccessReview {
|
|
static getAttributeTypeMap() {
|
|
return V1SelfSubjectAccessReview.attributeTypeMap;
|
|
}
|
|
}
|
|
exports.V1SelfSubjectAccessReview = V1SelfSubjectAccessReview;
|
|
V1SelfSubjectAccessReview.discriminator = undefined;
|
|
V1SelfSubjectAccessReview.attributeTypeMap = [
|
|
{
|
|
"name": "apiVersion",
|
|
"baseName": "apiVersion",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "kind",
|
|
"baseName": "kind",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "metadata",
|
|
"baseName": "metadata",
|
|
"type": "V1ObjectMeta"
|
|
},
|
|
{
|
|
"name": "spec",
|
|
"baseName": "spec",
|
|
"type": "V1SelfSubjectAccessReviewSpec"
|
|
},
|
|
{
|
|
"name": "status",
|
|
"baseName": "status",
|
|
"type": "V1SubjectAccessReviewStatus"
|
|
}
|
|
];
|
|
//# sourceMappingURL=v1SelfSubjectAccessReview.js.map
|