Class: Google::Cloud::Compute::V1::TargetSslProxies::Rest::ServiceStub
- Inherits:
-
Object
- Object
- Google::Cloud::Compute::V1::TargetSslProxies::Rest::ServiceStub
- Defined in:
- lib/google/cloud/compute/v1/target_ssl_proxies/rest/service_stub.rb
Overview
REST service stub for the TargetSslProxies service. service stub contains baseline method implementations including transcoding, making the REST call and deserialing the response
Instance Method Summary collapse
-
#delete(request_pb, options = nil) {|result, response| ... } ⇒ ::Google::Cloud::Compute::V1::Operation
Baseline implementation for the delete REST call.
-
#get(request_pb, options = nil) {|result, response| ... } ⇒ ::Google::Cloud::Compute::V1::TargetSslProxy
Baseline implementation for the get REST call.
-
#initialize(endpoint:, credentials:) ⇒ ServiceStub
constructor
A new instance of ServiceStub.
-
#insert(request_pb, options = nil) {|result, response| ... } ⇒ ::Google::Cloud::Compute::V1::Operation
Baseline implementation for the insert REST call.
-
#list(request_pb, options = nil) {|result, response| ... } ⇒ ::Google::Cloud::Compute::V1::TargetSslProxyList
Baseline implementation for the list REST call.
-
#set_backend_service(request_pb, options = nil) {|result, response| ... } ⇒ ::Google::Cloud::Compute::V1::Operation
Baseline implementation for the set_backend_service REST call.
-
#set_proxy_header(request_pb, options = nil) {|result, response| ... } ⇒ ::Google::Cloud::Compute::V1::Operation
Baseline implementation for the set_proxy_header REST call.
-
#set_ssl_certificates(request_pb, options = nil) {|result, response| ... } ⇒ ::Google::Cloud::Compute::V1::Operation
Baseline implementation for the set_ssl_certificates REST call.
-
#set_ssl_policy(request_pb, options = nil) {|result, response| ... } ⇒ ::Google::Cloud::Compute::V1::Operation
Baseline implementation for the set_ssl_policy REST call.
-
#transcode_delete_request(request_pb) ⇒ Array(String, [String, nil], Hash{String => String})
GRPC transcoding helper method for the delete REST call.
-
#transcode_get_request(request_pb) ⇒ Array(String, [String, nil], Hash{String => String})
GRPC transcoding helper method for the get REST call.
-
#transcode_insert_request(request_pb) ⇒ Array(String, [String, nil], Hash{String => String})
GRPC transcoding helper method for the insert REST call.
-
#transcode_list_request(request_pb) ⇒ Array(String, [String, nil], Hash{String => String})
GRPC transcoding helper method for the list REST call.
-
#transcode_set_backend_service_request(request_pb) ⇒ Array(String, [String, nil], Hash{String => String})
GRPC transcoding helper method for the set_backend_service REST call.
-
#transcode_set_proxy_header_request(request_pb) ⇒ Array(String, [String, nil], Hash{String => String})
GRPC transcoding helper method for the set_proxy_header REST call.
-
#transcode_set_ssl_certificates_request(request_pb) ⇒ Array(String, [String, nil], Hash{String => String})
GRPC transcoding helper method for the set_ssl_certificates REST call.
-
#transcode_set_ssl_policy_request(request_pb) ⇒ Array(String, [String, nil], Hash{String => String})
GRPC transcoding helper method for the set_ssl_policy REST call.
Constructor Details
#initialize(endpoint:, credentials:) ⇒ ServiceStub
Returns a new instance of ServiceStub.
33 34 35 36 37 38 39 |
# File 'lib/google/cloud/compute/v1/target_ssl_proxies/rest/service_stub.rb', line 33 def initialize endpoint:, credentials: # These require statements are intentionally placed here to initialize # the REST modules only when it's required. require "gapic/rest" @client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint, credentials: credentials end |
Instance Method Details
#delete(request_pb, options = nil) {|result, response| ... } ⇒ ::Google::Cloud::Compute::V1::Operation
Baseline implementation for the delete REST call
55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/google/cloud/compute/v1/target_ssl_proxies/rest/service_stub.rb', line 55 def delete request_pb, = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? uri, _body, query_string_params = transcode_delete_request request_pb response = @client_stub.make_delete_request( uri: uri, params: query_string_params, options: ) result = ::Google::Cloud::Compute::V1::Operation.decode_json response.body, ignore_unknown_fields: true yield result, response if block_given? result end |
#get(request_pb, options = nil) {|result, response| ... } ⇒ ::Google::Cloud::Compute::V1::TargetSslProxy
Baseline implementation for the get REST call
100 101 102 103 104 105 106 107 108 109 110 111 112 |
# File 'lib/google/cloud/compute/v1/target_ssl_proxies/rest/service_stub.rb', line 100 def get request_pb, = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? uri, _body, _query_string_params = transcode_get_request request_pb response = @client_stub.make_get_request( uri: uri, options: ) result = ::Google::Cloud::Compute::V1::TargetSslProxy.decode_json response.body, ignore_unknown_fields: true yield result, response if block_given? result end |
#insert(request_pb, options = nil) {|result, response| ... } ⇒ ::Google::Cloud::Compute::V1::Operation
Baseline implementation for the insert REST call
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
# File 'lib/google/cloud/compute/v1/target_ssl_proxies/rest/service_stub.rb', line 143 def insert request_pb, = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? uri, body, query_string_params = transcode_insert_request request_pb response = @client_stub.make_post_request( uri: uri, body: body, params: query_string_params, options: ) result = ::Google::Cloud::Compute::V1::Operation.decode_json response.body, ignore_unknown_fields: true yield result, response if block_given? result end |
#list(request_pb, options = nil) {|result, response| ... } ⇒ ::Google::Cloud::Compute::V1::TargetSslProxyList
Baseline implementation for the list REST call
189 190 191 192 193 194 195 196 197 198 199 200 201 202 |
# File 'lib/google/cloud/compute/v1/target_ssl_proxies/rest/service_stub.rb', line 189 def list request_pb, = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? uri, _body, query_string_params = transcode_list_request request_pb response = @client_stub.make_get_request( uri: uri, params: query_string_params, options: ) result = ::Google::Cloud::Compute::V1::TargetSslProxyList.decode_json response.body, ignore_unknown_fields: true yield result, response if block_given? result end |
#set_backend_service(request_pb, options = nil) {|result, response| ... } ⇒ ::Google::Cloud::Compute::V1::Operation
Baseline implementation for the set_backend_service REST call
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 |
# File 'lib/google/cloud/compute/v1/target_ssl_proxies/rest/service_stub.rb', line 238 def set_backend_service request_pb, = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? uri, body, query_string_params = transcode_set_backend_service_request request_pb response = @client_stub.make_post_request( uri: uri, body: body, params: query_string_params, options: ) result = ::Google::Cloud::Compute::V1::Operation.decode_json response.body, ignore_unknown_fields: true yield result, response if block_given? result end |
#set_proxy_header(request_pb, options = nil) {|result, response| ... } ⇒ ::Google::Cloud::Compute::V1::Operation
Baseline implementation for the set_proxy_header REST call
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 |
# File 'lib/google/cloud/compute/v1/target_ssl_proxies/rest/service_stub.rb', line 284 def set_proxy_header request_pb, = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? uri, body, query_string_params = transcode_set_proxy_header_request request_pb response = @client_stub.make_post_request( uri: uri, body: body, params: query_string_params, options: ) result = ::Google::Cloud::Compute::V1::Operation.decode_json response.body, ignore_unknown_fields: true yield result, response if block_given? result end |
#set_ssl_certificates(request_pb, options = nil) {|result, response| ... } ⇒ ::Google::Cloud::Compute::V1::Operation
Baseline implementation for the set_ssl_certificates REST call
330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 |
# File 'lib/google/cloud/compute/v1/target_ssl_proxies/rest/service_stub.rb', line 330 def set_ssl_certificates request_pb, = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? uri, body, query_string_params = transcode_set_ssl_certificates_request request_pb response = @client_stub.make_post_request( uri: uri, body: body, params: query_string_params, options: ) result = ::Google::Cloud::Compute::V1::Operation.decode_json response.body, ignore_unknown_fields: true yield result, response if block_given? result end |
#set_ssl_policy(request_pb, options = nil) {|result, response| ... } ⇒ ::Google::Cloud::Compute::V1::Operation
Baseline implementation for the set_ssl_policy REST call
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 |
# File 'lib/google/cloud/compute/v1/target_ssl_proxies/rest/service_stub.rb', line 376 def set_ssl_policy request_pb, = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? uri, body, query_string_params = transcode_set_ssl_policy_request request_pb response = @client_stub.make_post_request( uri: uri, body: body, params: query_string_params, options: ) result = ::Google::Cloud::Compute::V1::Operation.decode_json response.body, ignore_unknown_fields: true yield result, response if block_given? result end |
#transcode_delete_request(request_pb) ⇒ Array(String, [String, nil], Hash{String => String})
GRPC transcoding helper method for the delete REST call
77 78 79 80 81 82 83 84 |
# File 'lib/google/cloud/compute/v1/target_ssl_proxies/rest/service_stub.rb', line 77 def transcode_delete_request request_pb uri = "/compute/v1/projects/#{request_pb.project}/global/targetSslProxies/#{request_pb.target_ssl_proxy}" body = nil query_string_params = {} query_string_params["requestId"] = request_pb.request_id.to_s if request_pb.has_request_id? [uri, body, query_string_params] end |
#transcode_get_request(request_pb) ⇒ Array(String, [String, nil], Hash{String => String})
GRPC transcoding helper method for the get REST call
121 122 123 124 125 126 127 |
# File 'lib/google/cloud/compute/v1/target_ssl_proxies/rest/service_stub.rb', line 121 def transcode_get_request request_pb uri = "/compute/v1/projects/#{request_pb.project}/global/targetSslProxies/#{request_pb.target_ssl_proxy}" body = nil query_string_params = {} [uri, body, query_string_params] end |
#transcode_insert_request(request_pb) ⇒ Array(String, [String, nil], Hash{String => String})
GRPC transcoding helper method for the insert REST call
166 167 168 169 170 171 172 173 |
# File 'lib/google/cloud/compute/v1/target_ssl_proxies/rest/service_stub.rb', line 166 def transcode_insert_request request_pb uri = "/compute/v1/projects/#{request_pb.project}/global/targetSslProxies" body = request_pb.target_ssl_proxy_resource.to_json query_string_params = {} query_string_params["requestId"] = request_pb.request_id.to_s if request_pb.has_request_id? [uri, body, query_string_params] end |
#transcode_list_request(request_pb) ⇒ Array(String, [String, nil], Hash{String => String})
GRPC transcoding helper method for the list REST call
211 212 213 214 215 216 217 218 219 220 221 222 |
# File 'lib/google/cloud/compute/v1/target_ssl_proxies/rest/service_stub.rb', line 211 def transcode_list_request request_pb uri = "/compute/v1/projects/#{request_pb.project}/global/targetSslProxies" body = nil query_string_params = {} query_string_params["filter"] = request_pb.filter.to_s if request_pb.has_filter? query_string_params["maxResults"] = request_pb.max_results.to_s if request_pb.has_max_results? query_string_params["orderBy"] = request_pb.order_by.to_s if request_pb.has_order_by? query_string_params["pageToken"] = request_pb.page_token.to_s if request_pb.has_page_token? query_string_params["returnPartialSuccess"] = request_pb.return_partial_success.to_s if request_pb.has_return_partial_success? [uri, body, query_string_params] end |
#transcode_set_backend_service_request(request_pb) ⇒ Array(String, [String, nil], Hash{String => String})
GRPC transcoding helper method for the set_backend_service REST call
261 262 263 264 265 266 267 268 |
# File 'lib/google/cloud/compute/v1/target_ssl_proxies/rest/service_stub.rb', line 261 def transcode_set_backend_service_request request_pb uri = "/compute/v1/projects/#{request_pb.project}/global/targetSslProxies/#{request_pb.target_ssl_proxy}/setBackendService" body = request_pb.target_ssl_proxies_set_backend_service_request_resource.to_json query_string_params = {} query_string_params["requestId"] = request_pb.request_id.to_s if request_pb.has_request_id? [uri, body, query_string_params] end |
#transcode_set_proxy_header_request(request_pb) ⇒ Array(String, [String, nil], Hash{String => String})
GRPC transcoding helper method for the set_proxy_header REST call
307 308 309 310 311 312 313 314 |
# File 'lib/google/cloud/compute/v1/target_ssl_proxies/rest/service_stub.rb', line 307 def transcode_set_proxy_header_request request_pb uri = "/compute/v1/projects/#{request_pb.project}/global/targetSslProxies/#{request_pb.target_ssl_proxy}/setProxyHeader" body = request_pb.target_ssl_proxies_set_proxy_header_request_resource.to_json query_string_params = {} query_string_params["requestId"] = request_pb.request_id.to_s if request_pb.has_request_id? [uri, body, query_string_params] end |
#transcode_set_ssl_certificates_request(request_pb) ⇒ Array(String, [String, nil], Hash{String => String})
GRPC transcoding helper method for the set_ssl_certificates REST call
353 354 355 356 357 358 359 360 |
# File 'lib/google/cloud/compute/v1/target_ssl_proxies/rest/service_stub.rb', line 353 def transcode_set_ssl_certificates_request request_pb uri = "/compute/v1/projects/#{request_pb.project}/global/targetSslProxies/#{request_pb.target_ssl_proxy}/setSslCertificates" body = request_pb.target_ssl_proxies_set_ssl_certificates_request_resource.to_json query_string_params = {} query_string_params["requestId"] = request_pb.request_id.to_s if request_pb.has_request_id? [uri, body, query_string_params] end |
#transcode_set_ssl_policy_request(request_pb) ⇒ Array(String, [String, nil], Hash{String => String})
GRPC transcoding helper method for the set_ssl_policy REST call
399 400 401 402 403 404 405 406 |
# File 'lib/google/cloud/compute/v1/target_ssl_proxies/rest/service_stub.rb', line 399 def transcode_set_ssl_policy_request request_pb uri = "/compute/v1/projects/#{request_pb.project}/global/targetSslProxies/#{request_pb.target_ssl_proxy}/setSslPolicy" body = request_pb.ssl_policy_reference_resource.to_json query_string_params = {} query_string_params["requestId"] = request_pb.request_id.to_s if request_pb.has_request_id? [uri, body, query_string_params] end |