52 lines
1.3 KiB
JavaScript
52 lines
1.3 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.V1HTTPGetAction = void 0;
|
|
/**
|
|
* HTTPGetAction describes an action based on HTTP Get requests.
|
|
*/
|
|
class V1HTTPGetAction {
|
|
static getAttributeTypeMap() {
|
|
return V1HTTPGetAction.attributeTypeMap;
|
|
}
|
|
}
|
|
exports.V1HTTPGetAction = V1HTTPGetAction;
|
|
V1HTTPGetAction.discriminator = undefined;
|
|
V1HTTPGetAction.attributeTypeMap = [
|
|
{
|
|
"name": "host",
|
|
"baseName": "host",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "httpHeaders",
|
|
"baseName": "httpHeaders",
|
|
"type": "Array<V1HTTPHeader>"
|
|
},
|
|
{
|
|
"name": "path",
|
|
"baseName": "path",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "port",
|
|
"baseName": "port",
|
|
"type": "object"
|
|
},
|
|
{
|
|
"name": "scheme",
|
|
"baseName": "scheme",
|
|
"type": "string"
|
|
}
|
|
];
|
|
//# sourceMappingURL=v1HTTPGetAction.js.map
|