|
| 1 | +/** |
| 2 | + * Api |
| 3 | + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) |
| 4 | + * |
| 5 | + * OpenAPI spec version: master |
| 6 | + * |
| 7 | + * |
| 8 | + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). |
| 9 | + * https://openapi-generator.tech |
| 10 | + * Do not edit the class manually. |
| 11 | + */ |
| 12 | + |
| 13 | +import { ManagementV1LicenseTokenSpec } from '../models/managementV1LicenseTokenSpec'; |
| 14 | +import { ManagementV1LicenseTokenStatus } from '../models/managementV1LicenseTokenStatus'; |
| 15 | +import { V1ObjectMeta } from '../models/V1ObjectMeta'; |
| 16 | + |
| 17 | + |
| 18 | +/** |
| 19 | +* License Token holds the license token information |
| 20 | +*/ |
| 21 | +export class ManagementV1LicenseToken { |
| 22 | + /** |
| 23 | + * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
| 24 | + */ |
| 25 | + 'apiVersion'?: string; |
| 26 | + /** |
| 27 | + * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
| 28 | + */ |
| 29 | + 'kind'?: string; |
| 30 | + 'metadata'?: V1ObjectMeta; |
| 31 | + 'spec'?: ManagementV1LicenseTokenSpec; |
| 32 | + 'status'?: ManagementV1LicenseTokenStatus; |
| 33 | + |
| 34 | + static readonly discriminator: string | undefined = undefined; |
| 35 | + |
| 36 | + static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ |
| 37 | + { |
| 38 | + "name": "apiVersion", |
| 39 | + "baseName": "apiVersion", |
| 40 | + "type": "string", |
| 41 | + "format": "" |
| 42 | + }, |
| 43 | + { |
| 44 | + "name": "kind", |
| 45 | + "baseName": "kind", |
| 46 | + "type": "string", |
| 47 | + "format": "" |
| 48 | + }, |
| 49 | + { |
| 50 | + "name": "metadata", |
| 51 | + "baseName": "metadata", |
| 52 | + "type": "V1ObjectMeta", |
| 53 | + "format": "" |
| 54 | + }, |
| 55 | + { |
| 56 | + "name": "spec", |
| 57 | + "baseName": "spec", |
| 58 | + "type": "ManagementV1LicenseTokenSpec", |
| 59 | + "format": "" |
| 60 | + }, |
| 61 | + { |
| 62 | + "name": "status", |
| 63 | + "baseName": "status", |
| 64 | + "type": "ManagementV1LicenseTokenStatus", |
| 65 | + "format": "" |
| 66 | + } ]; |
| 67 | + |
| 68 | + static getAttributeTypeMap() { |
| 69 | + return ManagementV1LicenseToken.attributeTypeMap; |
| 70 | + } |
| 71 | + |
| 72 | + public constructor() { |
| 73 | + } |
| 74 | +} |
| 75 | + |
0 commit comments