types-boto3-resource-explorer-2 1.35.93__py3-none-any.whl → 1.37.0__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.
@@ -1,6 +1,10 @@
1
1
  """
2
2
  Main interface for resource-explorer-2 service.
3
3
 
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/)
5
+
6
+ Copyright 2025 Vlad Emelianov
7
+
4
8
  Usage::
5
9
 
6
10
  ```python
@@ -28,8 +32,6 @@ Usage::
28
32
  list_views_paginator: ListViewsPaginator = client.get_paginator("list_views")
29
33
  search_paginator: SearchPaginator = client.get_paginator("search")
30
34
  ```
31
-
32
- Copyright 2025 Vlad Emelianov
33
35
  """
34
36
 
35
37
  from .client import ResourceExplorerClient
@@ -1,6 +1,10 @@
1
1
  """
2
2
  Main interface for resource-explorer-2 service.
3
3
 
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/)
5
+
6
+ Copyright 2025 Vlad Emelianov
7
+
4
8
  Usage::
5
9
 
6
10
  ```python
@@ -28,8 +32,6 @@ Usage::
28
32
  list_views_paginator: ListViewsPaginator = client.get_paginator("list_views")
29
33
  search_paginator: SearchPaginator = client.get_paginator("search")
30
34
  ```
31
-
32
- Copyright 2025 Vlad Emelianov
33
35
  """
34
36
 
35
37
  from .client import ResourceExplorerClient
@@ -12,9 +12,9 @@ def print_info() -> None:
12
12
  Print package info to stdout.
13
13
  """
14
14
  sys.stdout.write(
15
- "Type annotations for boto3 ResourceExplorer 1.35.93\n"
16
- "Version: 1.35.93\n"
17
- "Builder version: 8.8.0\n"
15
+ "Type annotations for boto3 ResourceExplorer 1.37.0\n"
16
+ "Version: 1.37.0\n"
17
+ "Builder version: 8.9.2\n"
18
18
  "Docs: https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2//\n"
19
19
  "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2.html#resourceexplorer\n"
20
20
  "Other services: https://pypi.org/project/boto3-stubs/\n"
@@ -26,7 +26,7 @@ def print_version() -> None:
26
26
  """
27
27
  Print package version to stdout.
28
28
  """
29
- sys.stdout.write("1.35.93\n")
29
+ sys.stdout.write("1.37.0\n")
30
30
 
31
31
 
32
32
  def main() -> None:
@@ -3,6 +3,8 @@ Type annotations for resource-explorer-2 service Client.
3
3
 
4
4
  [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/)
5
5
 
6
+ Copyright 2025 Vlad Emelianov
7
+
6
8
  Usage::
7
9
 
8
10
  ```python
@@ -12,8 +14,6 @@ Usage::
12
14
  session = Session()
13
15
  client: ResourceExplorerClient = session.client("resource-explorer-2")
14
16
  ```
15
-
16
- Copyright 2025 Vlad Emelianov
17
17
  """
18
18
 
19
19
  from __future__ import annotations
@@ -35,47 +35,47 @@ from .paginator import (
35
35
  SearchPaginator,
36
36
  )
