28 lines
456 B
GraphQL
28 lines
456 B
GraphQL
mutation provisionManifest(
|
|
$deploymentGroupId: ID!
|
|
$type: ManifestType!
|
|
$format: ManifestFormat!
|
|
$environment: String!
|
|
$files: [KeyValueInput]!
|
|
$raw: String!
|
|
) {
|
|
provisionManifest(
|
|
deploymentGroupId: $deploymentGroupId
|
|
type: $type
|
|
format: $format
|
|
environment: $environment
|
|
files: $files
|
|
raw: $raw
|
|
) {
|
|
scale {
|
|
serviceName
|
|
replicas
|
|
}
|
|
plan {
|
|
type
|
|
service
|
|
machines
|
|
}
|
|
}
|
|
}
|