google-cloud-apigee_registry-v1 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
- # To load this service and instantiate a client:
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
@@ -68,171 +68,171 @@ module Google
68
68
 
69
69
  default_config.rpcs.list_apis.timeout = 60.0
70
70
  default_config.rpcs.list_apis.retry_policy = {
71
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
71
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
72
72
  }
73
73
 
74
74
  default_config.rpcs.get_api.timeout = 60.0
75
75
  default_config.rpcs.get_api.retry_policy = {
76
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
76
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
77
77
  }
78
78
 
79
79
  default_config.rpcs.create_api.timeout = 60.0
80
80
  default_config.rpcs.create_api.retry_policy = {
81
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
81
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
82
82
  }
83
83
 
84
84
  default_config.rpcs.update_api.timeout = 60.0
85
85
  default_config.rpcs.update_api.retry_policy = {
86
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
86
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
87
87
  }
88
88
 
89
89
  default_config.rpcs.delete_api.timeout = 60.0
90
90
  default_config.rpcs.delete_api.retry_policy = {
91
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
91
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
92
92
  }
93
93
 
94
94
  default_config.rpcs.list_api_versions.timeout = 60.0
95
95
  default_config.rpcs.list_api_versions.retry_policy = {
96
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
96
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
97
97
  }
98
98
 
99
99
  default_config.rpcs.get_api_version.timeout = 60.0
100
100
  default_config.rpcs.get_api_version.retry_policy = {
101
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
101
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
102
102
  }
103
103
 
104
104
  default_config.rpcs.create_api_version.timeout = 60.0
105
105
  default_config.rpcs.create_api_version.retry_policy = {
106
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
106
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
107
107
  }
108
108
 
109
109
  default_config.rpcs.update_api_version.timeout = 60.0
110
110
  default_config.rpcs.update_api_version.retry_policy = {
111
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
111
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
112
112
  }
113
113
 
114
114
  default_config.rpcs.delete_api_version.timeout = 60.0
115
115
  default_config.rpcs.delete_api_version.retry_policy = {
116
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
116
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
117
117
  }
118
118
 
119
119
  default_config.rpcs.list_api_specs.timeout = 60.0
120
120
  default_config.rpcs.list_api_specs.retry_policy = {
121
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
121
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
122
122
  }
123
123
 
124
124
  default_config.rpcs.get_api_spec.timeout = 60.0
125
125
  default_config.rpcs.get_api_spec.retry_policy = {
126
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
126
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
127
127
  }
128
128
 
129
129
  default_config.rpcs.get_api_spec_contents.timeout = 60.0
130
130
  default_config.rpcs.get_api_spec_contents.retry_policy = {
131
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
131
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
132
132
  }
133
133
 
134
134
  default_config.rpcs.create_api_spec.timeout = 60.0
135
135
  default_config.rpcs.create_api_spec.retry_policy = {
136
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
136
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
137
137
  }
138
138
 
139
139
  default_config.rpcs.update_api_spec.timeout = 60.0
140
140
  default_config.rpcs.update_api_spec.retry_policy = {
141
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
141
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
142
142
  }
143
143
 
144
144
  default_config.rpcs.delete_api_spec.timeout = 60.0
145
145
  default_config.rpcs.delete_api_spec.retry_policy = {
146
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
146
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
147
147
  }
148
148
 
149
149
  default_config.rpcs.tag_api_spec_revision.timeout = 60.0
150
150
  default_config.rpcs.tag_api_spec_revision.retry_policy = {
151
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
151
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
152
152
  }
153
153
 
154
154
  default_config.rpcs.list_api_spec_revisions.timeout = 60.0
155
155
  default_config.rpcs.list_api_spec_revisions.retry_policy = {
156
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
156
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
157
157
  }
158
158
 
159
159
  default_config.rpcs.rollback_api_spec.timeout = 60.0
160
160
 
161
161
  default_config.rpcs.delete_api_spec_revision.timeout = 60.0
162
162
  default_config.rpcs.delete_api_spec_revision.retry_policy = {
163
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
163
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
164
164
  }
165
165
 
166
166
  default_config.rpcs.list_api_deployments.timeout = 60.0
