@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
40 lines (39 loc) • 1.29 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.
*/
/**
* RoleRef contains information that points to the role being used
* @export
* @interface IoK8sApiRbacV1RoleRef
*/
export interface IoK8sApiRbacV1RoleRef {
/**
* APIGroup is the group for the resource being referenced
* @type {string}
* @memberof IoK8sApiRbacV1RoleRef
*/
apiGroup: string;
/**
* Kind is the type of resource being referenced
* @type {string}
* @memberof IoK8sApiRbacV1RoleRef
*/
kind: string;
/**
* Name is the name of resource being referenced
* @type {string}
* @memberof IoK8sApiRbacV1RoleRef
*/
name: string;
}
export declare function IoK8sApiRbacV1RoleRefFromJSON(json: any): IoK8sApiRbacV1RoleRef;
export declare function IoK8sApiRbacV1RoleRefFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiRbacV1RoleRef;
export declare function IoK8sApiRbacV1RoleRefToJSON(value?: IoK8sApiRbacV1RoleRef | null): any;