google-cloud-service_directory-v1beta1 0.8.0 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/AUTHENTICATION.md +1 -1
- data/README.md +12 -7
- data/lib/google/cloud/service_directory/v1beta1/lookup_service/rest/client.rb +389 -0
- data/lib/google/cloud/service_directory/v1beta1/lookup_service/rest/service_stub.rb +108 -0
- data/lib/google/cloud/service_directory/v1beta1/lookup_service/rest.rb +52 -0
- data/lib/google/cloud/service_directory/v1beta1/lookup_service.rb +7 -1
- data/lib/google/cloud/service_directory/v1beta1/registration_service/client.rb +12 -18
- data/lib/google/cloud/service_directory/v1beta1/registration_service/rest/client.rb +1743 -0
- data/lib/google/cloud/service_directory/v1beta1/registration_service/rest/service_stub.rb +1143 -0
- data/lib/google/cloud/service_directory/v1beta1/registration_service/rest.rb +66 -0
- data/lib/google/cloud/service_directory/v1beta1/registration_service.rb +7 -1
- data/lib/google/cloud/service_directory/v1beta1/rest.rb +38 -0
- data/lib/google/cloud/service_directory/v1beta1/version.rb +1 -1
- data/lib/google/cloud/service_directory/v1beta1.rb +7 -2
- data/lib/google/cloud/servicedirectory/v1beta1/endpoint_pb.rb +2 -2
- data/lib/google/cloud/servicedirectory/v1beta1/lookup_service_pb.rb +2 -1
- data/lib/google/cloud/servicedirectory/v1beta1/namespace_pb.rb +2 -2
- data/lib/google/cloud/servicedirectory/v1beta1/registration_service_pb.rb +2 -1
- data/lib/google/cloud/servicedirectory/v1beta1/service_pb.rb +2 -2
- data/proto_docs/google/api/client.rb +318 -0
- data/proto_docs/google/api/launch_stage.rb +71 -0
- data/proto_docs/google/protobuf/duration.rb +98 -0
- data/proto_docs/google/protobuf/empty.rb +0 -2
- metadata +24 -13
@@ -344,13 +344,11 @@ module Google
|
|
344
344
|
# # Call the list_namespaces method.
|
345
345
|
# result = client.list_namespaces request
|
346
346
|
#
|
347
|
-
# # The returned object is of type Gapic::PagedEnumerable. You can
|
348
|
-
# #
|
349
|
-
#
|
350
|
-
# # methods are also available for managing paging directly.
|
351
|
-
# result.each do |response|
|
347
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
348
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
349
|
+
# result.each do |item|
|
352
350
|
# # Each element is of type ::Google::Cloud::ServiceDirectory::V1beta1::Namespace.
|
353
|
-
# p
|
351
|
+
# p item
|
354
352
|
# end
|
355
353
|
#
|
356
354
|
def list_namespaces request, options = nil
|
@@ -837,13 +835,11 @@ module Google
|
|
837
835
|
# # Call the list_services method.
|
838
836
|
# result = client.list_services request
|
839
837
|
#
|
840
|
-
# # The returned object is of type Gapic::PagedEnumerable. You can
|
841
|
-
# #
|
842
|
-
#
|
843
|
-
# # methods are also available for managing paging directly.
|
844
|
-
# result.each do |response|
|
838
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
839
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
840
|
+
# result.each do |item|
|
845
841
|
# # Each element is of type ::Google::Cloud::ServiceDirectory::V1beta1::Service.
|
846
|
-
# p
|
842
|
+
# p item
|
847
843
|
# end
|
848
844
|
#
|
849
845
|
def list_services request, options = nil
|
@@ -1333,13 +1329,11 @@ module Google
|
|
1333
1329
|
# # Call the list_endpoints method.
|
1334
1330
|
# result = client.list_endpoints request
|
1335
1331
|
#
|
1336
|
-
# # The returned object is of type Gapic::PagedEnumerable. You can
|
1337
|
-
# #
|
1338
|
-
#
|
1339
|
-
# # methods are also available for managing paging directly.
|
1340
|
-
# result.each do |response|
|
1332
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
1333
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
1334
|
+
# result.each do |item|
|
1341
1335
|
# # Each element is of type ::Google::Cloud::ServiceDirectory::V1beta1::Endpoint.
|
1342
|
-
# p
|
1336
|
+
# p item
|
1343
1337
|
# end
|
1344
1338
|
#
|
1345
1339
|
def list_endpoints request, options = nil
|