google-cloud-apigee_registry-v1 0.3.1 → 0.5.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 +2 -2
- data/lib/google/cloud/apigee_registry/v1/bindings_override.rb +351 -0
- data/lib/google/cloud/apigee_registry/v1/provisioning/client.rb +14 -12
- data/lib/google/cloud/apigee_registry/v1/provisioning/operations.rb +17 -17
- data/lib/google/cloud/apigee_registry/v1/provisioning/rest/client.rb +544 -0
- data/lib/google/cloud/apigee_registry/v1/provisioning/rest/operations.rb +795 -0
- data/lib/google/cloud/apigee_registry/v1/provisioning/rest/service_stub.rb +226 -0
- data/lib/google/cloud/apigee_registry/v1/provisioning/rest.rb +55 -0
- data/lib/google/cloud/apigee_registry/v1/provisioning.rb +7 -1
- data/lib/google/cloud/apigee_registry/v1/registry/client.rb +34 -46
- data/lib/google/cloud/apigee_registry/v1/registry/rest/client.rb +3155 -0
- data/lib/google/cloud/apigee_registry/v1/registry/rest/service_stub.rb +2303 -0
- data/lib/google/cloud/apigee_registry/v1/registry/rest.rb +53 -0
- data/lib/google/cloud/apigee_registry/v1/registry.rb +7 -1
- data/lib/google/cloud/apigee_registry/v1/rest.rb +39 -0
- data/lib/google/cloud/apigee_registry/v1/version.rb +1 -1
- data/lib/google/cloud/apigee_registry/v1.rb +7 -2
- data/lib/google/cloud/apigeeregistry/v1/provisioning_service_pb.rb +25 -42
- data/lib/google/cloud/apigeeregistry/v1/registry_models_pb.rb +25 -64
- data/lib/google/cloud/apigeeregistry/v1/registry_service_pb.rb +26 -179
- data/proto_docs/google/api/client.rb +381 -0
- data/proto_docs/google/api/launch_stage.rb +71 -0
- data/proto_docs/google/protobuf/any.rb +7 -4
- data/proto_docs/google/protobuf/timestamp.rb +1 -3
- data/proto_docs/google/rpc/status.rb +4 -2
- metadata +22 -11
@@ -0,0 +1,226 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2023 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
require "google/cloud/apigeeregistry/v1/provisioning_service_pb"
|
20
|
+
|
21
|
+
module Google
|
22
|
+
module Cloud
|
23
|
+
module ApigeeRegistry
|
24
|
+
module V1
|
25
|
+
module Provisioning
|
26
|
+
module Rest
|
27
|
+
##
|
28
|
+
# REST service stub for the Provisioning service.
|
29
|
+
# Service stub contains baseline method implementations
|
30
|
+
# including transcoding, making the REST call, and deserialing the response.
|
31
|
+
#
|
32
|
+
class ServiceStub
|
33
|
+
def initialize endpoint:, credentials:
|
34
|
+
# These require statements are intentionally placed here to initialize
|
35
|
+
# the REST modules only when it's required.
|
36
|
+
require "gapic/rest"
|
37
|
+
|
38
|
+
@client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint, credentials: credentials,
|
39
|
+
numeric_enums: true,
|
40
|
+
raise_faraday_errors: false
|
41
|
+
end
|
42
|
+
|
43
|
+
##
|
44
|
+
# Baseline implementation for the create_instance REST call
|
45
|
+
#
|
46
|
+
# @param request_pb [::Google::Cloud::ApigeeRegistry::V1::CreateInstanceRequest]
|
47
|
+
# A request object representing the call parameters. Required.
|
48
|
+
# @param options [::Gapic::CallOptions]
|
49
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
50
|
+
#
|
51
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
52
|
+
# @yieldparam result [::Google::Longrunning::Operation]
|
53
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
54
|
+
#
|
55
|
+
# @return [::Google::Longrunning::Operation]
|
56
|
+
# A result object deserialized from the server's reply
|
57
|
+
def create_instance request_pb, options = nil
|
58
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
59
|
+
|
60
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_create_instance_request request_pb
|
61
|
+
query_string_params = if query_string_params.any?
|
62
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
63
|
+
else
|
64
|
+
{}
|
65
|
+
end
|
66
|
+
|
67
|
+
response = @client_stub.make_http_request(
|
68
|
+
verb,
|
69
|
+
uri: uri,
|
70
|
+
body: body || "",
|
71
|
+
params: query_string_params,
|
72
|
+
options: options
|
73
|
+
)
|
74
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
75
|
+
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
76
|
+
|
77
|
+
yield result, operation if block_given?
|
78
|
+
result
|
79
|
+
end
|
80
|
+
|
81
|
+
##
|
82
|
+
# Baseline implementation for the delete_instance REST call
|
83
|
+
#
|
84
|
+
# @param request_pb [::Google::Cloud::ApigeeRegistry::V1::DeleteInstanceRequest]
|
85
|
+
# A request object representing the call parameters. Required.
|
86
|
+
# @param options [::Gapic::CallOptions]
|
87
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
88
|
+
#
|
89
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
90
|
+
# @yieldparam result [::Google::Longrunning::Operation]
|
91
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
92
|
+
#
|
93
|
+
# @return [::Google::Longrunning::Operation]
|
94
|
+
# A result object deserialized from the server's reply
|
95
|
+
def delete_instance request_pb, options = nil
|
96
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
97
|
+
|
98
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_delete_instance_request request_pb
|
99
|
+
query_string_params = if query_string_params.any?
|
100
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
101
|
+
else
|
102
|
+
{}
|
103
|
+
end
|
104
|
+
|
105
|
+
response = @client_stub.make_http_request(
|
106
|
+
verb,
|
107
|
+
uri: uri,
|
108
|
+
body: body || "",
|
109
|
+
params: query_string_params,
|
110
|
+
options: options
|
111
|
+
)
|
112
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
113
|
+
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
114
|
+
|
115
|
+
yield result, operation if block_given?
|
116
|
+
result
|
117
|
+
end
|
118
|
+
|
119
|
+
##
|
120
|
+
# Baseline implementation for the get_instance REST call
|
121
|
+
#
|
122
|
+
# @param request_pb [::Google::Cloud::ApigeeRegistry::V1::GetInstanceRequest]
|
123
|
+
# A request object representing the call parameters. Required.
|
124
|
+
# @param options [::Gapic::CallOptions]
|
125
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
126
|
+
#
|
127
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
128
|
+
# @yieldparam result [::Google::Cloud::ApigeeRegistry::V1::Instance]
|
129
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
130
|
+
#
|
131
|
+
# @return [::Google::Cloud::ApigeeRegistry::V1::Instance]
|
132
|
+
# A result object deserialized from the server's reply
|
133
|
+
def get_instance request_pb, options = nil
|
134
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
135
|
+
|
136
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_get_instance_request request_pb
|
137
|
+
query_string_params = if query_string_params.any?
|
138
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
139
|
+
else
|
140
|
+
{}
|
141
|
+
end
|
142
|
+
|
143
|
+
response = @client_stub.make_http_request(
|
144
|
+
verb,
|
145
|
+
uri: uri,
|
146
|
+
body: body || "",
|
147
|
+
params: query_string_params,
|
148
|
+
options: options
|
149
|
+
)
|
150
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
151
|
+
result = ::Google::Cloud::ApigeeRegistry::V1::Instance.decode_json response.body, ignore_unknown_fields: true
|
152
|
+
|
153
|
+
yield result, operation if block_given?
|
154
|
+
result
|
155
|
+
end
|
156
|
+
|
157
|
+
##
|
158
|
+
# @private
|
159
|
+
#
|
160
|
+
# GRPC transcoding helper method for the create_instance REST call
|
161
|
+
#
|
162
|
+
# @param request_pb [::Google::Cloud::ApigeeRegistry::V1::CreateInstanceRequest]
|
163
|
+
# A request object representing the call parameters. Required.
|
164
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
165
|
+
# Uri, Body, Query string parameters
|
166
|
+
def self.transcode_create_instance_request request_pb
|
167
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
168
|
+
.with_bindings(
|
169
|
+
uri_method: :post,
|
170
|
+
uri_template: "/v1/{parent}/instances",
|
171
|
+
body: "instance",
|
172
|
+
matches: [
|
173
|
+
["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
174
|
+
]
|
175
|
+
)
|
176
|
+
transcoder.transcode request_pb
|
177
|
+
end
|
178
|
+
|
179
|
+
##
|
180
|
+
# @private
|
181
|
+
#
|
182
|
+
# GRPC transcoding helper method for the delete_instance REST call
|
183
|
+
#
|
184
|
+
# @param request_pb [::Google::Cloud::ApigeeRegistry::V1::DeleteInstanceRequest]
|
185
|
+
# A request object representing the call parameters. Required.
|
186
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
187
|
+
# Uri, Body, Query string parameters
|
188
|
+
def self.transcode_delete_instance_request request_pb
|
189
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
190
|
+
.with_bindings(
|
191
|
+
uri_method: :delete,
|
192
|
+
uri_template: "/v1/{name}",
|
193
|
+
matches: [
|
194
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/instances/[^/]+/?$}, false]
|
195
|
+
]
|
196
|
+
)
|
197
|
+
transcoder.transcode request_pb
|
198
|
+
end
|
199
|
+
|
200
|
+
##
|
201
|
+
# @private
|
202
|
+
#
|
203
|
+
# GRPC transcoding helper method for the get_instance REST call
|
204
|
+
#
|
205
|
+
# @param request_pb [::Google::Cloud::ApigeeRegistry::V1::GetInstanceRequest]
|
206
|
+
# A request object representing the call parameters. Required.
|
207
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
208
|
+
# Uri, Body, Query string parameters
|
209
|
+
def self.transcode_get_instance_request request_pb
|
210
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
211
|
+
.with_bindings(
|
212
|
+
uri_method: :get,
|
213
|
+
uri_template: "/v1/{name}",
|
214
|
+
matches: [
|
215
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/instances/[^/]+/?$}, false]
|
216
|
+
]
|
217
|
+
)
|
218
|
+
transcoder.transcode request_pb
|
219
|
+
end
|
220
|
+
end
|
221
|
+
end
|
222
|
+
end
|
223
|
+
end
|
224
|
+
end
|
225
|
+
end
|
226
|
+
end
|
@@ -0,0 +1,55 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2023 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
require "gapic/rest"
|
20
|
+
require "gapic/config"
|
21
|
+
require "gapic/config/method"
|
22
|
+
|
23
|
+
require "google/cloud/apigee_registry/v1/version"
|
24
|
+
require "google/cloud/apigee_registry/v1/bindings_override"
|
25
|
+
|
26
|
+
require "google/cloud/apigee_registry/v1/provisioning/credentials"
|
27
|
+
require "google/cloud/apigee_registry/v1/provisioning/paths"
|
28
|
+
require "google/cloud/apigee_registry/v1/provisioning/rest/operations"
|
29
|
+
require "google/cloud/apigee_registry/v1/provisioning/rest/client"
|
30
|
+
|
31
|
+
module Google
|
32
|
+
module Cloud
|
33
|
+
module ApigeeRegistry
|
34
|
+
module V1
|
35
|
+
##
|
36
|
+
# The service that is used for managing the data plane provisioning of the
|
37
|
+
# Registry.
|
38
|
+
#
|
39
|
+
# To load this service and instantiate a REST client:
|
40
|
+
#
|
41
|
+
# require "google/cloud/apigee_registry/v1/provisioning/rest"
|
42
|
+
# client = ::Google::Cloud::ApigeeRegistry::V1::Provisioning::Rest::Client.new
|
43
|
+
#
|
44
|
+
module Provisioning
|
45
|
+
# Client for the REST transport
|
46
|
+
module Rest
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
helper_path = ::File.join __dir__, "rest", "helpers.rb"
|
55
|
+
require "google/cloud/apigee_registry/v1/provisioning/rest/helpers" if ::File.file? helper_path
|
@@ -26,6 +26,7 @@ require "google/cloud/apigee_registry/v1/provisioning/credentials"
|
|
26
26
|
require "google/cloud/apigee_registry/v1/provisioning/paths"
|
27
27
|
require "google/cloud/apigee_registry/v1/provisioning/operations"
|
28
28
|
require "google/cloud/apigee_registry/v1/provisioning/client"
|
29
|
+
require "google/cloud/apigee_registry/v1/provisioning/rest"
|
29
30
|
|
30
31
|
module Google
|
31
32
|
module Cloud
|
@@ -35,11 +36,16 @@ module Google
|
|
35
36
|
# The service that is used for managing the data plane provisioning of the
|
36
37
|
# Registry.
|
37
38
|
#
|
38
|
-
#
|
39
|
+
# @example Load this service and instantiate a gRPC client
|
39
40
|
#
|
40
41
|
# require "google/cloud/apigee_registry/v1/provisioning"
|
41
42
|
# client = ::Google::Cloud::ApigeeRegistry::V1::Provisioning::Client.new
|
42
43
|
#
|
44
|
+
# @example Load this service and instantiate a REST client
|
45
|
+
#
|
46
|
+
# require "google/cloud/apigee_registry/v1/provisioning/rest"
|
47
|
+
# client = ::Google::Cloud::ApigeeRegistry::V1::Provisioning::Rest::Client.new
|
48
|
+
#
|
43
49
|
module Provisioning
|
44
50
|
end
|
45
51
|
end
|
@@ -294,7 +294,7 @@ module Google
|
|
294
294
|
credentials = @config.credentials
|
295
295
|
# Use self-signed JWT if the endpoint is unchanged from default,
|
296
296
|
# but only if the default endpoint does not have a region prefix.
|
297
|
-
enable_self_signed_jwt = @config.endpoint ==
|
297
|
+
enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
|
298
298
|
!@config.endpoint.split(".").first.include?("-")
|
299
299
|
credentials ||= Credentials.default scope: @config.scope,
|
300
300
|
enable_self_signed_jwt: enable_self_signed_jwt
|
@@ -397,13 +397,11 @@ module Google
|
|
397
397
|
# # Call the list_apis method.
|
398
398
|
# result = client.list_apis request
|
399
399
|
#
|
400
|
-
# # The returned object is of type Gapic::PagedEnumerable. You can
|
401
|
-
# #
|
402
|
-
#
|
403
|
-
# # methods are also available for managing paging directly.
|
404
|
-
# result.each do |response|
|
400
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
401
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
402
|
+
# result.each do |item|
|
405
403
|
# # Each element is of type ::Google::Cloud::ApigeeRegistry::V1::Api.
|
406
|
-
# p
|
404
|
+
# p item
|
407
405
|
# end
|
408
406
|
#
|
409
407
|
def list_apis request, options = nil
|
@@ -872,13 +870,11 @@ module Google
|
|
872
870
|
# # Call the list_api_versions method.
|
873
871
|
# result = client.list_api_versions request
|
874
872
|
#
|
875
|
-
# # The returned object is of type Gapic::PagedEnumerable. You can
|
876
|
-
# #
|
877
|
-
#
|
878
|
-
# # methods are also available for managing paging directly.
|
879
|
-
# result.each do |response|
|
873
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
874
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
875
|
+
# result.each do |item|
|
880
876
|
# # Each element is of type ::Google::Cloud::ApigeeRegistry::V1::ApiVersion.
|
881
|
-
# p
|
877
|
+
# p item
|
882
878
|
# end
|
883
879
|
#
|
884
880
|
def list_api_versions request, options = nil
|
@@ -1347,13 +1343,11 @@ module Google
|
|
1347
1343
|
# # Call the list_api_specs method.
|
1348
1344
|
# result = client.list_api_specs request
|
1349
1345
|
#
|
1350
|
-
# # The returned object is of type Gapic::PagedEnumerable. You can
|
1351
|
-
# #
|
1352
|
-
#
|
1353
|
-
# # methods are also available for managing paging directly.
|
1354
|
-
# result.each do |response|
|
1346
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
1347
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
1348
|
+
# result.each do |item|
|
1355
1349
|
# # Each element is of type ::Google::Cloud::ApigeeRegistry::V1::ApiSpec.
|
1356
|
-
# p
|
1350
|
+
# p item
|
1357
1351
|
# end
|
1358
1352
|
#
|
1359
1353
|
def list_api_specs request, options = nil
|
@@ -1990,13 +1984,11 @@ module Google
|
|
1990
1984
|
# # Call the list_api_spec_revisions method.
|
1991
1985
|
# result = client.list_api_spec_revisions request
|
1992
1986
|
#
|
1993
|
-
# # The returned object is of type Gapic::PagedEnumerable. You can
|
1994
|
-
# #
|
1995
|
-
#
|
1996
|
-
# # methods are also available for managing paging directly.
|
1997
|
-
# result.each do |response|
|
1987
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
1988
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
1989
|
+
# result.each do |item|
|
1998
1990
|
# # Each element is of type ::Google::Cloud::ApigeeRegistry::V1::ApiSpec.
|
1999
|
-
# p
|
1991
|
+
# p item
|
2000
1992
|
# end
|
2001
1993
|
#
|
2002
1994
|
def list_api_spec_revisions request, options = nil
|
@@ -2277,13 +2269,11 @@ module Google
|
|
2277
2269
|
# # Call the list_api_deployments method.
|
2278
2270
|
# result = client.list_api_deployments request
|
2279
2271
|
#
|
2280
|
-
# # The returned object is of type Gapic::PagedEnumerable. You can
|
2281
|
-
# #
|
2282
|
-
#
|
2283
|
-
# # methods are also available for managing paging directly.
|
2284
|
-
# result.each do |response|
|
2272
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
2273
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
2274
|
+
# result.each do |item|
|
2285
2275
|
# # Each element is of type ::Google::Cloud::ApigeeRegistry::V1::ApiDeployment.
|
2286
|
-
# p
|
2276
|
+
# p item
|
2287
2277
|
# end
|
2288
2278
|
#
|
2289
2279
|
def list_api_deployments request, options = nil
|
@@ -2832,13 +2822,11 @@ module Google
|
|
2832
2822
|
# # Call the list_api_deployment_revisions method.
|
2833
2823
|
# result = client.list_api_deployment_revisions request
|
2834
2824
|
#
|
2835
|
-
# # The returned object is of type Gapic::PagedEnumerable. You can
|
2836
|
-
# #
|
2837
|
-
#
|
2838
|
-
# # methods are also available for managing paging directly.
|
2839
|
-
# result.each do |response|
|
2825
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
2826
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
2827
|
+
# result.each do |item|
|
2840
2828
|
# # Each element is of type ::Google::Cloud::ApigeeRegistry::V1::ApiDeployment.
|
2841
|
-
# p
|
2829
|
+
# p item
|
2842
2830
|
# end
|
2843
2831
|
#
|
2844
2832
|
def list_api_deployment_revisions request, options = nil
|
@@ -3119,13 +3107,11 @@ module Google
|
|
3119
3107
|
# # Call the list_artifacts method.
|
3120
3108
|
# result = client.list_artifacts request
|
3121
3109
|
#
|
3122
|
-
# # The returned object is of type Gapic::PagedEnumerable. You can
|
3123
|
-
# #
|
3124
|
-
#
|
3125
|
-
# # methods are also available for managing paging directly.
|
3126
|
-
# result.each do |response|
|
3110
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
3111
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
3112
|
+
# result.each do |item|
|
3127
3113
|
# # Each element is of type ::Google::Cloud::ApigeeRegistry::V1::Artifact.
|
3128
|
-
# p
|
3114
|
+
# p item
|
3129
3115
|
# end
|
3130
3116
|
#
|
3131
3117
|
def list_artifacts request, options = nil
|
@@ -3653,9 +3639,9 @@ module Google
|
|
3653
3639
|
# * (`String`) The path to a service account key file in JSON format
|
3654
3640
|
# * (`Hash`) A service account key as a Hash
|
3655
3641
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
3656
|
-
# (see the [googleauth docs](https://
|
3642
|
+
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
3657
3643
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
3658
|
-
# (see the [signet docs](https://
|
3644
|
+
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
3659
3645
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
3660
3646
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
3661
3647
|
# * (`nil`) indicating no credentials
|
@@ -3697,7 +3683,9 @@ module Google
|
|
3697
3683
|
class Configuration
|
3698
3684
|
extend ::Gapic::Config
|
3699
3685
|
|
3700
|
-
|
3686
|
+
DEFAULT_ENDPOINT = "apigeeregistry.googleapis.com"
|
3687
|
+
|
3688
|
+
config_attr :endpoint, DEFAULT_ENDPOINT, ::String
|
3701
3689
|
config_attr :credentials, nil do |value|
|
3702
3690
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
3703
3691
|
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|