37 lines
1010 B
JavaScript
37 lines
1010 B
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.V1IngressTLS = void 0;
|
|
/**
|
|
* IngressTLS describes the transport layer security associated with an Ingress.
|
|
*/
|
|
class V1IngressTLS {
|
|
static getAttributeTypeMap() {
|
|
return V1IngressTLS.attributeTypeMap;
|
|
}
|
|
}
|
|
exports.V1IngressTLS = V1IngressTLS;
|
|
V1IngressTLS.discriminator = undefined;
|
|
V1IngressTLS.attributeTypeMap = [
|
|
{
|
|
"name": "hosts",
|
|
"baseName": "hosts",
|
|
"type": "Array<string>"
|
|
},
|
|
{
|
|
"name": "secretName",
|
|
"baseName": "secretName",
|
|
"type": "string"
|
|
}
|
|
];
|
|
//# sourceMappingURL=v1IngressTLS.js.map
|