Class: Google::Apis::YoutubeV3::LiveStream

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

Overview

A live stream describes a live ingestion point.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ LiveStream

Returns a new instance of LiveStream.



5463
5464
5465
# File 'lib/google/apis/youtube_v3/classes.rb', line 5463

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

Instance Attribute Details

#cdnGoogle::Apis::YoutubeV3::CdnSettings

Brief description of the live stream cdn settings. Corresponds to the JSON property cdn



5429
5430
5431
# File 'lib/google/apis/youtube_v3/classes.rb', line 5429

def cdn
  @cdn
end

#content_detailsGoogle::Apis::YoutubeV3::LiveStreamContentDetails

Detailed settings of a stream. Corresponds to the JSON property contentDetails



5434
5435
5436
# File 'lib/google/apis/youtube_v3/classes.rb', line 5434

def content_details
  @content_details
end

#etagString

Etag of this resource. Corresponds to the JSON property etag

Returns:

  • (String)


5439
5440
5441
# File 'lib/google/apis/youtube_v3/classes.rb', line 5439

def etag
  @etag
end

#idString

The ID that YouTube assigns to uniquely identify the stream. Corresponds to the JSON property id

Returns:

  • (String)


5444
5445
5446
# File 'lib/google/apis/youtube_v3/classes.rb', line 5444

def id
  @id
end

#kindString

Identifies what kind of resource this is. Value: the fixed string "youtube# liveStream". Corresponds to the JSON property kind

Returns:

  • (String)


5450
5451
5452
# File 'lib/google/apis/youtube_v3/classes.rb', line 5450

def kind
  @kind
end

#snippetGoogle::Apis::YoutubeV3::LiveStreamSnippet

The snippet object contains basic details about the stream, including its channel, title, and description. Corresponds to the JSON property snippet



5456
5457
5458
# File 'lib/google/apis/youtube_v3/classes.rb', line 5456

def snippet
  @snippet
end

#statusGoogle::Apis::YoutubeV3::LiveStreamStatus

Brief description of the live stream status. Corresponds to the JSON property status



5461
5462
5463
# File 'lib/google/apis/youtube_v3/classes.rb', line 5461

def status
  @status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5468
5469
5470
5471
5472
5473
5474
5475
5476
# File 'lib/google/apis/youtube_v3/classes.rb', line 5468

def update!(**args)
  @cdn = args[:cdn] if args.key?(:cdn)
  @content_details = args[:content_details] if args.key?(:content_details)
  @etag = args[:etag] if args.key?(:etag)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @snippet = args[:snippet] if args.key?(:snippet)
  @status = args[:status] if args.key?(:status)
end