joyent-portal/packages/cp-frontend/src/graphql/DeploymentGroupProvision.gql
Sérgio Ramos b865a1d118 style: lint
2017-07-26 15:41:01 +01:00

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
}
}
}