lib/google/cloud/ids/v1/ids/client.rb in google-cloud-ids-v1-0.2.0 vs lib/google/cloud/ids/v1/ids/client.rb in google-cloud-ids-v1-0.3.0

- old
+ new

@@ -225,17 +225,15 @@ # request = Google::Cloud::IDS::V1::ListEndpointsRequest.new # # # Call the list_endpoints method. # result = client.list_endpoints request # - # # The returned object is of type Gapic::PagedEnumerable. You can - # # iterate over all elements by calling #each, and the enumerable - # # will lazily make API calls to fetch subsequent pages. Other - # # methods are also available for managing paging directly. - # result.each do |response| + # # 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::IDS::V1::Endpoint. - # p response + # p item # end # def list_endpoints request, options = nil raise ::ArgumentError, "request must be provided" if request.nil? @@ -426,18 +424,18 @@ # request = Google::Cloud::IDS::V1::CreateEndpointRequest.new # # # Call the create_endpoint method. # result = client.create_endpoint request # - # # The returned object is of type Gapic::Operation. You can use this - # # object to check the status of an operation, cancel it, or wait - # # for results. Here is how to block until completion: + # # 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 "Error!" + # puts "No response received." # end # def create_endpoint request, options = nil raise ::ArgumentError, "request must be provided" if request.nil? @@ -533,17 +531,17 @@ # request = Google::Cloud::IDS::V1::DeleteEndpointRequest.new # # # Call the delete_endpoint method. # result = client.delete_endpoint request # - # # The returned object is of type Gapic::Operation. You can use this - # # object to check the status of an operation, cancel it, or wait - # # for results. Here is how to block until completion: + # # 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 "Error!" + # puts "No response received." # end # def delete_endpoint request, options = nil raise ::ArgumentError, "request must be provided" if request.nil?