Skip to content
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
}
},
"executions": [],
"scenario": "replica"
"scenario": "replica",
"clustered": false
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"origin_minion_pool_id": null,
"destination_minion_pool_id": null,
"instance_osmorphing_minion_pool_mappings": {},
"clustered": false,
"executions": [
{
"created_at": "2019-07-11T10:06:47.000000",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@
"instances": {}
},
"id": "0460aa4d-6b16-4c98-bd56-27ee186e4a22",
"scenario": "replica"
"scenario": "replica",
"clustered": false
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,8 @@
"ubuntu-xenial": "echo 'anything you need'"
}
},
"scenario": "replica"
"scenario": "replica",
"clustered": false
}
}
}
9 changes: 9 additions & 0 deletions coriolis/api-refs/source/parameters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,15 @@ connection_info_schema:
in: body
type: object
required: false
clustered:
description: |
Present on transfer responses. ``true`` when more than one instance is
listed (multi-instance scheduling: sync barriers and shared-disk
coordination). Set by the server at creation from ``instances``; not
accepted on create.
in: body
type: boolean
required: false
deployment_cancel:
description: |
Object containing information about the type of deployment cancellation.
Expand Down
3 changes: 3 additions & 0 deletions coriolis/api-refs/source/transfer.inc
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ Response
- instance_osmorphing_minion_pool_mappings : instance_osmorphing_minion_pool_mappings
- user_scripts : user_scripts
- scenario: scenario_type
- clustered : clustered

**Example of Transfer List Response**

Expand Down Expand Up @@ -111,6 +112,7 @@ Response
- instance_osmorphing_minion_pool_mappings : instance_osmorphing_minion_pool_mappings
- user_scripts : user_scripts
- scenario: scenario_type
- clustered : clustered

**Example of Transfer Show Response**

Expand Down Expand Up @@ -183,6 +185,7 @@ Response
- instance_osmorphing_minion_pool_mappings : instance_osmorphing_minion_pool_mappings
- user_scripts : user_scripts
- scenario: scenario_type
- clustered : clustered

**Example of Transfer Create Response**

Expand Down
Loading
Loading