@kubernetes/client-node
Version:
NodeJS client for kubernetes
51 lines (50 loc) • 1.68 kB
TypeScript
/**
* Kubernetes
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* OpenAPI spec version: v1.30.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { V1alpha2DriverAllocationResult } from '../models/V1alpha2DriverAllocationResult.js';
/**
* StructuredResourceHandle is the in-tree representation of the allocation result.
*/
export declare class V1alpha2StructuredResourceHandle {
/**
* NodeName is the name of the node providing the necessary resources if the resources are local to a node.
*/
'nodeName'?: string;
/**
* Results lists all allocated driver resources.
*/
'results': Array<V1alpha2DriverAllocationResult>;
/**
* VendorClaimParameters are the per-claim configuration parameters from the resource claim parameters at the time that the claim was allocated.
*/
'vendorClaimParameters'?: any;
/**
* VendorClassParameters are the per-claim configuration parameters from the resource class at the time that the claim was allocated.
*/
'vendorClassParameters'?: any;
static readonly discriminator: string | undefined;
static readonly mapping: {
[index: string]: string;
} | undefined;
static readonly attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
format: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
format: string;
}[];
constructor();
}