-
Notifications
You must be signed in to change notification settings - Fork 6
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
1 parent
404b174
commit 0fb218c
Showing
14 changed files
with
112 additions
and
25 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
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
2 changes: 2 additions & 0 deletions
2
api/services/ocean/ecs/schemas/OceanLaunchSpecLaunchContainerInstancesRequest.yaml
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 |
---|---|---|
@@ -1,4 +1,6 @@ | ||
type: object | ||
required: | ||
- launchRequest | ||
properties: | ||
launchRequest: | ||
type: object | ||
|
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,59 @@ | ||
type: object | ||
required: | ||
- cluster | ||
properties: | ||
cluster: | ||
type: object | ||
title: ECS Ocean | ||
required: | ||
- name | ||
- clusterName | ||
- region | ||
properties: | ||
id: | ||
type: "string" | ||
example: "o-12345abc" | ||
readOnly: true | ||
description: > | ||
Ocean cluster identifier. | ||
name: | ||
type: string | ||
example: "Ocean::my-elastigroup-name" | ||
description: > | ||
Add a name for the Ocean cluster. | ||
clusterName: | ||
type: string | ||
example: "my-ECS-cluster-name" | ||
description: > | ||
ECS cluster name. | ||
autoScaler: | ||
$ref: "../schemas/ocean-autoscaler.yaml" | ||
region: | ||
type: string | ||
example: "us-east-1" | ||
description: > | ||
Select the region for the Ocean cluster to run in. | ||
capacity: | ||
$ref: "../schemas/ocean-capacity.yaml" | ||
strategy: | ||
$ref: "../schemas/ocean-strategy.yaml" | ||
compute: | ||
$ref: "../schemas/ocean-compute.yaml" | ||
scheduling: | ||
$ref: "../schemas/ocean-scheduling.yaml" | ||
logging: | ||
$ref: "../../commons/schemas/logging.yaml" | ||
createdAt: | ||
type: string | ||
readOnly: true | ||
format: date-time | ||
example: "2019-06-03T08:13:08.000Z" | ||
description: > | ||
A timestamp of the Ocean creation. | ||
updatedAt: | ||
type: string | ||
readOnly: true | ||
format: date-time | ||
example: "2019-06-10T15:06:13.000Z" | ||
description: > | ||
A timestamp of the latest Ocean update. |
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
File renamed without changes.
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 |
---|---|---|
@@ -1,8 +1,15 @@ | ||
type: object | ||
properties: | ||
status: | ||
type: string | ||
roll: | ||
type: object | ||
required: | ||
- status | ||
description: > | ||
Sets the status of the roll. | ||
example: "STOPPED" | ||
enum: [ STOPPED ] | ||
properties: | ||
status: | ||
type: string | ||
enum: [STOPPED] | ||
description: > | ||
Set status of a roll. Valid values: "STOPPED" | ||
example: STOPPED |