Class: Google::Apis::YoutubeV3::LiveStream
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::YoutubeV3::LiveStream
 
- 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
Overview
A live stream describes a live ingestion point.
Instance Attribute Summary collapse
- 
  
    
      #cdn  ⇒ Google::Apis::YoutubeV3::CdnSettings 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Brief description of the live stream cdn settings. 
- 
  
    
      #content_details  ⇒ Google::Apis::YoutubeV3::LiveStreamContentDetails 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Detailed settings of a stream. 
- 
  
    
      #etag  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Etag of this resource. 
- 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID that YouTube assigns to uniquely identify the stream. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
- 
  
    
      #snippet  ⇒ Google::Apis::YoutubeV3::LiveStreamSnippet 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The snippet object contains basic details about the stream, including its channel, title, and description. 
- 
  
    
      #status  ⇒ Google::Apis::YoutubeV3::LiveStreamStatus 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Brief description of the live stream status. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ LiveStream 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of LiveStream. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ LiveStream
Returns a new instance of LiveStream
| 4815 4816 4817 | # File 'generated/google/apis/youtube_v3/classes.rb', line 4815 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#cdn ⇒ Google::Apis::YoutubeV3::CdnSettings
Brief description of the live stream cdn settings.
Corresponds to the JSON property cdn
| 4781 4782 4783 | # File 'generated/google/apis/youtube_v3/classes.rb', line 4781 def cdn @cdn end | 
#content_details ⇒ Google::Apis::YoutubeV3::LiveStreamContentDetails
Detailed settings of a stream.
Corresponds to the JSON property contentDetails
| 4786 4787 4788 | # File 'generated/google/apis/youtube_v3/classes.rb', line 4786 def content_details @content_details end | 
#etag ⇒ String
Etag of this resource.
Corresponds to the JSON property etag
| 4791 4792 4793 | # File 'generated/google/apis/youtube_v3/classes.rb', line 4791 def etag @etag end | 
#id ⇒ String
The ID that YouTube assigns to uniquely identify the stream.
Corresponds to the JSON property id
| 4796 4797 4798 | # File 'generated/google/apis/youtube_v3/classes.rb', line 4796 def id @id end | 
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "youtube#
liveStream".
Corresponds to the JSON property kind
| 4802 4803 4804 | # File 'generated/google/apis/youtube_v3/classes.rb', line 4802 def kind @kind end | 
#snippet ⇒ Google::Apis::YoutubeV3::LiveStreamSnippet
The snippet object contains basic details about the stream, including its
channel, title, and description.
Corresponds to the JSON property snippet
| 4808 4809 4810 | # File 'generated/google/apis/youtube_v3/classes.rb', line 4808 def snippet @snippet end | 
#status ⇒ Google::Apis::YoutubeV3::LiveStreamStatus
Brief description of the live stream status.
Corresponds to the JSON property status
| 4813 4814 4815 | # File 'generated/google/apis/youtube_v3/classes.rb', line 4813 def status @status end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 4820 4821 4822 4823 4824 4825 4826 4827 4828 | # File 'generated/google/apis/youtube_v3/classes.rb', line 4820 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 |