37
37
  from .type_defs import (
38
- AssociateDefaultViewInputRequestTypeDef,
38
+ AssociateDefaultViewInputTypeDef,
39
39
  AssociateDefaultViewOutputTypeDef,
40
- BatchGetViewInputRequestTypeDef,
40
+ BatchGetViewInputTypeDef,
41
41
  BatchGetViewOutputTypeDef,
42
- CreateIndexInputRequestTypeDef,
42
+ CreateIndexInputTypeDef,
43
43
  CreateIndexOutputTypeDef,
44
- CreateViewInputRequestTypeDef,
44
+ CreateViewInputTypeDef,
45
45
  CreateViewOutputTypeDef,
46
- DeleteIndexInputRequestTypeDef,
46
+ DeleteIndexInputTypeDef,
47
47
  DeleteIndexOutputTypeDef,
48
- DeleteViewInputRequestTypeDef,
48
+ DeleteViewInputTypeDef,
49
49
  DeleteViewOutputTypeDef,
50
50
  EmptyResponseMetadataTypeDef,
51
51
  GetAccountLevelServiceConfigurationOutputTypeDef,
52
52
  GetDefaultViewOutputTypeDef,
53
53
  GetIndexOutputTypeDef,
54
- GetManagedViewInputRequestTypeDef,
54
+ GetManagedViewInputTypeDef,
55
55
  GetManagedViewOutputTypeDef,
56
- GetViewInputRequestTypeDef,
56
+ GetViewInputTypeDef,
57
57
  GetViewOutputTypeDef,
58
- ListIndexesForMembersInputRequestTypeDef,
58
+ ListIndexesForMembersInputTypeDef,
59
59
  ListIndexesForMembersOutputTypeDef,
60
- ListIndexesInputRequestTypeDef,
60
+ ListIndexesInputTypeDef,
61
61
  ListIndexesOutputTypeDef,
62
- ListManagedViewsInputRequestTypeDef,
62
+ ListManagedViewsInputTypeDef,
63
63
  ListManagedViewsOutputTypeDef,
64
- ListResourcesInputRequestTypeDef,
64
+ ListResourcesInputTypeDef,
65
65
  ListResourcesOutputTypeDef,
66
- ListSupportedResourceTypesInputRequestTypeDef,
66
+ ListSupportedResourceTypesInputTypeDef,
67
67
  ListSupportedResourceTypesOutputTypeDef,
68
- ListTagsForResourceInputRequestTypeDef,
68
+ ListTagsForResourceInputTypeDef,
69
69
  ListTagsForResourceOutputTypeDef,
70
- ListViewsInputRequestTypeDef,
70
+ ListViewsInputTypeDef,
71
71
  ListViewsOutputTypeDef,
72
- SearchInputRequestTypeDef,
72
+ SearchInputTypeDef,
73
73
  SearchOutputTypeDef,
74
- TagResourceInputRequestTypeDef,
75
- UntagResourceInputRequestTypeDef,
76
- UpdateIndexTypeInputRequestTypeDef,
74
+ TagResourceInputTypeDef,
75
+ UntagResourceInputTypeDef,
76
+ UpdateIndexTypeInputTypeDef,
77
77
  UpdateIndexTypeOutputTypeDef,
78
- UpdateViewInputRequestTypeDef,
78
+ UpdateViewInputTypeDef,
79
79
  UpdateViewOutputTypeDef,
80
80
  )
81
81
 
@@ -142,7 +142,7 @@ class ResourceExplorerClient(BaseClient):
142
142
  """
143
143
 
144
144
  def associate_default_view(
145
- self, **kwargs: Unpack[AssociateDefaultViewInputRequestTypeDef]
145
+ self, **kwargs: Unpack[AssociateDefaultViewInputTypeDef]
146
146
  ) -> AssociateDefaultViewOutputTypeDef:
147
147
  """
148
148
  Sets the specified view as the default for the Amazon Web Services Region in
@@ -153,7 +153,7 @@ class ResourceExplorerClient(BaseClient):
153
153
  """
154
154
 
155
155
  def batch_get_view(
156
- self, **kwargs: Unpack[BatchGetViewInputRequestTypeDef]
156
+ self, **kwargs: Unpack[BatchGetViewInputTypeDef]
157
157
  ) -> BatchGetViewOutputTypeDef:
158
158
  """
159
159
  Retrieves details about a list of views.
@@ -162,9 +162,7 @@ class ResourceExplorerClient(BaseClient):
162
162
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#batch_get_view)
163
163
  """
164
164
 
165
- def create_index(
166
- self, **kwargs: Unpack[CreateIndexInputRequestTypeDef]
167
- ) -> CreateIndexOutputTypeDef:
165
+ def create_index(self, **kwargs: Unpack[CreateIndexInputTypeDef]) -> CreateIndexOutputTypeDef:
168
166
  """
169
167
  Turns on Amazon Web Services Resource Explorer in the Amazon Web Services
170
168
  Region in which you called this operation by creating an index.
@@ -173,9 +171,7 @@ class ResourceExplorerClient(BaseClient):
173
171
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#create_index)
174
172
  """
175
173
 
176
- def create_view(
177
- self, **kwargs: Unpack[CreateViewInputRequestTypeDef]
178
- ) -> CreateViewOutputTypeDef:
174
+ def create_view(self, **kwargs: Unpack[CreateViewInputTypeDef]) -> CreateViewOutputTypeDef:
179
175
  """
