-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
1,162 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/** | ||
* Api | ||
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) | ||
* | ||
* OpenAPI spec version: master | ||
* | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
import { ManagementV1MaintenanceWindow } from '../models/managementV1MaintenanceWindow'; | ||
|
||
|
||
export class ManagementV1Cloud { | ||
'maintenanceWindow'?: ManagementV1MaintenanceWindow; | ||
/** | ||
* ReleaseChannel specifies the release channel for the cloud configuration. This can be used to determine which updates or versions are applied. | ||
*/ | ||
'releaseChannel'?: string; | ||
|
||
static readonly discriminator: string | undefined = undefined; | ||
|
||
static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ | ||
{ | ||
"name": "maintenanceWindow", | ||
"baseName": "maintenanceWindow", | ||
"type": "ManagementV1MaintenanceWindow", | ||
"format": "" | ||
}, | ||
{ | ||
"name": "releaseChannel", | ||
"baseName": "releaseChannel", | ||
"type": "string", | ||
"format": "" | ||
} ]; | ||
|
||
static getAttributeTypeMap() { | ||
return ManagementV1Cloud.attributeTypeMap; | ||
} | ||
|
||
public constructor() { | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
/** | ||
* Api | ||
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) | ||
* | ||
* OpenAPI spec version: master | ||
* | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
import { ManagementV1DevPodWorkspacePresetSpec } from '../models/managementV1DevPodWorkspacePresetSpec'; | ||
import { V1ObjectMeta } from '../models/V1ObjectMeta'; | ||
|
||
|
||
/** | ||
* DevPodWorkspacePreset | ||
*/ | ||
export class ManagementV1DevPodWorkspacePreset { | ||
/** | ||
* 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 | ||
*/ | ||
'apiVersion'?: string; | ||
/** | ||
* 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 | ||
*/ | ||
'kind'?: string; | ||
'metadata'?: V1ObjectMeta; | ||
'spec'?: ManagementV1DevPodWorkspacePresetSpec; | ||
/** | ||
* DevPodWorkspacePresetStatus holds the status | ||
*/ | ||
'status'?: any; | ||
|
||
static readonly discriminator: string | undefined = undefined; | ||
|
||
static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ | ||
{ | ||
"name": "apiVersion", | ||
"baseName": "apiVersion", | ||
"type": "string", | ||
"format": "" | ||
}, | ||
{ | ||
"name": "kind", | ||
"baseName": "kind", | ||
"type": "string", | ||
"format": "" | ||
}, | ||
{ | ||
"name": "metadata", | ||
"baseName": "metadata", | ||
"type": "V1ObjectMeta", | ||
"format": "" | ||
}, | ||
{ | ||
"name": "spec", | ||
"baseName": "spec", | ||
"type": "ManagementV1DevPodWorkspacePresetSpec", | ||
"format": "" | ||
}, | ||
{ | ||
"name": "status", | ||
"baseName": "status", | ||
"type": "any", | ||
"format": "" | ||
} ]; | ||
|
||
static getAttributeTypeMap() { | ||
return ManagementV1DevPodWorkspacePreset.attributeTypeMap; | ||
} | ||
|
||
public constructor() { | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/** | ||
* Api | ||
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) | ||
* | ||
* OpenAPI spec version: master | ||
* | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
import { ManagementV1DevPodWorkspacePreset } from '../models/managementV1DevPodWorkspacePreset'; | ||
import { V1ListMeta } from '../models/V1ListMeta'; | ||
|
||
|
||
export class ManagementV1DevPodWorkspacePresetList { | ||
/** | ||
* 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 | ||
*/ | ||
'apiVersion'?: string; | ||
'items': Array<ManagementV1DevPodWorkspacePreset>; | ||
/** | ||
* 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 | ||
*/ | ||
'kind'?: string; | ||
'metadata'?: V1ListMeta; | ||
|
||
static readonly discriminator: string | undefined = undefined; | ||
|
||
static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ | ||
{ | ||
"name": "apiVersion", | ||
"baseName": "apiVersion", | ||
"type": "string", | ||
"format": "" | ||
}, | ||
{ | ||
"name": "items", | ||
"baseName": "items", | ||
"type": "Array<ManagementV1DevPodWorkspacePreset>", | ||
"format": "" | ||
}, | ||
{ | ||
"name": "kind", | ||
"baseName": "kind", | ||
"type": "string", | ||
"format": "" | ||
}, | ||
{ | ||
"name": "metadata", | ||
"baseName": "metadata", | ||
"type": "V1ListMeta", | ||
"format": "" | ||
} ]; | ||
|
||
static getAttributeTypeMap() { | ||
return ManagementV1DevPodWorkspacePresetList.attributeTypeMap; | ||
} | ||
|
||
public constructor() { | ||
} | ||
} | ||
|
Oops, something went wrong.