Get Service Template Version
| proton_get_service_template_version | R Documentation | 
Get detailed data for a major or minor version of a service template¶
Description¶
Get detailed data for a major or minor version of a service template.
Usage¶
proton_get_service_template_version(majorVersion, minorVersion,
  templateName)
Arguments¶
| majorVersion | [required] To get service template major version detail data,
include  | 
| minorVersion | [required] To get service template minor version detail data,
include  | 
| templateName | [required] The name of the service template a version of which you want to get detailed data for. | 
Value¶
A list with the following syntax:
list(
  serviceTemplateVersion = list(
    arn = "string",
    compatibleEnvironmentTemplates = list(
      list(
        majorVersion = "string",
        templateName = "string"
      )
    ),
    createdAt = as.POSIXct(
      "2015-01-01"
    ),
    description = "string",
    lastModifiedAt = as.POSIXct(
      "2015-01-01"
    ),
    majorVersion = "string",
    minorVersion = "string",
    recommendedMinorVersion = "string",
    schema = "string",
    status = "REGISTRATION_IN_PROGRESS"|"REGISTRATION_FAILED"|"DRAFT"|"PUBLISHED",
    statusMessage = "string",
    supportedComponentSources = list(
      "DIRECTLY_DEFINED"
    ),
    templateName = "string"
  )
)
Request syntax¶
svc$get_service_template_version(
  majorVersion = "string",
  minorVersion = "string",
  templateName = "string"
)