180
176
  Creates a view that users can query by using the <a>Search</a> operation.
181
177
 
@@ -183,9 +179,7 @@ class ResourceExplorerClient(BaseClient):
183
179
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#create_view)
184
180
  """
185
181
 
186
- def delete_index(
187
- self, **kwargs: Unpack[DeleteIndexInputRequestTypeDef]
188
- ) -> DeleteIndexOutputTypeDef:
182
+ def delete_index(self, **kwargs: Unpack[DeleteIndexInputTypeDef]) -> DeleteIndexOutputTypeDef:
189
183
  """
190
184
  Deletes the specified index and turns off Amazon Web Services Resource Explorer
191
185
  in the specified Amazon Web Services Region.
@@ -194,9 +188,7 @@ class ResourceExplorerClient(BaseClient):
194
188
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#delete_index)
195
189
  """
196
190
 
197
- def delete_view(
198
- self, **kwargs: Unpack[DeleteViewInputRequestTypeDef]
199
- ) -> DeleteViewOutputTypeDef:
191
+ def delete_view(self, **kwargs: Unpack[DeleteViewInputTypeDef]) -> DeleteViewOutputTypeDef:
200
192
  """
201
193
  Deletes the specified view.
202
194
 
@@ -244,7 +236,7 @@ class ResourceExplorerClient(BaseClient):
244
236
  """
245
237
 
246
238
  def get_managed_view(
247
- self, **kwargs: Unpack[GetManagedViewInputRequestTypeDef]
239
+ self, **kwargs: Unpack[GetManagedViewInputTypeDef]
248
240
  ) -> GetManagedViewOutputTypeDef:
249
241
  """
250
242
  Retrieves details of the specified <a
@@ -255,7 +247,7 @@ class ResourceExplorerClient(BaseClient):
255
247
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_managed_view)
256
248
  """
257
249
 
258
- def get_view(self, **kwargs: Unpack[GetViewInputRequestTypeDef]) -> GetViewOutputTypeDef:
250
+ def get_view(self, **kwargs: Unpack[GetViewInputTypeDef]) -> GetViewOutputTypeDef:
259
251
  """
260
252
  Retrieves details of the specified view.
261
253
 
@@ -263,9 +255,7 @@ class ResourceExplorerClient(BaseClient):
263
255
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_view)
264
256
  """
265
257
 
266
- def list_indexes(
267
- self, **kwargs: Unpack[ListIndexesInputRequestTypeDef]
268
- ) -> ListIndexesOutputTypeDef:
258
+ def list_indexes(self, **kwargs: Unpack[ListIndexesInputTypeDef]) -> ListIndexesOutputTypeDef:
269
259
  """
270
260
  Retrieves a list of all of the indexes in Amazon Web Services Regions that are
271
261
  currently collecting resource information for Amazon Web Services Resource
@@ -276,7 +266,7 @@ class ResourceExplorerClient(BaseClient):
276
266
  """
277
267
 
278
268
  def list_indexes_for_members(
279
- self, **kwargs: Unpack[ListIndexesForMembersInputRequestTypeDef]
269
+ self, **kwargs: Unpack[ListIndexesForMembersInputTypeDef]
280
270
  ) -> ListIndexesForMembersOutputTypeDef:
281
271
  """
282
272
  Retrieves a list of a member's indexes in all Amazon Web Services Regions that
@@ -288,7 +278,7 @@ class ResourceExplorerClient(BaseClient):
288
278
  """
289
279
 
290
280
  def list_managed_views(
291
- self, **kwargs: Unpack[ListManagedViewsInputRequestTypeDef]
281
+ self, **kwargs: Unpack[ListManagedViewsInputTypeDef]
292
282
  ) -> ListManagedViewsOutputTypeDef:
293
283
  """
294
284
  Lists the Amazon resource names (ARNs) of the <a
@@ -301,7 +291,7 @@ class ResourceExplorerClient(BaseClient):
301
291
  """
302
292
 
303
293
  def list_resources(
304
- self, **kwargs: Unpack[ListResourcesInputRequestTypeDef]
294
+ self, **kwargs: Unpack[ListResourcesInputTypeDef]
305
295
  ) -> ListResourcesOutputTypeDef:
306
296
  """