167
167
  default_config.rpcs.list_api_deployments.retry_policy = {
168
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
168
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
169
169
  }
170
170
 
171
171
  default_config.rpcs.get_api_deployment.timeout = 60.0
172
172
  default_config.rpcs.get_api_deployment.retry_policy = {
173
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
173
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
174
174
  }
175
175
 
176
176
  default_config.rpcs.create_api_deployment.timeout = 60.0
177
177
  default_config.rpcs.create_api_deployment.retry_policy = {
178
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
178
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
179
179
  }
180
180
 
181
181
  default_config.rpcs.update_api_deployment.timeout = 60.0
182
182
  default_config.rpcs.update_api_deployment.retry_policy = {
183
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
183
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
184
184
  }
185
185
 
186
186
  default_config.rpcs.delete_api_deployment.timeout = 60.0
187
187
  default_config.rpcs.delete_api_deployment.retry_policy = {
188
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
188
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
189
189
  }
190
190
 
191
191
  default_config.rpcs.tag_api_deployment_revision.timeout = 60.0
192
192
  default_config.rpcs.tag_api_deployment_revision.retry_policy = {
193
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
193
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
194
194
  }
195
195
 
196
196
  default_config.rpcs.list_api_deployment_revisions.timeout = 60.0
197
197
  default_config.rpcs.list_api_deployment_revisions.retry_policy = {
198
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
198
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
199
199
  }
200
200
 
201
201
  default_config.rpcs.rollback_api_deployment.timeout = 60.0
202
202
 
203
203
  default_config.rpcs.delete_api_deployment_revision.timeout = 60.0
204
204
  default_config.rpcs.delete_api_deployment_revision.retry_policy = {
205
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
205
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
206
206
  }
207
207
 
208
208
  default_config.rpcs.list_artifacts.timeout = 60.0
209
209
  default_config.rpcs.list_artifacts.retry_policy = {
210
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
210
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
211
211
  }
212
212
 
213
213
  default_config.rpcs.get_artifact.timeout = 60.0
214
214
  default_config.rpcs.get_artifact.retry_policy = {
215
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
215
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
216
216
  }
217
217
 
218
218
  default_config.rpcs.get_artifact_contents.timeout = 60.0
219
219
  default_config.rpcs.get_artifact_contents.retry_policy = {
220
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
220
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
221
221
  }
222
222
 
223
223
  default_config.rpcs.create_artifact.timeout = 60.0
224
224
  default_config.rpcs.create_artifact.retry_policy = {
225
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
225
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
226
226
  }
227
227
 
228
228
  default_config.rpcs.replace_artifact.timeout = 60.0
229
229
  default_config.rpcs.replace_artifact.retry_policy = {
230
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
230
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
231
231
  }
232
232
 
233
233
  default_config.rpcs.delete_artifact.timeout = 60.0
234
234
  default_config.rpcs.delete_artifact.retry_policy = {
235
- initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
235
+ initial_delay: 0.2, max_delay: 60.0, multiplier: 1.3, retry_codes: [10, 1, 4, 14]
236
236
  }
237
237
 
238
238
  default_config
@@ -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
- # # iterate over all elements by calling #each, and the enumerable
402
- # # will lazily make API calls to fetch subsequent pages. Other
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 response
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
- # # iterate over all elements by calling #each, and the enumerable
877
- # # will lazily make API calls to fetch subsequent pages. Other
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 response
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
- # # iterate over all elements by calling #each, and the enumerable
1352
- # # will lazily make API calls to fetch subsequent pages. Other
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 response
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
- # # iterate over all elements by calling #each, and the enumerable
1995
- # # will lazily make API calls to fetch subsequent pages. Other
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 response
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
- # # iterate over all elements by calling #each, and the enumerable
2282
- # # will lazily make API calls to fetch subsequent pages. Other
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 response
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
- # # iterate over all elements by calling #each, and the enumerable
2837
- # # will lazily make API calls to fetch subsequent pages. Other
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 response
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
- # # iterate over all elements by calling #each, and the enumerable
3124
- # # will lazily make API calls to fetch subsequent pages. Other
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 response
3114
+ # p item
3129
3115
  # end
3130
3116
  #
3131
3117
  def list_artifacts request, options = nil