52 lines
1.4 KiB
JavaScript
52 lines
1.4 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.V1Ingress = void 0;
|
|
/**
|
|
* Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.
|
|
*/
|
|
class V1Ingress {
|
|
static getAttributeTypeMap() {
|
|
return V1Ingress.attributeTypeMap;
|
|
}
|
|
}
|
|
exports.V1Ingress = V1Ingress;
|
|
V1Ingress.discriminator = undefined;
|
|
V1Ingress.attributeTypeMap = [
|
|
{
|
|
"name": "apiVersion",
|
|
"baseName": "apiVersion",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "kind",
|
|
"baseName": "kind",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "metadata",
|
|
"baseName": "metadata",
|
|
"type": "V1ObjectMeta"
|
|
},
|
|
{
|
|
"name": "spec",
|
|
"baseName": "spec",
|
|
"type": "V1IngressSpec"
|
|
},
|
|
{
|
|
"name": "status",
|
|
"baseName": "status",
|
|
"type": "V1IngressStatus"
|
|
}
|
|
];
|
|
//# sourceMappingURL=v1Ingress.js.map
|