LaunchTemplateParameters

Parameters to provide to the template being launched. Note that the metadata in the pipeline code determines which runtime parameters are valid.

JSON representation
{
  "jobName": string,
  "parameters": {
    string: string,
    ...
  },
  "environment": {
    object (RuntimeEnvironment)
  },
  "update": boolean,
  "transformNameMapping": {
    string: string,
    ...
  }
}
Fields
jobName

string

Required. The job name to use for the created job.

The name must match the regular expression [a-z]([-a-z0-9]{0,1022}[a-z0-9])?

parameters

map (key: string, value: string)

The runtime parameters to pass to the job.

environment

object (RuntimeEnvironment)

The runtime environment for the job.

update

boolean

If set, replace the existing pipeline with the name specified by jobName with this pipeline, preserving state.

transformNameMapping

map (key: string, value: string)

Only applicable when updating a pipeline. Map of transform name prefixes of the job to be replaced to the corresponding name prefixes of the new job.