Class: Google::Apis::WorkflowsV1::Workflow

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/workflows_v1/classes.rb,
lib/google/apis/workflows_v1/representations.rb,
lib/google/apis/workflows_v1/representations.rb

Overview

Workflow program to be executed by Workflows.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Workflow

Returns a new instance of Workflow.



386
387
388
# File 'lib/google/apis/workflows_v1/classes.rb', line 386

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#create_timeString

Output only. The timestamp of when the workflow was created. Corresponds to the JSON property createTime

Returns:

  • (String)


321
322
323
# File 'lib/google/apis/workflows_v1/classes.rb', line 321

def create_time
  @create_time
end

#descriptionString

Description of the workflow provided by the user. Must be at most 1000 unicode characters long. Corresponds to the JSON property description

Returns:

  • (String)


327
328
329
# File 'lib/google/apis/workflows_v1/classes.rb', line 327

def description
  @description
end

#labelsHash<String,String>

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

Returns:

  • (Hash<String,String>)


335
336
337
# File 'lib/google/apis/workflows_v1/classes.rb', line 335

def labels
  @labels
end

#nameString

The resource name of the workflow. Format: projects/project/locations/ location/workflows/workflow Corresponds to the JSON property name

Returns:

  • (String)


341
342
343
# File 'lib/google/apis/workflows_v1/classes.rb', line 341

def name
  @name
end

#revision_create_timeString

Output only. The timestamp that the latest revision of the workflow was created. Corresponds to the JSON property revisionCreateTime

Returns:

  • (String)


347
348
349
# File 'lib/google/apis/workflows_v1/classes.rb', line 347

def revision_create_time
  @revision_create_time
end

#revision_idString

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

Returns:

  • (String)


356
357
358
# File 'lib/google/apis/workflows_v1/classes.rb', line 356

def revision_id
  @revision_id
end

#service_accountString

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

Returns:

  • (String)


369
370
371
# File 'lib/google/apis/workflows_v1/classes.rb', line 369

def 
  @service_account
end

#source_contentsString

Workflow code to be executed. The size limit is 128KB. Corresponds to the JSON property sourceContents

Returns:

  • (String)


374
375
376
# File 'lib/google/apis/workflows_v1/classes.rb', line 374

def source_contents
  @source_contents
end

#stateString

Output only. State of the workflow deployment. Corresponds to the JSON property state

Returns:

  • (String)


379
380
381
# File 'lib/google/apis/workflows_v1/classes.rb', line 379

def state
  @state
end

#update_timeString

Output only. The last update timestamp of the workflow. Corresponds to the JSON property updateTime

Returns:

  • (String)


384
385
386
# File 'lib/google/apis/workflows_v1/classes.rb', line 384

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



391
392
393
394
395
396
397
398
399
400
401
402
# File 'lib/google/apis/workflows_v1/classes.rb', line 391

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