@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
46 lines (45 loc) • 1.66 kB
TypeScript
/**
* 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.
*/
/**
* BoundObjectReference is a reference to an object that a token is bound to.
* @export
* @interface IoK8sApiAuthenticationV1BoundObjectReference
*/
export interface IoK8sApiAuthenticationV1BoundObjectReference {
/**
* API version of the referent.
* @type {string}
* @memberof IoK8sApiAuthenticationV1BoundObjectReference
*/
apiVersion?: string;
/**
* Kind of the referent. Valid kinds are 'Pod' and 'Secret'.
* @type {string}
* @memberof IoK8sApiAuthenticationV1BoundObjectReference
*/
kind?: string;
/**
* Name of the referent.
* @type {string}
* @memberof IoK8sApiAuthenticationV1BoundObjectReference
*/
name?: string;
/**
* UID of the referent.
* @type {string}
* @memberof IoK8sApiAuthenticationV1BoundObjectReference
*/
uid?: string;
}
export declare function IoK8sApiAuthenticationV1BoundObjectReferenceFromJSON(json: any): IoK8sApiAuthenticationV1BoundObjectReference;
export declare function IoK8sApiAuthenticationV1BoundObjectReferenceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiAuthenticationV1BoundObjectReference;
export declare function IoK8sApiAuthenticationV1BoundObjectReferenceToJSON(value?: IoK8sApiAuthenticationV1BoundObjectReference | null): any;