-
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
19 changed files
with
232 additions
and
9 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 |
---|---|---|
|
@@ -54,3 +54,5 @@ tsc-seed-1.0.0.tgz | |
.idea | ||
|
||
/scripts/spec.yaml | ||
|
||
gridscale-gsclient-js-*.tgz |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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,9 @@ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
import { LocationRelationsGpuFlavor } from './LocationRelationsGpuFlavor'; | ||
|
||
export type LocationRelations = { | ||
gpu_flavors?: Array<LocationRelationsGpuFlavor>; | ||
} |
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,37 @@ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
/** | ||
* Types of GPUs which can be used in the specified location | ||
*/ | ||
export type LocationRelationsGpuFlavor = { | ||
/** | ||
* The UUID of an object is always unique, and refers to a specific object. | ||
*/ | ||
object_uuid?: string; | ||
/** | ||
* Name of the GPU flavor | ||
*/ | ||
name?: string; | ||
/** | ||
* Amount of memory per slice in gigabytes | ||
*/ | ||
memory_per_slice?: number; | ||
/** | ||
* Amount of graphics cards per slice | ||
*/ | ||
graphics_cards_per_slice?: number; | ||
/** | ||
* Amount of CPU cores per slice | ||
*/ | ||
cores_per_slice?: number; | ||
/** | ||
* Amount of storage per slice in gigabytes | ||
*/ | ||
local_storage_capacity_per_slice?: number; | ||
/** | ||
* Total amount of slices available of this flavor | ||
*/ | ||
max_slices?: number; | ||
} |
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,56 @@ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
import { LocationChangeRequested } from './LocationChangeRequested'; | ||
import { LocationFeatures } from './LocationFeatures'; | ||
import { LocationInformation } from './LocationInformation'; | ||
import { LocationRelations } from './LocationRelations'; | ||
|
||
export type LocationWithRelations = { | ||
/** | ||
* Uses IATA airport code, which works as a location identifier. | ||
*/ | ||
iata?: string; | ||
/** | ||
* List of labels. | ||
*/ | ||
labels?: Array<string>; | ||
/** | ||
* The human-readable name of the location. It supports the full UTF-8 character set, with a maximum of 64 characters. | ||
*/ | ||
name?: string; | ||
/** | ||
* The UUID of an object is always unique, and refers to a specific object. | ||
*/ | ||
object_uuid?: string; | ||
/** | ||
* Used to uniquely identify the Hybrid Core. | ||
*/ | ||
hybrid_core_uuid?: string; | ||
/** | ||
* The ID of a Hybrid Core. | ||
*/ | ||
hybrid_core_id?: string; | ||
/** | ||
* The human-readable name of the location. It supports the full UTF-8 character set, with a maximum of 64 characters. | ||
*/ | ||
country?: string; | ||
active?: boolean; | ||
change_requested?: LocationChangeRequested; | ||
/** | ||
* The number of dedicated cpunodes to assigne to the private location. | ||
*/ | ||
cpunode_count?: number; | ||
/** | ||
* If this location is publicly available or a private location. | ||
*/ | ||
public?: boolean; | ||
/** | ||
* The product number of a valid and available dedicated cpunode article. | ||
*/ | ||
product_no?: number; | ||
location_information?: LocationInformation; | ||
features?: LocationFeatures; | ||
relations?: LocationRelations; | ||
} |
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
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,13 @@ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
export const $LocationRelations = { | ||
properties: { | ||
gpu_flavors: { | ||
type: 'array', | ||
contains: { | ||
type: 'LocationRelationsGpuFlavor', | ||
}, | ||
}, | ||
}, | ||
}; |
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,29 @@ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
export const $LocationRelationsGpuFlavor = { | ||
properties: { | ||
object_uuid: { | ||
type: 'string', | ||
format: 'uuid', | ||
}, | ||
name: { | ||
type: 'string', | ||
}, | ||
memory_per_slice: { | ||
type: 'number', | ||
}, | ||
graphics_cards_per_slice: { | ||
type: 'number', | ||
}, | ||
cores_per_slice: { | ||
type: 'number', | ||
}, | ||
local_storage_capacity_per_slice: { | ||
type: 'number', | ||
}, | ||
max_slices: { | ||
type: 'number', | ||
}, | ||
}, | ||
}; |
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,60 @@ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
export const $LocationWithRelations = { | ||
properties: { | ||
iata: { | ||
type: 'string', | ||
}, | ||
labels: { | ||
type: 'array', | ||
contains: { | ||
type: 'string', | ||
}, | ||
}, | ||
name: { | ||
type: 'string', | ||
format: 'string', | ||
}, | ||
object_uuid: { | ||
type: 'string', | ||
format: 'uuid', | ||
}, | ||
hybrid_core_uuid: { | ||
type: 'string', | ||
format: 'uuid', | ||
}, | ||
hybrid_core_id: { | ||
type: 'string', | ||
format: 'uuid', | ||
}, | ||
country: { | ||
type: 'string', | ||
format: 'string', | ||
}, | ||
active: { | ||
type: 'boolean', | ||
}, | ||
change_requested: { | ||
type: 'LocationChangeRequested', | ||
}, | ||
cpunode_count: { | ||
type: 'number', | ||
}, | ||
public: { | ||
type: 'boolean', | ||
}, | ||
product_no: { | ||
type: 'number', | ||
}, | ||
location_information: { | ||
type: 'LocationInformation', | ||
}, | ||
features: { | ||
type: 'LocationFeatures', | ||
}, | ||
relations: { | ||
type: 'LocationRelations', | ||
}, | ||
}, | ||
}; |