Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1alpha1ReportStatus
- Inherits:
-
Object
- Object
- Google::Apis::CloudchannelV1::GoogleCloudChannelV1alpha1ReportStatus
- 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
-
#end_time ⇒ String
The report generation's completion time.
-
#start_time ⇒ String
The report generation's start time.
-
#state ⇒ String
The current state of the report generation process.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudChannelV1alpha1ReportStatus
constructor
A new instance of GoogleCloudChannelV1alpha1ReportStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudChannelV1alpha1ReportStatus
Returns a new instance of GoogleCloudChannelV1alpha1ReportStatus.
3975 3976 3977 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3975 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_time ⇒ String
The report generation's completion time.
Corresponds to the JSON property endTime
3963 3964 3965 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3963 def end_time @end_time end |
#start_time ⇒ String
The report generation's start time.
Corresponds to the JSON property startTime
3968 3969 3970 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3968 def start_time @start_time end |
#state ⇒ String
The current state of the report generation process.
Corresponds to the JSON property state
3973 3974 3975 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3973 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3980 3981 3982 3983 3984 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3980 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 |