mypy-boto3-connectcases 1.28.36__py3-none-any.whl → 1.28.81__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -19,6 +19,7 @@ Usage::
19
19
  search_related_items_paginator: SearchRelatedItemsPaginator = client.get_paginator("search_related_items")
20
20
  ```
21
21
  """
22
+
22
23
  from .client import ConnectCasesClient
23
24
  from .paginator import SearchCasesPaginator, SearchRelatedItemsPaginator
24
25
 
@@ -19,6 +19,7 @@ Usage::
19
19
  search_related_items_paginator: SearchRelatedItemsPaginator = client.get_paginator("search_related_items")
20
20
  ```
21
21
  """
22
+
22
23
  from .client import ConnectCasesClient
23
24
  from .paginator import SearchCasesPaginator, SearchRelatedItemsPaginator
24
25
 
@@ -1,6 +1,7 @@
1
1
  """
2
2
  Main CLI entrypoint.
3
3
  """
4
+
4
5
  import sys
5
6
 
6
7
 
@@ -9,8 +10,8 @@ def print_info() -> None:
9
10
  Print package info to stdout.
10
11
  """
11
12
  print(
12
- "Type annotations for boto3.ConnectCases 1.28.36\nVersion: 1.28.36\nBuilder"
13
- " version: 7.18.0\nDocs: "
13
+ "Type annotations for boto3.ConnectCases 1.28.81\nVersion: 1.28.81\nBuilder"
14
+ " version: 7.19.1\nDocs: "
14
15
  " https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases//\nBoto3 docs: "
15
16
  " https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases\nOther"
16
17
  " services: https://pypi.org/project/boto3-stubs/\nChangelog: "
@@ -22,7 +23,7 @@ def print_version() -> None:
22
23
  """
23
24
  Print package version to stdout.
24
25
  """
25
- print("1.28.36")
26
+ print("1.28.81")
26
27
 
27
28
 
28
29
  def main() -> None:
@@ -13,6 +13,7 @@ Usage::
13
13
  client: ConnectCasesClient = session.client("connectcases")
14
14
  ```
15
15
  """
16
+
16
17
  import sys
17
18
  from typing import Any, Dict, Mapping, Sequence, Type, overload
18
19
 
@@ -55,6 +56,7 @@ from .type_defs import (
55
56
  SearchCasesResponseTypeDef,
56
57
  SearchRelatedItemsResponseTypeDef,
57
58
  SortTypeDef,
59
+ UserUnionTypeDef,
58
60
  )
59
61
 
60
62
  if sys.version_info >= (3, 12):
@@ -156,8 +158,9 @@ class ConnectCasesClient(BaseClient):
156
158
 
157
159
  def create_domain(self, *, name: str) -> CreateDomainResponseTypeDef:
158
160
  """
159
- Creates a domain, which is a container for all case data, such as cases, fields,
160
- templates and layouts.
161
+ Creates a domain, which is a container for all case data, such as cases,
162
+ fields, templates and
163
+ layouts.
161
164
 
162
165
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.create_domain)
163
166
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#create_domain)
@@ -189,7 +192,8 @@ class ConnectCasesClient(BaseClient):
189
192
  caseId: str,
190
193
  content: RelatedItemInputContentTypeDef,
191
194
  domainId: str,
192
- type: RelatedItemTypeType
195
+ type: RelatedItemTypeType,
196
+ performedBy: UserUnionTypeDef = ...
193
197
  ) -> CreateRelatedItemResponseTypeDef:
194
198
  """
195
199
  Creates a related item (comments, tasks, and contacts) and associates it with a
@@ -370,8 +374,7 @@ class ConnectCasesClient(BaseClient):
370
374
  self, *, domainId: str, eventBridge: EventBridgeConfigurationTypeDef
371
375
  ) -> Dict[str, Any]:
372
376
  """
373
- API for adding case event publishing configuration See also: [AWS API
374
- Documentation](https://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/PutCaseEventConfiguration).
377
+ Adds case event publishing configuration.
375
378
 
376
379
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.put_case_event_configuration)
377
380
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#put_case_event_configuration)
@@ -13,6 +13,7 @@ Usage::
13
13
  client: ConnectCasesClient = session.client("connectcases")
14
14
  ```
15
15
  """
16
+
16
17
  import sys
17
18
  from typing import Any, Dict, Mapping, Sequence, Type, overload
18
19
 
@@ -55,6 +56,7 @@ from .type_defs import (
55
56
  SearchCasesResponseTypeDef,
56
57
  SearchRelatedItemsResponseTypeDef,
57
58
  SortTypeDef,
59
+ UserUnionTypeDef,
58
60
  )
59
61
 
60
62
  if sys.version_info >= (3, 12):
@@ -97,6 +99,7 @@ class ConnectCasesClient(BaseClient):
97
99
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.exceptions)
98
100
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#exceptions)
99
101
  """
102
+
100
103
  def batch_get_field(
101
104
  self, *, domainId: str, fields: Sequence[FieldIdentifierTypeDef]
102
105
  ) -> BatchGetFieldResponseTypeDef:
@@ -106,6 +109,7 @@ class ConnectCasesClient(BaseClient):
106
109
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.batch_get_field)
107
110
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#batch_get_field)
108
111
  """
112
+
109
113
  def batch_put_field_options(
110
114
  self, *, domainId: str, fieldId: str, options: Sequence[FieldOptionTypeDef]
111
115
  ) -> BatchPutFieldOptionsResponseTypeDef:
@@ -116,6 +120,7 @@ class ConnectCasesClient(BaseClient):
116
120
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.batch_put_field_options)
117
121
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#batch_put_field_options)
118
122
  """
