types-boto3-geo-maps 1.35.71__py3-none-any.whl → 1.38.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.
- types_boto3_geo_maps/__init__.py +4 -2
- types_boto3_geo_maps/__init__.pyi +4 -2
- types_boto3_geo_maps/__main__.py +9 -8
- types_boto3_geo_maps/client.py +31 -39
- types_boto3_geo_maps/client.pyi +31 -38
- types_boto3_geo_maps/literals.py +18 -7
- types_boto3_geo_maps/literals.pyi +18 -7
- types_boto3_geo_maps/type_defs.py +36 -18
- types_boto3_geo_maps/type_defs.pyi +36 -18
- types_boto3_geo_maps/version.py +2 -2
- {types_boto3_geo_maps-1.35.71.dist-info → types_boto3_geo_maps-1.38.0.dist-info}/METADATA +72 -15
- types_boto3_geo_maps-1.38.0.dist-info/RECORD +16 -0
- {types_boto3_geo_maps-1.35.71.dist-info → types_boto3_geo_maps-1.38.0.dist-info}/WHEEL +1 -1
- {types_boto3_geo_maps-1.35.71.dist-info → types_boto3_geo_maps-1.38.0.dist-info/licenses}/LICENSE +1 -1
- types_boto3_geo_maps-1.35.71.dist-info/RECORD +0 -16
- {types_boto3_geo_maps-1.35.71.dist-info → types_boto3_geo_maps-1.38.0.dist-info}/top_level.txt +0 -0
types_boto3_geo_maps/__init__.py
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main interface for geo-maps service.
|
|
3
3
|
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
4
8
|
Usage::
|
|
5
9
|
|
|
6
10
|
```python
|
|
@@ -13,8 +17,6 @@ Usage::
|
|
|
13
17
|
session = Session()
|
|
14
18
|
client: LocationServiceMapsV2Client = session.client("geo-maps")
|
|
15
19
|
```
|
|
16
|
-
|
|
17
|
-
Copyright 2024 Vlad Emelianov
|
|
18
20
|
"""
|
|
19
21
|
|
|
20
22
|
from .client import LocationServiceMapsV2Client
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main interface for geo-maps service.
|
|
3
3
|
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
4
8
|
Usage::
|
|
5
9
|
|
|
6
10
|
```python
|
|
@@ -13,8 +17,6 @@ Usage::
|
|
|
13
17
|
session = Session()
|
|
14
18
|
client: LocationServiceMapsV2Client = session.client("geo-maps")
|
|
15
19
|
```
|
|
16
|
-
|
|
17
|
-
Copyright 2024 Vlad Emelianov
|
|
18
20
|
"""
|
|
19
21
|
|
|
20
22
|
from .client import LocationServiceMapsV2Client
|
types_boto3_geo_maps/__main__.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main CLI entrypoint.
|
|
3
3
|
|
|
4
|
-
Copyright
|
|
4
|
+
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import sys
|
|
@@ -11,14 +11,14 @@ def print_info() -> None:
|
|
|
11
11
|
"""
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
|
-
|
|
15
|
-
"Type annotations for boto3 LocationServiceMapsV2 1.
|
|
16
|
-
"Version: 1.
|
|
17
|
-
"Builder version: 8.
|
|
14
|
+
sys.stdout.write(
|
|
15
|
+
"Type annotations for boto3 LocationServiceMapsV2 1.38.0\n"
|
|
16
|
+
"Version: 1.38.0\n"
|
|
17
|
+
"Builder version: 8.10.1\n"
|
|
18
18
|
"Docs: https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#locationservicemapsv2\n"
|
|
20
20
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
21
|
-
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
|
|
21
|
+
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
|
|
22
22
|
)
|
|
23
23
|
|
|
24
24
|
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
|
|
29
|
+
sys.stdout.write("1.38.0\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
|
@@ -34,7 +34,8 @@ def main() -> None:
|
|
|
34
34
|
Main CLI entrypoint.
|
|
35
35
|
"""
|
|
36
36
|
if "--version" in sys.argv:
|
|
37
|
-
|
|
37
|
+
print_version()
|
|
38
|
+
return
|
|
38
39
|
print_info()
|
|
39
40
|
|
|
40
41
|
|
types_boto3_geo_maps/client.py
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
"""
|
|
2
|
-
Type annotations for geo-maps service
|
|
2
|
+
Type annotations for geo-maps service Client.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
5
7
|
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
@@ -12,28 +14,35 @@ Usage::
|
|
|
12
14
|
session = Session()
|
|
13
15
|
client: LocationServiceMapsV2Client = session.client("geo-maps")
|
|
14
16
|
```
|
|
15
|
-
|
|
16
|
-
Copyright 2024 Vlad Emelianov
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
|
+
from __future__ import annotations
|
|
20
|
+
|
|
19
21
|
import sys
|
|
20
|
-
from typing import Any
|
|
22
|
+
from typing import Any
|
|
21
23
|
|
|
22
24
|
from botocore.client import BaseClient, ClientMeta
|
|
25
|
+
from botocore.errorfactory import BaseClientExceptions
|
|
26
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
|
23
27
|
|
|
24
28
|
from .type_defs import (
|
|
25
|
-
|
|
29
|
+
GetGlyphsRequestTypeDef,
|
|
26
30
|
GetGlyphsResponseTypeDef,
|
|
27
|
-
|
|
31
|
+
GetSpritesRequestTypeDef,
|
|
28
32
|
GetSpritesResponseTypeDef,
|
|
29
|
-
|
|
33
|
+
GetStaticMapRequestTypeDef,
|
|
30
34
|
GetStaticMapResponseTypeDef,
|
|
31
|
-
|
|
35
|
+
GetStyleDescriptorRequestTypeDef,
|
|
32
36
|
GetStyleDescriptorResponseTypeDef,
|
|
33
|
-
|
|
37
|
+
GetTileRequestTypeDef,
|
|
34
38
|
GetTileResponseTypeDef,
|
|
35
39
|
)
|
|
36
40
|
|
|
41
|
+
if sys.version_info >= (3, 9):
|
|
42
|
+
from builtins import type as Type
|
|
43
|
+
from collections.abc import Mapping
|
|
44
|
+
else:
|
|
45
|
+
from typing import Mapping, Type
|
|
37
46
|
if sys.version_info >= (3, 12):
|
|
38
47
|
from typing import Unpack
|
|
39
48
|
else:
|
|
@@ -43,15 +52,7 @@ else:
|
|
|
43
52
|
__all__ = ("LocationServiceMapsV2Client",)
|
|
44
53
|
|
|
45
54
|
|
|
46
|
-
class
|
|
47
|
-
MSG_TEMPLATE: str
|
|
48
|
-
|
|
49
|
-
def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
|
|
50
|
-
self.response: Dict[str, Any]
|
|
51
|
-
self.operation_name: str
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
class Exceptions:
|
|
55
|
+
class Exceptions(BaseClientExceptions):
|
|
55
56
|
AccessDeniedException: Type[BotocoreClientError]
|
|
56
57
|
ClientError: Type[BotocoreClientError]
|
|
57
58
|
InternalServerException: Type[BotocoreClientError]
|
|
@@ -94,55 +95,46 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
94
95
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#generate_presigned_url)
|
|
95
96
|
"""
|
|
96
97
|
|
|
97
|
-
def
|
|
98
|
-
"""
|
|
99
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/close.html)
|
|
100
|
-
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#close)
|
|
101
|
-
"""
|
|
102
|
-
|
|
103
|
-
def get_glyphs(
|
|
104
|
-
self, **kwargs: Unpack[GetGlyphsRequestRequestTypeDef]
|
|
105
|
-
) -> GetGlyphsResponseTypeDef:
|
|
98
|
+
def get_glyphs(self, **kwargs: Unpack[GetGlyphsRequestTypeDef]) -> GetGlyphsResponseTypeDef:
|
|
106
99
|
"""
|
|
107
|
-
|
|
100
|
+
<code>GetGlyphs</code> returns the map's glyphs.
|
|
108
101
|
|
|
109
102
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_glyphs.html)
|
|
110
103
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_glyphs)
|
|
111
104
|
"""
|
|
112
105
|
|
|
113
|
-
def get_sprites(
|
|
114
|
-
self, **kwargs: Unpack[GetSpritesRequestRequestTypeDef]
|
|
115
|
-
) -> GetSpritesResponseTypeDef:
|
|
106
|
+
def get_sprites(self, **kwargs: Unpack[GetSpritesRequestTypeDef]) -> GetSpritesResponseTypeDef:
|
|
116
107
|
"""
|
|
117
|
-
|
|
108
|
+
<code>GetSprites</code> returns the map's sprites.
|
|
118
109
|
|
|
119
110
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_sprites.html)
|
|
120
111
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_sprites)
|
|
121
112
|
"""
|
|
122
113
|
|
|
123
114
|
def get_static_map(
|
|
124
|
-
self, **kwargs: Unpack[
|
|
115
|
+
self, **kwargs: Unpack[GetStaticMapRequestTypeDef]
|
|
125
116
|
) -> GetStaticMapResponseTypeDef:
|
|
126
117
|
"""
|
|
127
|
-
|
|
118
|
+
<code>GetStaticMap</code> provides high-quality static map images with
|
|
119
|
+
customizable options.
|
|
128
120
|
|
|
129
121
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_static_map.html)
|
|
130
122
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_static_map)
|
|
131
123
|
"""
|
|
132
124
|
|
|
133
125
|
def get_style_descriptor(
|
|
134
|
-
self, **kwargs: Unpack[
|
|
126
|
+
self, **kwargs: Unpack[GetStyleDescriptorRequestTypeDef]
|
|
135
127
|
) -> GetStyleDescriptorResponseTypeDef:
|
|
136
128
|
"""
|
|
137
|
-
|
|
129
|
+
<code>GetStyleDescriptor</code> returns information about the style.
|
|
138
130
|
|
|
139
131
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_style_descriptor.html)
|
|
140
132
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_style_descriptor)
|
|
141
133
|
"""
|
|
142
134
|
|
|
143
|
-
def get_tile(self, **kwargs: Unpack[
|
|
135
|
+
def get_tile(self, **kwargs: Unpack[GetTileRequestTypeDef]) -> GetTileResponseTypeDef:
|
|
144
136
|
"""
|
|
145
|
-
|
|
137
|
+
<code>GetTile</code> returns a tile.
|
|
146
138
|
|
|
147
139
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_tile.html)
|
|
148
140
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_tile)
|
types_boto3_geo_maps/client.pyi
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
"""
|
|
2
|
-
Type annotations for geo-maps service
|
|
2
|
+
Type annotations for geo-maps service Client.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
5
7
|
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
@@ -12,28 +14,35 @@ Usage::
|
|
|
12
14
|
session = Session()
|
|
13
15
|
client: LocationServiceMapsV2Client = session.client("geo-maps")
|
|
14
16
|
```
|
|
15
|
-
|
|
16
|
-
Copyright 2024 Vlad Emelianov
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
|
+
from __future__ import annotations
|
|
20
|
+
|
|
19
21
|
import sys
|
|
20
|
-
from typing import Any
|
|
22
|
+
from typing import Any
|
|
21
23
|
|
|
22
24
|
from botocore.client import BaseClient, ClientMeta
|
|
25
|
+
from botocore.errorfactory import BaseClientExceptions
|
|
26
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
|
23
27
|
|
|
24
28
|
from .type_defs import (
|
|
25
|
-
|
|
29
|
+
GetGlyphsRequestTypeDef,
|
|
26
30
|
GetGlyphsResponseTypeDef,
|
|
27
|
-
|
|
31
|
+
GetSpritesRequestTypeDef,
|
|
28
32
|
GetSpritesResponseTypeDef,
|
|
29
|
-
|
|
33
|
+
GetStaticMapRequestTypeDef,
|
|
30
34
|
GetStaticMapResponseTypeDef,
|
|
31
|
-
|
|
35
|
+
GetStyleDescriptorRequestTypeDef,
|
|
32
36
|
GetStyleDescriptorResponseTypeDef,
|
|
33
|
-
|
|
37
|
+
GetTileRequestTypeDef,
|
|
34
38
|
GetTileResponseTypeDef,
|
|
35
39
|
)
|
|
36
40
|
|
|
41
|
+
if sys.version_info >= (3, 9):
|
|
42
|
+
from builtins import type as Type
|
|
43
|
+
from collections.abc import Mapping
|
|
44
|
+
else:
|
|
45
|
+
from typing import Mapping, Type
|
|
37
46
|
if sys.version_info >= (3, 12):
|
|
38
47
|
from typing import Unpack
|
|
39
48
|
else:
|
|
@@ -41,14 +50,7 @@ else:
|
|
|
41
50
|
|
|
42
51
|
__all__ = ("LocationServiceMapsV2Client",)
|
|
43
52
|
|
|
44
|
-
class
|
|
45
|
-
MSG_TEMPLATE: str
|
|
46
|
-
|
|
47
|
-
def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
|
|
48
|
-
self.response: Dict[str, Any]
|
|
49
|
-
self.operation_name: str
|
|
50
|
-
|
|
51
|
-
class Exceptions:
|
|
53
|
+
class Exceptions(BaseClientExceptions):
|
|
52
54
|
AccessDeniedException: Type[BotocoreClientError]
|
|
53
55
|
ClientError: Type[BotocoreClientError]
|
|
54
56
|
InternalServerException: Type[BotocoreClientError]
|
|
@@ -90,55 +92,46 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
90
92
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#generate_presigned_url)
|
|
91
93
|
"""
|
|
92
94
|
|
|
93
|
-
def
|
|
94
|
-
"""
|
|
95
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/close.html)
|
|
96
|
-
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#close)
|
|
97
|
-
"""
|
|
98
|
-
|
|
99
|
-
def get_glyphs(
|
|
100
|
-
self, **kwargs: Unpack[GetGlyphsRequestRequestTypeDef]
|
|
101
|
-
) -> GetGlyphsResponseTypeDef:
|
|
95
|
+
def get_glyphs(self, **kwargs: Unpack[GetGlyphsRequestTypeDef]) -> GetGlyphsResponseTypeDef:
|
|
102
96
|
"""
|
|
103
|
-
|
|
97
|
+
<code>GetGlyphs</code> returns the map's glyphs.
|
|
104
98
|
|
|
105
99
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_glyphs.html)
|
|
106
100
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_glyphs)
|
|
107
101
|
"""
|
|
108
102
|
|
|
109
|
-
def get_sprites(
|
|
110
|
-
self, **kwargs: Unpack[GetSpritesRequestRequestTypeDef]
|
|
111
|
-
) -> GetSpritesResponseTypeDef:
|
|
103
|
+
def get_sprites(self, **kwargs: Unpack[GetSpritesRequestTypeDef]) -> GetSpritesResponseTypeDef:
|
|
112
104
|
"""
|
|
113
|
-
|
|
105
|
+
<code>GetSprites</code> returns the map's sprites.
|
|
114
106
|
|
|
115
107
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_sprites.html)
|
|
116
108
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_sprites)
|
|
117
109
|
"""
|
|
118
110
|
|
|
119
111
|
def get_static_map(
|
|
120
|
-
self, **kwargs: Unpack[
|
|
112
|
+
self, **kwargs: Unpack[GetStaticMapRequestTypeDef]
|
|
121
113
|
) -> GetStaticMapResponseTypeDef:
|
|
122
114
|
"""
|
|
123
|
-
|
|
115
|
+
<code>GetStaticMap</code> provides high-quality static map images with
|
|
116
|
+
customizable options.
|
|
124
117
|
|
|
125
118
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_static_map.html)
|
|
126
119
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_static_map)
|
|
127
120
|
"""
|
|
128
121
|
|
|
129
122
|
def get_style_descriptor(
|
|
130
|
-
self, **kwargs: Unpack[
|
|
123
|
+
self, **kwargs: Unpack[GetStyleDescriptorRequestTypeDef]
|
|
131
124
|
) -> GetStyleDescriptorResponseTypeDef:
|
|
132
125
|
"""
|
|
133
|
-
|
|
126
|
+
<code>GetStyleDescriptor</code> returns information about the style.
|
|
134
127
|
|
|
135
128
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_style_descriptor.html)
|
|
136
129
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_style_descriptor)
|
|
137
130
|
"""
|
|
138
131
|
|
|
139
|
-
def get_tile(self, **kwargs: Unpack[
|
|
132
|
+
def get_tile(self, **kwargs: Unpack[GetTileRequestTypeDef]) -> GetTileResponseTypeDef:
|
|
140
133
|
"""
|
|
141
|
-
|
|
134
|
+
<code>GetTile</code> returns a tile.
|
|
142
135
|
|
|
143
136
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_tile.html)
|
|
144
137
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_tile)
|
types_boto3_geo_maps/literals.py
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for geo-maps service literal definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/literals/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
5
7
|
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
@@ -10,8 +12,6 @@ Usage::
|
|
|
10
12
|
|
|
11
13
|
data: ColorSchemeType = "Dark"
|
|
12
14
|
```
|
|
13
|
-
|
|
14
|
-
Copyright 2024 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
import sys
|
|
@@ -24,7 +24,9 @@ else:
|
|
|
24
24
|
|
|
25
25
|
__all__ = (
|
|
26
26
|
"ColorSchemeType",
|
|
27
|
+
"LabelSizeType",
|
|
27
28
|
"LocationServiceMapsV2ServiceName",
|
|
29
|
+
"MapFeatureModeType",
|
|
28
30
|
"MapStyleType",
|
|
29
31
|
"ResourceServiceName",
|
|
30
32
|
"ScaleBarUnitType",
|
|
@@ -35,9 +37,11 @@ __all__ = (
|
|
|
35
37
|
|
|
36
38
|
|
|
37
39
|
ColorSchemeType = Literal["Dark", "Light"]
|
|
40
|
+
LabelSizeType = Literal["Large", "Small"]
|
|
41
|
+
MapFeatureModeType = Literal["Disabled", "Enabled"]
|
|
38
42
|
MapStyleType = Literal["Hybrid", "Monochrome", "Satellite", "Standard"]
|
|
39
43
|
ScaleBarUnitType = Literal["Kilometers", "KilometersMiles", "Miles", "MilesKilometers"]
|
|
40
|
-
StaticMapStyleType = Literal["Satellite"]
|
|
44
|
+
StaticMapStyleType = Literal["Satellite", "Standard"]
|
|
41
45
|
VariantType = Literal["Default"]
|
|
42
46
|
LocationServiceMapsV2ServiceName = Literal["geo-maps"]
|
|
43
47
|
ServiceName = Literal[
|
|
@@ -75,12 +79,15 @@ ServiceName = Literal[
|
|
|
75
79
|
"b2bi",
|
|
76
80
|
"backup",
|
|
77
81
|
"backup-gateway",
|
|
82
|
+
"backupsearch",
|
|
78
83
|
"batch",
|
|
79
84
|
"bcm-data-exports",
|
|
80
85
|
"bcm-pricing-calculator",
|
|
81
86
|
"bedrock",
|
|
82
87
|
"bedrock-agent",
|
|
83
88
|
"bedrock-agent-runtime",
|
|
89
|
+
"bedrock-data-automation",
|
|
90
|
+
"bedrock-data-automation-runtime",
|
|
84
91
|
"bedrock-runtime",
|
|
85
92
|
"billing",
|
|
86
93
|
"billingconductor",
|
|
@@ -158,6 +165,7 @@ ServiceName = Literal[
|
|
|
158
165
|
"drs",
|
|
159
166
|
"ds",
|
|
160
167
|
"ds-data",
|
|
168
|
+
"dsql",
|
|
161
169
|
"dynamodb",
|
|
162
170
|
"dynamodbstreams",
|
|
163
171
|
"ebs",
|
|
@@ -169,7 +177,6 @@ ServiceName = Literal[
|
|
|
169
177
|
"efs",
|
|
170
178
|
"eks",
|
|
171
179
|
"eks-auth",
|
|
172
|
-
"elastic-inference",
|
|
173
180
|
"elasticache",
|
|
174
181
|
"elasticbeanstalk",
|
|
175
182
|
"elastictranscoder",
|
|
@@ -193,6 +200,7 @@ ServiceName = Literal[
|
|
|
193
200
|
"freetier",
|
|
194
201
|
"fsx",
|
|
195
202
|
"gamelift",
|
|
203
|
+
"gameliftstreams",
|
|
196
204
|
"geo-maps",
|
|
197
205
|
"geo-places",
|
|
198
206
|
"geo-routes",
|
|
@@ -214,11 +222,11 @@ ServiceName = Literal[
|
|
|
214
222
|
"inspector-scan",
|
|
215
223
|
"inspector2",
|
|
216
224
|
"internetmonitor",
|
|
225
|
+
"invoicing",
|
|
217
226
|
"iot",
|
|
218
227
|
"iot-data",
|
|
219
228
|
"iot-jobs-data",
|
|
220
|
-
"
|
|
221
|
-
"iot1click-projects",
|
|
229
|
+
"iot-managed-integrations",
|
|
222
230
|
"iotanalytics",
|
|
223
231
|
"iotdeviceadvisor",
|
|
224
232
|
"iotevents",
|
|
@@ -300,6 +308,7 @@ ServiceName = Literal[
|
|
|
300
308
|
"neptune-graph",
|
|
301
309
|
"neptunedata",
|
|
302
310
|
"network-firewall",
|
|
311
|
+
"networkflowmonitor",
|
|
303
312
|
"networkmanager",
|
|
304
313
|
"networkmonitor",
|
|
305
314
|
"notifications",
|
|
@@ -366,6 +375,7 @@ ServiceName = Literal[
|
|
|
366
375
|
"s3",
|
|
367
376
|
"s3control",
|
|
368
377
|
"s3outposts",
|
|
378
|
+
"s3tables",
|
|
369
379
|
"sagemaker",
|
|
370
380
|
"sagemaker-a2i-runtime",
|
|
371
381
|
"sagemaker-edge",
|
|
@@ -378,6 +388,7 @@ ServiceName = Literal[
|
|
|
378
388
|
"schemas",
|
|
379
389
|
"sdb",
|
|
380
390
|
"secretsmanager",
|
|
391
|
+
"security-ir",
|
|
381
392
|
"securityhub",
|
|
382
393
|
"securitylake",
|
|
383
394
|
"serverlessrepo",
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for geo-maps service literal definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/literals/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
5
7
|
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
@@ -10,8 +12,6 @@ Usage::
|
|
|
10
12
|
|
|
11
13
|
data: ColorSchemeType = "Dark"
|
|
12
14
|
```
|
|
13
|
-
|
|
14
|
-
Copyright 2024 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
import sys
|
|
@@ -23,7 +23,9 @@ else:
|
|
|
23
23
|
|
|
24
24
|
__all__ = (
|
|
25
25
|
"ColorSchemeType",
|
|
26
|
+
"LabelSizeType",
|
|
26
27
|
"LocationServiceMapsV2ServiceName",
|
|
28
|
+
"MapFeatureModeType",
|
|
27
29
|
"MapStyleType",
|
|
28
30
|
"ResourceServiceName",
|
|
29
31
|
"ScaleBarUnitType",
|
|
@@ -33,9 +35,11 @@ __all__ = (
|
|
|
33
35
|
)
|
|
34
36
|
|
|
35
37
|
ColorSchemeType = Literal["Dark", "Light"]
|
|
38
|
+
LabelSizeType = Literal["Large", "Small"]
|
|
39
|
+
MapFeatureModeType = Literal["Disabled", "Enabled"]
|
|
36
40
|
MapStyleType = Literal["Hybrid", "Monochrome", "Satellite", "Standard"]
|
|
37
41
|
ScaleBarUnitType = Literal["Kilometers", "KilometersMiles", "Miles", "MilesKilometers"]
|
|
38
|
-
StaticMapStyleType = Literal["Satellite"]
|
|
42
|
+
StaticMapStyleType = Literal["Satellite", "Standard"]
|
|
39
43
|
VariantType = Literal["Default"]
|
|
40
44
|
LocationServiceMapsV2ServiceName = Literal["geo-maps"]
|
|
41
45
|
ServiceName = Literal[
|
|
@@ -73,12 +77,15 @@ ServiceName = Literal[
|
|
|
73
77
|
"b2bi",
|
|
74
78
|
"backup",
|
|
75
79
|
"backup-gateway",
|
|
80
|
+
"backupsearch",
|
|
76
81
|
"batch",
|
|
77
82
|
"bcm-data-exports",
|
|
78
83
|
"bcm-pricing-calculator",
|
|
79
84
|
"bedrock",
|
|
80
85
|
"bedrock-agent",
|
|
81
86
|
"bedrock-agent-runtime",
|
|
87
|
+
"bedrock-data-automation",
|
|
88
|
+
"bedrock-data-automation-runtime",
|
|
82
89
|
"bedrock-runtime",
|
|
83
90
|
"billing",
|
|
84
91
|
"billingconductor",
|
|
@@ -156,6 +163,7 @@ ServiceName = Literal[
|
|
|
156
163
|
"drs",
|
|
157
164
|
"ds",
|
|
158
165
|
"ds-data",
|
|
166
|
+
"dsql",
|
|
159
167
|
"dynamodb",
|
|
160
168
|
"dynamodbstreams",
|
|
161
169
|
"ebs",
|
|
@@ -167,7 +175,6 @@ ServiceName = Literal[
|
|
|
167
175
|
"efs",
|
|
168
176
|
"eks",
|
|
169
177
|
"eks-auth",
|
|
170
|
-
"elastic-inference",
|
|
171
178
|
"elasticache",
|
|
172
179
|
"elasticbeanstalk",
|
|
173
180
|
"elastictranscoder",
|
|
@@ -191,6 +198,7 @@ ServiceName = Literal[
|
|
|
191
198
|
"freetier",
|
|
192
199
|
"fsx",
|
|
193
200
|
"gamelift",
|
|
201
|
+
"gameliftstreams",
|
|
194
202
|
"geo-maps",
|
|
195
203
|
"geo-places",
|
|
196
204
|
"geo-routes",
|
|
@@ -212,11 +220,11 @@ ServiceName = Literal[
|
|
|
212
220
|
"inspector-scan",
|
|
213
221
|
"inspector2",
|
|
214
222
|
"internetmonitor",
|
|
223
|
+
"invoicing",
|
|
215
224
|
"iot",
|
|
216
225
|
"iot-data",
|
|
217
226
|
"iot-jobs-data",
|
|
218
|
-
"
|
|
219
|
-
"iot1click-projects",
|
|
227
|
+
"iot-managed-integrations",
|
|
220
228
|
"iotanalytics",
|
|
221
229
|
"iotdeviceadvisor",
|
|
222
230
|
"iotevents",
|
|
@@ -298,6 +306,7 @@ ServiceName = Literal[
|
|
|
298
306
|
"neptune-graph",
|
|
299
307
|
"neptunedata",
|
|
300
308
|
"network-firewall",
|
|
309
|
+
"networkflowmonitor",
|
|
301
310
|
"networkmanager",
|
|
302
311
|
"networkmonitor",
|
|
303
312
|
"notifications",
|
|
@@ -364,6 +373,7 @@ ServiceName = Literal[
|
|
|
364
373
|
"s3",
|
|
365
374
|
"s3control",
|
|
366
375
|
"s3outposts",
|
|
376
|
+
"s3tables",
|
|
367
377
|
"sagemaker",
|
|
368
378
|
"sagemaker-a2i-runtime",
|
|
369
379
|
"sagemaker-edge",
|
|
@@ -376,6 +386,7 @@ ServiceName = Literal[
|
|
|
376
386
|
"schemas",
|
|
377
387
|
"sdb",
|
|
378
388
|
"secretsmanager",
|
|
389
|
+
"security-ir",
|
|
379
390
|
"securityhub",
|
|
380
391
|
"securitylake",
|
|
381
392
|
"serverlessrepo",
|
|
@@ -1,26 +1,38 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for geo-maps service type definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/type_defs/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
5
7
|
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
9
|
-
from types_boto3_geo_maps.type_defs import
|
|
11
|
+
from types_boto3_geo_maps.type_defs import GetGlyphsRequestTypeDef
|
|
10
12
|
|
|
11
|
-
data:
|
|
13
|
+
data: GetGlyphsRequestTypeDef = ...
|
|
12
14
|
```
|
|
13
|
-
|
|
14
|
-
Copyright 2024 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
|
+
from __future__ import annotations
|
|
18
|
+
|
|
17
19
|
import sys
|
|
18
|
-
from typing import Dict
|
|
19
20
|
|
|
20
21
|
from botocore.response import StreamingBody
|
|
21
22
|
|
|
22
|
-
from .literals import
|
|
23
|
+
from .literals import (
|
|
24
|
+
ColorSchemeType,
|
|
25
|
+
LabelSizeType,
|
|
26
|
+
MapFeatureModeType,
|
|
27
|
+
MapStyleType,
|
|
28
|
+
ScaleBarUnitType,
|
|
29
|
+
StaticMapStyleType,
|
|
30
|
+
)
|
|
23
31
|
|
|
32
|
+
if sys.version_info >= (3, 9):
|
|
33
|
+
from builtins import dict as Dict
|
|
34
|
+
else:
|
|
35
|
+
from typing import Dict
|
|
24
36
|
if sys.version_info >= (3, 12):
|
|
25
37
|
from typing import Literal, NotRequired, TypedDict
|
|
26
38
|
else:
|
|
@@ -28,21 +40,21 @@ else:
|
|
|
28
40
|
|
|
29
41
|
|
|
30
42
|
__all__ = (
|
|
31
|
-
"
|
|
43
|
+
"GetGlyphsRequestTypeDef",
|
|
32
44
|
"GetGlyphsResponseTypeDef",
|
|
33
|
-
"
|
|
45
|
+
"GetSpritesRequestTypeDef",
|
|
34
46
|
"GetSpritesResponseTypeDef",
|
|
35
|
-
"
|
|
47
|
+
"GetStaticMapRequestTypeDef",
|
|
36
48
|
"GetStaticMapResponseTypeDef",
|
|
37
|
-
"
|
|
49
|
+
"GetStyleDescriptorRequestTypeDef",
|
|
38
50
|
"GetStyleDescriptorResponseTypeDef",
|
|
39
|
-
"
|
|
51
|
+
"GetTileRequestTypeDef",
|
|
40
52
|
"GetTileResponseTypeDef",
|
|
41
53
|
"ResponseMetadataTypeDef",
|
|
42
54
|
)
|
|
43
55
|
|
|
44
56
|
|
|
45
|
-
class
|
|
57
|
+
class GetGlyphsRequestTypeDef(TypedDict):
|
|
46
58
|
FontStack: str
|
|
47
59
|
FontUnicodeRange: str
|
|
48
60
|
|
|
@@ -55,38 +67,44 @@ class ResponseMetadataTypeDef(TypedDict):
|
|
|
55
67
|
HostId: NotRequired[str]
|
|
56
68
|
|
|
57
69
|
|
|
58
|
-
class
|
|
70
|
+
class GetSpritesRequestTypeDef(TypedDict):
|
|
59
71
|
FileName: str
|
|
60
72
|
Style: MapStyleType
|
|
61
73
|
ColorScheme: ColorSchemeType
|
|
62
74
|
Variant: Literal["Default"]
|
|
63
75
|
|
|
64
76
|
|
|
65
|
-
class
|
|
77
|
+
class GetStaticMapRequestTypeDef(TypedDict):
|
|
66
78
|
Height: int
|
|
67
79
|
FileName: str
|
|
68
80
|
Width: int
|
|
69
81
|
BoundingBox: NotRequired[str]
|
|
70
82
|
BoundedPositions: NotRequired[str]
|
|
71
83
|
Center: NotRequired[str]
|
|
84
|
+
ColorScheme: NotRequired[ColorSchemeType]
|
|
72
85
|
CompactOverlay: NotRequired[str]
|
|
86
|
+
CropLabels: NotRequired[bool]
|
|
73
87
|
GeoJsonOverlay: NotRequired[str]
|
|
74
88
|
Key: NotRequired[str]
|
|
89
|
+
LabelSize: NotRequired[LabelSizeType]
|
|
90
|
+
Language: NotRequired[str]
|
|
75
91
|
Padding: NotRequired[int]
|
|
92
|
+
PoliticalView: NotRequired[str]
|
|
93
|
+
PointsOfInterests: NotRequired[MapFeatureModeType]
|
|
76
94
|
Radius: NotRequired[int]
|
|
77
95
|
ScaleBarUnit: NotRequired[ScaleBarUnitType]
|
|
78
|
-
Style: NotRequired[
|
|
96
|
+
Style: NotRequired[StaticMapStyleType]
|
|
79
97
|
Zoom: NotRequired[float]
|
|
80
98
|
|
|
81
99
|
|
|
82
|
-
class
|
|
100
|
+
class GetStyleDescriptorRequestTypeDef(TypedDict):
|
|
83
101
|
Style: MapStyleType
|
|
84
102
|
ColorScheme: NotRequired[ColorSchemeType]
|
|
85
103
|
PoliticalView: NotRequired[str]
|
|
86
104
|
Key: NotRequired[str]
|
|
87
105
|
|
|
88
106
|
|
|
89
|
-
class
|
|
107
|
+
class GetTileRequestTypeDef(TypedDict):
|
|
90
108
|
Tileset: str
|
|
91
109
|
Z: str
|
|
92
110
|
X: str
|
|
@@ -1,46 +1,58 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for geo-maps service type definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/type_defs/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
5
7
|
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
9
|
-
from types_boto3_geo_maps.type_defs import
|
|
11
|
+
from types_boto3_geo_maps.type_defs import GetGlyphsRequestTypeDef
|
|
10
12
|
|
|
11
|
-
data:
|
|
13
|
+
data: GetGlyphsRequestTypeDef = ...
|
|
12
14
|
```
|
|
13
|
-
|
|
14
|
-
Copyright 2024 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
|
+
from __future__ import annotations
|
|
18
|
+
|
|
17
19
|
import sys
|
|
18
|
-
from typing import Dict
|
|
19
20
|
|
|
20
21
|
from botocore.response import StreamingBody
|
|
21
22
|
|
|
22
|
-
from .literals import
|
|
23
|
+
from .literals import (
|
|
24
|
+
ColorSchemeType,
|
|
25
|
+
LabelSizeType,
|
|
26
|
+
MapFeatureModeType,
|
|
27
|
+
MapStyleType,
|
|
28
|
+
ScaleBarUnitType,
|
|
29
|
+
StaticMapStyleType,
|
|
30
|
+
)
|
|
23
31
|
|
|
32
|
+
if sys.version_info >= (3, 9):
|
|
33
|
+
from builtins import dict as Dict
|
|
34
|
+
else:
|
|
35
|
+
from typing import Dict
|
|
24
36
|
if sys.version_info >= (3, 12):
|
|
25
37
|
from typing import Literal, NotRequired, TypedDict
|
|
26
38
|
else:
|
|
27
39
|
from typing_extensions import Literal, NotRequired, TypedDict
|
|
28
40
|
|
|
29
41
|
__all__ = (
|
|
30
|
-
"
|
|
42
|
+
"GetGlyphsRequestTypeDef",
|
|
31
43
|
"GetGlyphsResponseTypeDef",
|
|
32
|
-
"
|
|
44
|
+
"GetSpritesRequestTypeDef",
|
|
33
45
|
"GetSpritesResponseTypeDef",
|
|
34
|
-
"
|
|
46
|
+
"GetStaticMapRequestTypeDef",
|
|
35
47
|
"GetStaticMapResponseTypeDef",
|
|
36
|
-
"
|
|
48
|
+
"GetStyleDescriptorRequestTypeDef",
|
|
37
49
|
"GetStyleDescriptorResponseTypeDef",
|
|
38
|
-
"
|
|
50
|
+
"GetTileRequestTypeDef",
|
|
39
51
|
"GetTileResponseTypeDef",
|
|
40
52
|
"ResponseMetadataTypeDef",
|
|
41
53
|
)
|
|
42
54
|
|
|
43
|
-
class
|
|
55
|
+
class GetGlyphsRequestTypeDef(TypedDict):
|
|
44
56
|
FontStack: str
|
|
45
57
|
FontUnicodeRange: str
|
|
46
58
|
|
|
@@ -51,35 +63,41 @@ class ResponseMetadataTypeDef(TypedDict):
|
|
|
51
63
|
RetryAttempts: int
|
|
52
64
|
HostId: NotRequired[str]
|
|
53
65
|
|
|
54
|
-
class
|
|
66
|
+
class GetSpritesRequestTypeDef(TypedDict):
|
|
55
67
|
FileName: str
|
|
56
68
|
Style: MapStyleType
|
|
57
69
|
ColorScheme: ColorSchemeType
|
|
58
70
|
Variant: Literal["Default"]
|
|
59
71
|
|
|
60
|
-
class
|
|
72
|
+
class GetStaticMapRequestTypeDef(TypedDict):
|
|
61
73
|
Height: int
|
|
62
74
|
FileName: str
|
|
63
75
|
Width: int
|
|
64
76
|
BoundingBox: NotRequired[str]
|
|
65
77
|
BoundedPositions: NotRequired[str]
|
|
66
78
|
Center: NotRequired[str]
|
|
79
|
+
ColorScheme: NotRequired[ColorSchemeType]
|
|
67
80
|
CompactOverlay: NotRequired[str]
|
|
81
|
+
CropLabels: NotRequired[bool]
|
|
68
82
|
GeoJsonOverlay: NotRequired[str]
|
|
69
83
|
Key: NotRequired[str]
|
|
84
|
+
LabelSize: NotRequired[LabelSizeType]
|
|
85
|
+
Language: NotRequired[str]
|
|
70
86
|
Padding: NotRequired[int]
|
|
87
|
+
PoliticalView: NotRequired[str]
|
|
88
|
+
PointsOfInterests: NotRequired[MapFeatureModeType]
|
|
71
89
|
Radius: NotRequired[int]
|
|
72
90
|
ScaleBarUnit: NotRequired[ScaleBarUnitType]
|
|
73
|
-
Style: NotRequired[
|
|
91
|
+
Style: NotRequired[StaticMapStyleType]
|
|
74
92
|
Zoom: NotRequired[float]
|
|
75
93
|
|
|
76
|
-
class
|
|
94
|
+
class GetStyleDescriptorRequestTypeDef(TypedDict):
|
|
77
95
|
Style: MapStyleType
|
|
78
96
|
ColorScheme: NotRequired[ColorSchemeType]
|
|
79
97
|
PoliticalView: NotRequired[str]
|
|
80
98
|
Key: NotRequired[str]
|
|
81
99
|
|
|
82
|
-
class
|
|
100
|
+
class GetTileRequestTypeDef(TypedDict):
|
|
83
101
|
Tileset: str
|
|
84
102
|
Z: str
|
|
85
103
|
X: str
|
types_boto3_geo_maps/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: types-boto3-geo-maps
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3 LocationServiceMapsV2 1.
|
|
3
|
+
Version: 1.38.0
|
|
4
|
+
Summary: Type annotations for boto3 LocationServiceMapsV2 1.38.0 service generated with mypy-boto3-builder 8.10.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
|
|
@@ -9,7 +9,7 @@ License: MIT License
|
|
|
9
9
|
Project-URL: Documentation, https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/
|
|
10
10
|
Project-URL: Source, https://github.com/youtype/mypy_boto3_builder
|
|
11
11
|
Project-URL: Tracker, https://github.com/youtype/mypy_boto3_builder/issues
|
|
12
|
-
Keywords: boto3 geo-maps type-annotations
|
|
12
|
+
Keywords: boto3 geo-maps boto3-stubs type-annotations mypy typeshed autocomplete
|
|
13
13
|
Classifier: Development Status :: 5 - Production/Stable
|
|
14
14
|
Classifier: Intended Audience :: Developers
|
|
15
15
|
Classifier: Environment :: Console
|
|
@@ -30,7 +30,20 @@ Classifier: Typing :: Stubs Only
|
|
|
30
30
|
Requires-Python: >=3.8
|
|
31
31
|
Description-Content-Type: text/markdown
|
|
32
32
|
License-File: LICENSE
|
|
33
|
-
Requires-Dist: typing-extensions
|
|
33
|
+
Requires-Dist: typing-extensions; python_version < "3.12"
|
|
34
|
+
Dynamic: author
|
|
35
|
+
Dynamic: author-email
|
|
36
|
+
Dynamic: classifier
|
|
37
|
+
Dynamic: description
|
|
38
|
+
Dynamic: description-content-type
|
|
39
|
+
Dynamic: home-page
|
|
40
|
+
Dynamic: keywords
|
|
41
|
+
Dynamic: license
|
|
42
|
+
Dynamic: license-file
|
|
43
|
+
Dynamic: project-url
|
|
44
|
+
Dynamic: requires-dist
|
|
45
|
+
Dynamic: requires-python
|
|
46
|
+
Dynamic: summary
|
|
34
47
|
|
|
35
48
|
<a id="types-boto3-geo-maps"></a>
|
|
36
49
|
|
|
@@ -44,7 +57,7 @@ Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
|
|
|
44
57
|

|
|
45
58
|
|
|
46
59
|
Type annotations for
|
|
47
|
-
[boto3 LocationServiceMapsV2 1.
|
|
60
|
+
[boto3 LocationServiceMapsV2 1.38.0](https://pypi.org/project/boto3/)
|
|
48
61
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
49
62
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
50
63
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -52,8 +65,8 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
52
65
|
[mypy](https://github.com/python/mypy),
|
|
53
66
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
54
67
|
|
|
55
|
-
Generated
|
|
56
|
-
[mypy-boto3-builder 8.
|
|
68
|
+
Generated with
|
|
69
|
+
[mypy-boto3-builder 8.10.1](https://github.com/youtype/mypy_boto3_builder).
|
|
57
70
|
|
|
58
71
|
More information can be found on
|
|
59
72
|
[types-boto3](https://pypi.org/project/types-boto3/) page and in
|
|
@@ -61,10 +74,11 @@ More information can be found on
|
|
|
61
74
|
|
|
62
75
|
See how it helps you find and fix potential bugs:
|
|
63
76
|
|
|
64
|
-

|
|
65
78
|
|
|
66
79
|
- [types-boto3-geo-maps](#types-boto3-geo-maps)
|
|
67
80
|
- [How to install](#how-to-install)
|
|
81
|
+
- [Generate locally (recommended)](<#generate-locally-(recommended)>)
|
|
68
82
|
- [VSCode extension](#vscode-extension)
|
|
69
83
|
- [From PyPI with pip](#from-pypi-with-pip)
|
|
70
84
|
- [How to uninstall](#how-to-uninstall)
|
|
@@ -76,6 +90,7 @@ See how it helps you find and fix potential bugs:
|
|
|
76
90
|
- [Other IDEs](#other-ides)
|
|
77
91
|
- [mypy](#mypy)
|
|
78
92
|
- [pyright](#pyright)
|
|
93
|
+
- [Pylint compatibility](#pylint-compatibility)
|
|
79
94
|
- [Explicit type annotations](#explicit-type-annotations)
|
|
80
95
|
- [Client annotations](#client-annotations)
|
|
81
96
|
- [Literals](#literals)
|
|
@@ -93,6 +108,21 @@ See how it helps you find and fix potential bugs:
|
|
|
93
108
|
|
|
94
109
|
## How to install
|
|
95
110
|
|
|
111
|
+
<a id="generate-locally-(recommended)"></a>
|
|
112
|
+
|
|
113
|
+
### Generate locally (recommended)
|
|
114
|
+
|
|
115
|
+
You can generate type annotations for `boto3` package locally with
|
|
116
|
+
`mypy-boto3-builder`. Use
|
|
117
|
+
[uv](https://docs.astral.sh/uv/getting-started/installation/) for build
|
|
118
|
+
isolation.
|
|
119
|
+
|
|
120
|
+
1. Run mypy-boto3-builder in your package root directory:
|
|
121
|
+
`uvx --with 'boto3==1.38.0' mypy-boto3-builder`
|
|
122
|
+
2. Select `boto3` AWS SDK.
|
|
123
|
+
3. Add `LocationServiceMapsV2` service.
|
|
124
|
+
4. Use provided commands to install generated packages.
|
|
125
|
+
|
|
96
126
|
<a id="vscode-extension"></a>
|
|
97
127
|
|
|
98
128
|
### VSCode extension
|
|
@@ -113,12 +143,10 @@ Install `types-boto3` for `LocationServiceMapsV2` service.
|
|
|
113
143
|
# install with boto3 type annotations
|
|
114
144
|
python -m pip install 'types-boto3[geo-maps]'
|
|
115
145
|
|
|
116
|
-
|
|
117
146
|
# Lite version does not provide session.client/resource overloads
|
|
118
147
|
# it is more RAM-friendly, but requires explicit type annotations
|
|
119
148
|
python -m pip install 'types-boto3-lite[geo-maps]'
|
|
120
149
|
|
|
121
|
-
|
|
122
150
|
# standalone installation
|
|
123
151
|
python -m pip install types-boto3-geo-maps
|
|
124
152
|
```
|
|
@@ -267,6 +295,31 @@ Optionally, you can install `types-boto3` to `typings` directory.
|
|
|
267
295
|
Type checking should now work. No explicit type annotations required, write
|
|
268
296
|
your `boto3` code as usual.
|
|
269
297
|
|
|
298
|
+
<a id="pylint-compatibility"></a>
|
|
299
|
+
|
|
300
|
+
### Pylint compatibility
|
|
301
|
+
|
|
302
|
+
It is totally safe to use `TYPE_CHECKING` flag in order to avoid
|
|
303
|
+
`types-boto3-geo-maps` dependency in production. However, there is an issue in
|
|
304
|
+
`pylint` that it complains about undefined variables. To fix it, set all types
|
|
305
|
+
to `object` in non-`TYPE_CHECKING` mode.
|
|
306
|
+
|
|
307
|
+
```python
|
|
308
|
+
from typing import TYPE_CHECKING
|
|
309
|
+
|
|
310
|
+
if TYPE_CHECKING:
|
|
311
|
+
from types_boto3_ec2 import EC2Client, EC2ServiceResource
|
|
312
|
+
from types_boto3_ec2.waiters import BundleTaskCompleteWaiter
|
|
313
|
+
from types_boto3_ec2.paginators import DescribeVolumesPaginator
|
|
314
|
+
else:
|
|
315
|
+
EC2Client = object
|
|
316
|
+
EC2ServiceResource = object
|
|
317
|
+
BundleTaskCompleteWaiter = object
|
|
318
|
+
DescribeVolumesPaginator = object
|
|
319
|
+
|
|
320
|
+
...
|
|
321
|
+
```
|
|
322
|
+
|
|
270
323
|
<a id="explicit-type-annotations"></a>
|
|
271
324
|
|
|
272
325
|
## Explicit type annotations
|
|
@@ -316,11 +369,14 @@ Full list of `LocationServiceMapsV2` TypeDefs can be found in
|
|
|
316
369
|
[docs](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/type_defs/).
|
|
317
370
|
|
|
318
371
|
```python
|
|
319
|
-
|
|
372
|
+
# TypedDict usage example
|
|
373
|
+
from types_boto3_geo_maps.type_defs import GetGlyphsRequestTypeDef
|
|
320
374
|
|
|
321
375
|
|
|
322
|
-
def get_value() ->
|
|
323
|
-
return {
|
|
376
|
+
def get_value() -> GetGlyphsRequestTypeDef:
|
|
377
|
+
return {
|
|
378
|
+
"FontStack": ...,
|
|
379
|
+
}
|
|
324
380
|
```
|
|
325
381
|
|
|
326
382
|
<a id="how-it-works"></a>
|
|
@@ -374,7 +430,8 @@ Builder changelog can be found in
|
|
|
374
430
|
## Versioning
|
|
375
431
|
|
|
376
432
|
`types-boto3-geo-maps` version is the same as related `boto3` version and
|
|
377
|
-
follows
|
|
433
|
+
follows
|
|
434
|
+
[Python Packaging version specifiers](https://packaging.python.org/en/latest/specifications/version-specifiers/).
|
|
378
435
|
|
|
379
436
|
<a id="thank-you"></a>
|
|
380
437
|
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
types_boto3_geo_maps/__init__.py,sha256=pbB2VXYGmOPqtiNDMak53MSVRLSpBQmz3oVk0tu_uQs,562
|
|
2
|
+
types_boto3_geo_maps/__init__.pyi,sha256=1FajWFPCYNVzlr2NVL4AsOvJ7R08BWpnVniusZjvxVE,561
|
|
3
|
+
types_boto3_geo_maps/__main__.py,sha256=lY71QypbDCYOy8V02fxxB4heRLvQBu3la8f7fM5-fhc,1012
|
|
4
|
+
types_boto3_geo_maps/client.py,sha256=ZXUKechtSFmOFtt3SBDIBB2ZKrVa7uGaee8l_2_p5cQ,5609
|
|
5
|
+
types_boto3_geo_maps/client.pyi,sha256=-ERUQfq8PqZjAQc93bwzrLICONlvDpOCVLUwUJc5_Z8,5606
|
|
6
|
+
types_boto3_geo_maps/literals.py,sha256=s2IcyY_e6A0G2vKOxmU0YAVmCi5cWC5_m8IUfkf61JE,9329
|
|
7
|
+
types_boto3_geo_maps/literals.pyi,sha256=7gYZUXp-PtWASofSlnUomjx2f-F8SXT8J-fP8yqFG8o,9327
|
|
8
|
+
types_boto3_geo_maps/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
types_boto3_geo_maps/type_defs.py,sha256=PhA1WS_S7I7B1RbF0wMQ-O1AbnqDdaLzCVmPBEP5OAo,3580
|
|
10
|
+
types_boto3_geo_maps/type_defs.pyi,sha256=wiJFESiuN_8MYXaHXLnRVA-cg5lPyJVNCjNa3Y252Z8,3568
|
|
11
|
+
types_boto3_geo_maps/version.py,sha256=chIm161Dw81Gs3vO6CH1PT2nlb-lCUhY_igz_jcxAO8,92
|
|
12
|
+
types_boto3_geo_maps-1.38.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
13
|
+
types_boto3_geo_maps-1.38.0.dist-info/METADATA,sha256=DPRtHWuoJr0TALsVZSHXTk5wlJFfYpwrYrEHb5vpe9s,14470
|
|
14
|
+
types_boto3_geo_maps-1.38.0.dist-info/WHEEL,sha256=pxyMxgL8-pra_rKaQ4drOZAegBVuX-G_4nRHjjgWbmo,91
|
|
15
|
+
types_boto3_geo_maps-1.38.0.dist-info/top_level.txt,sha256=CwmcVINVZ93FRQXEIzN9dWnvPhak6LqhxvD3gPv3SkU,21
|
|
16
|
+
types_boto3_geo_maps-1.38.0.dist-info/RECORD,,
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
types_boto3_geo_maps/__init__.py,sha256=mFcsYrfYorUkIleUfnkxB_LCq5wTZaXds1w5I6asKhM,479
|
|
2
|
-
types_boto3_geo_maps/__init__.pyi,sha256=TmI9ueOuvNcT8vIRajlLj4gdEy7UuAYR16LIQZ-TTv0,478
|
|
3
|
-
types_boto3_geo_maps/__main__.py,sha256=H4qbnGBNc4-Vd4buqW1X3heJYWzoBB-ttebWyQ4Bm6U,980
|
|
4
|
-
types_boto3_geo_maps/client.py,sha256=iwABltTVmhAy3zt-zZLVvvfC0veprxIkPLGHHrciI0E,5801
|
|
5
|
-
types_boto3_geo_maps/client.pyi,sha256=Cb8bvXGx9ovJjKqYw3hduN_Y-coG27rO9YeEJxQdtVg,5797
|
|
6
|
-
types_boto3_geo_maps/literals.py,sha256=6TPsaORvt7YFq9B4c3_dHqg1AYpibPfis5-cOHSFae0,9022
|
|
7
|
-
types_boto3_geo_maps/literals.pyi,sha256=8mvZmHab5MT9kfvZDHCUEVgAukso54M_0Zndyg5rbvM,9020
|
|
8
|
-
types_boto3_geo_maps/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
types_boto3_geo_maps/type_defs.py,sha256=Io7dzBS0AmK8xFkciaow5R4dXEv-ElONQt5Wxg8CoV4,3228
|
|
10
|
-
types_boto3_geo_maps/type_defs.pyi,sha256=7Nuk20hBUthSTHtQksbKf8oRChPNlkcMvXc-THk5tKA,3216
|
|
11
|
-
types_boto3_geo_maps/version.py,sha256=eIS36a5iw2-mD_eS7zeepUtx_w_DQOn6RiPaBDeB7EQ,93
|
|
12
|
-
types_boto3_geo_maps-1.35.71.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
13
|
-
types_boto3_geo_maps-1.35.71.dist-info/METADATA,sha256=SPpaeRyoNkwwDq2oTS136nHwHutqaQkMFTnrSHtVwE4,12760
|
|
14
|
-
types_boto3_geo_maps-1.35.71.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
15
|
-
types_boto3_geo_maps-1.35.71.dist-info/top_level.txt,sha256=CwmcVINVZ93FRQXEIzN9dWnvPhak6LqhxvD3gPv3SkU,21
|
|
16
|
-
types_boto3_geo_maps-1.35.71.dist-info/RECORD,,
|
{types_boto3_geo_maps-1.35.71.dist-info → types_boto3_geo_maps-1.38.0.dist-info}/top_level.txt
RENAMED
|
File without changes
|