Reference documentation and code samples for the Apigee Connect V1 API class Google::Cloud::ApigeeConnect::V1::Tether::Client.
Client for the Tether service.
Tether provides a way for the control plane to send HTTP API requests to services in data planes that runs in a remote datacenter without requiring customers to open firewalls on their runtime plane.
Inherits
- Object
Methods
.configure
def self.configure() { |config| ... } -> Client::Configuration
- (config) — Configure the Client client.
- config (Client::Configuration)
# Modify the configuration for all Tether clients ::Google::Cloud::ApigeeConnect::V1::Tether::Client.configure do |config| config.timeout = 10.0 end
#configure
def configure() { |config| ... } -> Client::Configuration
Configure the Tether 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)
#egress
def egress(request, options = nil) { |response, operation| ... } -> ::Enumerable<::Google::Cloud::ApigeeConnect::V1::EgressRequest>
Egress streams egress requests and responses. Logically, this is not actually a streaming request, but uses streaming as a mechanism to flip the client-server relationship of gRPC so that the server can act as a client. The listener, the RPC server, accepts connections from the dialer, the RPC client. The listener streams http requests and the dialer streams http responses.
- request (::Gapic::StreamInput, ::Enumerable<::Google::Cloud::ApigeeConnect::V1::EgressResponse, ::Hash>) — An enumerable of EgressResponse instances.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
- (response, operation) — Access the result along with the RPC operation
- response (::Enumerable<::Google::Cloud::ApigeeConnect::V1::EgressRequest>)
- operation (::GRPC::ActiveCall::Operation)
- (::Enumerable<::Google::Cloud::ApigeeConnect::V1::EgressRequest>)
- (::Google::Cloud::Error) — if the RPC is aborted.
Basic example
require "google/cloud/apigee_connect/v1" # Create a client object. The client can be reused for multiple calls. client = Google::Cloud::ApigeeConnect::V1::Tether::Client.new # Create an input stream. input = Gapic::StreamInput.new # Call the egress method to start streaming. output = client.egress input # Send requests on the stream. For each request object, set fields by # passing keyword arguments. Be sure to close the stream when done. input << Google::Cloud::ApigeeConnect::V1::EgressResponse.new input << Google::Cloud::ApigeeConnect::V1::EgressResponse.new input.close # The returned object is a streamed enumerable yielding elements of type # ::Google::Cloud::ApigeeConnect::V1::EgressRequest output.each do |current_response| p current_response end
#initialize
def initialize() { |config| ... } -> Client
Create a new Tether client object.
- (config) — Configure the Tether client.
- config (Client::Configuration)
- (Client) — a new instance of Client
# Create a client using the default configuration client = ::Google::Cloud::ApigeeConnect::V1::Tether::Client.new # Create a client using a custom configuration client = ::Google::Cloud::ApigeeConnect::V1::Tether::Client.new do |config| config.timeout = 10.0 end