class Google::Apis::ServicemanagementV1::Step

Represents the status of one operation step.

Attributes

description[RW]

The short description of the step. Corresponds to the JSON property `description` @return [String]

status[RW]

The status code. Corresponds to the JSON property `status` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/servicemanagement_v1/classes.rb, line 3640
def update!(**args)
  @description = args[:description] if args.key?(:description)
  @status = args[:status] if args.key?(:status)
end