307
297
  Returns a list of resources and their details that match the specified criteria.
@@ -311,7 +301,7 @@ class ResourceExplorerClient(BaseClient):
311
301
  """
312
302
 
313
303
  def list_supported_resource_types(
314
- self, **kwargs: Unpack[ListSupportedResourceTypesInputRequestTypeDef]
304
+ self, **kwargs: Unpack[ListSupportedResourceTypesInputTypeDef]
315
305
  ) -> ListSupportedResourceTypesOutputTypeDef:
316
306
  """
317
307
  Retrieves a list of all resource types currently supported by Amazon Web
@@ -322,7 +312,7 @@ class ResourceExplorerClient(BaseClient):
322
312
  """
323
313
 
324
314
  def list_tags_for_resource(
325
- self, **kwargs: Unpack[ListTagsForResourceInputRequestTypeDef]
315
+ self, **kwargs: Unpack[ListTagsForResourceInputTypeDef]
326
316
  ) -> ListTagsForResourceOutputTypeDef:
327
317
  """
328
318
  Lists the tags that are attached to the specified resource.
@@ -331,7 +321,7 @@ class ResourceExplorerClient(BaseClient):
331
321
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#list_tags_for_resource)
332
322
  """
333
323
 
334
- def list_views(self, **kwargs: Unpack[ListViewsInputRequestTypeDef]) -> ListViewsOutputTypeDef:
324
+ def list_views(self, **kwargs: Unpack[ListViewsInputTypeDef]) -> ListViewsOutputTypeDef:
335
325
  """
336
326
  Lists the <a
337
327
  href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon
@@ -342,7 +332,7 @@ class ResourceExplorerClient(BaseClient):
342
332
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#list_views)
343
333
  """
344
334
 
345
- def search(self, **kwargs: Unpack[SearchInputRequestTypeDef]) -> SearchOutputTypeDef:
335
+ def search(self, **kwargs: Unpack[SearchInputTypeDef]) -> SearchOutputTypeDef:
346
336
  """
347
337
  Searches for resources and displays details about all resources that match the
348
338
  specified criteria.
@@ -351,7 +341,7 @@ class ResourceExplorerClient(BaseClient):
351
341
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#search)
352
342
  """
353
343
 
354
- def tag_resource(self, **kwargs: Unpack[TagResourceInputRequestTypeDef]) -> Dict[str, Any]:
344
+ def tag_resource(self, **kwargs: Unpack[TagResourceInputTypeDef]) -> Dict[str, Any]:
355
345
  """
356
346
  Adds one or more tag key and value pairs to an Amazon Web Services Resource
357
347
  Explorer view or index.
@@ -360,7 +350,7 @@ class ResourceExplorerClient(BaseClient):
360
350
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#tag_resource)
361
351
  """
362
352
 
363
- def untag_resource(self, **kwargs: Unpack[UntagResourceInputRequestTypeDef]) -> Dict[str, Any]:
353
+ def untag_resource(self, **kwargs: Unpack[UntagResourceInputTypeDef]) -> Dict[str, Any]:
364
354
  """
365
355
  Removes one or more tag key and value pairs from an Amazon Web Services
366
356
  Resource Explorer view or index.
@@ -370,7 +360,7 @@ class ResourceExplorerClient(BaseClient):
370
360
  """
371
361
 
372
362
  def update_index_type(
373
- self, **kwargs: Unpack[UpdateIndexTypeInputRequestTypeDef]
363
+ self, **kwargs: Unpack[UpdateIndexTypeInputTypeDef]
374
364
  ) -> UpdateIndexTypeOutputTypeDef:
375
365
  """
376
366
  Changes the type of the index from one of the following types to the other.
@@ -379,9 +369,7 @@ class ResourceExplorerClient(BaseClient):
379
369
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#update_index_type)
380
370
  """
381
371
 
382
- def update_view(
383
- self, **kwargs: Unpack[UpdateViewInputRequestTypeDef]
384
- ) -> UpdateViewOutputTypeDef:
372
+ def update_view(self, **kwargs: Unpack[UpdateViewInputTypeDef]) -> UpdateViewOutputTypeDef:
385
373
  """
386
374
  Modifies some of the details of a view.
387
375
 
@@ -3,6 +3,8 @@ Type annotations for resource-explorer-2 service Client.
3
3
 
4
4
  [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/)
5
5
 
6
+ Copyright 2025 Vlad Emelianov
7
+
6
8
  Usage::
7
9
 
8
10
  ```python
@@ -12,8 +14,6 @@ Usage::
12
14
  session = Session()
13
15
  client: ResourceExplorerClient = session.client("resource-explorer-2")
14
16
  ```
15
-
16
- Copyright 2025 Vlad Emelianov
17
17
  """
18
18
 
19
19
  from __future__ import annotations
@@ -35,47 +35,47 @@ from .paginator import (
35
35
  SearchPaginator,
36
36
  )
37
37
  from .type_defs import (
38
- AssociateDefaultViewInputRequestTypeDef,
38
+ AssociateDefaultViewInputTypeDef,
39
39
  AssociateDefaultViewOutputTypeDef,
40
- BatchGetViewInputRequestTypeDef,
40
+ BatchGetViewInputTypeDef,
41
41
  BatchGetViewOutputTypeDef,
42
- CreateIndexInputRequestTypeDef,
42
+ CreateIndexInputTypeDef,
43
43
  CreateIndexOutputTypeDef,
44
- CreateViewInputRequestTypeDef,
44
+ CreateViewInputTypeDef,
45
45
  CreateViewOutputTypeDef,
46
- DeleteIndexInputRequestTypeDef,
46
+ DeleteIndexInputTypeDef,
47
47
  DeleteIndexOutputTypeDef,
48
- DeleteViewInputRequestTypeDef,
48
+ DeleteViewInputTypeDef,
49
49
  DeleteViewOutputTypeDef,
50
50
  EmptyResponseMetadataTypeDef,
51
51
  GetAccountLevelServiceConfigurationOutputTypeDef,
52
52
  GetDefaultViewOutputTypeDef,
53
53
  GetIndexOutputTypeDef,
54
- GetManagedViewInputRequestTypeDef,
54
+ GetManagedViewInputTypeDef,
55
55
  GetManagedViewOutputTypeDef,
56
- GetViewInputRequestTypeDef,
56
+ GetViewInputTypeDef,
57
57
  GetViewOutputTypeDef,
58
- ListIndexesForMembersInputRequestTypeDef,
58
+ ListIndexesForMembersInputTypeDef,
59
59
  ListIndexesForMembersOutputTypeDef,
60
- ListIndexesInputRequestTypeDef,
60
+ ListIndexesInputTypeDef,
61
61
  ListIndexesOutputTypeDef,
62
- ListManagedViewsInputRequestTypeDef,
62
+ ListManagedViewsInputTypeDef,
63
63
  ListManagedViewsOutputTypeDef,
64
- ListResourcesInputRequestTypeDef,
64
+ ListResourcesInputTypeDef,
65
65
  ListResourcesOutputTypeDef,
66
- ListSupportedResourceTypesInputRequestTypeDef,
66
+ ListSupportedResourceTypesInputTypeDef,
67
67
  ListSupportedResourceTypesOutputTypeDef,
68
- ListTagsForResourceInputRequestTypeDef,
68
+ ListTagsForResourceInputTypeDef,
69
69
  ListTagsForResourceOutputTypeDef,
70
- ListViewsInputRequestTypeDef,
70
+ ListViewsInputTypeDef,
71
71
  ListViewsOutputTypeDef,
72
- SearchInputRequestTypeDef,
72
+ SearchInputTypeDef,
73
73
  SearchOutputTypeDef,
74
- TagResourceInputRequestTypeDef,
75
- UntagResourceInputRequestTypeDef,
76
- UpdateIndexTypeInputRequestTypeDef,
74
+ TagResourceInputTypeDef,
75
+ UntagResourceInputTypeDef,
76
+ UpdateIndexTypeInputTypeDef,
77
77
  UpdateIndexTypeOutputTypeDef,
78
- UpdateViewInputRequestTypeDef,
78
+ UpdateViewInputTypeDef,
79
79
  UpdateViewOutputTypeDef,
80
80
  )
81
81
 
@@ -139,7 +139,7 @@ class ResourceExplorerClient(BaseClient):
139
139
  """
140
140
 
141
141
  def associate_default_view(
142
- self, **kwargs: Unpack[AssociateDefaultViewInputRequestTypeDef]
142
+ self, **kwargs: Unpack[AssociateDefaultViewInputTypeDef]
143
143
  ) -> AssociateDefaultViewOutputTypeDef:
144
144
  """
145
145
  Sets the specified view as the default for the Amazon Web Services Region in
@@ -150,7 +150,7 @@ class ResourceExplorerClient(BaseClient):
150
150
  """
151
151
 
152
152
  def batch_get_view(
153
- self, **kwargs: Unpack[BatchGetViewInputRequestTypeDef]
153
+ self, **kwargs: Unpack[BatchGetViewInputTypeDef]
154
154
  ) -> BatchGetViewOutputTypeDef:
155
155
  """
156
156
  Retrieves details about a list of views.
@@ -159,9 +159,7 @@ class ResourceExplorerClient(BaseClient):
159
159
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#batch_get_view)
160
160
  """
161
161
 
162
- def create_index(
163
- self, **kwargs: Unpack[CreateIndexInputRequestTypeDef]
164
- ) -> CreateIndexOutputTypeDef:
162
+ def create_index(self, **kwargs: Unpack[CreateIndexInputTypeDef]) -> CreateIndexOutputTypeDef:
165
163
  """
166
164
  Turns on Amazon Web Services Resource Explorer in the Amazon Web Services
167
165
  Region in which you called this operation by creating an index.
@@ -170,9 +168,7 @@ class ResourceExplorerClient(BaseClient):
170
168
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#create_index)
171
169
  """
172
170
 
173
- def create_view(
174
- self, **kwargs: Unpack[CreateViewInputRequestTypeDef]
175
- ) -> CreateViewOutputTypeDef:
171
+ def create_view(self, **kwargs: Unpack[CreateViewInputTypeDef]) -> CreateViewOutputTypeDef:
176
172
  """
177
173
  Creates a view that users can query by using the <a>Search</a> operation.
178
174
 
@@ -180,9 +176,7 @@ class ResourceExplorerClient(BaseClient):
180
176
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#create_view)
181
177
  """
182
178
 
183
- def delete_index(
184
- self, **kwargs: Unpack[DeleteIndexInputRequestTypeDef]
185
- ) -> DeleteIndexOutputTypeDef:
179
+ def delete_index(self, **kwargs: Unpack[DeleteIndexInputTypeDef]) -> DeleteIndexOutputTypeDef:
186
180
  """
187
181
  Deletes the specified index and turns off Amazon Web Services Resource Explorer
188
182
  in the specified Amazon Web Services Region.
@@ -191,9 +185,7 @@ class ResourceExplorerClient(BaseClient):
191
185
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#delete_index)
192
186
  """
193
187
 
194
- def delete_view(
195
- self, **kwargs: Unpack[DeleteViewInputRequestTypeDef]
196
- ) -> DeleteViewOutputTypeDef:
188
+ def delete_view(self, **kwargs: Unpack[DeleteViewInputTypeDef]) -> DeleteViewOutputTypeDef:
197
189
  """
198
190
  Deletes the specified view.
199
191
 
@@ -241,7 +233,7 @@ class ResourceExplorerClient(BaseClient):
241
233
  """
242
234
 
243
235
  def get_managed_view(
244
- self, **kwargs: Unpack[GetManagedViewInputRequestTypeDef]
236
+ self, **kwargs: Unpack[GetManagedViewInputTypeDef]
245
237
  ) -> GetManagedViewOutputTypeDef:
246
238
  """
247
239
  Retrieves details of the specified <a
@@ -252,7 +244,7 @@ class ResourceExplorerClient(BaseClient):
252
244
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_managed_view)
253
245
  """
254
246
 
255
- def get_view(self, **kwargs: Unpack[GetViewInputRequestTypeDef]) -> GetViewOutputTypeDef:
247
+ def get_view(self, **kwargs: Unpack[GetViewInputTypeDef]) -> GetViewOutputTypeDef:
256
248
  """
257
249
  Retrieves details of the specified view.
258
250
 
@@ -260,9 +252,7 @@ class ResourceExplorerClient(BaseClient):
260
252
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_view)
261
253
  """
262
254
 
263
- def list_indexes(
264
- self, **kwargs: Unpack[ListIndexesInputRequestTypeDef]
265
- ) -> ListIndexesOutputTypeDef:
255
+ def list_indexes(self, **kwargs: Unpack[ListIndexesInputTypeDef]) -> ListIndexesOutputTypeDef:
266
256
  """
267
257
  Retrieves a list of all of the indexes in Amazon Web Services Regions that are
268
258
  currently collecting resource information for Amazon Web Services Resource
@@ -273,7 +263,7 @@ class ResourceExplorerClient(BaseClient):
273
263
  """
274
264
 
275
265
  def list_indexes_for_members(
276
- self, **kwargs: Unpack[ListIndexesForMembersInputRequestTypeDef]
266
+ self, **kwargs: Unpack[ListIndexesForMembersInputTypeDef]
277
267
  ) -> ListIndexesForMembersOutputTypeDef:
278
268
  """
279
269
  Retrieves a list of a member's indexes in all Amazon Web Services Regions that
@@ -285,7 +275,7 @@ class ResourceExplorerClient(BaseClient):
285
275
  """
286
276
 
287
277
  def list_managed_views(
288
- self, **kwargs: Unpack[ListManagedViewsInputRequestTypeDef]
278
+ self, **kwargs: Unpack[ListManagedViewsInputTypeDef]
289
279
  ) -> ListManagedViewsOutputTypeDef:
290
280
  """
291
281
  Lists the Amazon resource names (ARNs) of the <a
@@ -298,7 +288,7 @@ class ResourceExplorerClient(BaseClient):
298
288
  """
299
289
 
300
290
  def list_resources(
301
- self, **kwargs: Unpack[ListResourcesInputRequestTypeDef]
291
+ self, **kwargs: Unpack[ListResourcesInputTypeDef]
302
292
  ) -> ListResourcesOutputTypeDef:
303
293
  """
304
294
  Returns a list of resources and their details that match the specified criteria.
@@ -308,7 +298,7 @@ class ResourceExplorerClient(BaseClient):
308
298
  """
309
299
 
310
300
  def list_supported_resource_types(
311
- self, **kwargs: Unpack[ListSupportedResourceTypesInputRequestTypeDef]
301
+ self, **kwargs: Unpack[ListSupportedResourceTypesInputTypeDef]
312
302
  ) -> ListSupportedResourceTypesOutputTypeDef:
313
303
  """
314
304
  Retrieves a list of all resource types currently supported by Amazon Web
@@ -319,7 +309,7 @@ class ResourceExplorerClient(BaseClient):
319
309
  """
320
310
 
321
311
  def list_tags_for_resource(
322
- self, **kwargs: Unpack[ListTagsForResourceInputRequestTypeDef]
312
+ self, **kwargs: Unpack[ListTagsForResourceInputTypeDef]
323
313
  ) -> ListTagsForResourceOutputTypeDef:
324
314
  """
325
315
  Lists the tags that are attached to the specified resource.
@@ -328,7 +318,7 @@ class ResourceExplorerClient(BaseClient):
328
318
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#list_tags_for_resource)
329
319
  """
330
320
 
331
- def list_views(self, **kwargs: Unpack[ListViewsInputRequestTypeDef]) -> ListViewsOutputTypeDef:
321
+ def list_views(self, **kwargs: Unpack[ListViewsInputTypeDef]) -> ListViewsOutputTypeDef:
332
322
  """
333
323
  Lists the <a
334
324
  href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon
@@ -339,7 +329,7 @@ class ResourceExplorerClient(BaseClient):
339
329
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#list_views)
340
330
  """
341
331
 
342
- def search(self, **kwargs: Unpack[SearchInputRequestTypeDef]) -> SearchOutputTypeDef:
332
+ def search(self, **kwargs: Unpack[SearchInputTypeDef]) -> SearchOutputTypeDef:
343
333
  """
344
334
  Searches for resources and displays details about all resources that match the
345
335
  specified criteria.
@@ -348,7 +338,7 @@ class ResourceExplorerClient(BaseClient):
348
338
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#search)
349
339
  """
350
340
 
351
- def tag_resource(self, **kwargs: Unpack[TagResourceInputRequestTypeDef]) -> Dict[str, Any]:
341
+ def tag_resource(self, **kwargs: Unpack[TagResourceInputTypeDef]) -> Dict[str, Any]:
352
342
  """
353
343
  Adds one or more tag key and value pairs to an Amazon Web Services Resource
354
344
  Explorer view or index.
@@ -357,7 +347,7 @@ class ResourceExplorerClient(BaseClient):
357
347
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#tag_resource)
358
348
  """
359
349
 
360
- def untag_resource(self, **kwargs: Unpack[UntagResourceInputRequestTypeDef]) -> Dict[str, Any]:
350
+ def untag_resource(self, **kwargs: Unpack[UntagResourceInputTypeDef]) -> Dict[str, Any]:
361
351
  """
362
352
  Removes one or more tag key and value pairs from an Amazon Web Services
363
353
  Resource Explorer view or index.
@@ -367,7 +357,7 @@ class ResourceExplorerClient(BaseClient):
367
357
  """
368
358
 
369
359
  def update_index_type(
370
- self, **kwargs: Unpack[UpdateIndexTypeInputRequestTypeDef]
360
+ self, **kwargs: Unpack[UpdateIndexTypeInputTypeDef]
371
361
  ) -> UpdateIndexTypeOutputTypeDef:
372
362
  """
373
363
  Changes the type of the index from one of the following types to the other.
@@ -376,9 +366,7 @@ class ResourceExplorerClient(BaseClient):
376
366
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#update_index_type)
377
367
  """
378
368
 
379
- def update_view(
380
- self, **kwargs: Unpack[UpdateViewInputRequestTypeDef]
381
- ) -> UpdateViewOutputTypeDef:
369
+ def update_view(self, **kwargs: Unpack[UpdateViewInputTypeDef]) -> UpdateViewOutputTypeDef:
382
370
  """
383
371
  Modifies some of the details of a view.
384
372
 
@@ -3,6 +3,8 @@ Type annotations for resource-explorer-2 service literal definitions.
3
3
 
4
4
  [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/literals/)
5
5
 
6
+ Copyright 2025 Vlad Emelianov
7
+
6
8
  Usage::
7
9
 
8
10
  ```python
@@ -10,8 +12,6 @@ Usage::
10
12
 
11
13
  data: AWSServiceAccessStatusType = "DISABLED"
12
14
  ```
13
-
14
- Copyright 2025 Vlad Emelianov
15
15
  """
16
16
 
17
17
  import sys
@@ -185,7 +185,6 @@ ServiceName = Literal[
185
185
  "efs",
186
186
  "eks",
187
187
  "eks-auth",
188
- "elastic-inference",
189
188
  "elasticache",
190
189
  "elasticbeanstalk",
191
190
  "elastictranscoder",
@@ -234,8 +233,6 @@ ServiceName = Literal[
234
233
  "iot",
235
234
  "iot-data",
236
235
  "iot-jobs-data",
237
- "iot1click-devices",
238
- "iot1click-projects",
239
236
  "iotanalytics",
240
237
  "iotdeviceadvisor",
241
238
  "iotevents",
@@ -3,6 +3,8 @@ Type annotations for resource-explorer-2 service literal definitions.
3
3
 
4
4
  [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/literals/)
5
5
 
6
+ Copyright 2025 Vlad Emelianov
7
+
6
8
  Usage::
7
9
 
8
10
  ```python
@@ -10,8 +12,6 @@ Usage::
10
12
 
11
13
  data: AWSServiceAccessStatusType = "DISABLED"
12
14
  ```
13
-
14
- Copyright 2025 Vlad Emelianov
15
15
  """
16
16
 
17
17
  import sys
@@ -183,7 +183,6 @@ ServiceName = Literal[
183
183
  "efs",
184
184
  "eks",
185
185
  "eks-auth",
186
- "elastic-inference",
187
186
  "elasticache",
188
187
  "elasticbeanstalk",
189
188
  "elastictranscoder",
@@ -232,8 +231,6 @@ ServiceName = Literal[
232
231
  "iot",
233
232
  "iot-data",
234
233
  "iot-jobs-data",
235
- "iot1click-devices",
236
- "iot1click-projects",
237
234
  "iotanalytics",
238
235
  "iotdeviceadvisor",
239
236
  "iotevents",