UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

36 lines (35 loc) 1.36 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. */ /** * GRPCAction specifies an action involving a GRPC service. * @export * @interface IoK8sApiCoreV1GRPCAction */ export interface IoK8sApiCoreV1GRPCAction { /** * Port number of the gRPC service. Number must be in the range 1 to 65535. * @type {number} * @memberof IoK8sApiCoreV1GRPCAction */ port: number; /** * Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). * * If this is not specified, the default behavior is defined by gRPC. * @type {string} * @memberof IoK8sApiCoreV1GRPCAction */ service?: string; } export declare function IoK8sApiCoreV1GRPCActionFromJSON(json: any): IoK8sApiCoreV1GRPCAction; export declare function IoK8sApiCoreV1GRPCActionFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiCoreV1GRPCAction; export declare function IoK8sApiCoreV1GRPCActionToJSON(value?: IoK8sApiCoreV1GRPCAction | null): any;