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.



392
393
394
# File 'lib/google/apis/workflows_v1/classes.rb', line 392

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

Instance Attribute Details

#call_log_levelString

Optional. Describes the level of platform logging to apply to calls and call responses during executions of this workflow. If both the workflow and the execution specify a logging level, the execution level takes precedence. Corresponds to the JSON property callLogLevel

Returns:

  • (String)


323
324
325
# File 'lib/google/apis/workflows_v1/classes.rb', line 323

def call_log_level
  @call_log_level
end

#create_timeString

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

Returns:

  • (String)


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

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)


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

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>)


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

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)


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

def name
  @name
end

#revision_create_timeString

Output only. The timestamp for the latest revision of the workflow's creation. Corresponds to the JSON property revisionCreateTime

Returns:

  • (String)


353
354
355
# File 'lib/google/apis/workflows_v1/classes.rb', line 353

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)


362
363
364
# File 'lib/google/apis/workflows_v1/classes.rb', line 362

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)


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

def 
  @service_account
end

#source_contentsString

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

Returns:

  • (String)


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

def source_contents
  @source_contents
end

#stateString

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

Returns:

  • (String)


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

def state
  @state
end

#update_timeString

Output only. The timestamp for when the workflow was last updated. Corresponds to the JSON property updateTime

Returns:

  • (String)


390
391
392
# File 'lib/google/apis/workflows_v1/classes.rb', line 390

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



397
398
399
400
401
402
403
404
405
406
407
408
409
# File 'lib/google/apis/workflows_v1/classes.rb', line 397

def update!(**args)
  @call_log_level = args[:call_log_level] if args.key?(:call_log_level)
  @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