32 lines
1.2 KiB
JavaScript
32 lines
1.2 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.V1HTTPIngressRuleValue = void 0;
|
|
/**
|
|
* HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://<host>/<path>?<searchpart> -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last \'/\' and before the first \'?\' or \'#\'.
|
|
*/
|
|
class V1HTTPIngressRuleValue {
|
|
static getAttributeTypeMap() {
|
|
return V1HTTPIngressRuleValue.attributeTypeMap;
|
|
}
|
|
}
|
|
exports.V1HTTPIngressRuleValue = V1HTTPIngressRuleValue;
|
|
V1HTTPIngressRuleValue.discriminator = undefined;
|
|
V1HTTPIngressRuleValue.attributeTypeMap = [
|
|
{
|
|
"name": "paths",
|
|
"baseName": "paths",
|
|
"type": "Array<V1HTTPIngressPath>"
|
|
}
|
|
];
|
|
//# sourceMappingURL=v1HTTPIngressRuleValue.js.map
|