Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1ReportStatus

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

Overview

Status of a report generation process.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudChannelV1ReportStatus

Returns a new instance of GoogleCloudChannelV1ReportStatus.



3002
3003
3004
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3002

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

Instance Attribute Details

#end_timeString

The report generation's completion time. Corresponds to the JSON property endTime

Returns:

  • (String)


2990
2991
2992
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2990

def end_time
  @end_time
end

#start_timeString

The report generation's start time. Corresponds to the JSON property startTime

Returns:

  • (String)


2995
2996
2997
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2995

def start_time
  @start_time
end

#stateString

The current state of the report generation process. Corresponds to the JSON property state

Returns:

  • (String)


3000
3001
3002
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3000

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3007
3008
3009
3010
3011
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3007

def update!(**args)
  @end_time = args[:end_time] if args.key?(:end_time)
  @start_time = args[:start_time] if args.key?(:start_time)
  @state = args[:state] if args.key?(:state)
end