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 | "EC2 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, "/").expect("formatting should succeed");
|
190 203 | ::std::result::Result::Ok(())
|
191 204 | }
|
192 205 | #[allow(clippy::unnecessary_wraps)]
|
193 206 | fn update_http_builder(
|
194 207 | input: &crate::operation::query_idempotency_token_auto_fill::QueryIdempotencyTokenAutoFillInput,
|
195 208 | builder: ::http::request::Builder,
|
196 209 | ) -> ::std::result::Result<::http::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
|
197 210 | let mut uri = ::std::string::String::new();
|
198 211 | uri_base(input, &mut uri)?;
|
199 212 | ::std::result::Result::Ok(builder.method("POST").uri(uri))
|
200 213 | }
|
201 214 | let mut builder = update_http_builder(&input, ::http::request::Builder::new())?;
|
202 215 | builder = _header_serialization_settings.set_default_header(builder, ::http::header::CONTENT_TYPE, "application/x-www-form-urlencoded");
|
203 216 | builder
|
204 217 | };
|
205 218 | let body = ::aws_smithy_types::body::SdkBody::from(
|
206 219 | crate::protocol_serde::shape_query_idempotency_token_auto_fill_input::ser_query_idempotency_token_auto_fill_input_input_input(&input)?,
|
207 220 | );
|
208 221 | if let Some(content_length) = body.content_length() {
|
209 222 | let content_length = content_length.to_string();
|
210 223 | request_builder = _header_serialization_settings.set_default_header(request_builder, ::http::header::CONTENT_LENGTH, &content_length);
|
211 224 | }
|
212 225 | ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
|
213 226 | }
|
214 227 | }
|
228 + | /* EndpointParamsInterceptorGenerator.kt:86 */
|
215 229 | #[derive(Debug)]
|
216 230 | struct QueryIdempotencyTokenAutoFillEndpointParamsInterceptor;
|
217 231 |
|
218 232 | impl ::aws_smithy_runtime_api::client::interceptors::Intercept for QueryIdempotencyTokenAutoFillEndpointParamsInterceptor {
|
219 233 | fn name(&self) -> &'static str {
|
220 234 | "QueryIdempotencyTokenAutoFillEndpointParamsInterceptor"
|
221 235 | }
|
222 236 |
|
223 237 | fn read_before_execution(
|
224 238 | &self,
|
225 239 | context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
|
226 240 | '_,
|
227 241 | ::aws_smithy_runtime_api::client::interceptors::context::Input,
|
228 242 | ::aws_smithy_runtime_api::client::interceptors::context::Output,
|
229 243 | ::aws_smithy_runtime_api::client::interceptors::context::Error,
|
230 244 | >,
|
231 245 | cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
|
232 246 | ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
|
233 247 | let _input = context
|
234 248 | .input()
|
235 249 | .downcast_ref::<QueryIdempotencyTokenAutoFillInput>()
|
236 250 | .ok_or("failed to downcast to QueryIdempotencyTokenAutoFillInput")?;
|
237 251 |
|
238 252 | let params = crate::config::endpoint::Params::builder().build().map_err(|err| {
|
239 253 | ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
|
240 254 | })?;
|
241 255 | cfg.interceptor_state()
|
242 256 | .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
|
243 257 | ::std::result::Result::Ok(())
|
244 258 | }
|
245 259 | }
|
246 260 |
|
247 261 | // The get_* functions below are generated from JMESPath expressions in the
|
248 262 | // operationContextParams trait. They target the operation's input shape.
|
249 263 |
|
264 + | /* RustType.kt:516 */
|
250 265 | #[allow(unreachable_code, unused_variables)]
|
266 + | /* RustType.kt:516 */
|
251 267 | #[cfg(test)]
|
268 + | /* ProtocolTestGenerator.kt:98 */
|
252 269 | mod query_idempotency_token_auto_fill_test {
|
253 270 |
|
254 271 | /// Automatically adds idempotency token when not set
|
255 272 | /// Test ID: Ec2ProtocolIdempotencyTokenAutoFill
|
256 273 | #[::tokio::test]
|
257 274 | #[::tracing_test::traced_test]
|
258 275 | async fn ec2_protocol_idempotency_token_auto_fill_request() {
|
259 276 | let (http_client, request_receiver) = ::aws_smithy_http_client::test_util::capture_request(None);
|
260 277 | let config_builder = crate::config::Config::builder().with_test_defaults().endpoint_url("https://example.com");
|
261 278 |
|
262 279 | let client = crate::Client::from_conf(config_builder.http_client(http_client).build());
|
263 280 | let result = client.query_idempotency_token_auto_fill().send().await;
|
264 281 | let _ = dbg!(result);
|
265 282 | let http_request = request_receiver.expect_request();
|
266 283 | let expected_headers = [("Content-Type", "application/x-www-form-urlencoded")];
|
267 284 | ::aws_smithy_protocol_test::assert_ok(::aws_smithy_protocol_test::validate_headers(http_request.headers(), expected_headers));
|
268 285 | let required_headers = &["Content-Length"];
|
269 286 | ::aws_smithy_protocol_test::assert_ok(::aws_smithy_protocol_test::require_headers(http_request.headers(), required_headers));
|
270 287 | let body = http_request.body().bytes().expect("body should be strict");
|
271 288 | ::aws_smithy_protocol_test::assert_ok(::aws_smithy_protocol_test::validate_body(
|
272 289 | body,
|
273 290 | "Action=QueryIdempotencyTokenAutoFill&Version=2020-01-08&Token=00000000-0000-4000-8000-000000000000",
|
274 291 | ::aws_smithy_protocol_test::MediaType::from("application/x-www-form-urlencoded"),
|
275 292 | ));
|
276 293 | let uri: ::http::Uri = http_request.uri().parse().expect("invalid URI sent");
|
277 294 | ::pretty_assertions::assert_eq!(http_request.method(), "POST", "method was incorrect");
|
278 295 | ::pretty_assertions::assert_eq!(uri.path(), "/", "path was incorrect");
|
279 296 | }
|
280 297 |
|
281 298 | /// Uses the given idempotency token as-is
|
282 299 | /// Test ID: Ec2ProtocolIdempotencyTokenAutoFillIsSet
|
283 300 | #[::tokio::test]
|
284 301 | #[::tracing_test::traced_test]
|
285 302 | async fn ec2_protocol_idempotency_token_auto_fill_is_set_request() {
|
286 303 | let (http_client, request_receiver) = ::aws_smithy_http_client::test_util::capture_request(None);
|
287 304 | let config_builder = crate::config::Config::builder().with_test_defaults().endpoint_url("https://example.com");
|
288 305 |
|
289 306 | let client = crate::Client::from_conf(config_builder.http_client(http_client).build());
|
290 307 | let result = client
|
291 308 | .query_idempotency_token_auto_fill()
|
292 309 | .set_token(::std::option::Option::Some("00000000-0000-4000-8000-000000000123".to_owned()))
|
293 310 | .send()
|
294 311 | .await;
|
295 312 | let _ = dbg!(result);
|
296 313 | let http_request = request_receiver.expect_request();
|
297 314 | let expected_headers = [("Content-Type", "application/x-www-form-urlencoded")];
|
298 315 | ::aws_smithy_protocol_test::assert_ok(::aws_smithy_protocol_test::validate_headers(http_request.headers(), expected_headers));
|
299 316 | let required_headers = &["Content-Length"];
|
300 317 | ::aws_smithy_protocol_test::assert_ok(::aws_smithy_protocol_test::require_headers(http_request.headers(), required_headers));
|
301 318 | let body = http_request.body().bytes().expect("body should be strict");
|
302 319 | ::aws_smithy_protocol_test::assert_ok(::aws_smithy_protocol_test::validate_body(
|
303 320 | body,
|
304 321 | "Action=QueryIdempotencyTokenAutoFill&Version=2020-01-08&Token=00000000-0000-4000-8000-000000000123",
|
305 322 | ::aws_smithy_protocol_test::MediaType::from("application/x-www-form-urlencoded"),
|
306 323 | ));
|
307 324 | let uri: ::http::Uri = http_request.uri().parse().expect("invalid URI sent");
|
308 325 | ::pretty_assertions::assert_eq!(http_request.method(), "POST", "method was incorrect");
|
309 326 | ::pretty_assertions::assert_eq!(uri.path(), "/", "path was incorrect");
|
310 327 | }
|
328 + |
|
329 + | /* ProtocolTestGenerator.kt:98 */
|
311 330 | }
|
312 331 |
|
332 + | /* OperationErrorGenerator.kt:79 */
|
313 333 | /// Error type for the `QueryIdempotencyTokenAutoFillError` operation.
|
334 + | /* RustType.kt:516 */
|
314 335 | #[non_exhaustive]
|
336 + | /* RustType.kt:516 */
|
315 337 | #[derive(::std::fmt::Debug)]
|
316 - | pub enum QueryIdempotencyTokenAutoFillError {
|
338 + | pub /* OperationErrorGenerator.kt:81 */ enum QueryIdempotencyTokenAutoFillError {
|
339 + | /* OperationErrorGenerator.kt:88 */
|
317 340 | /// An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
|
318 341 | #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
|
319 342 | variable wildcard pattern and check `.code()`:
|
320 343 | \
|
321 344 | `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
|
322 345 | \
|
323 346 | See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-QueryIdempotencyTokenAutoFillError) for what information is available for the error.")]
|
324 347 | Unhandled(crate::error::sealed_unhandled::Unhandled),
|
348 + | /* OperationErrorGenerator.kt:81 */
|
325 349 | }
|
350 + | /* OperationErrorGenerator.kt:218 */
|
326 351 | impl QueryIdempotencyTokenAutoFillError {
|
352 + | /* OperationErrorGenerator.kt:219 */
|
327 353 | /// Creates the `QueryIdempotencyTokenAutoFillError::Unhandled` variant from any error type.
|
328 354 | pub fn unhandled(
|
329 355 | err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
|
330 356 | ) -> Self {
|
331 357 | Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
|
332 358 | source: err.into(),
|
333 359 | meta: ::std::default::Default::default(),
|
334 360 | })
|
335 361 | }
|
336 362 |
|
337 363 | /// Creates the `QueryIdempotencyTokenAutoFillError::Unhandled` variant from an [`ErrorMetadata`](::aws_smithy_types::error::ErrorMetadata).
|
338 364 | pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
|
339 365 | Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
|
340 366 | source: err.clone().into(),
|
341 367 | meta: err,
|
342 368 | })
|
343 369 | }
|
344 - | ///
|
370 + | /// /* OperationErrorGenerator.kt:236 */
|
345 371 | /// Returns error metadata, which includes the error code, message,
|
346 372 | /// request ID, and potentially additional information.
|
347 373 | ///
|
374 + | /* OperationErrorGenerator.kt:242 */
|
348 375 | pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
|
376 + | /* OperationErrorGenerator.kt:243 */
|
349 377 | match self {
|
350 - | Self::Unhandled(e) => &e.meta,
|
378 + | /* OperationErrorGenerator.kt:251 */ Self::Unhandled(e) => &e.meta,
|
379 + | /* OperationErrorGenerator.kt:243 */
|
351 380 | }
|
381 + | /* OperationErrorGenerator.kt:242 */
|
352 382 | }
|
383 + | /* OperationErrorGenerator.kt:218 */
|
353 384 | }
|
385 + | /* OperationErrorGenerator.kt:269 */
|
354 386 | impl ::std::error::Error for QueryIdempotencyTokenAutoFillError {
|
387 + | /* OperationErrorGenerator.kt:270 */
|
355 388 | fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
|
389 + | /* OperationErrorGenerator.kt:318 */
|
356 390 | match self {
|
357 - | Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
|
391 + | /* OperationErrorGenerator.kt:326 */
|
392 + | Self::Unhandled(_inner) => {
|
393 + | /* OperationErrorGenerator.kt:279 */
|
394 + | ::std::option::Option::Some(&*_inner.source)
|
395 + | /* OperationErrorGenerator.kt:326 */
|
396 + | } /* OperationErrorGenerator.kt:318 */
|
358 397 | }
|
398 + | /* OperationErrorGenerator.kt:270 */
|
359 399 | }
|
400 + | /* OperationErrorGenerator.kt:269 */
|
360 401 | }
|
402 + | /* OperationErrorGenerator.kt:133 */
|
361 403 | impl ::std::fmt::Display for QueryIdempotencyTokenAutoFillError {
|
404 + | /* OperationErrorGenerator.kt:134 */
|
362 405 | fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
406 + | /* OperationErrorGenerator.kt:318 */
|
363 407 | match self {
|
408 + | /* OperationErrorGenerator.kt:326 */
|
364 409 | Self::Unhandled(_inner) => {
|
410 + | /* OperationErrorGenerator.kt:139 */
|
365 411 | if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
|
366 412 | write!(f, "unhandled error ({code})")
|
367 413 | } else {
|
368 414 | f.write_str("unhandled error")
|
369 415 | }
|
416 + | /* OperationErrorGenerator.kt:326 */
|
417 + | } /* OperationErrorGenerator.kt:318 */
|
370 418 | }
|
419 + | /* OperationErrorGenerator.kt:134 */
|
371 420 | }
|
372 - | }
|
421 + | /* OperationErrorGenerator.kt:133 */
|
373 422 | }
|
423 + | /* OperationErrorGenerator.kt:182 */
|
374 424 | impl ::aws_smithy_types::retry::ProvideErrorKind for QueryIdempotencyTokenAutoFillError {
|
425 + | /* OperationErrorGenerator.kt:186 */
|
375 426 | fn code(&self) -> ::std::option::Option<&str> {
|
427 + | /* OperationErrorGenerator.kt:187 */
|
376 428 | ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
|
429 + | /* OperationErrorGenerator.kt:186 */
|
377 430 | }
|
431 + | /* OperationErrorGenerator.kt:190 */
|
378 432 | fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
|
433 + | /* OperationErrorGenerator.kt:197 */
|
379 434 | ::std::option::Option::None
|
435 + | /* OperationErrorGenerator.kt:190 */
|
380 436 | }
|
437 + | /* OperationErrorGenerator.kt:182 */
|
381 438 | }
|
439 + | /* OperationErrorGenerator.kt:163 */
|
382 440 | impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for QueryIdempotencyTokenAutoFillError {
|
441 + | /* OperationErrorGenerator.kt:164 */
|
383 442 | fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
|
443 + | /* OperationErrorGenerator.kt:318 */
|
384 444 | match self {
|
385 - | Self::Unhandled(_inner) => &_inner.meta,
|
445 + | /* OperationErrorGenerator.kt:326 */
|
446 + | Self::Unhandled(_inner) => {
|
447 + | /* OperationErrorGenerator.kt:168 */
|
448 + | &_inner.meta
|
449 + | /* OperationErrorGenerator.kt:326 */
|
450 + | } /* OperationErrorGenerator.kt:318 */
|
386 451 | }
|
452 + | /* OperationErrorGenerator.kt:164 */
|
387 453 | }
|
454 + | /* OperationErrorGenerator.kt:163 */
|
388 455 | }
|
456 + | /* OperationErrorGenerator.kt:109 */
|
389 457 | impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for QueryIdempotencyTokenAutoFillError {
|
458 + | /* OperationErrorGenerator.kt:110 */
|
390 459 | fn create_unhandled_error(
|
391 460 | source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
|
392 461 | meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
|
393 462 | ) -> Self {
|
463 + | /* OperationErrorGenerator.kt:121 */
|
394 464 | Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
|
395 465 | source,
|
396 466 | meta: meta.unwrap_or_default(),
|
397 467 | })
|
468 + | /* OperationErrorGenerator.kt:110 */
|
398 469 | }
|
470 + | /* OperationErrorGenerator.kt:109 */
|
399 471 | }
|
400 472 |
|
473 + | /* CodegenDelegator.kt:255 */
|
401 474 | pub use crate::operation::query_idempotency_token_auto_fill::_query_idempotency_token_auto_fill_output::QueryIdempotencyTokenAutoFillOutput;
|
402 475 |
|
476 + | /* CodegenDelegator.kt:255 */
|
403 477 | pub use crate::operation::query_idempotency_token_auto_fill::_query_idempotency_token_auto_fill_input::QueryIdempotencyTokenAutoFillInput;
|
404 478 |
|
479 + | /* RustModule.kt:172 */
|
405 480 | mod _query_idempotency_token_auto_fill_input;
|
406 481 |
|
482 + | /* RustModule.kt:172 */
|
407 483 | mod _query_idempotency_token_auto_fill_output;
|
408 484 |
|
409 - | /// Builders
|
485 + | /// /* CodegenDelegator.kt:51 */Builders
|
410 486 | pub mod builders;
|