Class: Google::Apis::YoutubeV3::LiveStreamHealthStatus
- Inherits:
-
Object
- Object
- Google::Apis::YoutubeV3::LiveStreamHealthStatus
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/youtube_v3/classes.rb,
generated/google/apis/youtube_v3/representations.rb,
generated/google/apis/youtube_v3/representations.rb
Instance Attribute Summary collapse
-
#configuration_issues ⇒ Array<Google::Apis::YoutubeV3::LiveStreamConfigurationIssue>
The configurations issues on this stream Corresponds to the JSON property
configurationIssues
. -
#last_update_time_seconds ⇒ Fixnum
The last time this status was updated (in seconds) Corresponds to the JSON property
lastUpdateTimeSeconds
. -
#status ⇒ String
The status code of this stream Corresponds to the JSON property
status
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LiveStreamHealthStatus
constructor
A new instance of LiveStreamHealthStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ LiveStreamHealthStatus
Returns a new instance of LiveStreamHealthStatus
5130 5131 5132 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 5130 def initialize(**args) update!(**args) end |
Instance Attribute Details
#configuration_issues ⇒ Array<Google::Apis::YoutubeV3::LiveStreamConfigurationIssue>
The configurations issues on this stream
Corresponds to the JSON property configurationIssues
5118 5119 5120 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 5118 def configuration_issues @configuration_issues end |
#last_update_time_seconds ⇒ Fixnum
The last time this status was updated (in seconds)
Corresponds to the JSON property lastUpdateTimeSeconds
5123 5124 5125 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 5123 def last_update_time_seconds @last_update_time_seconds end |
#status ⇒ String
The status code of this stream
Corresponds to the JSON property status
5128 5129 5130 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 5128 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5135 5136 5137 5138 5139 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 5135 def update!(**args) @configuration_issues = args[:configuration_issues] if args.key?(:configuration_issues) @last_update_time_seconds = args[:last_update_time_seconds] if args.key?(:last_update_time_seconds) @status = args[:status] if args.key?(:status) end |