CreateSoftwareVersionInput
The data required to create a new software version
input CreateSoftwareVersionInput {
versionNumber: String!
sourceUrl: String!
checksum: String
deviceModelId: String!
configTemplate: JSON!
}
Fields
CreateSoftwareVersionInput.versionNumber
● String!
non-null scalar
The version number of the software version
CreateSoftwareVersionInput.sourceUrl
● String!
non-null scalar
The URL where the software version can be downloaded from
CreateSoftwareVersionInput.checksum
● String
scalar
The checksum of the software version
CreateSoftwareVersionInput.deviceModelId
● String!
non-null scalar
The ID of the device model that the software version is compatible with
CreateSoftwareVersionInput.configTemplate
● JSON!
non-null scalar
The configuration template that will be used to generate the configuration file for the software version
Member Of
createSoftwareVersion
mutation