Class: Google::Apis::CloudsupportV2::WorkflowOperationMetadata

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

Overview

Metadata about the operation. Used to lookup the current status.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ WorkflowOperationMetadata

Returns a new instance of WorkflowOperationMetadata.



1156
1157
1158
# File 'lib/google/apis/cloudsupport_v2/classes.rb', line 1156

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

Instance Attribute Details

#namespaceString

The namespace that the job was scheduled in. Must be included in the workflow metadata so the workflow status can be retrieved. Corresponds to the JSON property namespace

Returns:

  • (String)


1144
1145
1146
# File 'lib/google/apis/cloudsupport_v2/classes.rb', line 1144

def namespace
  @namespace
end

#operation_actionString

The type of action the operation is classified as. Corresponds to the JSON property operationAction

Returns:

  • (String)


1149
1150
1151
# File 'lib/google/apis/cloudsupport_v2/classes.rb', line 1149

def operation_action
  @operation_action
end

#workflow_operation_typeString

Which version of the workflow service this operation came from. Corresponds to the JSON property workflowOperationType

Returns:

  • (String)


1154
1155
1156
# File 'lib/google/apis/cloudsupport_v2/classes.rb', line 1154

def workflow_operation_type
  @workflow_operation_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1161
1162
1163
1164
1165
# File 'lib/google/apis/cloudsupport_v2/classes.rb', line 1161

def update!(**args)
  @namespace = args[:namespace] if args.key?(:namespace)
  @operation_action = args[:operation_action] if args.key?(:operation_action)
  @workflow_operation_type = args[:workflow_operation_type] if args.key?(:workflow_operation_type)
end