Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add latest_instance & failed timestamps for servers #181

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions components/schemas/infrastructure/servers/Server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ properties:
- created
- updated
- deleted
- latest_instance
- provisioning
properties:
created:
Expand All @@ -78,16 +79,23 @@ properties:
deleted:
description: The timestamp of when the server was deleted.
$ref: "../../DateTime.yml"
latest_instance:
description: The timestamp of when the latest instance was deployed to this server.
$ref: "../../DateTime.yml"
provisioning:
type: object
description: Information about the provisioning of the server.
required:
- started
- failed
- completed
properties:
started:
description: A timestamp of when the server started provisioning.
$ref: "../../DateTime.yml"
failed:
description: A timestamp of when the server failed provisioning.
$ref: "../../DateTime.yml"
completed:
description: A timestamp of when the server completed provisioning.
$ref: "../../DateTime.yml"
Expand Down