77 86 | runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
|
78 87 | }
|
79 88 | runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
|
80 89 | config_override,
|
81 90 | client_config.config.clone(),
|
82 91 | &client_config.runtime_components,
|
83 92 | ));
|
84 93 | }
|
85 94 | runtime_plugins
|
86 95 | }
|
96 + | /* OperationGenerator.kt:85 */
|
87 97 | }
|
98 + | /* OperationRuntimePluginGenerator.kt:55 */
|
88 99 | impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for ListExports {
|
89 100 | fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
|
90 101 | let mut cfg = ::aws_smithy_types::config_bag::Layer::new("ListExports");
|
91 102 |
|
92 103 | cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
|
93 104 | ListExportsRequestSerializer,
|
94 105 | ));
|
95 106 | cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
|
96 107 | ListExportsResponseDeserializer,
|
97 108 | ));
|
98 109 |
|
99 110 | cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
|
100 111 | ::aws_smithy_runtime_api::client::auth::static_resolver::StaticAuthSchemeOptionResolverParams::new(),
|
101 112 | ));
|
102 113 |
|
103 114 | cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new("ListExports", "DynamoDB"));
|
104 115 |
|
105 116 | ::std::option::Option::Some(cfg.freeze())
|
106 117 | }
|
107 118 |
|
108 119 | fn runtime_components(
|
109 120 | &self,
|
110 121 | _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
|
111 122 | ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
|
112 123 | #[allow(unused_mut)]
|
113 124 | let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("ListExports")
|
114 125 | .with_interceptor(::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default())
|
115 126 | .with_interceptor(ListExportsEndpointParamsInterceptor)
|
116 127 | .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
|
117 128 | crate::operation::list_exports::ListExportsError,
|
118 129 | >::new())
|
119 130 | .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
|
120 131 | crate::operation::list_exports::ListExportsError,
|
121 132 | >::new());
|
122 133 |
|
123 134 | ::std::borrow::Cow::Owned(rcb)
|
124 135 | }
|
125 136 | }
|
126 137 |
|
138 + | /* ResponseDeserializerGenerator.kt:64 */
|
127 139 | #[derive(Debug)]
|
128 140 | struct ListExportsResponseDeserializer;
|
129 141 | impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for ListExportsResponseDeserializer {
|
130 142 | fn deserialize_nonstreaming(
|
131 143 | &self,
|
132 144 | response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
|
133 145 | ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
|
134 146 | let (success, status) = (response.status().is_success(), response.status().as_u16());
|
135 147 | let headers = response.headers();
|
136 148 | let body = response.body().bytes().expect("body loaded");
|
137 149 | #[allow(unused_mut)]
|
138 150 | let mut force_error = false;
|
139 151 |
|
140 152 | let parse_result = if !success && status != 200 || force_error {
|
141 153 | crate::protocol_serde::shape_list_exports::de_list_exports_http_error(status, headers, body)
|
142 154 | } else {
|
143 155 | crate::protocol_serde::shape_list_exports::de_list_exports_http_response(status, headers, body)
|
144 156 | };
|
145 157 | crate::protocol_serde::type_erase_result(parse_result)
|
146 158 | }
|
147 159 | }
|
160 + | /* RequestSerializerGenerator.kt:67 */
|
148 161 | #[derive(Debug)]
|
149 162 | struct ListExportsRequestSerializer;
|
150 163 | impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for ListExportsRequestSerializer {
|
151 164 | #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
|
152 165 | fn serialize_input(
|
153 166 | &self,
|
154 167 | input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
|
155 168 | _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
|
156 169 | ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
|
157 170 | let input = input
|
158 171 | .downcast::<crate::operation::list_exports::ListExportsInput>()
|
159 172 | .expect("correct type");
|
160 173 | let _header_serialization_settings = _cfg
|
161 174 | .load::<crate::serialization_settings::HeaderSerializationSettings>()
|
162 175 | .cloned()
|
163 176 | .unwrap_or_default();
|
164 177 | let mut request_builder = {
|
165 178 | fn uri_base(
|
166 179 | _input: &crate::operation::list_exports::ListExportsInput,
|
167 180 | output: &mut ::std::string::String,
|
168 181 | ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
|
169 182 | use ::std::fmt::Write as _;
|
170 183 | ::std::write!(output, "/").expect("formatting should succeed");
|
171 184 | ::std::result::Result::Ok(())
|
172 185 | }
|
173 186 | #[allow(clippy::unnecessary_wraps)]
|
174 187 | fn update_http_builder(
|
175 188 | input: &crate::operation::list_exports::ListExportsInput,
|
176 189 | builder: ::http::request::Builder,
|
177 190 | ) -> ::std::result::Result<::http::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
|
178 191 | let mut uri = ::std::string::String::new();
|
179 192 | uri_base(input, &mut uri)?;
|
180 193 | ::std::result::Result::Ok(builder.method("POST").uri(uri))
|
181 194 | }
|
182 195 | let mut builder = update_http_builder(&input, ::http::request::Builder::new())?;
|
183 196 | builder = _header_serialization_settings.set_default_header(builder, ::http::header::CONTENT_TYPE, "application/x-amz-json-1.0");
|
184 197 | builder = _header_serialization_settings.set_default_header(
|
185 198 | builder,
|
186 199 | ::http::header::HeaderName::from_static("x-amz-target"),
|
187 200 | "DynamoDB_20120810.ListExports",
|
188 201 | );
|
189 202 | builder
|
190 203 | };
|
191 204 | let body = ::aws_smithy_types::body::SdkBody::from(crate::protocol_serde::shape_list_exports::ser_list_exports_input(&input)?);
|
192 205 | if let Some(content_length) = body.content_length() {
|
193 206 | let content_length = content_length.to_string();
|
194 207 | request_builder = _header_serialization_settings.set_default_header(request_builder, ::http::header::CONTENT_LENGTH, &content_length);
|
195 208 | }
|
196 209 | ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
|
197 210 | }
|
198 211 | }
|
212 + | /* EndpointParamsInterceptorGenerator.kt:86 */
|
199 213 | #[derive(Debug)]
|
200 214 | struct ListExportsEndpointParamsInterceptor;
|
201 215 |
|
202 216 | impl ::aws_smithy_runtime_api::client::interceptors::Intercept for ListExportsEndpointParamsInterceptor {
|
203 217 | fn name(&self) -> &'static str {
|
204 218 | "ListExportsEndpointParamsInterceptor"
|
205 219 | }
|
206 220 |
|
207 221 | fn read_before_execution(
|
208 222 | &self,
|
209 223 | context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
|
210 224 | '_,
|
211 225 | ::aws_smithy_runtime_api::client::interceptors::context::Input,
|
212 226 | ::aws_smithy_runtime_api::client::interceptors::context::Output,
|
213 227 | ::aws_smithy_runtime_api::client::interceptors::context::Error,
|
214 228 | >,
|
215 229 | cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
|
216 230 | ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
|
217 231 | let _input = context
|
218 232 | .input()
|
219 233 | .downcast_ref::<ListExportsInput>()
|
220 234 | .ok_or("failed to downcast to ListExportsInput")?;
|
221 235 |
|
222 236 | let params = crate::config::endpoint::Params::builder().build().map_err(|err| {
|
223 237 | ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
|
224 238 | })?;
|
225 239 | cfg.interceptor_state()
|
226 240 | .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
|
227 241 | ::std::result::Result::Ok(())
|
228 242 | }
|
229 243 | }
|
230 244 |
|
231 245 | // The get_* functions below are generated from JMESPath expressions in the
|
232 246 | // operationContextParams trait. They target the operation's input shape.
|
233 247 |
|
248 + | /* OperationErrorGenerator.kt:79 */
|
234 249 | /// Error type for the `ListExportsError` operation.
|
250 + | /* RustType.kt:516 */
|
235 251 | #[non_exhaustive]
|
252 + | /* RustType.kt:516 */
|
236 253 | #[derive(::std::fmt::Debug)]
|
237 - | pub enum ListExportsError {
|
238 - | /// <p>An error occurred on the server side.</p>
|
254 + | pub /* OperationErrorGenerator.kt:81 */ enum ListExportsError {
|
255 + | /// /* OperationErrorGenerator.kt:83 */<p>An error occurred on the server side.</p>
|
256 + | /* OperationErrorGenerator.kt:86 */
|
239 257 | InternalServerError(crate::types::error::InternalServerError),
|
240 - | /// <p>There is no limit to the number of daily on-demand backups that can be taken.</p>
|
258 + | /// /* OperationErrorGenerator.kt:83 */<p>There is no limit to the number of daily on-demand backups that can be taken.</p>
|
241 259 | /// <p>Up to 50 simultaneous table operations are allowed per account. These operations include <code>CreateTable</code>, <code>UpdateTable</code>, <code>DeleteTable</code>,<code>UpdateTimeToLive</code>, <code>RestoreTableFromBackup</code>, and <code>RestoreTableToPointInTime</code>.</p>
|
242 260 | /// <p>The only exception is when you are creating a table with one or more secondary indexes. You can have up to 25 such requests running at a time; however, if the table or index specifications are complex, DynamoDB might temporarily reduce the number of concurrent operations.</p>
|
243 261 | /// <p>There is a soft account quota of 256 tables.</p>
|
262 + | /* OperationErrorGenerator.kt:86 */
|
244 263 | LimitExceededError(crate::types::error::LimitExceededError),
|
264 + | /* OperationErrorGenerator.kt:88 */
|
245 265 | /// An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
|
246 266 | #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
|
247 267 | variable wildcard pattern and check `.code()`:
|
248 268 | \
|
249 269 | `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
|
250 270 | \
|
251 271 | See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-ListExportsError) for what information is available for the error.")]
|
252 272 | Unhandled(crate::error::sealed_unhandled::Unhandled),
|
273 + | /* OperationErrorGenerator.kt:81 */
|
253 274 | }
|
275 + | /* OperationErrorGenerator.kt:218 */
|
254 276 | impl ListExportsError {
|
277 + | /* OperationErrorGenerator.kt:219 */
|
255 278 | /// Creates the `ListExportsError::Unhandled` variant from any error type.
|
256 279 | pub fn unhandled(
|
257 280 | err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
|
258 281 | ) -> Self {
|
259 282 | Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
|
260 283 | source: err.into(),
|
261 284 | meta: ::std::default::Default::default(),
|
262 285 | })
|
263 286 | }
|
264 287 |
|
265 288 | /// Creates the `ListExportsError::Unhandled` variant from an [`ErrorMetadata`](::aws_smithy_types::error::ErrorMetadata).
|
266 289 | pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
|
267 290 | Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
|
268 291 | source: err.clone().into(),
|
269 292 | meta: err,
|
270 293 | })
|
271 294 | }
|
272 - | ///
|
295 + | /// /* OperationErrorGenerator.kt:236 */
|
273 296 | /// Returns error metadata, which includes the error code, message,
|
274 297 | /// request ID, and potentially additional information.
|
275 298 | ///
|
299 + | /* OperationErrorGenerator.kt:242 */
|
276 300 | pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
|
301 + | /* OperationErrorGenerator.kt:243 */
|
277 302 | match self {
|
303 + | /* OperationErrorGenerator.kt:246 */
|
278 304 | Self::InternalServerError(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
|
305 + | /* OperationErrorGenerator.kt:246 */
|
279 306 | Self::LimitExceededError(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
|
280 - | Self::Unhandled(e) => &e.meta,
|
307 + | /* OperationErrorGenerator.kt:251 */ Self::Unhandled(e) => &e.meta,
|
308 + | /* OperationErrorGenerator.kt:243 */
|
281 309 | }
|
310 + | /* OperationErrorGenerator.kt:242 */
|
282 311 | }
|
312 + | /* OperationErrorGenerator.kt:257 */
|
283 313 | /// Returns `true` if the error kind is `ListExportsError::InternalServerError`.
|
314 + | /* OperationErrorGenerator.kt:258 */
|
284 315 | pub fn is_internal_server_error(&self) -> bool {
|
316 + | /* OperationErrorGenerator.kt:259 */
|
285 317 | matches!(self, Self::InternalServerError(_))
|
318 + | /* OperationErrorGenerator.kt:258 */
|
286 319 | }
|
320 + | /* OperationErrorGenerator.kt:257 */
|
287 321 | /// Returns `true` if the error kind is `ListExportsError::LimitExceededError`.
|
322 + | /* OperationErrorGenerator.kt:258 */
|
288 323 | pub fn is_limit_exceeded_error(&self) -> bool {
|
324 + | /* OperationErrorGenerator.kt:259 */
|
289 325 | matches!(self, Self::LimitExceededError(_))
|
326 + | /* OperationErrorGenerator.kt:258 */
|
290 327 | }
|
328 + | /* OperationErrorGenerator.kt:218 */
|
291 329 | }
|
330 + | /* OperationErrorGenerator.kt:269 */
|
292 331 | impl ::std::error::Error for ListExportsError {
|
332 + | /* OperationErrorGenerator.kt:270 */
|
293 333 | fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
|
334 + | /* OperationErrorGenerator.kt:318 */
|
294 335 | match self {
|
295 - | Self::InternalServerError(_inner) => ::std::option::Option::Some(_inner),
|
296 - | Self::LimitExceededError(_inner) => ::std::option::Option::Some(_inner),
|
297 - | Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
|
336 + | /* OperationErrorGenerator.kt:321 */
|
337 + | Self::InternalServerError(_inner) =>
|
338 + | /* OperationErrorGenerator.kt:283 */
|
339 + | {
|
340 + | ::std::option::Option::Some(_inner)
|
341 + | }
|
342 + | ,
|
343 + | /* OperationErrorGenerator.kt:321 */
|
344 + | Self::LimitExceededError(_inner) =>
|
345 + | /* OperationErrorGenerator.kt:283 */
|
346 + | {
|
347 + | ::std::option::Option::Some(_inner)
|
348 + | }
|
349 + | ,
|
350 + | /* OperationErrorGenerator.kt:326 */
|
351 + | Self::Unhandled(_inner) => {
|
352 + | /* OperationErrorGenerator.kt:279 */
|
353 + | ::std::option::Option::Some(&*_inner.source)
|
354 + | /* OperationErrorGenerator.kt:326 */
|
355 + | } /* OperationErrorGenerator.kt:318 */
|
298 356 | }
|
357 + | /* OperationErrorGenerator.kt:270 */
|
299 358 | }
|
359 + | /* OperationErrorGenerator.kt:269 */
|
300 360 | }
|
361 + | /* OperationErrorGenerator.kt:133 */
|
301 362 | impl ::std::fmt::Display for ListExportsError {
|
363 + | /* OperationErrorGenerator.kt:134 */
|
302 364 | fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
365 + | /* OperationErrorGenerator.kt:318 */
|
303 366 | match self {
|
304 - | Self::InternalServerError(_inner) => _inner.fmt(f),
|
305 - | Self::LimitExceededError(_inner) => _inner.fmt(f),
|
367 + | /* OperationErrorGenerator.kt:321 */
|
368 + | Self::InternalServerError(_inner) =>
|
369 + | /* OperationErrorGenerator.kt:151 */
|
370 + | {
|
371 + | _inner.fmt(f)
|
372 + | }
|
373 + | ,
|
374 + | /* OperationErrorGenerator.kt:321 */
|
375 + | Self::LimitExceededError(_inner) =>
|
376 + | /* OperationErrorGenerator.kt:151 */
|
377 + | {
|
378 + | _inner.fmt(f)
|
379 + | }
|
380 + | ,
|
381 + | /* OperationErrorGenerator.kt:326 */
|
306 382 | Self::Unhandled(_inner) => {
|
383 + | /* OperationErrorGenerator.kt:139 */
|
307 384 | if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
|
308 385 | write!(f, "unhandled error ({code})")
|
309 386 | } else {
|
310 387 | f.write_str("unhandled error")
|
311 388 | }
|
389 + | /* OperationErrorGenerator.kt:326 */
|
390 + | } /* OperationErrorGenerator.kt:318 */
|
312 391 | }
|
392 + | /* OperationErrorGenerator.kt:134 */
|
313 393 | }
|
314 - | }
|
394 + | /* OperationErrorGenerator.kt:133 */
|
315 395 | }
|
396 + | /* OperationErrorGenerator.kt:182 */
|
316 397 | impl ::aws_smithy_types::retry::ProvideErrorKind for ListExportsError {
|
398 + | /* OperationErrorGenerator.kt:186 */
|
317 399 | fn code(&self) -> ::std::option::Option<&str> {
|
400 + | /* OperationErrorGenerator.kt:187 */
|
318 401 | ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
|
402 + | /* OperationErrorGenerator.kt:186 */
|
319 403 | }
|
404 + | /* OperationErrorGenerator.kt:190 */
|
320 405 | fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
|
406 + | /* OperationErrorGenerator.kt:197 */
|
321 407 | ::std::option::Option::None
|
408 + | /* OperationErrorGenerator.kt:190 */
|
322 409 | }
|
410 + | /* OperationErrorGenerator.kt:182 */
|
323 411 | }
|
412 + | /* OperationErrorGenerator.kt:163 */
|
324 413 | impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for ListExportsError {
|
414 + | /* OperationErrorGenerator.kt:164 */
|
325 415 | fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
|
416 + | /* OperationErrorGenerator.kt:318 */
|
326 417 | match self {
|
327 - | Self::InternalServerError(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
|
328 - | Self::LimitExceededError(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
|
329 - | Self::Unhandled(_inner) => &_inner.meta,
|
418 + | /* OperationErrorGenerator.kt:321 */
|
419 + | Self::InternalServerError(_inner) =>
|
420 + | /* OperationErrorGenerator.kt:169 */
|
421 + | {
|
422 + | ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner)
|
423 + | }
|
424 + | ,
|
425 + | /* OperationErrorGenerator.kt:321 */
|
426 + | Self::LimitExceededError(_inner) =>
|
427 + | /* OperationErrorGenerator.kt:169 */
|
428 + | {
|
429 + | ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner)
|
430 + | }
|
431 + | ,
|
432 + | /* OperationErrorGenerator.kt:326 */
|
433 + | Self::Unhandled(_inner) => {
|
434 + | /* OperationErrorGenerator.kt:168 */
|
435 + | &_inner.meta
|
436 + | /* OperationErrorGenerator.kt:326 */
|
437 + | } /* OperationErrorGenerator.kt:318 */
|
330 438 | }
|
439 + | /* OperationErrorGenerator.kt:164 */
|
331 440 | }
|
441 + | /* OperationErrorGenerator.kt:163 */
|
332 442 | }
|
443 + | /* OperationErrorGenerator.kt:109 */
|
333 444 | impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for ListExportsError {
|
445 + | /* OperationErrorGenerator.kt:110 */
|
334 446 | fn create_unhandled_error(
|
335 447 | source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
|
336 448 | meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
|
337 449 | ) -> Self {
|
450 + | /* OperationErrorGenerator.kt:121 */
|
338 451 | Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
|
339 452 | source,
|
340 453 | meta: meta.unwrap_or_default(),
|
341 454 | })
|
455 + | /* OperationErrorGenerator.kt:110 */
|
342 456 | }
|
457 + | /* OperationErrorGenerator.kt:109 */
|
343 458 | }
|
344 459 |
|
460 + | /* CodegenDelegator.kt:255 */
|
345 461 | pub use crate::operation::list_exports::_list_exports_output::ListExportsOutput;
|
346 462 |
|
463 + | /* CodegenDelegator.kt:255 */
|
347 464 | pub use crate::operation::list_exports::_list_exports_input::ListExportsInput;
|
348 465 |
|
466 + | /* RustModule.kt:172 */
|
349 467 | mod _list_exports_input;
|
350 468 |
|
469 + | /* RustModule.kt:172 */
|
351 470 | mod _list_exports_output;
|
352 471 |
|
353 - | /// Builders
|
472 + | /// /* CodegenDelegator.kt:51 */Builders
|
354 473 | pub mod builders;
|
355 474 |
|
356 - | /// Paginator for this operation
|
475 + | /// /* CodegenDelegator.kt:51 */Paginator for this operation
|
357 476 | pub mod paginator;
|