Module: Google::Cloud::Compute::V1::GlobalOrganizationOperations::Rest::GrpcTranscoding

Extended by:
GrpcTranscoding
Included in:
GrpcTranscoding
Defined in:
lib/google/cloud/compute/v1/global_organization_operations/rest/grpc_transcoding.rb

Overview

GRPC transcoding helper methods for the GlobalOrganizationOperations REST API.

Instance Method Summary collapse

Instance Method Details

#transcode_delete(request_pb) ⇒ Array(String, [String, nil], Hash{String => String})

Returns Uri, Body, Query string parameters.

Parameters:

Returns:

  • (Array(String, [String, nil], Hash{String => String}))

    Uri, Body, Query string parameters



32
33
34
35
36
37
38
39
# File 'lib/google/cloud/compute/v1/global_organization_operations/rest/grpc_transcoding.rb', line 32

def transcode_delete request_pb
  uri = "/compute/v1/locations/global/operations/#{request_pb.operation}"
  body = nil
  query_string_params = {}
  query_string_params["parentId"] = request_pb.parent_id.to_s if request_pb.has_parent_id?

  [uri, body, query_string_params]
end

#transcode_get(request_pb) ⇒ Array(String, [String, nil], Hash{String => String})

Returns Uri, Body, Query string parameters.

Parameters:

Returns:

  • (Array(String, [String, nil], Hash{String => String}))

    Uri, Body, Query string parameters



45
46
47
48
49
50
51
52
# File 'lib/google/cloud/compute/v1/global_organization_operations/rest/grpc_transcoding.rb', line 45

def transcode_get request_pb
  uri = "/compute/v1/locations/global/operations/#{request_pb.operation}"
  body = nil
  query_string_params = {}
  query_string_params["parentId"] = request_pb.parent_id.to_s if request_pb.has_parent_id?

  [uri, body, query_string_params]
end

#transcode_list(request_pb) ⇒ Array(String, [String, nil], Hash{String => String})

Returns Uri, Body, Query string parameters.

Parameters:

Returns:

  • (Array(String, [String, nil], Hash{String => String}))

    Uri, Body, Query string parameters



58
59
60
61
62
63
64
65
66
67
68
69
70
# File 'lib/google/cloud/compute/v1/global_organization_operations/rest/grpc_transcoding.rb', line 58

def transcode_list request_pb
  uri = "/compute/v1/locations/global/operations"
  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["parentId"] = request_pb.parent_id.to_s if request_pb.has_parent_id?
  query_string_params["returnPartialSuccess"] = request_pb.return_partial_success.to_s if request_pb.has_return_partial_success?

  [uri, body, query_string_params]
end