Add node modules and compiled JavaScript from main (#54)
Co-authored-by: Oliver King <oking3@uncc.edu>
This commit is contained in:
committed by
GitHub
parent
4a983766a0
commit
52d71d28bd
41
node_modules/@kubernetes/client-node/dist/gen/model/v1EndpointAddress.d.ts
generated
vendored
Normal file
41
node_modules/@kubernetes/client-node/dist/gen/model/v1EndpointAddress.d.ts
generated
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
/**
|
||||
* 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.
|
||||
*/
|
||||
import { V1ObjectReference } from './v1ObjectReference';
|
||||
/**
|
||||
* EndpointAddress is a tuple that describes single IP address.
|
||||
*/
|
||||
export declare class V1EndpointAddress {
|
||||
/**
|
||||
* The Hostname of this endpoint
|
||||
*/
|
||||
'hostname'?: string;
|
||||
/**
|
||||
* The IP of this endpoint. May not be loopback (127.0.0.0/8), link-local (169.254.0.0/16), or link-local multicast ((224.0.0.0/24). IPv6 is also accepted but not fully supported on all platforms. Also, certain kubernetes components, like kube-proxy, are not IPv6 ready.
|
||||
*/
|
||||
'ip': string;
|
||||
/**
|
||||
* Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node.
|
||||
*/
|
||||
'nodeName'?: string;
|
||||
'targetRef'?: V1ObjectReference;
|
||||
static discriminator: string | undefined;
|
||||
static attributeTypeMap: Array<{
|
||||
name: string;
|
||||
baseName: string;
|
||||
type: string;
|
||||
}>;
|
||||
static getAttributeTypeMap(): {
|
||||
name: string;
|
||||
baseName: string;
|
||||
type: string;
|
||||
}[];
|
||||
}
|
Reference in New Issue
Block a user