123
+
119
124
  def can_paginate(self, operation_name: str) -> bool:
120
125
  """
121
126
  Check if an operation can be paginated.
@@ -123,6 +128,7 @@ class ConnectCasesClient(BaseClient):
123
128
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.can_paginate)
124
129
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#can_paginate)
125
130
  """
131
+
126
132
  def close(self) -> None:
127
133
  """
128
134
  Closes underlying endpoint connections.
@@ -130,6 +136,7 @@ class ConnectCasesClient(BaseClient):
130
136
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.close)
131
137
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#close)
132
138
  """
139
+
133
140
  def create_case(
134
141
  self,
135
142
  *,
@@ -144,14 +151,17 @@ class ConnectCasesClient(BaseClient):
144
151
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.create_case)
145
152
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#create_case)
146
153
  """
154
+
147
155
  def create_domain(self, *, name: str) -> CreateDomainResponseTypeDef:
148
156
  """
149
- Creates a domain, which is a container for all case data, such as cases, fields,
150
- templates and layouts.
157
+ Creates a domain, which is a container for all case data, such as cases,
158
+ fields, templates and
159
+ layouts.
151
160
 
152
161
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.create_domain)
153
162
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#create_domain)
154
163
  """
164
+
155
165
  def create_field(
156
166
  self, *, domainId: str, name: str, type: FieldTypeType, description: str = ...
157
167
  ) -> CreateFieldResponseTypeDef:
@@ -161,6 +171,7 @@ class ConnectCasesClient(BaseClient):
161
171
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.create_field)
162
172
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#create_field)
163
173
  """
174
+
164
175
  def create_layout(
165
176
  self, *, content: LayoutContentTypeDef, domainId: str, name: str
166
177
  ) -> CreateLayoutResponseTypeDef:
@@ -170,13 +181,15 @@ class ConnectCasesClient(BaseClient):
170
181
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.create_layout)
171
182
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#create_layout)
172
183
  """
184
+
173
185
  def create_related_item(
174
186
  self,
175
187
  *,
176
188
  caseId: str,
177
189
  content: RelatedItemInputContentTypeDef,
178
190
  domainId: str,
179
- type: RelatedItemTypeType
191
+ type: RelatedItemTypeType,
192
+ performedBy: UserUnionTypeDef = ...
180
193
  ) -> CreateRelatedItemResponseTypeDef:
181
194
  """
182
195
  Creates a related item (comments, tasks, and contacts) and associates it with a
@@ -185,6 +198,7 @@ class ConnectCasesClient(BaseClient):
185
198
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.create_related_item)
186
199
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#create_related_item)
187
200
  """
201
+
188
202
  def create_template(
189
203
  self,
190
204
  *,
@@ -201,6 +215,7 @@ class ConnectCasesClient(BaseClient):
201
215
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.create_template)
202
216
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#create_template)
203
217
  """
