Reference documentation and code samples for the Live Stream V1 API class Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.
Client for the LivestreamService service.
Using Live Stream API, you can generate live streams in the various renditions and streaming formats. The streaming format include HTTP Live Streaming (HLS) and Dynamic Adaptive Streaming over HTTP (DASH). You can send a source stream in the various ways, including Real-Time Messaging Protocol (RTMP) and Secure Reliable Transport (SRT).
Inherits
- Object
Methods
.configure
def self.configure() { |config| ... } -> Client::Configuration
Configure the LivestreamService Client class.
See Configuration for a description of the configuration fields.
- (config) — Configure the Client client.
- config (Client::Configuration)
# Modify the configuration for all LivestreamService clients ::Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.configure do |config| config.timeout = 10.0 end
#configure
def configure() { |config| ... } -> Client::Configuration
Configure the LivestreamService Client instance.
The configuration is set to the derived mode, meaning that values can be changed, but structural changes (adding new fields, etc.) are not allowed. Structural changes should be made on Client.configure.
See Configuration for a description of the configuration fields.
- (config) — Configure the Client client.
- config (Client::Configuration)
#create_asset
def create_asset(request, options = nil) -> ::Gapic::Operation
def create_asset(parent: nil, asset: nil, asset_id: nil, request_id: nil) -> ::Gapic::Operation
Creates a Asset with the provided unique ID in the specified region.
def create_asset(request, options = nil) -> ::Gapic::Operation
create_asset
via a request object, either of type
CreateAssetRequest or an equivalent Hash.
- request (::Google::Cloud::Video::LiveStream::V1::CreateAssetRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def create_asset(parent: nil, asset: nil, asset_id: nil, request_id: nil) -> ::Gapic::Operation
create_asset
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
parent (::String) — Required. The parent location for the resource, in the form of:
projects/{project}/locations/{location}
. - asset (::Google::Cloud::Video::LiveStream::V1::Asset, ::Hash) — Required. The asset resource to be created.
-
asset_id (::String) — Required. The ID of the asset resource to be created.
This value must be 1-63 characters, begin and end with
[a-z0-9]
, could contain dashes (-) in between. -
request_id (::String) — A request ID to identify requests. Specify a unique request ID
so that if you must retry your request, the server will know to ignore
the request if it has already been completed. The server will guarantee
that for at least 60 minutes since the first request.
For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments.
The request ID must be a valid UUID with the exception that zero UUID is not supported
(00000000-0000-0000-0000-000000000000)
.
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::Operation)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/video/live_stream/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Video::LiveStream::V1::CreateAssetRequest.new # Call the create_asset method. result = client.create_asset request # The returned object is of type Gapic::Operation. You can use it to # check the status of an operation, cancel it, or wait for results. # Here is how to wait for a response. result.wait_until_done! timeout: 60 if result.response? p result.response else puts "No response received." end
#create_channel
def create_channel(request, options = nil) -> ::Gapic::Operation
def create_channel(parent: nil, channel: nil, channel_id: nil, request_id: nil) -> ::Gapic::Operation
Creates a channel with the provided unique ID in the specified region.
def create_channel(request, options = nil) -> ::Gapic::Operation
create_channel
via a request object, either of type
CreateChannelRequest or an equivalent Hash.
- request (::Google::Cloud::Video::LiveStream::V1::CreateChannelRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def create_channel(parent: nil, channel: nil, channel_id: nil, request_id: nil) -> ::Gapic::Operation
create_channel
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
parent (::String) — Required. The parent location for the resource, in the form of:
projects/{project}/locations/{location}
. - channel (::Google::Cloud::Video::LiveStream::V1::Channel, ::Hash) — Required. The channel resource to be created.
-
channel_id (::String) — Required. The ID of the channel resource to be created.
This value must be 1-63 characters, begin and end with
[a-z0-9]
, could contain dashes (-) in between. -
request_id (::String) — A request ID to identify requests. Specify a unique request ID
so that if you must retry your request, the server will know to ignore
the request if it has already been completed. The server will guarantee
that for at least 60 minutes since the first request.
For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments.
The request ID must be a valid UUID with the exception that zero UUID is not supported
(00000000-0000-0000-0000-000000000000)
.
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::Operation)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/video/live_stream/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Video::LiveStream::V1::CreateChannelRequest.new # Call the create_channel method. result = client.create_channel request # The returned object is of type Gapic::Operation. You can use it to # check the status of an operation, cancel it, or wait for results. # Here is how to wait for a response. result.wait_until_done! timeout: 60 if result.response? p result.response else puts "No response received." end
#create_clip
def create_clip(request, options = nil) -> ::Gapic::Operation
def create_clip(parent: nil, clip_id: nil, clip: nil, request_id: nil) -> ::Gapic::Operation
Creates a clip with the provided clip ID in the specified channel.
def create_clip(request, options = nil) -> ::Gapic::Operation
create_clip
via a request object, either of type
CreateClipRequest or an equivalent Hash.
- request (::Google::Cloud::Video::LiveStream::V1::CreateClipRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def create_clip(parent: nil, clip_id: nil, clip: nil, request_id: nil) -> ::Gapic::Operation
create_clip
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
parent (::String) — Required. The parent resource name, in the following form:
projects/{project}/locations/{location}/channels/{channel}
. -
clip_id (::String) —
Required. Id of the requesting object in the following form:
- 1 character minimum, 63 characters maximum
- Only contains letters, digits, underscores, and hyphens
- clip (::Google::Cloud::Video::LiveStream::V1::Clip, ::Hash) — Required. The resource being created
-
request_id (::String) — Optional. An optional request ID to identify requests. Specify a unique
request ID so that if you must retry your request, the server will know to
ignore the request if it has already been completed. The server will
guarantee that for at least 60 minutes since the first request.
For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments.
The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::Operation)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/video/live_stream/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Video::LiveStream::V1::CreateClipRequest.new # Call the create_clip method. result = client.create_clip request # The returned object is of type Gapic::Operation. You can use it to # check the status of an operation, cancel it, or wait for results. # Here is how to wait for a response. result.wait_until_done! timeout: 60 if result.response? p result.response else puts "No response received." end
#create_event
def create_event(request, options = nil) -> ::Google::Cloud::Video::LiveStream::V1::Event
def create_event(parent: nil, event: nil, event_id: nil, request_id: nil) -> ::Google::Cloud::Video::LiveStream::V1::Event
Creates an event with the provided unique ID in the specified channel.
def create_event(request, options = nil) -> ::Google::Cloud::Video::LiveStream::V1::Event
create_event
via a request object, either of type
CreateEventRequest or an equivalent Hash.
- request (::Google::Cloud::Video::LiveStream::V1::CreateEventRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def create_event(parent: nil, event: nil, event_id: nil, request_id: nil) -> ::Google::Cloud::Video::LiveStream::V1::Event
create_event
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
parent (::String) — Required. The parent channel for the resource, in the form of:
projects/{project}/locations/{location}/channels/{channelId}
. - event (::Google::Cloud::Video::LiveStream::V1::Event, ::Hash) — Required. The event resource to be created.
-
event_id (::String) — Required. The ID of the event resource to be created.
This value must be 1-63 characters, begin and end with
[a-z0-9]
, could contain dashes (-) in between. -
request_id (::String) — A request ID to identify requests. Specify a unique request ID
so that if you must retry your request, the server will know to ignore
the request if it has already been completed. The server will guarantee
that for at least 60 minutes since the first request.
For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments.
The request ID must be a valid UUID with the exception that zero UUID is not supported
(00000000-0000-0000-0000-000000000000)
.
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Cloud::Video::LiveStream::V1::Event)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/video/live_stream/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Video::LiveStream::V1::CreateEventRequest.new # Call the create_event method. result = client.create_event request # The returned object is of type Google::Cloud::Video::LiveStream::V1::Event. p result
#create_input
def create_input(request, options = nil) -> ::Gapic::Operation
def create_input(parent: nil, input: nil, input_id: nil, request_id: nil) -> ::Gapic::Operation
Creates an input with the provided unique ID in the specified region.
def create_input(request, options = nil) -> ::Gapic::Operation
create_input
via a request object, either of type
CreateInputRequest or an equivalent Hash.
- request (::Google::Cloud::Video::LiveStream::V1::CreateInputRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def create_input(parent: nil, input: nil, input_id: nil, request_id: nil) -> ::Gapic::Operation
create_input
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
parent (::String) — Required. The parent location for the resource, in the form of:
projects/{project}/locations/{location}
. - input (::Google::Cloud::Video::LiveStream::V1::Input, ::Hash) — Required. The input resource to be created.
-
input_id (::String) — Required. The ID of the input resource to be created.
This value must be 1-63 characters, begin and end with
[a-z0-9]
, could contain dashes (-) in between. -
request_id (::String) — A request ID to identify requests. Specify a unique request ID
so that if you must retry your request, the server will know to ignore
the request if it has already been completed. The server will guarantee
that for at least 60 minutes since the first request.
For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments.
The request ID must be a valid UUID with the exception that zero UUID is not supported
(00000000-0000-0000-0000-000000000000)
.
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::Operation)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/video/live_stream/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Video::LiveStream::V1::CreateInputRequest.new # Call the create_input method. result = client.create_input request # The returned object is of type Gapic::Operation. You can use it to # check the status of an operation, cancel it, or wait for results. # Here is how to wait for a response. result.wait_until_done! timeout: 60 if result.response? p result.response else puts "No response received." end
#delete_asset
def delete_asset(request, options = nil) -> ::Gapic::Operation
def delete_asset(name: nil, request_id: nil) -> ::Gapic::Operation
Deletes the specified asset if it is not used.
def delete_asset(request, options = nil) -> ::Gapic::Operation
delete_asset
via a request object, either of type
DeleteAssetRequest or an equivalent Hash.
- request (::Google::Cloud::Video::LiveStream::V1::DeleteAssetRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def delete_asset(name: nil, request_id: nil) -> ::Gapic::Operation
delete_asset
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
name (::String) — Required. The name of the asset resource, in the form of:
projects/{project}/locations/{location}/assets/{assetId}
. -
request_id (::String) — A request ID to identify requests. Specify a unique request ID
so that if you must retry your request, the server will know to ignore
the request if it has already been completed. The server will guarantee
that for at least 60 minutes after the first request.
For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments.
The request ID must be a valid UUID with the exception that zero UUID is not supported
(00000000-0000-0000-0000-000000000000)
.
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::Operation)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/video/live_stream/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Video::LiveStream::V1::DeleteAssetRequest.new # Call the delete_asset method. result = client.delete_asset request # The returned object is of type Gapic::Operation. You can use it to # check the status of an operation, cancel it, or wait for results. # Here is how to wait for a response. result.wait_until_done! timeout: 60 if result.response? p result.response else puts "No response received." end
#delete_channel
def delete_channel(request, options = nil) -> ::Gapic::Operation
def delete_channel(name: nil, request_id: nil, force: nil) -> ::Gapic::Operation
Deletes the specified channel.
def delete_channel(request, options = nil) -> ::Gapic::Operation
delete_channel
via a request object, either of type
DeleteChannelRequest or an equivalent Hash.
- request (::Google::Cloud::Video::LiveStream::V1::DeleteChannelRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def delete_channel(name: nil, request_id: nil, force: nil) -> ::Gapic::Operation
delete_channel
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
name (::String) — Required. The name of the channel resource, in the form of:
projects/{project}/locations/{location}/channels/{channelId}
. -
request_id (::String) — A request ID to identify requests. Specify a unique request ID
so that if you must retry your request, the server will know to ignore
the request if it has already been completed. The server will guarantee
that for at least 60 minutes after the first request.
For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments.
The request ID must be a valid UUID with the exception that zero UUID is not supported
(00000000-0000-0000-0000-000000000000)
. -
force (::Boolean) — If the
force
field is set to the default value offalse
, you must delete all of a channel's events before you can delete the channel itself. If the field is set totrue
, requests to delete a channel also delete associated channel events.
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::Operation)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/video/live_stream/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Video::LiveStream::V1::DeleteChannelRequest.new # Call the delete_channel method. result = client.delete_channel request # The returned object is of type Gapic::Operation. You can use it to # check the status of an operation, cancel it, or wait for results. # Here is how to wait for a response. result.wait_until_done! timeout: 60 if result.response? p result.response else puts "No response received." end
#delete_clip
def delete_clip(request, options = nil) -> ::Gapic::Operation
def delete_clip(name: nil, request_id: nil) -> ::Gapic::Operation
Deletes the specified clip job resource. This method only deletes the clip job and does not delete the VOD clip stored in the GCS.
def delete_clip(request, options = nil) -> ::Gapic::Operation
delete_clip
via a request object, either of type
DeleteClipRequest or an equivalent Hash.
- request (::Google::Cloud::Video::LiveStream::V1::DeleteClipRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def delete_clip(name: nil, request_id: nil) -> ::Gapic::Operation
delete_clip
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
name (::String) — Required. The name of the clip resource, in the form of:
projects/{project}/locations/{location}/channels/{channelId}/clips/{clipId}
. -
request_id (::String) — Optional. A request ID to identify requests. Specify a unique request ID
so that if you must retry your request, the server will know to ignore
the request if it has already been completed. The server will guarantee
that for at least 60 minutes since the first request.
For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments.
The request ID must be a valid UUID with the exception that zero UUID is not supported
(00000000-0000-0000-0000-000000000000)
.
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::Operation)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/video/live_stream/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Video::LiveStream::V1::DeleteClipRequest.new # Call the delete_clip method. result = client.delete_clip request # The returned object is of type Gapic::Operation. You can use it to # check the status of an operation, cancel it, or wait for results. # Here is how to wait for a response. result.wait_until_done! timeout: 60 if result.response? p result.response else puts "No response received." end
#delete_event
def delete_event(request, options = nil) -> ::Google::Protobuf::Empty
def delete_event(name: nil, request_id: nil) -> ::Google::Protobuf::Empty
Deletes the specified event.
def delete_event(request, options = nil) -> ::Google::Protobuf::Empty
delete_event
via a request object, either of type
DeleteEventRequest or an equivalent Hash.
- request (::Google::Cloud::Video::LiveStream::V1::DeleteEventRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def delete_event(name: nil, request_id: nil) -> ::Google::Protobuf::Empty
delete_event
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
name (::String) — Required. The name of the event resource, in the form of:
projects/{project}/locations/{location}/channels/{channelId}/events/{eventId}
. -
request_id (::String) — A request ID to identify requests. Specify a unique request ID
so that if you must retry your request, the server will know to ignore
the request if it has already been completed. The server will guarantee
that for at least 60 minutes since the first request.
For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments.
The request ID must be a valid UUID with the exception that zero UUID is not supported
(00000000-0000-0000-0000-000000000000)
.
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Protobuf::Empty)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/video/live_stream/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Video::LiveStream::V1::DeleteEventRequest.new # Call the delete_event method. result = client.delete_event request # The returned object is of type Google::Protobuf::Empty. p result
#delete_input
def delete_input(request, options = nil) -> ::Gapic::Operation
def delete_input(name: nil, request_id: nil) -> ::Gapic::Operation
Deletes the specified input.
def delete_input(request, options = nil) -> ::Gapic::Operation
delete_input
via a request object, either of type
DeleteInputRequest or an equivalent Hash.
- request (::Google::Cloud::Video::LiveStream::V1::DeleteInputRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def delete_input(name: nil, request_id: nil) -> ::Gapic::Operation
delete_input
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
name (::String) — Required. The name of the input resource, in the form of:
projects/{project}/locations/{location}/inputs/{inputId}
. -
request_id (::String) — A request ID to identify requests. Specify a unique request ID
so that if you must retry your request, the server will know to ignore
the request if it has already been completed. The server will guarantee
that for at least 60 minutes since the first request.
For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments.
The request ID must be a valid UUID with the exception that zero UUID is not supported
(00000000-0000-0000-0000-000000000000)
.
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::Operation)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/video/live_stream/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Video::LiveStream::V1::DeleteInputRequest.new # Call the delete_input method. result = client.delete_input request # The returned object is of type Gapic::Operation. You can use it to # check the status of an operation, cancel it, or wait for results. # Here is how to wait for a response. result.wait_until_done! timeout: 60 if result.response? p result.response else puts "No response received." end
#get_asset
def get_asset(request, options = nil) -> ::Google::Cloud::Video::LiveStream::V1::Asset
def get_asset(name: nil) -> ::Google::Cloud::Video::LiveStream::V1::Asset
Returns the specified asset.
def get_asset(request, options = nil) -> ::Google::Cloud::Video::LiveStream::V1::Asset
get_asset
via a request object, either of type
GetAssetRequest or an equivalent Hash.
- request (::Google::Cloud::Video::LiveStream::V1::GetAssetRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def get_asset(name: nil) -> ::Google::Cloud::Video::LiveStream::V1::Asset
get_asset
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
name (::String) — Required. Name of the resource, in the following form:
projects/{project}/locations/{location}/assets/{asset}
.
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Cloud::Video::LiveStream::V1::Asset)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/video/live_stream/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Video::LiveStream::V1::GetAssetRequest.new # Call the get_asset method. result = client.get_asset request # The returned object is of type Google::Cloud::Video::LiveStream::V1::Asset. p result
#get_channel
def get_channel(request, options = nil) -> ::Google::Cloud::Video::LiveStream::V1::Channel
def get_channel(name: nil) -> ::Google::Cloud::Video::LiveStream::V1::Channel
Returns the specified channel.
def get_channel(request, options = nil) -> ::Google::Cloud::Video::LiveStream::V1::Channel
get_channel
via a request object, either of type
GetChannelRequest or an equivalent Hash.
- request (::Google::Cloud::Video::LiveStream::V1::GetChannelRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def get_channel(name: nil) -> ::Google::Cloud::Video::LiveStream::V1::Channel
get_channel
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
name (::String) — Required. The name of the channel resource, in the form of:
projects/{project}/locations/{location}/channels/{channelId}
.
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Cloud::Video::LiveStream::V1::Channel)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/video/live_stream/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Video::LiveStream::V1::GetChannelRequest.new # Call the get_channel method. result = client.get_channel request # The returned object is of type Google::Cloud::Video::LiveStream::V1::Channel. p result
#get_clip
def get_clip(request, options = nil) -> ::Google::Cloud::Video::LiveStream::V1::Clip
def get_clip(name: nil) -> ::Google::Cloud::Video::LiveStream::V1::Clip
Returns the specified clip.
def get_clip(request, options = nil) -> ::Google::Cloud::Video::LiveStream::V1::Clip
get_clip
via a request object, either of type
GetClipRequest or an equivalent Hash.
- request (::Google::Cloud::Video::LiveStream::V1::GetClipRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def get_clip(name: nil) -> ::Google::Cloud::Video::LiveStream::V1::Clip
get_clip
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
name (::String) — Required. Name of the resource, in the following form:
projects/{project}/locations/{location}/channels/{channel}/clips/{clip}
.
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Cloud::Video::LiveStream::V1::Clip)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/video/live_stream/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Video::LiveStream::V1::GetClipRequest.new # Call the get_clip method. result = client.get_clip request # The returned object is of type Google::Cloud::Video::LiveStream::V1::Clip. p result
#get_event
def get_event(request, options = nil) -> ::Google::Cloud::Video::LiveStream::V1::Event
def get_event(name: nil) -> ::Google::Cloud::Video::LiveStream::V1::Event
Returns the specified event.
def get_event(request, options = nil) -> ::Google::Cloud::Video::LiveStream::V1::Event
get_event
via a request object, either of type
GetEventRequest or an equivalent Hash.
- request (::Google::Cloud::Video::LiveStream::V1::GetEventRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def get_event(name: nil) -> ::Google::Cloud::Video::LiveStream::V1::Event
get_event
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
name (::String) — Required. The name of the event resource, in the form of:
projects/{project}/locations/{location}/channels/{channelId}/events/{eventId}
.
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Cloud::Video::LiveStream::V1::Event)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/video/live_stream/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Video::LiveStream::V1::GetEventRequest.new # Call the get_event method. result = client.get_event request # The returned object is of type Google::Cloud::Video::LiveStream::V1::Event. p result
#get_input
def get_input(request, options = nil) -> ::Google::Cloud::Video::LiveStream::V1::Input
def get_input(name: nil) -> ::Google::Cloud::Video::LiveStream::V1::Input
Returns the specified input.
def get_input(request, options = nil) -> ::Google::Cloud::Video::LiveStream::V1::Input
get_input
via a request object, either of type
GetInputRequest or an equivalent Hash.
- request (::Google::Cloud::Video::LiveStream::V1::GetInputRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def get_input(name: nil) -> ::Google::Cloud::Video::LiveStream::V1::Input
get_input
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
name (::String) — Required. The name of the input resource, in the form of:
projects/{project}/locations/{location}/inputs/{inputId}
.
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Cloud::Video::LiveStream::V1::Input)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/video/live_stream/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Video::LiveStream::V1::GetInputRequest.new # Call the get_input method. result = client.get_input request # The returned object is of type Google::Cloud::Video::LiveStream::V1::Input. p result
#get_pool
def get_pool(request, options = nil) -> ::Google::Cloud::Video::LiveStream::V1::Pool
def get_pool(name: nil) -> ::Google::Cloud::Video::LiveStream::V1::Pool
Returns the specified pool.
def get_pool(request, options = nil) -> ::Google::Cloud::Video::LiveStream::V1::Pool
get_pool
via a request object, either of type
GetPoolRequest or an equivalent Hash.
- request (::Google::Cloud::Video::LiveStream::V1::GetPoolRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def get_pool(name: nil) -> ::Google::Cloud::Video::LiveStream::V1::Pool
get_pool
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
name (::String) — Required. The name of the pool resource, in the form of:
projects/{project}/locations/{location}/pools/{poolId}
.
- (response, operation) — Access the result along with the RPC operation
- response (::Google::Cloud::Video::LiveStream::V1::Pool)
- operation (::GRPC::ActiveCall::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/video/live_stream/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Video::LiveStream::V1::GetPoolRequest.new # Call the get_pool method. result = client.get_pool request # The returned object is of type Google::Cloud::Video::LiveStream::V1::Pool. p result
#initialize
def initialize() { |config| ... } -> Client
Create a new LivestreamService client object.
- (config) — Configure the LivestreamService client.
- config (Client::Configuration)
- (Client) — a new instance of Client
# Create a client using the default configuration client = ::Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new # Create a client using a custom configuration client = ::Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new do |config| config.timeout = 10.0 end
#list_assets
def list_assets(request, options = nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Asset>
def list_assets(parent: nil, page_size: nil, page_token: nil, filter: nil, order_by: nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Asset>
Returns a list of all assets in the specified region.
def list_assets(request, options = nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Asset>
list_assets
via a request object, either of type
Google::Cloud::Video::LiveStream::V1::ListAssetsRequest or an equivalent Hash.
- request (::Google::Cloud::Video::LiveStream::V1::ListAssetsRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def list_assets(parent: nil, page_size: nil, page_token: nil, filter: nil, order_by: nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Asset>
list_assets
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
parent (::String) — Required. The parent location for the resource, in the form of:
projects/{project}/locations/{location}
. - page_size (::Integer) — Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default.
- page_token (::String) — A token identifying a page of results the server should return.
- filter (::String) — Filtering results
- order_by (::String) — Hint for how to order the results
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Asset>)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Asset>)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/video/live_stream/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Video::LiveStream::V1::ListAssetsRequest.new # Call the list_assets method. result = client.list_assets request # The returned object is of type Gapic::PagedEnumerable. You can iterate # over elements, and API calls will be issued to fetch pages as needed. result.each do |item| # Each element is of type ::Google::Cloud::Video::LiveStream::V1::Asset. p item end
#list_channels
def list_channels(request, options = nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Channel>
def list_channels(parent: nil, page_size: nil, page_token: nil, filter: nil, order_by: nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Channel>
Returns a list of all channels in the specified region.
def list_channels(request, options = nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Channel>
list_channels
via a request object, either of type
Google::Cloud::Video::LiveStream::V1::ListChannelsRequest or an equivalent Hash.
- request (::Google::Cloud::Video::LiveStream::V1::ListChannelsRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def list_channels(parent: nil, page_size: nil, page_token: nil, filter: nil, order_by: nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Channel>
list_channels
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
parent (::String) — Required. The parent location for the resource, in the form of:
projects/{project}/locations/{location}
. - page_size (::Integer) — The maximum number of items to return. If unspecified, server will pick an appropriate default. Server may return fewer items than requested. A caller should only rely on response's next_page_token to determine if there are more items left to be queried.
- page_token (::String) — The next_page_token value returned from a previous List request, if any.
- filter (::String) — The filter to apply to list results.
- order_by (::String) — Specifies the ordering of results following syntax at https://cloud.google.com/apis/design/design_patterns#sorting_order.
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Channel>)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Channel>)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/video/live_stream/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Video::LiveStream::V1::ListChannelsRequest.new # Call the list_channels method. result = client.list_channels request # The returned object is of type Gapic::PagedEnumerable. You can iterate # over elements, and API calls will be issued to fetch pages as needed. result.each do |item| # Each element is of type ::Google::Cloud::Video::LiveStream::V1::Channel. p item end
#list_clips
def list_clips(request, options = nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Clip>
def list_clips(parent: nil, page_size: nil, page_token: nil, filter: nil, order_by: nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Clip>
Returns a list of all clips in the specified channel.
def list_clips(request, options = nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Clip>
list_clips
via a request object, either of type
Google::Cloud::Video::LiveStream::V1::ListClipsRequest or an equivalent Hash.
- request (::Google::Cloud::Video::LiveStream::V1::ListClipsRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def list_clips(parent: nil, page_size: nil, page_token: nil, filter: nil, order_by: nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Clip>
list_clips
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- parent (::String) — Required. Parent value for ListClipsRequest
- page_size (::Integer) — Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default.
- page_token (::String) — A token identifying a page of results the server should return.
- filter (::String) — Filtering results
- order_by (::String) — Hint for how to order the results
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Clip>)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Clip>)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/video/live_stream/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Video::LiveStream::V1::ListClipsRequest.new # Call the list_clips method. result = client.list_clips request # The returned object is of type Gapic::PagedEnumerable. You can iterate # over elements, and API calls will be issued to fetch pages as needed. result.each do |item| # Each element is of type ::Google::Cloud::Video::LiveStream::V1::Clip. p item end
#list_events
def list_events(request, options = nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Event>
def list_events(parent: nil, page_size: nil, page_token: nil, filter: nil, order_by: nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Event>
Returns a list of all events in the specified channel.
def list_events(request, options = nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Event>
list_events
via a request object, either of type
Google::Cloud::Video::LiveStream::V1::ListEventsRequest or an equivalent Hash.
- request (::Google::Cloud::Video::LiveStream::V1::ListEventsRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def list_events(parent: nil, page_size: nil, page_token: nil, filter: nil, order_by: nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Event>
list_events
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
parent (::String) — Required. The parent channel for the resource, in the form of:
projects/{project}/locations/{location}/channels/{channelId}
. - page_size (::Integer) — The maximum number of items to return. If unspecified, server will pick an appropriate default. Server may return fewer items than requested. A caller should only rely on response's next_page_token to determine if there are more items left to be queried.
- page_token (::String) — The next_page_token value returned from a previous List request, if any.
- filter (::String) — The filter to apply to list results.
- order_by (::String) — Specifies the ordering of results following syntax at https://cloud.google.com/apis/design/design_patterns#sorting_order.
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Event>)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Event>)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/video/live_stream/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Video::LiveStream::V1::ListEventsRequest.new # Call the list_events method. result = client.list_events request # The returned object is of type Gapic::PagedEnumerable. You can iterate # over elements, and API calls will be issued to fetch pages as needed. result.each do |item| # Each element is of type ::Google::Cloud::Video::LiveStream::V1::Event. p item end
#list_inputs
def list_inputs(request, options = nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Input>
def list_inputs(parent: nil, page_size: nil, page_token: nil, filter: nil, order_by: nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Input>
Returns a list of all inputs in the specified region.
def list_inputs(request, options = nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Input>
list_inputs
via a request object, either of type
Google::Cloud::Video::LiveStream::V1::ListInputsRequest or an equivalent Hash.
- request (::Google::Cloud::Video::LiveStream::V1::ListInputsRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def list_inputs(parent: nil, page_size: nil, page_token: nil, filter: nil, order_by: nil) -> ::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Input>
list_inputs
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
parent (::String) — Required. The parent location for the resource, in the form of:
projects/{project}/locations/{location}
. - page_size (::Integer) — The maximum number of items to return. If unspecified, server will pick an appropriate default. Server may return fewer items than requested. A caller should only rely on response's next_page_token to determine if there are more items left to be queried.
- page_token (::String) — The next_page_token value returned from a previous List request, if any.
- filter (::String) — The filter to apply to list results.
- order_by (::String) — Specifies the ordering of results following syntax at Sorting Order.
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Input>)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::PagedEnumerable<::Google::Cloud::Video::LiveStream::V1::Input>)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/video/live_stream/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Video::LiveStream::V1::ListInputsRequest.new # Call the list_inputs method. result = client.list_inputs request # The returned object is of type Gapic::PagedEnumerable. You can iterate # over elements, and API calls will be issued to fetch pages as needed. result.each do |item| # Each element is of type ::Google::Cloud::Video::LiveStream::V1::Input. p item end
#location_client
def location_client() -> Google::Cloud::Location::Locations::Client
Get the associated client for mix-in of the Locations.
- (Google::Cloud::Location::Locations::Client)
#operations_client
def operations_client() -> ::Google::Cloud::Video::LiveStream::V1::LivestreamService::Operations
Get the associated client for long-running operations.
#start_channel
def start_channel(request, options = nil) -> ::Gapic::Operation
def start_channel(name: nil, request_id: nil) -> ::Gapic::Operation
Starts the specified channel. Part of the video pipeline will be created only when the StartChannel request is received by the server.
def start_channel(request, options = nil) -> ::Gapic::Operation
start_channel
via a request object, either of type
StartChannelRequest or an equivalent Hash.
- request (::Google::Cloud::Video::LiveStream::V1::StartChannelRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def start_channel(name: nil, request_id: nil) -> ::Gapic::Operation
start_channel
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
name (::String) — Required. The name of the channel resource, in the form of:
projects/{project}/locations/{location}/channels/{channelId}
. -
request_id (::String) — A request ID to identify requests. Specify a unique request ID
so that if you must retry your request, the server will know to ignore
the request if it has already been completed. The server will guarantee
that for at least 60 minutes since the first request.
For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments.
The request ID must be a valid UUID with the exception that zero UUID is not supported
(00000000-0000-0000-0000-000000000000)
.
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::Operation)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/video/live_stream/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Video::LiveStream::V1::StartChannelRequest.new # Call the start_channel method. result = client.start_channel request # The returned object is of type Gapic::Operation. You can use it to # check the status of an operation, cancel it, or wait for results. # Here is how to wait for a response. result.wait_until_done! timeout: 60 if result.response? p result.response else puts "No response received." end
#stop_channel
def stop_channel(request, options = nil) -> ::Gapic::Operation
def stop_channel(name: nil, request_id: nil) -> ::Gapic::Operation
Stops the specified channel. Part of the video pipeline will be released when the StopChannel request is received by the server.
def stop_channel(request, options = nil) -> ::Gapic::Operation
stop_channel
via a request object, either of type
StopChannelRequest or an equivalent Hash.
- request (::Google::Cloud::Video::LiveStream::V1::StopChannelRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def stop_channel(name: nil, request_id: nil) -> ::Gapic::Operation
stop_channel
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
name (::String) — Required. The name of the channel resource, in the form of:
projects/{project}/locations/{location}/channels/{channelId}
. -
request_id (::String) — A request ID to identify requests. Specify a unique request ID
so that if you must retry your request, the server will know to ignore
the request if it has already been completed. The server will guarantee
that for at least 60 minutes since the first request.
For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments.
The request ID must be a valid UUID with the exception that zero UUID is not supported
(00000000-0000-0000-0000-000000000000)
.
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::Operation)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/video/live_stream/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Video::LiveStream::V1::StopChannelRequest.new # Call the stop_channel method. result = client.stop_channel request # The returned object is of type Gapic::Operation. You can use it to # check the status of an operation, cancel it, or wait for results. # Here is how to wait for a response. result.wait_until_done! timeout: 60 if result.response? p result.response else puts "No response received." end
#universe_domain
def universe_domain() -> String
The effective universe domain
- (String)
#update_channel
def update_channel(request, options = nil) -> ::Gapic::Operation
def update_channel(update_mask: nil, channel: nil, request_id: nil) -> ::Gapic::Operation
Updates the specified channel.
def update_channel(request, options = nil) -> ::Gapic::Operation
update_channel
via a request object, either of type
UpdateChannelRequest or an equivalent Hash.
- request (::Google::Cloud::Video::LiveStream::V1::UpdateChannelRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def update_channel(update_mask: nil, channel: nil, request_id: nil) -> ::Gapic::Operation
update_channel
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
update_mask (::Google::Protobuf::FieldMask, ::Hash) — Field mask is used to specify the fields to be overwritten in the Channel
resource by the update. You can only update the following fields:
inputAttachments
inputConfig
output
elementaryStreams
muxStreams
manifests
spriteSheets
logConfig
timecodeConfig
encryptions
The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask.
If the mask is not present, then each field from the list above is updated if the field appears in the request payload. To unset a field, add the field to the update mask and remove it from the request payload.
- channel (::Google::Cloud::Video::LiveStream::V1::Channel, ::Hash) — Required. The channel resource to be updated.
-
request_id (::String) — A request ID to identify requests. Specify a unique request ID
so that if you must retry your request, the server will know to ignore
the request if it has already been completed. The server will guarantee
that for at least 60 minutes since the first request.
For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments.
The request ID must be a valid UUID with the exception that zero UUID is not supported
(00000000-0000-0000-0000-000000000000)
.
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::Operation)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/video/live_stream/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Video::LiveStream::V1::UpdateChannelRequest.new # Call the update_channel method. result = client.update_channel request # The returned object is of type Gapic::Operation. You can use it to # check the status of an operation, cancel it, or wait for results. # Here is how to wait for a response. result.wait_until_done! timeout: 60 if result.response? p result.response else puts "No response received." end
#update_input
def update_input(request, options = nil) -> ::Gapic::Operation
def update_input(update_mask: nil, input: nil, request_id: nil) -> ::Gapic::Operation
Updates the specified input.
def update_input(request, options = nil) -> ::Gapic::Operation
update_input
via a request object, either of type
UpdateInputRequest or an equivalent Hash.
- request (::Google::Cloud::Video::LiveStream::V1::UpdateInputRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def update_input(update_mask: nil, input: nil, request_id: nil) -> ::Gapic::Operation
update_input
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
update_mask (::Google::Protobuf::FieldMask, ::Hash) — Field mask is used to specify the fields to be overwritten in the Input
resource by the update. You can only update the following fields:
The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask.
If the mask is not present, then each field from the list above is updated if the field appears in the request payload. To unset a field, add the field to the update mask and remove it from the request payload.
- input (::Google::Cloud::Video::LiveStream::V1::Input, ::Hash) — Required. The input resource to be updated.
-
request_id (::String) — A request ID to identify requests. Specify a unique request ID
so that if you must retry your request, the server will know to ignore
the request if it has already been completed. The server will guarantee
that for at least 60 minutes since the first request.
For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments.
The request ID must be a valid UUID with the exception that zero UUID is not supported
(00000000-0000-0000-0000-000000000000)
.
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::Operation)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/video/live_stream/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Video::LiveStream::V1::UpdateInputRequest.new # Call the update_input method. result = client.update_input request # The returned object is of type Gapic::Operation. You can use it to # check the status of an operation, cancel it, or wait for results. # Here is how to wait for a response. result.wait_until_done! timeout: 60 if result.response? p result.response else puts "No response received." end
#update_pool
def update_pool(request, options = nil) -> ::Gapic::Operation
def update_pool(update_mask: nil, pool: nil, request_id: nil) -> ::Gapic::Operation
Updates the specified pool.
def update_pool(request, options = nil) -> ::Gapic::Operation
update_pool
via a request object, either of type
UpdatePoolRequest or an equivalent Hash.
- request (::Google::Cloud::Video::LiveStream::V1::UpdatePoolRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
def update_pool(update_mask: nil, pool: nil, request_id: nil) -> ::Gapic::Operation
update_pool
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
update_mask (::Google::Protobuf::FieldMask, ::Hash) — Field mask is used to specify the fields to be overwritten in the Pool
resource by the update. You can only update the following fields:
networkConfig
The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask.
- pool (::Google::Cloud::Video::LiveStream::V1::Pool, ::Hash) — Required. The pool resource to be updated.
-
request_id (::String) — A request ID to identify requests. Specify a unique request ID
so that if you must retry your request, the server will know to ignore
the request if it has already been completed. The server will guarantee
that for at least 60 minutes since the first request.
For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments.
The request ID must be a valid UUID with the exception that zero UUID is not supported
(00000000-0000-0000-0000-000000000000)
.
- (response, operation) — Access the result along with the RPC operation
- response (::Gapic::Operation)
- operation (::GRPC::ActiveCall::Operation)
- (::Gapic::Operation)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/video/live_stream/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Cloud::Video::LiveStream::V1::UpdatePoolRequest.new # Call the update_pool method. result = client.update_pool request # The returned object is of type Gapic::Operation. You can use it to # check the status of an operation, cancel it, or wait for results. # Here is how to wait for a response. result.wait_until_done! timeout: 60 if result.response? p result.response else puts "No response received." end