Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.16 KB

PipelineStep.md

File metadata and controls

28 lines (22 loc) · 1.16 KB

SajariAPIClient::PipelineStep

Properties

Name Type Description Notes
annotations Array<String> Annotations added to the request when the step is run. [optional]
condition String A condition expression to determine if the step should be run. This is a filter expression much like the query filter expression, but it acts upon the pipeline variables. For example, to only run the step if the pipeline `q` variable is not empty, set this to `q != ''`. [optional]
description String Description for the step. Overrides the default description. [optional]
id String ID of the step template.
params Hash<String, PipelineStepParamBinding> Bindings for the step parameters. [optional]
title String Title for the step. Overrides the default title. [optional]

Example

require 'sdk_ruby'

instance = SajariAPIClient::PipelineStep.new(
  annotations: null,
  condition: null,
  description: null,
  id: null,
  params: null,
  title: null
)