93 102 | runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
|
94 103 | }
|
95 104 | runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
|
96 105 | config_override,
|
97 106 | client_config.config.clone(),
|
98 107 | &client_config.runtime_components,
|
99 108 | ));
|
100 109 | }
|
101 110 | runtime_plugins
|
102 111 | }
|
112 + | /* OperationGenerator.kt:85 */
|
103 113 | }
|
114 + | /* OperationRuntimePluginGenerator.kt:55 */
|
104 115 | impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for QueryIdempotencyTokenAutoFill {
|
105 116 | fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
|
106 117 | let mut cfg = ::aws_smithy_types::config_bag::Layer::new("QueryIdempotencyTokenAutoFill");
|
107 118 |
|
108 119 | cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
|
109 120 | QueryIdempotencyTokenAutoFillRequestSerializer,
|
110 121 | ));
|
111 122 | cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
|
112 123 | QueryIdempotencyTokenAutoFillResponseDeserializer,
|
113 124 | ));
|
114 125 |
|
115 126 | cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
|
116 127 | ::aws_smithy_runtime_api::client::auth::static_resolver::StaticAuthSchemeOptionResolverParams::new(),
|
117 128 | ));
|
118 129 |
|
119 130 | cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new(
|
120 131 | "QueryIdempotencyTokenAutoFill",
|
121 132 | "Rest Json Protocol",
|
122 133 | ));
|
123 134 |
|
124 135 | ::std::option::Option::Some(cfg.freeze())
|
125 136 | }
|
126 137 |
|
127 138 | fn runtime_components(
|
128 139 | &self,
|
129 140 | _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
|
130 141 | ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
|
131 142 | #[allow(unused_mut)]
|
132 143 | let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("QueryIdempotencyTokenAutoFill")
|
133 144 | .with_interceptor(::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default())
|
134 145 | .with_interceptor(QueryIdempotencyTokenAutoFillEndpointParamsInterceptor)
|
135 146 | .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
|
136 147 | crate::operation::query_idempotency_token_auto_fill::QueryIdempotencyTokenAutoFillError,
|
137 148 | >::new())
|
138 149 | .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
|
139 150 | crate::operation::query_idempotency_token_auto_fill::QueryIdempotencyTokenAutoFillError,
|
140 151 | >::new());
|
141 152 |
|
142 153 | ::std::borrow::Cow::Owned(rcb)
|
143 154 | }
|
144 155 | }
|
145 156 |
|
157 + | /* ResponseDeserializerGenerator.kt:64 */
|
146 158 | #[derive(Debug)]
|
147 159 | struct QueryIdempotencyTokenAutoFillResponseDeserializer;
|
148 160 | impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for QueryIdempotencyTokenAutoFillResponseDeserializer {
|
149 161 | fn deserialize_nonstreaming(
|
150 162 | &self,
|
151 163 | response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
|
152 164 | ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
|
153 165 | let (success, status) = (response.status().is_success(), response.status().as_u16());
|
154 166 | let headers = response.headers();
|
155 167 | let body = response.body().bytes().expect("body loaded");
|
156 168 | #[allow(unused_mut)]
|
157 169 | let mut force_error = false;
|
158 170 |
|
159 171 | let parse_result = if !success && status != 200 || force_error {
|
160 172 | crate::protocol_serde::shape_query_idempotency_token_auto_fill::de_query_idempotency_token_auto_fill_http_error(status, headers, body)
|
161 173 | } else {
|
162 174 | crate::protocol_serde::shape_query_idempotency_token_auto_fill::de_query_idempotency_token_auto_fill_http_response(status, headers, body)
|
163 175 | };
|
164 176 | crate::protocol_serde::type_erase_result(parse_result)
|
165 177 | }
|
166 178 | }
|
179 + | /* RequestSerializerGenerator.kt:67 */
|
167 180 | #[derive(Debug)]
|
168 181 | struct QueryIdempotencyTokenAutoFillRequestSerializer;
|
169 182 | impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for QueryIdempotencyTokenAutoFillRequestSerializer {
|
170 183 | #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
|
171 184 | fn serialize_input(
|
172 185 | &self,
|
173 186 | input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
|
174 187 | _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
|
175 188 | ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
|
176 189 | let input = input
|
177 190 | .downcast::<crate::operation::query_idempotency_token_auto_fill::QueryIdempotencyTokenAutoFillInput>()
|
178 191 | .expect("correct type");
|
179 192 | let _header_serialization_settings = _cfg
|
180 193 | .load::<crate::serialization_settings::HeaderSerializationSettings>()
|
181 194 | .cloned()
|
182 195 | .unwrap_or_default();
|
183 196 | let mut request_builder = {
|
184 197 | fn uri_base(
|
185 198 | _input: &crate::operation::query_idempotency_token_auto_fill::QueryIdempotencyTokenAutoFillInput,
|
186 199 | output: &mut ::std::string::String,
|
187 200 | ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
|
188 201 | use ::std::fmt::Write as _;
|
189 202 | ::std::write!(output, "/QueryIdempotencyTokenAutoFill").expect("formatting should succeed");
|
190 203 | ::std::result::Result::Ok(())
|
191 204 | }
|
192 205 | fn uri_query(
|
193 206 | _input: &crate::operation::query_idempotency_token_auto_fill::QueryIdempotencyTokenAutoFillInput,
|
194 207 | mut output: &mut ::std::string::String,
|
195 208 | ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
|
196 209 | let mut query = ::aws_smithy_http::query::Writer::new(output);
|
197 210 | if let ::std::option::Option::Some(inner_1) = &_input.token {
|
198 211 | {
|
199 212 | query.push_kv("token", &::aws_smithy_http::query::fmt_string(inner_1));
|
200 213 | }
|
201 214 | }
|
202 215 | ::std::result::Result::Ok(())
|
203 216 | }
|
204 217 | #[allow(clippy::unnecessary_wraps)]
|
205 218 | fn update_http_builder(
|
206 219 | input: &crate::operation::query_idempotency_token_auto_fill::QueryIdempotencyTokenAutoFillInput,
|
207 220 | builder: ::http::request::Builder,
|
208 221 | ) -> ::std::result::Result<::http::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
|
209 222 | let mut uri = ::std::string::String::new();
|
210 223 | uri_base(input, &mut uri)?;
|
211 224 | uri_query(input, &mut uri)?;
|
212 225 | ::std::result::Result::Ok(builder.method("POST").uri(uri))
|
213 226 | }
|
214 227 | let mut builder = update_http_builder(&input, ::http::request::Builder::new())?;
|
215 228 | builder
|
216 229 | };
|
217 230 | let body = ::aws_smithy_types::body::SdkBody::from("");
|
218 231 |
|
219 232 | ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
|
220 233 | }
|
221 234 | }
|
235 + | /* EndpointParamsInterceptorGenerator.kt:86 */
|
222 236 | #[derive(Debug)]
|
223 237 | struct QueryIdempotencyTokenAutoFillEndpointParamsInterceptor;
|
224 238 |
|
225 239 | impl ::aws_smithy_runtime_api::client::interceptors::Intercept for QueryIdempotencyTokenAutoFillEndpointParamsInterceptor {
|
226 240 | fn name(&self) -> &'static str {
|
227 241 | "QueryIdempotencyTokenAutoFillEndpointParamsInterceptor"
|
228 242 | }
|
229 243 |
|
230 244 | fn read_before_execution(
|
231 245 | &self,
|
232 246 | context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
|
233 247 | '_,
|
234 248 | ::aws_smithy_runtime_api::client::interceptors::context::Input,
|
235 249 | ::aws_smithy_runtime_api::client::interceptors::context::Output,
|
236 250 | ::aws_smithy_runtime_api::client::interceptors::context::Error,
|
237 251 | >,
|
238 252 | cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
|
239 253 | ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
|
240 254 | let _input = context
|
241 255 | .input()
|
242 256 | .downcast_ref::<QueryIdempotencyTokenAutoFillInput>()
|
243 257 | .ok_or("failed to downcast to QueryIdempotencyTokenAutoFillInput")?;
|
244 258 |
|
245 259 | let params = crate::config::endpoint::Params::builder().build().map_err(|err| {
|
246 260 | ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
|
247 261 | })?;
|
248 262 | cfg.interceptor_state()
|
249 263 | .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
|
250 264 | ::std::result::Result::Ok(())
|
251 265 | }
|
252 266 | }
|
253 267 |
|
254 268 | // The get_* functions below are generated from JMESPath expressions in the
|
255 269 | // operationContextParams trait. They target the operation's input shape.
|
256 270 |
|
271 + | /* RustType.kt:516 */
|
257 272 | #[allow(unreachable_code, unused_variables)]
|
273 + | /* RustType.kt:516 */
|
258 274 | #[cfg(test)]
|
275 + | /* ProtocolTestGenerator.kt:98 */
|
259 276 | mod query_idempotency_token_auto_fill_test {
|
260 277 |
|
261 278 | /// Automatically adds idempotency token when not set
|
262 279 | /// Test ID: RestJsonQueryIdempotencyTokenAutoFill
|
263 280 | #[::tokio::test]
|
264 281 | #[::tracing_test::traced_test]
|
265 282 | async fn rest_json_query_idempotency_token_auto_fill_request() {
|
266 283 | let (http_client, request_receiver) = ::aws_smithy_http_client::test_util::capture_request(None);
|
267 284 | let config_builder = crate::config::Config::builder().with_test_defaults().endpoint_url("https://example.com");
|
268 285 |
|
269 286 | let client = crate::Client::from_conf(config_builder.http_client(http_client).build());
|
270 287 | let result = client.query_idempotency_token_auto_fill().send().await;
|
271 288 | let _ = dbg!(result);
|
272 289 | let http_request = request_receiver.expect_request();
|
273 290 | let expected_query_params = &["token=00000000-0000-4000-8000-000000000000"];
|
274 291 | ::aws_smithy_protocol_test::assert_ok(::aws_smithy_protocol_test::validate_query_string(&http_request, expected_query_params));
|
275 292 | let body = http_request.body().bytes().expect("body should be strict");
|
276 293 | // No body.
|
277 294 | ::pretty_assertions::assert_eq!(&body, &bytes::Bytes::new());
|
278 295 | let uri: ::http::Uri = http_request.uri().parse().expect("invalid URI sent");
|
279 296 | ::pretty_assertions::assert_eq!(http_request.method(), "POST", "method was incorrect");
|
280 297 | ::pretty_assertions::assert_eq!(uri.path(), "/QueryIdempotencyTokenAutoFill", "path was incorrect");
|
281 298 | }
|
282 299 |
|
283 300 | /// Uses the given idempotency token as-is
|
284 301 | /// Test ID: RestJsonQueryIdempotencyTokenAutoFillIsSet
|
285 302 | #[::tokio::test]
|
286 303 | #[::tracing_test::traced_test]
|
287 304 | async fn rest_json_query_idempotency_token_auto_fill_is_set_request() {
|
288 305 | let (http_client, request_receiver) = ::aws_smithy_http_client::test_util::capture_request(None);
|
289 306 | let config_builder = crate::config::Config::builder().with_test_defaults().endpoint_url("https://example.com");
|
290 307 |
|
291 308 | let client = crate::Client::from_conf(config_builder.http_client(http_client).build());
|
292 309 | let result = client
|
293 310 | .query_idempotency_token_auto_fill()
|
294 311 | .set_token(::std::option::Option::Some("00000000-0000-4000-8000-000000000000".to_owned()))
|
295 312 | .send()
|
296 313 | .await;
|
297 314 | let _ = dbg!(result);
|
298 315 | let http_request = request_receiver.expect_request();
|
299 316 | let expected_query_params = &["token=00000000-0000-4000-8000-000000000000"];
|
300 317 | ::aws_smithy_protocol_test::assert_ok(::aws_smithy_protocol_test::validate_query_string(&http_request, expected_query_params));
|
301 318 | let body = http_request.body().bytes().expect("body should be strict");
|
302 319 | // No body.
|
303 320 | ::pretty_assertions::assert_eq!(&body, &bytes::Bytes::new());
|
304 321 | let uri: ::http::Uri = http_request.uri().parse().expect("invalid URI sent");
|
305 322 | ::pretty_assertions::assert_eq!(http_request.method(), "POST", "method was incorrect");
|
306 323 | ::pretty_assertions::assert_eq!(uri.path(), "/QueryIdempotencyTokenAutoFill", "path was incorrect");
|
307 324 | }
|
325 + |
|
326 + | /* ProtocolTestGenerator.kt:98 */
|
308 327 | }
|
309 328 |
|
329 + | /* OperationErrorGenerator.kt:79 */
|
310 330 | /// Error type for the `QueryIdempotencyTokenAutoFillError` operation.
|
331 + | /* RustType.kt:516 */
|
311 332 | #[non_exhaustive]
|
333 + | /* RustType.kt:516 */
|
312 334 | #[derive(::std::fmt::Debug)]
|
313 - | pub enum QueryIdempotencyTokenAutoFillError {
|
335 + | pub /* OperationErrorGenerator.kt:81 */ enum QueryIdempotencyTokenAutoFillError {
|
336 + | /* OperationErrorGenerator.kt:88 */
|
314 337 | /// An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
|
315 338 | #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
|
316 339 | variable wildcard pattern and check `.code()`:
|
317 340 | \
|
318 341 | `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
|
319 342 | \
|
320 343 | See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-QueryIdempotencyTokenAutoFillError) for what information is available for the error.")]
|
321 344 | Unhandled(crate::error::sealed_unhandled::Unhandled),
|
345 + | /* OperationErrorGenerator.kt:81 */
|
322 346 | }
|
347 + | /* OperationErrorGenerator.kt:218 */
|
323 348 | impl QueryIdempotencyTokenAutoFillError {
|
349 + | /* OperationErrorGenerator.kt:219 */
|
324 350 | /// Creates the `QueryIdempotencyTokenAutoFillError::Unhandled` variant from any error type.
|
325 351 | pub fn unhandled(
|
326 352 | err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
|
327 353 | ) -> Self {
|
328 354 | Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
|
329 355 | source: err.into(),
|
330 356 | meta: ::std::default::Default::default(),
|
331 357 | })
|
332 358 | }
|
333 359 |
|
334 360 | /// Creates the `QueryIdempotencyTokenAutoFillError::Unhandled` variant from an [`ErrorMetadata`](::aws_smithy_types::error::ErrorMetadata).
|
335 361 | pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
|
336 362 | Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
|
337 363 | source: err.clone().into(),
|
338 364 | meta: err,
|
339 365 | })
|
340 366 | }
|
341 - | ///
|
367 + | /// /* OperationErrorGenerator.kt:236 */
|
342 368 | /// Returns error metadata, which includes the error code, message,
|
343 369 | /// request ID, and potentially additional information.
|
344 370 | ///
|
371 + | /* OperationErrorGenerator.kt:242 */
|
345 372 | pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
|
373 + | /* OperationErrorGenerator.kt:243 */
|
346 374 | match self {
|
347 - | Self::Unhandled(e) => &e.meta,
|
375 + | /* OperationErrorGenerator.kt:251 */ Self::Unhandled(e) => &e.meta,
|
376 + | /* OperationErrorGenerator.kt:243 */
|
348 377 | }
|
378 + | /* OperationErrorGenerator.kt:242 */
|
349 379 | }
|
380 + | /* OperationErrorGenerator.kt:218 */
|
350 381 | }
|
382 + | /* OperationErrorGenerator.kt:269 */
|
351 383 | impl ::std::error::Error for QueryIdempotencyTokenAutoFillError {
|
384 + | /* OperationErrorGenerator.kt:270 */
|
352 385 | fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
|
386 + | /* OperationErrorGenerator.kt:318 */
|
353 387 | match self {
|
354 - | Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
|
388 + | /* OperationErrorGenerator.kt:326 */
|
389 + | Self::Unhandled(_inner) => {
|
390 + | /* OperationErrorGenerator.kt:279 */
|
391 + | ::std::option::Option::Some(&*_inner.source)
|
392 + | /* OperationErrorGenerator.kt:326 */
|
393 + | } /* OperationErrorGenerator.kt:318 */
|
355 394 | }
|
395 + | /* OperationErrorGenerator.kt:270 */
|
356 396 | }
|
397 + | /* OperationErrorGenerator.kt:269 */
|
357 398 | }
|
399 + | /* OperationErrorGenerator.kt:133 */
|
358 400 | impl ::std::fmt::Display for QueryIdempotencyTokenAutoFillError {
|
401 + | /* OperationErrorGenerator.kt:134 */
|
359 402 | fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
403 + | /* OperationErrorGenerator.kt:318 */
|
360 404 | match self {
|
405 + | /* OperationErrorGenerator.kt:326 */
|
361 406 | Self::Unhandled(_inner) => {
|
407 + | /* OperationErrorGenerator.kt:139 */
|
362 408 | if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
|
363 409 | write!(f, "unhandled error ({code})")
|
364 410 | } else {
|
365 411 | f.write_str("unhandled error")
|
366 412 | }
|
413 + | /* OperationErrorGenerator.kt:326 */
|
414 + | } /* OperationErrorGenerator.kt:318 */
|
367 415 | }
|
416 + | /* OperationErrorGenerator.kt:134 */
|
368 417 | }
|
369 - | }
|
418 + | /* OperationErrorGenerator.kt:133 */
|
370 419 | }
|
420 + | /* OperationErrorGenerator.kt:182 */
|
371 421 | impl ::aws_smithy_types::retry::ProvideErrorKind for QueryIdempotencyTokenAutoFillError {
|
422 + | /* OperationErrorGenerator.kt:186 */
|
372 423 | fn code(&self) -> ::std::option::Option<&str> {
|
424 + | /* OperationErrorGenerator.kt:187 */
|
373 425 | ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
|
426 + | /* OperationErrorGenerator.kt:186 */
|
374 427 | }
|
428 + | /* OperationErrorGenerator.kt:190 */
|
375 429 | fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
|
430 + | /* OperationErrorGenerator.kt:197 */
|
376 431 | ::std::option::Option::None
|
432 + | /* OperationErrorGenerator.kt:190 */
|
377 433 | }
|
434 + | /* OperationErrorGenerator.kt:182 */
|
378 435 | }
|
436 + | /* OperationErrorGenerator.kt:163 */
|
379 437 | impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for QueryIdempotencyTokenAutoFillError {
|
438 + | /* OperationErrorGenerator.kt:164 */
|
380 439 | fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
|
440 + | /* OperationErrorGenerator.kt:318 */
|
381 441 | match self {
|
382 - | Self::Unhandled(_inner) => &_inner.meta,
|
442 + | /* OperationErrorGenerator.kt:326 */
|
443 + | Self::Unhandled(_inner) => {
|
444 + | /* OperationErrorGenerator.kt:168 */
|
445 + | &_inner.meta
|
446 + | /* OperationErrorGenerator.kt:326 */
|
447 + | } /* OperationErrorGenerator.kt:318 */
|
383 448 | }
|
449 + | /* OperationErrorGenerator.kt:164 */
|
384 450 | }
|
451 + | /* OperationErrorGenerator.kt:163 */
|
385 452 | }
|
453 + | /* OperationErrorGenerator.kt:109 */
|
386 454 | impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for QueryIdempotencyTokenAutoFillError {
|
455 + | /* OperationErrorGenerator.kt:110 */
|
387 456 | fn create_unhandled_error(
|
388 457 | source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
|
389 458 | meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
|
390 459 | ) -> Self {
|
460 + | /* OperationErrorGenerator.kt:121 */
|
391 461 | Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
|
392 462 | source,
|
393 463 | meta: meta.unwrap_or_default(),
|
394 464 | })
|
465 + | /* OperationErrorGenerator.kt:110 */
|
395 466 | }
|
467 + | /* OperationErrorGenerator.kt:109 */
|
396 468 | }
|
397 469 |
|
470 + | /* CodegenDelegator.kt:255 */
|
398 471 | pub use crate::operation::query_idempotency_token_auto_fill::_query_idempotency_token_auto_fill_output::QueryIdempotencyTokenAutoFillOutput;
|
399 472 |
|
473 + | /* CodegenDelegator.kt:255 */
|
400 474 | pub use crate::operation::query_idempotency_token_auto_fill::_query_idempotency_token_auto_fill_input::QueryIdempotencyTokenAutoFillInput;
|
401 475 |
|
476 + | /* RustModule.kt:172 */
|
402 477 | mod _query_idempotency_token_auto_fill_input;
|
403 478 |
|
479 + | /* RustModule.kt:172 */
|
404 480 | mod _query_idempotency_token_auto_fill_output;
|
405 481 |
|
406 - | /// Builders
|
482 + | /// /* CodegenDelegator.kt:51 */Builders
|
407 483 | pub mod builders;
|