class Google::Apis::YoutubeV3::LiveStreamHealthStatus
Attributes
configuration_issues[RW]
The configurations issues on this stream Corresponds to the JSON property `configurationIssues` @return [Array<Google::Apis::YoutubeV3::LiveStreamConfigurationIssue>]
last_update_time_seconds[RW]
The last time this status was updated (in seconds) Corresponds to the JSON property `lastUpdateTimeSeconds` @return [String]
status[RW]
The status code of this stream Corresponds to the JSON property `status` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/youtube_v3/classes.rb, line 4899 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/youtube_v3/classes.rb, line 4904 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