52 lines
2.0 KiB
JavaScript
52 lines
2.0 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.V1CertificateSigningRequest = void 0;
|
|
/**
|
|
* CertificateSigningRequest objects provide a mechanism to obtain x509 certificates by submitting a certificate signing request, and having it asynchronously approved and issued. Kubelets use this API to obtain: 1. client certificates to authenticate to kube-apiserver (with the \"kubernetes.io/kube-apiserver-client-kubelet\" signerName). 2. serving certificates for TLS endpoints kube-apiserver can connect to securely (with the \"kubernetes.io/kubelet-serving\" signerName). This API can be used to request client certificates to authenticate to kube-apiserver (with the \"kubernetes.io/kube-apiserver-client\" signerName), or to obtain certificates from custom non-Kubernetes signers.
|
|
*/
|
|
class V1CertificateSigningRequest {
|
|
static getAttributeTypeMap() {
|
|
return V1CertificateSigningRequest.attributeTypeMap;
|
|
}
|
|
}
|
|
exports.V1CertificateSigningRequest = V1CertificateSigningRequest;
|
|
V1CertificateSigningRequest.discriminator = undefined;
|
|
V1CertificateSigningRequest.attributeTypeMap = [
|
|
{
|
|
"name": "apiVersion",
|
|
"baseName": "apiVersion",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "kind",
|
|
"baseName": "kind",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "metadata",
|
|
"baseName": "metadata",
|
|
"type": "V1ObjectMeta"
|
|
},
|
|
{
|
|
"name": "spec",
|
|
"baseName": "spec",
|
|
"type": "V1CertificateSigningRequestSpec"
|
|
},
|
|
{
|
|
"name": "status",
|
|
"baseName": "status",
|
|
"type": "V1CertificateSigningRequestStatus"
|
|
}
|
|
];
|
|
//# sourceMappingURL=v1CertificateSigningRequest.js.map
|