@kubernetes/client-node
Version:
NodeJS client for kubernetes
38 lines • 1.23 kB
JavaScript
/**
* Kubernetes
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* OpenAPI spec version: v1.32.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* VolumeAttachmentSource represents a volume that should be attached. Right now only PersistentVolumes can be attached via external attacher, in the future we may allow also inline volumes in pods. Exactly one member can be set.
*/
export class V1VolumeAttachmentSource {
static getAttributeTypeMap() {
return V1VolumeAttachmentSource.attributeTypeMap;
}
constructor() {
}
}
V1VolumeAttachmentSource.discriminator = undefined;
V1VolumeAttachmentSource.mapping = undefined;
V1VolumeAttachmentSource.attributeTypeMap = [
{
"name": "inlineVolumeSpec",
"baseName": "inlineVolumeSpec",
"type": "V1PersistentVolumeSpec",
"format": ""
},
{
"name": "persistentVolumeName",
"baseName": "persistentVolumeName",
"type": "string",
"format": ""
}
];
//# sourceMappingURL=V1VolumeAttachmentSource.js.map