UNPKG

@kubernetes/client-node

Version:
36 lines (35 loc) 972 B
/** * Kubernetes * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: release-1.28 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * HTTPHeader describes a custom header to be used in HTTP probes */ export declare class V1HTTPHeader { /** * The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. */ 'name': string; /** * The header field value */ 'value': string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }