@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
34 lines (33 loc) • 1.39 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.
*/
/**
* NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface
* @export
* @interface IoK8sApiAuthorizationV1NonResourceAttributes
*/
export interface IoK8sApiAuthorizationV1NonResourceAttributes {
/**
* Path is the URL path of the request
* @type {string}
* @memberof IoK8sApiAuthorizationV1NonResourceAttributes
*/
path?: string;
/**
* Verb is the standard HTTP verb
* @type {string}
* @memberof IoK8sApiAuthorizationV1NonResourceAttributes
*/
verb?: string;
}
export declare function IoK8sApiAuthorizationV1NonResourceAttributesFromJSON(json: any): IoK8sApiAuthorizationV1NonResourceAttributes;
export declare function IoK8sApiAuthorizationV1NonResourceAttributesFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiAuthorizationV1NonResourceAttributes;
export declare function IoK8sApiAuthorizationV1NonResourceAttributesToJSON(value?: IoK8sApiAuthorizationV1NonResourceAttributes | null): any;