1 1 | // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
|
2 + | /* CodegenDelegator.kt:255 */
|
2 3 | pub use crate::operation::all_query_string_types::_all_query_string_types_output::AllQueryStringTypesOutputBuilder;
|
3 4 |
|
5 + | /* CodegenDelegator.kt:255 */
|
4 6 | pub use crate::operation::all_query_string_types::_all_query_string_types_input::AllQueryStringTypesInputBuilder;
|
5 7 |
|
8 + | /* FluentBuilderGenerator.kt:408 */
|
6 9 | impl crate::operation::all_query_string_types::builders::AllQueryStringTypesInputBuilder {
|
7 10 | /// Sends a request with this input using the given client.
|
8 11 | pub async fn send_with(
|
9 12 | self,
|
10 13 | client: &crate::Client,
|
11 14 | ) -> ::std::result::Result<
|
12 15 | crate::operation::all_query_string_types::AllQueryStringTypesOutput,
|
13 16 | ::aws_smithy_runtime_api::client::result::SdkError<
|
14 17 | crate::operation::all_query_string_types::AllQueryStringTypesError,
|
15 18 | ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
|
16 19 | >,
|
17 20 | > {
|
18 21 | let mut fluent_builder = client.all_query_string_types();
|
19 22 | fluent_builder.inner = self;
|
20 23 | fluent_builder.send().await
|
21 24 | }
|
22 25 | }
|
23 - | /// Fluent builder constructing a request to `AllQueryStringTypes`.
|
26 + | /// /* FluentBuilderGenerator.kt:129 */Fluent builder constructing a request to `AllQueryStringTypes`.
|
24 27 | ///
|
25 - | /// This example uses all query string types.
|
28 + | /// /* FluentBuilderGenerator.kt:130 */This example uses all query string types.
|
29 + | /* RustType.kt:516 */
|
26 30 | #[derive(::std::clone::Clone, ::std::fmt::Debug)]
|
31 + | /* FluentBuilderGenerator.kt:270 */
|
27 32 | pub struct AllQueryStringTypesFluentBuilder {
|
28 33 | handle: ::std::sync::Arc<crate::client::Handle>,
|
29 34 | inner: crate::operation::all_query_string_types::builders::AllQueryStringTypesInputBuilder,
|
30 35 | config_override: ::std::option::Option<crate::config::Builder>,
|
31 36 | }
|
37 + | /* FluentBuilderGenerator.kt:381 */
|
32 38 | impl
|
33 39 | crate::client::customize::internal::CustomizableSend<
|
34 40 | crate::operation::all_query_string_types::AllQueryStringTypesOutput,
|
35 41 | crate::operation::all_query_string_types::AllQueryStringTypesError,
|
36 42 | > for AllQueryStringTypesFluentBuilder
|
37 43 | {
|
38 44 | fn send(
|
39 45 | self,
|
40 46 | config_override: crate::config::Builder,
|
41 47 | ) -> crate::client::customize::internal::BoxFuture<
|
42 48 | crate::client::customize::internal::SendResult<
|
43 49 | crate::operation::all_query_string_types::AllQueryStringTypesOutput,
|
44 50 | crate::operation::all_query_string_types::AllQueryStringTypesError,
|
45 51 | >,
|
46 52 | > {
|
47 53 | ::std::boxed::Box::pin(async move { self.config_override(config_override).send().await })
|
48 54 | }
|
49 55 | }
|
56 + | /* FluentBuilderGenerator.kt:282 */
|
50 57 | impl AllQueryStringTypesFluentBuilder {
|
58 + | /* FluentBuilderGenerator.kt:288 */
|
51 59 | /// Creates a new `AllQueryStringTypesFluentBuilder`.
|
52 60 | pub(crate) fn new(handle: ::std::sync::Arc<crate::client::Handle>) -> Self {
|
53 61 | Self {
|
54 62 | handle,
|
55 63 | inner: ::std::default::Default::default(),
|
56 64 | config_override: ::std::option::Option::None,
|
57 65 | }
|
58 66 | }
|
67 + | /* FluentBuilderGenerator.kt:301 */
|
59 68 | /// Access the AllQueryStringTypes as a reference.
|
60 69 | pub fn as_input(&self) -> &crate::operation::all_query_string_types::builders::AllQueryStringTypesInputBuilder {
|
61 70 | &self.inner
|
62 71 | }
|
72 + | /* FluentBuilderGenerator.kt:145 */
|
63 73 | /// Sends the request and returns the response.
|
64 74 | ///
|
65 75 | /// If an error occurs, an `SdkError` will be returned with additional details that
|
66 76 | /// can be matched against.
|
67 77 | ///
|
68 78 | /// By default, any retryable failures will be retried twice. Retry behavior
|
69 79 | /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
|
70 80 | /// set when configuring the client.
|
71 81 | pub async fn send(
|
72 82 | self,
|
73 83 | ) -> ::std::result::Result<
|
74 84 | crate::operation::all_query_string_types::AllQueryStringTypesOutput,
|
75 85 | ::aws_smithy_runtime_api::client::result::SdkError<
|
76 86 | crate::operation::all_query_string_types::AllQueryStringTypesError,
|
77 87 | ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
|
78 88 | >,
|
79 89 | > {
|
80 90 | let input = self
|
81 91 | .inner
|
82 92 | .build()
|
83 93 | .map_err(::aws_smithy_runtime_api::client::result::SdkError::construction_failure)?;
|
84 94 | let runtime_plugins = crate::operation::all_query_string_types::AllQueryStringTypes::operation_runtime_plugins(
|
85 95 | self.handle.runtime_plugins.clone(),
|
86 96 | &self.handle.conf,
|
87 97 | self.config_override,
|
88 98 | );
|
89 99 | crate::operation::all_query_string_types::AllQueryStringTypes::orchestrate(&runtime_plugins, input).await
|
90 100 | }
|
91 101 |
|
92 102 | /// Consumes this builder, creating a customizable operation that can be modified before being sent.
|
93 103 | pub fn customize(
|
94 104 | self,
|
95 105 | ) -> crate::client::customize::CustomizableOperation<
|
96 106 | crate::operation::all_query_string_types::AllQueryStringTypesOutput,
|
97 107 | crate::operation::all_query_string_types::AllQueryStringTypesError,
|
98 108 | Self,
|
99 109 | > {
|
100 110 | crate::client::customize::CustomizableOperation::new(self)
|
101 111 | }
|
112 + | /* FluentBuilderGenerator.kt:315 */
|
102 113 | pub(crate) fn config_override(mut self, config_override: impl ::std::convert::Into<crate::config::Builder>) -> Self {
|
103 114 | self.set_config_override(::std::option::Option::Some(config_override.into()));
|
104 115 | self
|
105 116 | }
|
106 117 |
|
107 118 | pub(crate) fn set_config_override(&mut self, config_override: ::std::option::Option<crate::config::Builder>) -> &mut Self {
|
108 119 | self.config_override = config_override;
|
109 120 | self
|
110 121 | }
|
122 + | /* FluentBuilderGenerator.kt:498 */
|
111 123 | #[allow(missing_docs)] // documentation missing in model
|
124 + | /* FluentBuilderGenerator.kt:500 */
|
112 125 | pub fn query_string(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
|
113 126 | self.inner = self.inner.query_string(input.into());
|
114 127 | self
|
115 128 | }
|
129 + | /* FluentBuilderGenerator.kt:498 */
|
116 130 | #[allow(missing_docs)] // documentation missing in model
|
131 + | /* FluentBuilderGenerator.kt:500 */
|
117 132 | pub fn set_query_string(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
|
118 133 | self.inner = self.inner.set_query_string(input);
|
119 134 | self
|
120 135 | }
|
136 + | /* FluentBuilderGenerator.kt:518 */
|
121 137 | #[allow(missing_docs)] // documentation missing in model
|
138 + | /* FluentBuilderGenerator.kt:520 */
|
122 139 | pub fn get_query_string(&self) -> &::std::option::Option<::std::string::String> {
|
123 140 | self.inner.get_query_string()
|
124 141 | }
|
125 - | ///
|
142 + | /// /* FluentBuilderGenerator.kt:436 */
|
126 143 | /// Appends an item to `queryStringList`.
|
127 144 | ///
|
128 145 | /// To override the contents of this collection use [`set_query_string_list`](Self::set_query_string_list).
|
129 146 | ///
|
147 + | /* FluentBuilderGenerator.kt:443 */
|
130 148 | #[allow(missing_docs)] // documentation missing in model
|
149 + | /* FluentBuilderGenerator.kt:446 */
|
131 150 | pub fn query_string_list(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
|
132 151 | self.inner = self.inner.query_string_list(input.into());
|
133 152 | self
|
134 153 | }
|
154 + | /* FluentBuilderGenerator.kt:498 */
|
135 155 | #[allow(missing_docs)] // documentation missing in model
|
156 + | /* FluentBuilderGenerator.kt:500 */
|
136 157 | pub fn set_query_string_list(mut self, input: ::std::option::Option<::std::vec::Vec<::std::string::String>>) -> Self {
|
137 158 | self.inner = self.inner.set_query_string_list(input);
|
138 159 | self
|
139 160 | }
|
161 + | /* FluentBuilderGenerator.kt:518 */
|
140 162 | #[allow(missing_docs)] // documentation missing in model
|
163 + | /* FluentBuilderGenerator.kt:520 */
|
141 164 | pub fn get_query_string_list(&self) -> &::std::option::Option<::std::vec::Vec<::std::string::String>> {
|
142 165 | self.inner.get_query_string_list()
|
143 166 | }
|
144 - | ///
|
167 + | /// /* FluentBuilderGenerator.kt:436 */
|
145 168 | /// Appends an item to `queryStringSet`.
|
146 169 | ///
|
147 170 | /// To override the contents of this collection use [`set_query_string_set`](Self::set_query_string_set).
|
148 171 | ///
|
172 + | /* FluentBuilderGenerator.kt:443 */
|
149 173 | #[allow(missing_docs)] // documentation missing in model
|
174 + | /* FluentBuilderGenerator.kt:446 */
|
150 175 | pub fn query_string_set(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
|
151 176 | self.inner = self.inner.query_string_set(input.into());
|
152 177 | self
|
153 178 | }
|
179 + | /* FluentBuilderGenerator.kt:498 */
|
154 180 | #[allow(missing_docs)] // documentation missing in model
|
181 + | /* FluentBuilderGenerator.kt:500 */
|
155 182 | pub fn set_query_string_set(mut self, input: ::std::option::Option<::std::vec::Vec<::std::string::String>>) -> Self {
|
156 183 | self.inner = self.inner.set_query_string_set(input);
|
157 184 | self
|
158 185 | }
|
186 + | /* FluentBuilderGenerator.kt:518 */
|
159 187 | #[allow(missing_docs)] // documentation missing in model
|
188 + | /* FluentBuilderGenerator.kt:520 */
|
160 189 | pub fn get_query_string_set(&self) -> &::std::option::Option<::std::vec::Vec<::std::string::String>> {
|
161 190 | self.inner.get_query_string_set()
|
162 191 | }
|
192 + | /* FluentBuilderGenerator.kt:498 */
|
163 193 | #[allow(missing_docs)] // documentation missing in model
|
194 + | /* FluentBuilderGenerator.kt:500 */
|
164 195 | pub fn query_byte(mut self, input: i8) -> Self {
|
165 196 | self.inner = self.inner.query_byte(input);
|
166 197 | self
|
167 198 | }
|
199 + | /* FluentBuilderGenerator.kt:498 */
|
168 200 | #[allow(missing_docs)] // documentation missing in model
|
201 + | /* FluentBuilderGenerator.kt:500 */
|
169 202 | pub fn set_query_byte(mut self, input: ::std::option::Option<i8>) -> Self {
|
170 203 | self.inner = self.inner.set_query_byte(input);
|
171 204 | self
|
172 205 | }
|
206 + | /* FluentBuilderGenerator.kt:518 */
|
173 207 | #[allow(missing_docs)] // documentation missing in model
|
208 + | /* FluentBuilderGenerator.kt:520 */
|
174 209 | pub fn get_query_byte(&self) -> &::std::option::Option<i8> {
|
175 210 | self.inner.get_query_byte()
|
176 211 | }
|
212 + | /* FluentBuilderGenerator.kt:498 */
|
177 213 | #[allow(missing_docs)] // documentation missing in model
|
214 + | /* FluentBuilderGenerator.kt:500 */
|
178 215 | pub fn query_short(mut self, input: i16) -> Self {
|
179 216 | self.inner = self.inner.query_short(input);
|
180 217 | self
|
181 218 | }
|
219 + | /* FluentBuilderGenerator.kt:498 */
|
182 220 | #[allow(missing_docs)] // documentation missing in model
|
221 + | /* FluentBuilderGenerator.kt:500 */
|
183 222 | pub fn set_query_short(mut self, input: ::std::option::Option<i16>) -> Self {
|
184 223 | self.inner = self.inner.set_query_short(input);
|
185 224 | self
|
186 225 | }
|
226 + | /* FluentBuilderGenerator.kt:518 */
|
187 227 | #[allow(missing_docs)] // documentation missing in model
|
228 + | /* FluentBuilderGenerator.kt:520 */
|
188 229 | pub fn get_query_short(&self) -> &::std::option::Option<i16> {
|
189 230 | self.inner.get_query_short()
|
190 231 | }
|
232 + | /* FluentBuilderGenerator.kt:498 */
|
191 233 | #[allow(missing_docs)] // documentation missing in model
|
234 + | /* FluentBuilderGenerator.kt:500 */
|
192 235 | pub fn query_integer(mut self, input: i32) -> Self {
|
193 236 | self.inner = self.inner.query_integer(input);
|
194 237 | self
|
195 238 | }
|
239 + | /* FluentBuilderGenerator.kt:498 */
|
196 240 | #[allow(missing_docs)] // documentation missing in model
|
241 + | /* FluentBuilderGenerator.kt:500 */
|
197 242 | pub fn set_query_integer(mut self, input: ::std::option::Option<i32>) -> Self {
|
198 243 | self.inner = self.inner.set_query_integer(input);
|
199 244 | self
|
200 245 | }
|
246 + | /* FluentBuilderGenerator.kt:518 */
|
201 247 | #[allow(missing_docs)] // documentation missing in model
|
248 + | /* FluentBuilderGenerator.kt:520 */
|
202 249 | pub fn get_query_integer(&self) -> &::std::option::Option<i32> {
|
203 250 | self.inner.get_query_integer()
|
204 251 | }
|
205 - | ///
|
252 + | /// /* FluentBuilderGenerator.kt:436 */
|
206 253 | /// Appends an item to `queryIntegerList`.
|
207 254 | ///
|
208 255 | /// To override the contents of this collection use [`set_query_integer_list`](Self::set_query_integer_list).
|
209 256 | ///
|
257 + | /* FluentBuilderGenerator.kt:443 */
|
210 258 | #[allow(missing_docs)] // documentation missing in model
|
259 + | /* FluentBuilderGenerator.kt:446 */
|
211 260 | pub fn query_integer_list(mut self, input: i32) -> Self {
|
212 261 | self.inner = self.inner.query_integer_list(input);
|
213 262 | self
|
214 263 | }
|
264 + | /* FluentBuilderGenerator.kt:498 */
|
215 265 | #[allow(missing_docs)] // documentation missing in model
|
266 + | /* FluentBuilderGenerator.kt:500 */
|
216 267 | pub fn set_query_integer_list(mut self, input: ::std::option::Option<::std::vec::Vec<i32>>) -> Self {
|
217 268 | self.inner = self.inner.set_query_integer_list(input);
|
218 269 | self
|
219 270 | }
|
271 + | /* FluentBuilderGenerator.kt:518 */
|
220 272 | #[allow(missing_docs)] // documentation missing in model
|
273 + | /* FluentBuilderGenerator.kt:520 */
|
221 274 | pub fn get_query_integer_list(&self) -> &::std::option::Option<::std::vec::Vec<i32>> {
|
222 275 | self.inner.get_query_integer_list()
|
223 276 | }
|
224 - | ///
|
277 + | /// /* FluentBuilderGenerator.kt:436 */
|
225 278 | /// Appends an item to `queryIntegerSet`.
|
226 279 | ///
|
227 280 | /// To override the contents of this collection use [`set_query_integer_set`](Self::set_query_integer_set).
|
228 281 | ///
|
282 + | /* FluentBuilderGenerator.kt:443 */
|
229 283 | #[allow(missing_docs)] // documentation missing in model
|
284 + | /* FluentBuilderGenerator.kt:446 */
|
230 285 | pub fn query_integer_set(mut self, input: i32) -> Self {
|
231 286 | self.inner = self.inner.query_integer_set(input);
|
232 287 | self
|
233 288 | }
|
289 + | /* FluentBuilderGenerator.kt:498 */
|
234 290 | #[allow(missing_docs)] // documentation missing in model
|
291 + | /* FluentBuilderGenerator.kt:500 */
|
235 292 | pub fn set_query_integer_set(mut self, input: ::std::option::Option<::std::vec::Vec<i32>>) -> Self {
|
236 293 | self.inner = self.inner.set_query_integer_set(input);
|
237 294 | self
|
238 295 | }
|
296 + | /* FluentBuilderGenerator.kt:518 */
|
239 297 | #[allow(missing_docs)] // documentation missing in model
|
298 + | /* FluentBuilderGenerator.kt:520 */
|
240 299 | pub fn get_query_integer_set(&self) -> &::std::option::Option<::std::vec::Vec<i32>> {
|
241 300 | self.inner.get_query_integer_set()
|
242 301 | }
|
302 + | /* FluentBuilderGenerator.kt:498 */
|
243 303 | #[allow(missing_docs)] // documentation missing in model
|
304 + | /* FluentBuilderGenerator.kt:500 */
|
244 305 | pub fn query_long(mut self, input: i64) -> Self {
|
245 306 | self.inner = self.inner.query_long(input);
|
246 307 | self
|
247 308 | }
|
309 + | /* FluentBuilderGenerator.kt:498 */
|
248 310 | #[allow(missing_docs)] // documentation missing in model
|
311 + | /* FluentBuilderGenerator.kt:500 */
|
249 312 | pub fn set_query_long(mut self, input: ::std::option::Option<i64>) -> Self {
|
250 313 | self.inner = self.inner.set_query_long(input);
|
251 314 | self
|
252 315 | }
|
316 + | /* FluentBuilderGenerator.kt:518 */
|
253 317 | #[allow(missing_docs)] // documentation missing in model
|
318 + | /* FluentBuilderGenerator.kt:520 */
|
254 319 | pub fn get_query_long(&self) -> &::std::option::Option<i64> {
|
255 320 | self.inner.get_query_long()
|
256 321 | }
|
322 + | /* FluentBuilderGenerator.kt:498 */
|
257 323 | #[allow(missing_docs)] // documentation missing in model
|
324 + | /* FluentBuilderGenerator.kt:500 */
|
258 325 | pub fn query_float(mut self, input: f32) -> Self {
|
259 326 | self.inner = self.inner.query_float(input);
|
260 327 | self
|
261 328 | }
|
329 + | /* FluentBuilderGenerator.kt:498 */
|
262 330 | #[allow(missing_docs)] // documentation missing in model
|
331 + | /* FluentBuilderGenerator.kt:500 */
|
263 332 | pub fn set_query_float(mut self, input: ::std::option::Option<f32>) -> Self {
|
264 333 | self.inner = self.inner.set_query_float(input);
|
265 334 | self
|
266 335 | }
|
336 + | /* FluentBuilderGenerator.kt:518 */
|
267 337 | #[allow(missing_docs)] // documentation missing in model
|
338 + | /* FluentBuilderGenerator.kt:520 */
|
268 339 | pub fn get_query_float(&self) -> &::std::option::Option<f32> {
|
269 340 | self.inner.get_query_float()
|
270 341 | }
|
342 + | /* FluentBuilderGenerator.kt:498 */
|
271 343 | #[allow(missing_docs)] // documentation missing in model
|
344 + | /* FluentBuilderGenerator.kt:500 */
|
272 345 | pub fn query_double(mut self, input: f64) -> Self {
|
273 346 | self.inner = self.inner.query_double(input);
|
274 347 | self
|
275 348 | }
|
349 + | /* FluentBuilderGenerator.kt:498 */
|
276 350 | #[allow(missing_docs)] // documentation missing in model
|
351 + | /* FluentBuilderGenerator.kt:500 */
|
277 352 | pub fn set_query_double(mut self, input: ::std::option::Option<f64>) -> Self {
|
278 353 | self.inner = self.inner.set_query_double(input);
|
279 354 | self
|
280 355 | }
|
356 + | /* FluentBuilderGenerator.kt:518 */
|
281 357 | #[allow(missing_docs)] // documentation missing in model
|
358 + | /* FluentBuilderGenerator.kt:520 */
|
282 359 | pub fn get_query_double(&self) -> &::std::option::Option<f64> {
|
283 360 | self.inner.get_query_double()
|
284 361 | }
|
285 - | ///
|
362 + | /// /* FluentBuilderGenerator.kt:436 */
|
286 363 | /// Appends an item to `queryDoubleList`.
|
287 364 | ///
|
288 365 | /// To override the contents of this collection use [`set_query_double_list`](Self::set_query_double_list).
|
289 366 | ///
|
367 + | /* FluentBuilderGenerator.kt:443 */
|
290 368 | #[allow(missing_docs)] // documentation missing in model
|
369 + | /* FluentBuilderGenerator.kt:446 */
|
291 370 | pub fn query_double_list(mut self, input: f64) -> Self {
|
292 371 | self.inner = self.inner.query_double_list(input);
|
293 372 | self
|
294 373 | }
|
374 + | /* FluentBuilderGenerator.kt:498 */
|
295 375 | #[allow(missing_docs)] // documentation missing in model
|
376 + | /* FluentBuilderGenerator.kt:500 */
|
296 377 | pub fn set_query_double_list(mut self, input: ::std::option::Option<::std::vec::Vec<f64>>) -> Self {
|
297 378 | self.inner = self.inner.set_query_double_list(input);
|
298 379 | self
|
299 380 | }
|
381 + | /* FluentBuilderGenerator.kt:518 */
|
300 382 | #[allow(missing_docs)] // documentation missing in model
|
383 + | /* FluentBuilderGenerator.kt:520 */
|
301 384 | pub fn get_query_double_list(&self) -> &::std::option::Option<::std::vec::Vec<f64>> {
|
302 385 | self.inner.get_query_double_list()
|
303 386 | }
|
387 + | /* FluentBuilderGenerator.kt:498 */
|
304 388 | #[allow(missing_docs)] // documentation missing in model
|
389 + | /* FluentBuilderGenerator.kt:500 */
|
305 390 | pub fn query_boolean(mut self, input: bool) -> Self {
|
306 391 | self.inner = self.inner.query_boolean(input);
|
307 392 | self
|
308 393 | }
|
394 + | /* FluentBuilderGenerator.kt:498 */
|
309 395 | #[allow(missing_docs)] // documentation missing in model
|
396 + | /* FluentBuilderGenerator.kt:500 */
|
310 397 | pub fn set_query_boolean(mut self, input: ::std::option::Option<bool>) -> Self {
|
311 398 | self.inner = self.inner.set_query_boolean(input);
|
312 399 | self
|
313 400 | }
|
401 + | /* FluentBuilderGenerator.kt:518 */
|
314 402 | #[allow(missing_docs)] // documentation missing in model
|
403 + | /* FluentBuilderGenerator.kt:520 */
|
315 404 | pub fn get_query_boolean(&self) -> &::std::option::Option<bool> {
|
316 405 | self.inner.get_query_boolean()
|
317 406 | }
|
318 - | ///
|
407 + | /// /* FluentBuilderGenerator.kt:436 */
|
319 408 | /// Appends an item to `queryBooleanList`.
|
320 409 | ///
|
321 410 | /// To override the contents of this collection use [`set_query_boolean_list`](Self::set_query_boolean_list).
|
322 411 | ///
|
412 + | /* FluentBuilderGenerator.kt:443 */
|
323 413 | #[allow(missing_docs)] // documentation missing in model
|
414 + | /* FluentBuilderGenerator.kt:446 */
|
324 415 | pub fn query_boolean_list(mut self, input: bool) -> Self {
|
325 416 | self.inner = self.inner.query_boolean_list(input);
|
326 417 | self
|
327 418 | }
|
419 + | /* FluentBuilderGenerator.kt:498 */
|
328 420 | #[allow(missing_docs)] // documentation missing in model
|
421 + | /* FluentBuilderGenerator.kt:500 */
|
329 422 | pub fn set_query_boolean_list(mut self, input: ::std::option::Option<::std::vec::Vec<bool>>) -> Self {
|
330 423 | self.inner = self.inner.set_query_boolean_list(input);
|
331 424 | self
|
332 425 | }
|
426 + | /* FluentBuilderGenerator.kt:518 */
|
333 427 | #[allow(missing_docs)] // documentation missing in model
|
428 + | /* FluentBuilderGenerator.kt:520 */
|
334 429 | pub fn get_query_boolean_list(&self) -> &::std::option::Option<::std::vec::Vec<bool>> {
|
335 430 | self.inner.get_query_boolean_list()
|
336 431 | }
|
432 + | /* FluentBuilderGenerator.kt:498 */
|
337 433 | #[allow(missing_docs)] // documentation missing in model
|
434 + | /* FluentBuilderGenerator.kt:500 */
|
338 435 | pub fn query_timestamp(mut self, input: ::aws_smithy_types::DateTime) -> Self {
|
339 436 | self.inner = self.inner.query_timestamp(input);
|
340 437 | self
|
341 438 | }
|
439 + | /* FluentBuilderGenerator.kt:498 */
|
342 440 | #[allow(missing_docs)] // documentation missing in model
|
441 + | /* FluentBuilderGenerator.kt:500 */
|
343 442 | pub fn set_query_timestamp(mut self, input: ::std::option::Option<::aws_smithy_types::DateTime>) -> Self {
|
344 443 | self.inner = self.inner.set_query_timestamp(input);
|
345 444 | self
|
346 445 | }
|
446 + | /* FluentBuilderGenerator.kt:518 */
|
347 447 | #[allow(missing_docs)] // documentation missing in model
|
448 + | /* FluentBuilderGenerator.kt:520 */
|
348 449 | pub fn get_query_timestamp(&self) -> &::std::option::Option<::aws_smithy_types::DateTime> {
|
349 450 | self.inner.get_query_timestamp()
|
350 451 | }
|
351 - | ///
|
452 + | /// /* FluentBuilderGenerator.kt:436 */
|
352 453 | /// Appends an item to `queryTimestampList`.
|
353 454 | ///
|
354 455 | /// To override the contents of this collection use [`set_query_timestamp_list`](Self::set_query_timestamp_list).
|
355 456 | ///
|
457 + | /* FluentBuilderGenerator.kt:443 */
|
356 458 | #[allow(missing_docs)] // documentation missing in model
|
459 + | /* FluentBuilderGenerator.kt:446 */
|
357 460 | pub fn query_timestamp_list(mut self, input: ::aws_smithy_types::DateTime) -> Self {
|
358 461 | self.inner = self.inner.query_timestamp_list(input);
|
359 462 | self
|
360 463 | }
|
464 + | /* FluentBuilderGenerator.kt:498 */
|
361 465 | #[allow(missing_docs)] // documentation missing in model
|
466 + | /* FluentBuilderGenerator.kt:500 */
|
362 467 | pub fn set_query_timestamp_list(mut self, input: ::std::option::Option<::std::vec::Vec<::aws_smithy_types::DateTime>>) -> Self {
|
363 468 | self.inner = self.inner.set_query_timestamp_list(input);
|
364 469 | self
|
365 470 | }
|
471 + | /* FluentBuilderGenerator.kt:518 */
|
366 472 | #[allow(missing_docs)] // documentation missing in model
|
473 + | /* FluentBuilderGenerator.kt:520 */
|
367 474 | pub fn get_query_timestamp_list(&self) -> &::std::option::Option<::std::vec::Vec<::aws_smithy_types::DateTime>> {
|
368 475 | self.inner.get_query_timestamp_list()
|
369 476 | }
|
477 + | /* FluentBuilderGenerator.kt:498 */
|
370 478 | #[allow(missing_docs)] // documentation missing in model
|
479 + | /* FluentBuilderGenerator.kt:500 */
|
371 480 | pub fn query_enum(mut self, input: crate::types::FooEnum) -> Self {
|
372 481 | self.inner = self.inner.query_enum(input);
|
373 482 | self
|
374 483 | }
|
484 + | /* FluentBuilderGenerator.kt:498 */
|
375 485 | #[allow(missing_docs)] // documentation missing in model
|
486 + | /* FluentBuilderGenerator.kt:500 */
|
376 487 | pub fn set_query_enum(mut self, input: ::std::option::Option<crate::types::FooEnum>) -> Self {
|
377 488 | self.inner = self.inner.set_query_enum(input);
|
378 489 | self
|
379 490 | }
|
491 + | /* FluentBuilderGenerator.kt:518 */
|
380 492 | #[allow(missing_docs)] // documentation missing in model
|
493 + | /* FluentBuilderGenerator.kt:520 */
|
381 494 | pub fn get_query_enum(&self) -> &::std::option::Option<crate::types::FooEnum> {
|
382 495 | self.inner.get_query_enum()
|
383 496 | }
|
384 - | ///
|
497 + | /// /* FluentBuilderGenerator.kt:436 */
|
385 498 | /// Appends an item to `queryEnumList`.
|
386 499 | ///
|
387 500 | /// To override the contents of this collection use [`set_query_enum_list`](Self::set_query_enum_list).
|
388 501 | ///
|
502 + | /* FluentBuilderGenerator.kt:443 */
|
389 503 | #[allow(missing_docs)] // documentation missing in model
|
504 + | /* FluentBuilderGenerator.kt:446 */
|
390 505 | pub fn query_enum_list(mut self, input: crate::types::FooEnum) -> Self {
|
391 506 | self.inner = self.inner.query_enum_list(input);
|
392 507 | self
|
393 508 | }
|
509 + | /* FluentBuilderGenerator.kt:498 */
|
394 510 | #[allow(missing_docs)] // documentation missing in model
|
511 + | /* FluentBuilderGenerator.kt:500 */
|
395 512 | pub fn set_query_enum_list(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::FooEnum>>) -> Self {
|
396 513 | self.inner = self.inner.set_query_enum_list(input);
|
397 514 | self
|
398 515 | }
|
516 + | /* FluentBuilderGenerator.kt:518 */
|
399 517 | #[allow(missing_docs)] // documentation missing in model
|
518 + | /* FluentBuilderGenerator.kt:520 */
|
400 519 | pub fn get_query_enum_list(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::FooEnum>> {
|
401 520 | self.inner.get_query_enum_list()
|
402 521 | }
|
522 + | /* FluentBuilderGenerator.kt:498 */
|
403 523 | #[allow(missing_docs)] // documentation missing in model
|
524 + | /* FluentBuilderGenerator.kt:500 */
|
404 525 | pub fn query_integer_enum(mut self, input: i32) -> Self {
|
405 526 | self.inner = self.inner.query_integer_enum(input);
|
406 527 | self
|
407 528 | }
|
529 + | /* FluentBuilderGenerator.kt:498 */
|
408 530 | #[allow(missing_docs)] // documentation missing in model
|
531 + | /* FluentBuilderGenerator.kt:500 */
|
409 532 | pub fn set_query_integer_enum(mut self, input: ::std::option::Option<i32>) -> Self {
|
410 533 | self.inner = self.inner.set_query_integer_enum(input);
|
411 534 | self
|
412 535 | }
|
536 + | /* FluentBuilderGenerator.kt:518 */
|
413 537 | #[allow(missing_docs)] // documentation missing in model
|
538 + | /* FluentBuilderGenerator.kt:520 */
|
414 539 | pub fn get_query_integer_enum(&self) -> &::std::option::Option<i32> {
|
415 540 | self.inner.get_query_integer_enum()
|
416 541 | }
|
417 - | ///
|
542 + | /// /* FluentBuilderGenerator.kt:436 */
|
418 543 | /// Appends an item to `queryIntegerEnumList`.
|
419 544 | ///
|
420 545 | /// To override the contents of this collection use [`set_query_integer_enum_list`](Self::set_query_integer_enum_list).
|
421 546 | ///
|
547 + | /* FluentBuilderGenerator.kt:443 */
|
422 548 | #[allow(missing_docs)] // documentation missing in model
|
549 + | /* FluentBuilderGenerator.kt:446 */
|
423 550 | pub fn query_integer_enum_list(mut self, input: i32) -> Self {
|
424 551 | self.inner = self.inner.query_integer_enum_list(input);
|
425 552 | self
|
426 553 | }
|
554 + | /* FluentBuilderGenerator.kt:498 */
|
427 555 | #[allow(missing_docs)] // documentation missing in model
|
556 + | /* FluentBuilderGenerator.kt:500 */
|
428 557 | pub fn set_query_integer_enum_list(mut self, input: ::std::option::Option<::std::vec::Vec<i32>>) -> Self {
|
429 558 | self.inner = self.inner.set_query_integer_enum_list(input);
|
430 559 | self
|
431 560 | }
|
561 + | /* FluentBuilderGenerator.kt:518 */
|
432 562 | #[allow(missing_docs)] // documentation missing in model
|
563 + | /* FluentBuilderGenerator.kt:520 */
|
433 564 | pub fn get_query_integer_enum_list(&self) -> &::std::option::Option<::std::vec::Vec<i32>> {
|
434 565 | self.inner.get_query_integer_enum_list()
|
435 566 | }
|
436 - | ///
|
567 + | /// /* FluentBuilderGenerator.kt:466 */
|
437 568 | /// Adds a key-value pair to `queryParamsMapOfStringList`.
|
438 569 | ///
|
439 570 | /// To override the contents of this collection use [`set_query_params_map_of_string_list`](Self::set_query_params_map_of_string_list).
|
440 571 | ///
|
572 + | /* FluentBuilderGenerator.kt:473 */
|
441 573 | #[allow(missing_docs)] // documentation missing in model
|
574 + | /* FluentBuilderGenerator.kt:475 */
|
442 575 | pub fn query_params_map_of_string_list(
|
443 576 | mut self,
|
444 577 | k: impl ::std::convert::Into<::std::string::String>,
|
445 578 | v: ::std::vec::Vec<::std::string::String>,
|
446 579 | ) -> Self {
|
447 580 | self.inner = self.inner.query_params_map_of_string_list(k.into(), v);
|
448 581 | self
|
449 582 | }
|
583 + | /* FluentBuilderGenerator.kt:498 */
|
450 584 | #[allow(missing_docs)] // documentation missing in model
|
585 + | /* FluentBuilderGenerator.kt:500 */
|
451 586 | pub fn set_query_params_map_of_string_list(
|
452 587 | mut self,
|
453 588 | input: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::vec::Vec<::std::string::String>>>,
|
454 589 | ) -> Self {
|
455 590 | self.inner = self.inner.set_query_params_map_of_string_list(input);
|
456 591 | self
|
457 592 | }
|
593 + | /* FluentBuilderGenerator.kt:518 */
|
458 594 | #[allow(missing_docs)] // documentation missing in model
|
595 + | /* FluentBuilderGenerator.kt:520 */
|
459 596 | pub fn get_query_params_map_of_string_list(
|
460 597 | &self,
|
461 598 | ) -> &::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::vec::Vec<::std::string::String>>> {
|
462 599 | self.inner.get_query_params_map_of_string_list()
|
463 600 | }
|
601 + | /* FluentBuilderGenerator.kt:282 */
|
464 602 | }
|