@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
48 lines (47 loc) • 1.81 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.
*/
/**
* UserInfo holds the information about the user needed to implement the user.Info interface.
* @export
* @interface IoK8sApiAuthenticationV1UserInfo
*/
export interface IoK8sApiAuthenticationV1UserInfo {
/**
* Any additional information provided by the authenticator.
* @type {{ [key: string]: Array<string>; }}
* @memberof IoK8sApiAuthenticationV1UserInfo
*/
extra?: {
[key: string]: Array<string>;
};
/**
* The names of groups this user is a part of.
* @type {Array<string>}
* @memberof IoK8sApiAuthenticationV1UserInfo
*/
groups?: Array<string>;
/**
* A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.
* @type {string}
* @memberof IoK8sApiAuthenticationV1UserInfo
*/
uid?: string;
/**
* The name that uniquely identifies this user among all active users.
* @type {string}
* @memberof IoK8sApiAuthenticationV1UserInfo
*/
username?: string;
}
export declare function IoK8sApiAuthenticationV1UserInfoFromJSON(json: any): IoK8sApiAuthenticationV1UserInfo;
export declare function IoK8sApiAuthenticationV1UserInfoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiAuthenticationV1UserInfo;
export declare function IoK8sApiAuthenticationV1UserInfoToJSON(value?: IoK8sApiAuthenticationV1UserInfo | null): any;