Skip to content

Update Service Template

proton_update_service_template R Documentation

Update a service template

Description

Update a service template.

Usage

proton_update_service_template(description, displayName, name)

Arguments

description

A description of the service template update.

displayName

The name of the service template to update that's displayed in the developer interface.

name

[required] The name of the service template to update.

Value

A list with the following syntax:

list(
  serviceTemplate = list(
    arn = "string",
    createdAt = as.POSIXct(
      "2015-01-01"
    ),
    description = "string",
    displayName = "string",
    encryptionKey = "string",
    lastModifiedAt = as.POSIXct(
      "2015-01-01"
    ),
    name = "string",
    pipelineProvisioning = "CUSTOMER_MANAGED",
    recommendedVersion = "string"
  )
)

Request syntax

svc$update_service_template(
  description = "string",
  displayName = "string",
  name = "string"
)