UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

29 lines (28 loc) 1.52 kB
/** * Kubernetes * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: unversioned * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { IoK8sApiNetworkingV1HTTPIngressPath } from './'; /** * 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 '#'. * @export * @interface IoK8sApiNetworkingV1HTTPIngressRuleValue */ export interface IoK8sApiNetworkingV1HTTPIngressRuleValue { /** * paths is a collection of paths that map requests to backends. * @type {Array<IoK8sApiNetworkingV1HTTPIngressPath>} * @memberof IoK8sApiNetworkingV1HTTPIngressRuleValue */ paths: Array<IoK8sApiNetworkingV1HTTPIngressPath>; } export declare function IoK8sApiNetworkingV1HTTPIngressRuleValueFromJSON(json: any): IoK8sApiNetworkingV1HTTPIngressRuleValue; export declare function IoK8sApiNetworkingV1HTTPIngressRuleValueFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiNetworkingV1HTTPIngressRuleValue; export declare function IoK8sApiNetworkingV1HTTPIngressRuleValueToJSON(value?: IoK8sApiNetworkingV1HTTPIngressRuleValue | null): any;