218
+
204
219
  def delete_domain(self, *, domainId: str) -> Dict[str, Any]:
205
220
  """
206
221
  Deletes a Cases domain.
@@ -208,6 +223,7 @@ class ConnectCasesClient(BaseClient):
208
223
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.delete_domain)
209
224
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#delete_domain)
210
225
  """
226
+
211
227
  def generate_presigned_url(
212
228
  self,
213
229
  ClientMethod: str,
@@ -221,6 +237,7 @@ class ConnectCasesClient(BaseClient):
221
237
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.generate_presigned_url)
222
238
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#generate_presigned_url)
223
239
  """
240
+
224
241
  def get_case(
225
242
  self,
226
243
  *,
@@ -235,6 +252,7 @@ class ConnectCasesClient(BaseClient):
235
252
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.get_case)
236
253
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#get_case)
237
254
  """
255
+
238
256
  def get_case_event_configuration(
239
257
  self, *, domainId: str
240
258
  ) -> GetCaseEventConfigurationResponseTypeDef:
@@ -244,6 +262,7 @@ class ConnectCasesClient(BaseClient):
244
262
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.get_case_event_configuration)
245
263
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#get_case_event_configuration)
246
264
  """
265
+
247
266
  def get_domain(self, *, domainId: str) -> GetDomainResponseTypeDef:
248
267
  """
249
268
  Returns information about a specific domain if it exists.
@@ -251,6 +270,7 @@ class ConnectCasesClient(BaseClient):
251
270
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.get_domain)
252
271
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#get_domain)
253
272
  """
273
+
254
274
  def get_layout(self, *, domainId: str, layoutId: str) -> GetLayoutResponseTypeDef:
255
275
  """
256
276
  Returns the details for the requested layout.
@@ -258,6 +278,7 @@ class ConnectCasesClient(BaseClient):
258
278
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.get_layout)
259
279
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#get_layout)
260
280
  """
281
+
261
282
  def get_template(self, *, domainId: str, templateId: str) -> GetTemplateResponseTypeDef:
262
283
  """
263
284
  Returns the details for the requested template.
@@ -265,6 +286,7 @@ class ConnectCasesClient(BaseClient):
265
286
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.get_template)
266
287
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#get_template)
267
288
  """
289
+
268
290
  def list_cases_for_contact(
269
291
  self, *, contactArn: str, domainId: str, maxResults: int = ..., nextToken: str = ...
270
292
  ) -> ListCasesForContactResponseTypeDef:
@@ -274,6 +296,7 @@ class ConnectCasesClient(BaseClient):
274
296
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.list_cases_for_contact)
275
297
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#list_cases_for_contact)
276
298
  """
299
+
277
300
  def list_domains(
278
301
  self, *, maxResults: int = ..., nextToken: str = ...
279
302
  ) -> ListDomainsResponseTypeDef:
@@ -283,6 +306,7 @@ class ConnectCasesClient(BaseClient):
283
306
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.list_domains)
284
307
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#list_domains)
285
308
  """
309
+
286
310
  def list_field_options(
287
311
  self,
288
312
  *,
@@ -298,6 +322,7 @@ class ConnectCasesClient(BaseClient):
298
322
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.list_field_options)
299
323
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#list_field_options)
300
324
  """
325
+
301
326
  def list_fields(
302
327
  self, *, domainId: str, maxResults: int = ..., nextToken: str = ...
303
328
  ) -> ListFieldsResponseTypeDef:
@@ -307,6 +332,7 @@ class ConnectCasesClient(BaseClient):
307
332
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.list_fields)
308
333
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#list_fields)
309
334
  """
335
+
310
336
  def list_layouts(
311
337
  self, *, domainId: str, maxResults: int = ..., nextToken: str = ...
312
338
  ) -> ListLayoutsResponseTypeDef:
@@ -316,6 +342,7 @@ class ConnectCasesClient(BaseClient):
316
342
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.list_layouts)
317
343
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#list_layouts)
318
344
  """
345
+
319
346
  def list_tags_for_resource(self, *, arn: str) -> ListTagsForResourceResponseTypeDef:
320
347
  """
321
348
  Lists tags for a resource.
@@ -323,6 +350,7 @@ class ConnectCasesClient(BaseClient):
323
350
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.list_tags_for_resource)
324
351
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#list_tags_for_resource)
325
352
  """
353
+
326
354
  def list_templates(
327
355
  self,
328
356
  *,
@@ -337,16 +365,17 @@ class ConnectCasesClient(BaseClient):
337
365
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.list_templates)
338
366
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#list_templates)
339
367
  """
368
+
340
369
  def put_case_event_configuration(
341
370
  self, *, domainId: str, eventBridge: EventBridgeConfigurationTypeDef
342
371
  ) -> Dict[str, Any]:
343
372
  """
344
- API for adding case event publishing configuration See also: [AWS API
345
- Documentation](https://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/PutCaseEventConfiguration).
373
+ Adds case event publishing configuration.
346
374
 
347
375
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.put_case_event_configuration)
348
376
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#put_case_event_configuration)
349
377
  """
378
+
350
379
  def search_cases(
351
380
  self,
352
381
  *,
@@ -364,6 +393,7 @@ class ConnectCasesClient(BaseClient):
364
393
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.search_cases)
365
394
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#search_cases)
366
395
  """
396
+
367
397
  def search_related_items(
368
398
  self,
369
399
  *,
@@ -379,6 +409,7 @@ class ConnectCasesClient(BaseClient):
379
409
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.search_related_items)
380
410
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#search_related_items)
381
411
  """
412
+
382
413
  def tag_resource(self, *, arn: str, tags: Mapping[str, str]) -> EmptyResponseMetadataTypeDef:
383
414
  """
384
415
  Adds tags to a resource.
@@ -386,6 +417,7 @@ class ConnectCasesClient(BaseClient):
386
417
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.tag_resource)
387
418
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#tag_resource)
388
419
  """
420
+
389
421
  def untag_resource(self, *, arn: str, tagKeys: Sequence[str]) -> EmptyResponseMetadataTypeDef:
390
422
  """
391
423
  Untags a resource.
@@ -393,6 +425,7 @@ class ConnectCasesClient(BaseClient):
393
425
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.untag_resource)
394
426
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#untag_resource)
395
427
  """
428
+
396
429
  def update_case(
397
430
  self, *, caseId: str, domainId: str, fields: Sequence[FieldValueTypeDef]
398
431
  ) -> Dict[str, Any]:
@@ -402,6 +435,7 @@ class ConnectCasesClient(BaseClient):
402
435
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.update_case)
403
436
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#update_case)
404
437
  """
438
+
405
439
  def update_field(
406
440
  self, *, domainId: str, fieldId: str, description: str = ..., name: str = ...
407
441
  ) -> Dict[str, Any]:
@@ -411,6 +445,7 @@ class ConnectCasesClient(BaseClient):
411
445
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.update_field)
412
446
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#update_field)
413
447
  """
448
+
414
449
  def update_layout(
415
450
  self, *, domainId: str, layoutId: str, content: LayoutContentTypeDef = ..., name: str = ...
416
451
  ) -> Dict[str, Any]:
@@ -420,6 +455,7 @@ class ConnectCasesClient(BaseClient):
420
455
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.update_layout)
421
456
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#update_layout)
422
457
  """
458
+
423
459
  def update_template(
424
460
  self,
425
461
  *,
@@ -437,12 +473,14 @@ class ConnectCasesClient(BaseClient):
437
473
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.update_template)
438
474
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#update_template)
439
475
  """
476
+
440
477
  @overload
441
478
  def get_paginator(self, operation_name: Literal["search_cases"]) -> SearchCasesPaginator:
442
479
  """
443
480
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.get_paginator)
444
481
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#get_paginator)
445
482
  """
483
+
446
484
  @overload
447
485
  def get_paginator(
448
486
  self, operation_name: Literal["search_related_items"]
@@ -11,6 +11,7 @@ Usage::
11
11
  data: CommentBodyTextTypeType = "Text/Plain"
12
12
  ```
13
13
  """
14
+
14
15
  import sys
15
16
 
16
17
  if sys.version_info >= (3, 12):
@@ -81,6 +82,8 @@ ServiceName = Literal[
81
82
  "backup-gateway",
82
83
  "backupstorage",
83
84
  "batch",
85
+ "bedrock",
86
+ "bedrock-runtime",
84
87
  "billingconductor",
85
88
  "braket",
86
89
  "budgets",
@@ -135,6 +138,7 @@ ServiceName = Literal[
135
138
  "dataexchange",
136
139
  "datapipeline",
137
140
  "datasync",
141
+ "datazone",
138
142
  "dax",
139
143
  "detective",
140
144
  "devicefarm",
@@ -180,7 +184,6 @@ ServiceName = Literal[
180
184
  "frauddetector",
181
185
  "fsx",
182
186
  "gamelift",
183
- "gamesparks",
184
187
  "glacier",
185
188
  "globalaccelerator",
186
189
  "glue",
@@ -235,6 +238,7 @@ ServiceName = Literal[
235
238
  "kms",
236
239
  "lakeformation",
237
240
  "lambda",
241
+ "launch-wizard",
238
242
  "lex-models",
239
243
  "lex-runtime",
240
244
  "lexv2-models",
@@ -280,6 +284,7 @@ ServiceName = Literal[
280
284
  "mturk",
281
285
  "mwaa",
282
286
  "neptune",
287
+ "neptunedata",
283
288
  "network-firewall",
284
289
  "networkmanager",
285
290
  "nimble",
@@ -295,6 +300,7 @@ ServiceName = Literal[
295
300
  "panorama",
296
301
  "payment-cryptography",
297
302
  "payment-cryptography-data",
303
+ "pca-connector-ad",
298
304
  "personalize",
299
305
  "personalize-events",
300
306
  "personalize-runtime",
@@ -11,6 +11,7 @@ Usage::
11
11
  data: CommentBodyTextTypeType = "Text/Plain"
12
12
  ```
13
13
  """
14
+
14
15
  import sys
15
16
 
16
17
  if sys.version_info >= (3, 12):
@@ -79,6 +80,8 @@ ServiceName = Literal[
79
80
  "backup-gateway",
80
81
  "backupstorage",
81
82
  "batch",
83
+ "bedrock",
84
+ "bedrock-runtime",
82
85
  "billingconductor",
83
86
  "braket",
84
87
  "budgets",
@@ -133,6 +136,7 @@ ServiceName = Literal[
133
136
  "dataexchange",
134
137
  "datapipeline",
135
138
  "datasync",
139
+ "datazone",
136
140
  "dax",
137
141
  "detective",
138
142
  "devicefarm",
@@ -178,7 +182,6 @@ ServiceName = Literal[
178
182
  "frauddetector",
179
183
  "fsx",
180
184
  "gamelift",
181
- "gamesparks",
182
185
  "glacier",
183
186
  "globalaccelerator",
184
187
  "glue",
@@ -233,6 +236,7 @@ ServiceName = Literal[
233
236
  "kms",
234
237
  "lakeformation",
235
238
  "lambda",
239
+ "launch-wizard",
236
240
  "lex-models",
237
241
  "lex-runtime",
238
242
  "lexv2-models",
@@ -278,6 +282,7 @@ ServiceName = Literal[
278
282
  "mturk",
279
283
  "mwaa",
280
284
  "neptune",
285
+ "neptunedata",
281
286
  "network-firewall",
282
287
  "networkmanager",
283
288
  "nimble",
@@ -293,6 +298,7 @@ ServiceName = Literal[
293
298
  "panorama",
294
299
  "payment-cryptography",
295
300
  "payment-cryptography-data",
301
+ "pca-connector-ad",
296
302
  "personalize",
297
303
  "personalize-events",
298
304
  "personalize-runtime",
@@ -21,6 +21,7 @@ Usage::
21
21
  search_related_items_paginator: SearchRelatedItemsPaginator = client.get_paginator("search_related_items")
22
22
  ```
23
23
  """
24
+
24
25
  from typing import Generic, Iterator, Sequence, TypeVar
25
26
 
26
27
  from botocore.paginate import PageIterator, Paginator
@@ -21,6 +21,7 @@ Usage::
21
21
  search_related_items_paginator: SearchRelatedItemsPaginator = client.get_paginator("search_related_items")
22
22
  ```
23
23
  """
24
+
24
25
  from typing import Generic, Iterator, Sequence, TypeVar
25
26
 
26
27
  from botocore.paginate import PageIterator, Paginator
@@ -11,6 +11,7 @@ Usage::
11
11
  data: FieldIdentifierTypeDef = ...
12
12
  ```
13
13
  """
14
+
14
15
  import sys
15
16
  from datetime import datetime
16
17
  from typing import Any, Dict, List, Mapping, Sequence
@@ -52,6 +53,7 @@ __all__ = (
52
53
  "ContactTypeDef",
53
54
  "CreateDomainRequestRequestTypeDef",
54
55
  "CreateFieldRequestRequestTypeDef",
56
+ "UserUnionTypeDef",
55
57
  "LayoutConfigurationTypeDef",
56
58
  "RequiredFieldTypeDef",
57
59
  "DeleteDomainRequestRequestTypeDef",
@@ -249,6 +251,13 @@ CreateFieldRequestRequestTypeDef = TypedDict(
249
251
  },
250
252
  )
251
253
 
254
+ UserUnionTypeDef = TypedDict(
255
+ "UserUnionTypeDef",
256
+ {
257
+ "userArn": NotRequired[str],
258
+ },
259
+ )
260
+
252
261
  LayoutConfigurationTypeDef = TypedDict(
253
262
  "LayoutConfigurationTypeDef",
254
263
  {
@@ -766,6 +775,7 @@ SearchRelatedItemsResponseItemTypeDef = TypedDict(
766
775
  "content": RelatedItemContentTypeDef,
767
776
  "relatedItemId": str,
768
777
  "type": RelatedItemTypeType,
778
+ "performedBy": NotRequired[UserUnionTypeDef],
769
779
  "tags": NotRequired[Dict[str, str]],
770
780
  },
771
781
  )
@@ -798,6 +808,7 @@ CreateRelatedItemRequestRequestTypeDef = TypedDict(
798
808
  "content": RelatedItemInputContentTypeDef,
799
809
  "domainId": str,
800
810
  "type": RelatedItemTypeType,
811
+ "performedBy": NotRequired[UserUnionTypeDef],
801
812
  },
802
813
  )
803
814
 
@@ -11,6 +11,7 @@ Usage::
11
11
  data: FieldIdentifierTypeDef = ...
12
12
  ```
13
13
  """
14
+
14
15
  import sys
15
16
  from datetime import datetime
16
17
  from typing import Any, Dict, List, Mapping, Sequence
@@ -51,6 +52,7 @@ __all__ = (
51
52
  "ContactTypeDef",
52
53
  "CreateDomainRequestRequestTypeDef",
53
54
  "CreateFieldRequestRequestTypeDef",
55
+ "UserUnionTypeDef",
54
56
  "LayoutConfigurationTypeDef",
55
57
  "RequiredFieldTypeDef",
56
58
  "DeleteDomainRequestRequestTypeDef",
@@ -248,6 +250,13 @@ CreateFieldRequestRequestTypeDef = TypedDict(
248
250
  },
249
251
  )
250
252
 
253
+ UserUnionTypeDef = TypedDict(
254
+ "UserUnionTypeDef",
255
+ {
256
+ "userArn": NotRequired[str],
257
+ },
258
+ )
259
+
251
260
  LayoutConfigurationTypeDef = TypedDict(
252
261
  "LayoutConfigurationTypeDef",
253
262
  {
@@ -765,6 +774,7 @@ SearchRelatedItemsResponseItemTypeDef = TypedDict(
765
774
  "content": RelatedItemContentTypeDef,
766
775
  "relatedItemId": str,
767
776
  "type": RelatedItemTypeType,
777
+ "performedBy": NotRequired[UserUnionTypeDef],
768
778
  "tags": NotRequired[Dict[str, str]],
769
779
  },
770
780
  )
@@ -797,6 +807,7 @@ CreateRelatedItemRequestRequestTypeDef = TypedDict(
797
807
  "content": RelatedItemInputContentTypeDef,
798
808
  "domainId": str,
799
809
  "type": RelatedItemTypeType,
810
+ "performedBy": NotRequired[UserUnionTypeDef],
800
811
  },
801
812
  )
802
813
 
@@ -1,4 +1,5 @@
1
1
  """
2
2
  Source of truth for version.
3
3
  """
4
- __version__ = "1.28.36"
4
+
5
+ __version__ = "1.28.81"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mypy-boto3-connectcases
3
- Version: 1.28.36
4
- Summary: Type annotations for boto3.ConnectCases 1.28.36 service generated with mypy-boto3-builder 7.18.0
3
+ Version: 1.28.81
4
+ Summary: Type annotations for boto3.ConnectCases 1.28.81 service generated with mypy-boto3-builder 7.19.1
5
5
  Home-page: https://github.com/youtype/mypy_boto3_builder
6
6
  Author: Vlad Emelianov
7
7
  Author-email: vlad.emelianov.nz@gmail.com
@@ -23,6 +23,7 @@ Classifier: Programming Language :: Python :: 3.9
23
23
  Classifier: Programming Language :: Python :: 3.10
24
24
  Classifier: Programming Language :: Python :: 3.11
25
25
  Classifier: Programming Language :: Python :: 3.12
26
+ Classifier: Programming Language :: Python :: 3.13
26
27
  Classifier: Programming Language :: Python :: 3 :: Only
27
28
  Classifier: Programming Language :: Python :: Implementation :: CPython
28
29
  Classifier: Typing :: Typed
@@ -43,7 +44,7 @@ Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
43
44
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
44
45
 
45
46
  Type annotations for
46
- [boto3.ConnectCases 1.28.36](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases)
47
+ [boto3.ConnectCases 1.28.81](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases)
47
48
  service compatible with [VSCode](https://code.visualstudio.com/),
48
49
  [PyCharm](https://www.jetbrains.com/pycharm/),
49
50
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -52,7 +53,7 @@ service compatible with [VSCode](https://code.visualstudio.com/),
52
53
  [pyright](https://github.com/microsoft/pyright) and other tools.
53
54
 
54
55
  Generated by
55
- [mypy-boto3-builder 7.18.0](https://github.com/youtype/mypy_boto3_builder).
56
+ [mypy-boto3-builder 7.19.1](https://github.com/youtype/mypy_boto3_builder).
56
57
 
57
58
  More information can be found on
58
59
  [boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
@@ -310,8 +311,7 @@ Full list of `ConnectCases` Literals can be found in
310
311
  from mypy_boto3_connectcases.literals import CommentBodyTextTypeType
311
312
 
312
313
 
313
- def check_value(value: CommentBodyTextTypeType) -> bool:
314
- ...
314
+ def check_value(value: CommentBodyTextTypeType) -> bool: ...
315
315
  ```
316
316
 
317
317
  <a id="type-definitions"></a>
@@ -0,0 +1,18 @@
1
+ mypy_boto3_connectcases/__init__.py,sha256=JkI-08yHTYgB3RjkLdyNqfn7YUfYuggAYWiVsHIsvQk,809
2
+ mypy_boto3_connectcases/__init__.pyi,sha256=qOc6JM8LUbn7fZPwiPbo0EAcUbLbzyIcQG45TlQCM5A,808
3
+ mypy_boto3_connectcases/__main__.py,sha256=widdMK7W6GfKiyQjLhg2GjG64sSv06_A0cfwK6p-zvo,928
4
+ mypy_boto3_connectcases/client.py,sha256=q0TKVh3mfB0Hj2nD5c0vdfjcdmTpvlJzzfDVaSuQabs,22041
5
+ mypy_boto3_connectcases/client.pyi,sha256=ZNglrQwE7EXKUlRg5scjiGxZiqocOVYWK6rvCqbBbis,22037
6
+ mypy_boto3_connectcases/literals.py,sha256=2KVr5Z3H-nU2C7qcLxxebJvxRQHYrVI5WPJx9L9jfCU,8762
7
+ mypy_boto3_connectcases/literals.pyi,sha256=7M03mYT1jk6flxr8wyPv2KlhLOxu2Zjacv2gh7aqS1U,8760
8
+ mypy_boto3_connectcases/paginator.py,sha256=oqvQPO2E4iwZgtDqeI9rzHIihpHP7IIc-kbNKKFJIZM,3391
9
+ mypy_boto3_connectcases/paginator.pyi,sha256=PUmak8StAp0NlDlZKZoUK24n0_NRJMkHgA5CTZ8ew9M,3387
10
+ mypy_boto3_connectcases/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ mypy_boto3_connectcases/type_defs.py,sha256=jzpqskipL-TBA_2xg_JgqcT0b8yzADzOjwl36LDfV8s,24079
12
+ mypy_boto3_connectcases/type_defs.pyi,sha256=EFbTJAPge6XGfTX8a7eRKd8J-VGbcwmp33OqB-Qx_KA,24078
13
+ mypy_boto3_connectcases/version.py,sha256=4Hq6RUEuHf-ZDp0ijeU3x8Sged4dx8KnvYLfrFUnbro,62
14
+ mypy_boto3_connectcases-1.28.81.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
15
+ mypy_boto3_connectcases-1.28.81.dist-info/METADATA,sha256=JeEXVPFCABbZecCd_UWNq8K2Gkuc1PFxKf5jbKsGLoA,13159
16
+ mypy_boto3_connectcases-1.28.81.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
17
+ mypy_boto3_connectcases-1.28.81.dist-info/top_level.txt,sha256=RqxtwisC_SxV6gssbnzrNY0Ytk0di6EH_J9Hkhs2EDE,24
18
+ mypy_boto3_connectcases-1.28.81.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.41.2)
2
+ Generator: bdist_wheel (0.41.3)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,18 +0,0 @@
1
- mypy_boto3_connectcases/__init__.py,sha256=Oy5jqoFsUE2vbjlwmtvfytHY7goqf4y0n-tkdeGNWDE,808
2
- mypy_boto3_connectcases/__init__.pyi,sha256=XBsKxn0fZtvHCv_LpuVqffJBPWdR6dwqJgU2M10tVEc,807
3
- mypy_boto3_connectcases/__main__.py,sha256=dPLXFfMJP3dV8vR-lzqWqLh5iTPtNelh9TF61-jK-Vc,927
4
- mypy_boto3_connectcases/client.py,sha256=9J7_vbVWHbbGojz3eOZxoE1Ihl7StzWx0FT1Ecg0XXY,22108
5
- mypy_boto3_connectcases/client.pyi,sha256=U4akxCBoL8wRKJaA1P_HPJ_pUUfcZB4ZBlriUrM0w_w,22069
6
- mypy_boto3_connectcases/literals.py,sha256=Eu8y1J0tBGzgXiQcbVYVDU1UK_vLORWONm-1x5tHet4,8661
7
- mypy_boto3_connectcases/literals.pyi,sha256=UvWGMOV_hlrLWwopNbNH75jw_r9GE9KGJly_IoSFgA0,8659
8
- mypy_boto3_connectcases/paginator.py,sha256=vHdf6dp-6gTqBWi9Gd46xBLybhTo3ZrG3FMZW3x5Kt0,3390
9
- mypy_boto3_connectcases/paginator.pyi,sha256=17Ht_PDvum9eEdAW5VRL58DtBFt2gwzNjY0oxKjpWVw,3386
10
- mypy_boto3_connectcases/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_connectcases/type_defs.py,sha256=WKGKsgJjpSPm99LDkXLdARbXaY4nNN0RWuX0K51xxFo,23839
12
- mypy_boto3_connectcases/type_defs.pyi,sha256=P0x85CfieImE5RlF9j8CjPusZgILZFbvqMI9XboTUqs,23838
13
- mypy_boto3_connectcases/version.py,sha256=TdNWFUlWkV5vJyEpme0YDjjJMYoshLhRdAlC_WfMfAo,61
14
- mypy_boto3_connectcases-1.28.36.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
15
- mypy_boto3_connectcases-1.28.36.dist-info/METADATA,sha256=b3KIpDcxlUtFnzJw8cHnwj5UGwiN76J4I9b-rVY3qSg,13112
16
- mypy_boto3_connectcases-1.28.36.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
17
- mypy_boto3_connectcases-1.28.36.dist-info/top_level.txt,sha256=RqxtwisC_SxV6gssbnzrNY0Ytk0di6EH_J9Hkhs2EDE,24
18
- mypy_boto3_connectcases-1.28.36.dist-info/RECORD,,