class Google::Apis::WorkflowsV1::Workflow

Workflow program to be executed by Workflows.

Attributes

create_time[RW]

Output only. The timestamp of when the workflow was created. Corresponds to the JSON property `createTime` @return [String]

description[RW]

Description of the workflow provided by the user. Must be at most 1000 unicode characters long. Corresponds to the JSON property `description` @return [String]

labels[RW]

Labels associated with this workflow. Labels can contain at most 64 entries. Keys and values can be no longer than 63 characters and can only contain lowercase letters, numeric characters, underscores and dashes. Label keys must start with a letter. International characters are allowed. Corresponds to the JSON property `labels` @return [Hash<String,String>]

name[RW]

The resource name of the workflow. Format: projects/`project`/locations/` location`/workflows/`workflow` Corresponds to the JSON property `name` @return [String]

revision_create_time[RW]

Output only. The timestamp that the latest revision of the workflow was created. Corresponds to the JSON property `revisionCreateTime` @return [String]

revision_id[RW]

Output only. The revision of the workflow. A new revision of a workflow is created as a result of updating the following properties of a workflow: - Service account - Workflow code to be executed The format is “000001-a4d”, where the first 6 characters define the zero-padded revision ordinal number. They are followed by a hyphen and 3 hexadecimal random characters. Corresponds to the JSON property `revisionId` @return [String]

service_account[RW]

The service account associated with the latest workflow version. This service account represents the identity of the workflow and determines what permissions the workflow has. Format: projects/`project`/serviceAccounts/` account` or `account` Using `-` as a wildcard for the “project“ or not providing one at all will infer the project from the account. The “account“ value can be the `email` address or the `unique_id` of the service account. If not provided, workflow will use the project's default service account. Modifying this field for an existing workflow results in a new workflow revision. Corresponds to the JSON property `serviceAccount` @return [String]

source_contents[RW]

Workflow code to be executed. The size limit is 128KB. Corresponds to the JSON property `sourceContents` @return [String]

state[RW]

Output only. State of the workflow deployment. Corresponds to the JSON property `state` @return [String]

update_time[RW]

Output only. The last update timestamp of the workflow. Corresponds to the JSON property `updateTime` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/workflows_v1/classes.rb, line 387
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/workflows_v1/classes.rb, line 392
def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @description = args[:description] if args.key?(:description)
  @labels = args[:labels] if args.key?(:labels)
  @name = args[:name] if args.key?(:name)
  @revision_create_time = args[:revision_create_time] if args.key?(:revision_create_time)
  @revision_id = args[:revision_id] if args.key?(:revision_id)
  @service_account = args[:service_account] if args.key?(:service_account)
  @source_contents = args[:source_contents] if args.key?(:source_contents)
  @state = args[:state] if args.key?(:state)
  @update_time = args[:update_time] if args.key?(:update_time)
end