UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

35 lines (34 loc) 1.72 kB
/** * 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. */ import { IoK8sApiAuthorizationV1NonResourceAttributes, IoK8sApiAuthorizationV1ResourceAttributes } from './'; /** * SelfSubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set * @export * @interface IoK8sApiAuthorizationV1SelfSubjectAccessReviewSpec */ export interface IoK8sApiAuthorizationV1SelfSubjectAccessReviewSpec { /** * * @type {IoK8sApiAuthorizationV1NonResourceAttributes} * @memberof IoK8sApiAuthorizationV1SelfSubjectAccessReviewSpec */ nonResourceAttributes?: IoK8sApiAuthorizationV1NonResourceAttributes; /** * * @type {IoK8sApiAuthorizationV1ResourceAttributes} * @memberof IoK8sApiAuthorizationV1SelfSubjectAccessReviewSpec */ resourceAttributes?: IoK8sApiAuthorizationV1ResourceAttributes; } export declare function IoK8sApiAuthorizationV1SelfSubjectAccessReviewSpecFromJSON(json: any): IoK8sApiAuthorizationV1SelfSubjectAccessReviewSpec; export declare function IoK8sApiAuthorizationV1SelfSubjectAccessReviewSpecFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiAuthorizationV1SelfSubjectAccessReviewSpec; export declare function IoK8sApiAuthorizationV1SelfSubjectAccessReviewSpecToJSON(value?: IoK8sApiAuthorizationV1SelfSubjectAccessReviewSpec | null): any;