types-boto3-geo-maps 1.36.0__py3-none-any.whl → 1.37.14__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 +4 -4
- types_boto3_geo_maps/client.py +18 -21
- types_boto3_geo_maps/client.pyi +18 -21
- types_boto3_geo_maps/literals.py +9 -4
- types_boto3_geo_maps/literals.pyi +9 -4
- types_boto3_geo_maps/type_defs.py +29 -16
- types_boto3_geo_maps/type_defs.pyi +29 -16
- types_boto3_geo_maps/version.py +1 -1
- {types_boto3_geo_maps-1.36.0.dist-info → types_boto3_geo_maps-1.37.14.dist-info}/METADATA +14 -10
- types_boto3_geo_maps-1.37.14.dist-info/RECORD +16 -0
- {types_boto3_geo_maps-1.36.0.dist-info → types_boto3_geo_maps-1.37.14.dist-info}/WHEEL +1 -1
- types_boto3_geo_maps-1.36.0.dist-info/RECORD +0 -16
- {types_boto3_geo_maps-1.36.0.dist-info → types_boto3_geo_maps-1.37.14.dist-info}/LICENSE +0 -0
- {types_boto3_geo_maps-1.36.0.dist-info → types_boto3_geo_maps-1.37.14.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 2025 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 2025 Vlad Emelianov
|
|
18
20
|
"""
|
|
19
21
|
|
|
20
22
|
from .client import LocationServiceMapsV2Client
|
types_boto3_geo_maps/__main__.py
CHANGED
|
@@ -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 LocationServiceMapsV2 1.
|
|
16
|
-
"Version: 1.
|
|
17
|
-
"Builder version: 8.
|
|
15
|
+
"Type annotations for boto3 LocationServiceMapsV2 1.37.14\n"
|
|
16
|
+
"Version: 1.37.14\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"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.
|
|
29
|
+
sys.stdout.write("1.37.14\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
types_boto3_geo_maps/client.py
CHANGED
|
@@ -3,6 +3,8 @@ 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
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: LocationServiceMapsV2Client = session.client("geo-maps")
|
|
14
16
|
```
|
|
15
|
-
|
|
16
|
-
Copyright 2025 Vlad Emelianov
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
19
|
from __future__ import annotations
|
|
@@ -26,15 +26,15 @@ from botocore.errorfactory import BaseClientExceptions
|
|
|
26
26
|
from botocore.exceptions import ClientError as BotocoreClientError
|
|
27
27
|
|
|
28
28
|
from .type_defs import (
|
|
29
|
-
|
|
29
|
+
GetGlyphsRequestTypeDef,
|
|
30
30
|
GetGlyphsResponseTypeDef,
|
|
31
|
-
|
|
31
|
+
GetSpritesRequestTypeDef,
|
|
32
32
|
GetSpritesResponseTypeDef,
|
|
33
|
-
|
|
33
|
+
GetStaticMapRequestTypeDef,
|
|
34
34
|
GetStaticMapResponseTypeDef,
|
|
35
|
-
|
|
35
|
+
GetStyleDescriptorRequestTypeDef,
|
|
36
36
|
GetStyleDescriptorResponseTypeDef,
|
|
37
|
-
|
|
37
|
+
GetTileRequestTypeDef,
|
|
38
38
|
GetTileResponseTypeDef,
|
|
39
39
|
)
|
|
40
40
|
|
|
@@ -95,49 +95,46 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
95
95
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#generate_presigned_url)
|
|
96
96
|
"""
|
|
97
97
|
|
|
98
|
-
def get_glyphs(
|
|
99
|
-
self, **kwargs: Unpack[GetGlyphsRequestRequestTypeDef]
|
|
100
|
-
) -> GetGlyphsResponseTypeDef:
|
|
98
|
+
def get_glyphs(self, **kwargs: Unpack[GetGlyphsRequestTypeDef]) -> GetGlyphsResponseTypeDef:
|
|
101
99
|
"""
|
|
102
|
-
|
|
100
|
+
<code>GetGlyphs</code> returns the map's glyphs.
|
|
103
101
|
|
|
104
102
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_glyphs.html)
|
|
105
103
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_glyphs)
|
|
106
104
|
"""
|
|
107
105
|
|
|
108
|
-
def get_sprites(
|
|
109
|
-
self, **kwargs: Unpack[GetSpritesRequestRequestTypeDef]
|
|
110
|
-
) -> GetSpritesResponseTypeDef:
|
|
106
|
+
def get_sprites(self, **kwargs: Unpack[GetSpritesRequestTypeDef]) -> GetSpritesResponseTypeDef:
|
|
111
107
|
"""
|
|
112
|
-
|
|
108
|
+
<code>GetSprites</code> returns the map's sprites.
|
|
113
109
|
|
|
114
110
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_sprites.html)
|
|
115
111
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_sprites)
|
|
116
112
|
"""
|
|
117
113
|
|
|
118
114
|
def get_static_map(
|
|
119
|
-
self, **kwargs: Unpack[
|
|
115
|
+
self, **kwargs: Unpack[GetStaticMapRequestTypeDef]
|
|
120
116
|
) -> GetStaticMapResponseTypeDef:
|
|
121
117
|
"""
|
|
122
|
-
|
|
118
|
+
<code>GetStaticMap</code> provides high-quality static map images with
|
|
119
|
+
customizable options.
|
|
123
120
|
|
|
124
121
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_static_map.html)
|
|
125
122
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_static_map)
|
|
126
123
|
"""
|
|
127
124
|
|
|
128
125
|
def get_style_descriptor(
|
|
129
|
-
self, **kwargs: Unpack[
|
|
126
|
+
self, **kwargs: Unpack[GetStyleDescriptorRequestTypeDef]
|
|
130
127
|
) -> GetStyleDescriptorResponseTypeDef:
|
|
131
128
|
"""
|
|
132
|
-
|
|
129
|
+
<code>GetStyleDescriptor</code> returns information about the style.
|
|
133
130
|
|
|
134
131
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_style_descriptor.html)
|
|
135
132
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_style_descriptor)
|
|
136
133
|
"""
|
|
137
134
|
|
|
138
|
-
def get_tile(self, **kwargs: Unpack[
|
|
135
|
+
def get_tile(self, **kwargs: Unpack[GetTileRequestTypeDef]) -> GetTileResponseTypeDef:
|
|
139
136
|
"""
|
|
140
|
-
|
|
137
|
+
<code>GetTile</code> returns a tile.
|
|
141
138
|
|
|
142
139
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_tile.html)
|
|
143
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
|
@@ -3,6 +3,8 @@ 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
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: LocationServiceMapsV2Client = session.client("geo-maps")
|
|
14
16
|
```
|
|
15
|
-
|
|
16
|
-
Copyright 2025 Vlad Emelianov
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
19
|
from __future__ import annotations
|
|
@@ -26,15 +26,15 @@ from botocore.errorfactory import BaseClientExceptions
|
|
|
26
26
|
from botocore.exceptions import ClientError as BotocoreClientError
|
|
27
27
|
|
|
28
28
|
from .type_defs import (
|
|
29
|
-
|
|
29
|
+
GetGlyphsRequestTypeDef,
|
|
30
30
|
GetGlyphsResponseTypeDef,
|
|
31
|
-
|
|
31
|
+
GetSpritesRequestTypeDef,
|
|
32
32
|
GetSpritesResponseTypeDef,
|
|
33
|
-
|
|
33
|
+
GetStaticMapRequestTypeDef,
|
|
34
34
|
GetStaticMapResponseTypeDef,
|
|
35
|
-
|
|
35
|
+
GetStyleDescriptorRequestTypeDef,
|
|
36
36
|
GetStyleDescriptorResponseTypeDef,
|
|
37
|
-
|
|
37
|
+
GetTileRequestTypeDef,
|
|
38
38
|
GetTileResponseTypeDef,
|
|
39
39
|
)
|
|
40
40
|
|
|
@@ -92,49 +92,46 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
92
92
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#generate_presigned_url)
|
|
93
93
|
"""
|
|
94
94
|
|
|
95
|
-
def get_glyphs(
|
|
96
|
-
self, **kwargs: Unpack[GetGlyphsRequestRequestTypeDef]
|
|
97
|
-
) -> GetGlyphsResponseTypeDef:
|
|
95
|
+
def get_glyphs(self, **kwargs: Unpack[GetGlyphsRequestTypeDef]) -> GetGlyphsResponseTypeDef:
|
|
98
96
|
"""
|
|
99
|
-
|
|
97
|
+
<code>GetGlyphs</code> returns the map's glyphs.
|
|
100
98
|
|
|
101
99
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_glyphs.html)
|
|
102
100
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_glyphs)
|
|
103
101
|
"""
|
|
104
102
|
|
|
105
|
-
def get_sprites(
|
|
106
|
-
self, **kwargs: Unpack[GetSpritesRequestRequestTypeDef]
|
|
107
|
-
) -> GetSpritesResponseTypeDef:
|
|
103
|
+
def get_sprites(self, **kwargs: Unpack[GetSpritesRequestTypeDef]) -> GetSpritesResponseTypeDef:
|
|
108
104
|
"""
|
|
109
|
-
|
|
105
|
+
<code>GetSprites</code> returns the map's sprites.
|
|
110
106
|
|
|
111
107
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_sprites.html)
|
|
112
108
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_sprites)
|
|
113
109
|
"""
|
|
114
110
|
|
|
115
111
|
def get_static_map(
|
|
116
|
-
self, **kwargs: Unpack[
|
|
112
|
+
self, **kwargs: Unpack[GetStaticMapRequestTypeDef]
|
|
117
113
|
) -> GetStaticMapResponseTypeDef:
|
|
118
114
|
"""
|
|
119
|
-
|
|
115
|
+
<code>GetStaticMap</code> provides high-quality static map images with
|
|
116
|
+
customizable options.
|
|
120
117
|
|
|
121
118
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_static_map.html)
|
|
122
119
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_static_map)
|
|
123
120
|
"""
|
|
124
121
|
|
|
125
122
|
def get_style_descriptor(
|
|
126
|
-
self, **kwargs: Unpack[
|
|
123
|
+
self, **kwargs: Unpack[GetStyleDescriptorRequestTypeDef]
|
|
127
124
|
) -> GetStyleDescriptorResponseTypeDef:
|
|
128
125
|
"""
|
|
129
|
-
|
|
126
|
+
<code>GetStyleDescriptor</code> returns information about the style.
|
|
130
127
|
|
|
131
128
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_style_descriptor.html)
|
|
132
129
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_style_descriptor)
|
|
133
130
|
"""
|
|
134
131
|
|
|
135
|
-
def get_tile(self, **kwargs: Unpack[
|
|
132
|
+
def get_tile(self, **kwargs: Unpack[GetTileRequestTypeDef]) -> GetTileResponseTypeDef:
|
|
136
133
|
"""
|
|
137
|
-
|
|
134
|
+
<code>GetTile</code> returns a tile.
|
|
138
135
|
|
|
139
136
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_tile.html)
|
|
140
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
|
@@ -3,6 +3,8 @@ 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
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: ColorSchemeType = "Dark"
|
|
12
14
|
```
|
|
13
|
-
|
|
14
|
-
Copyright 2025 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[
|
|
@@ -173,7 +177,6 @@ ServiceName = Literal[
|
|
|
173
177
|
"efs",
|
|
174
178
|
"eks",
|
|
175
179
|
"eks-auth",
|
|
176
|
-
"elastic-inference",
|
|
177
180
|
"elasticache",
|
|
178
181
|
"elasticbeanstalk",
|
|
179
182
|
"elastictranscoder",
|
|
@@ -197,6 +200,7 @@ ServiceName = Literal[
|
|
|
197
200
|
"freetier",
|
|
198
201
|
"fsx",
|
|
199
202
|
"gamelift",
|
|
203
|
+
"gameliftstreams",
|
|
200
204
|
"geo-maps",
|
|
201
205
|
"geo-places",
|
|
202
206
|
"geo-routes",
|
|
@@ -222,6 +226,7 @@ ServiceName = Literal[
|
|
|
222
226
|
"iot",
|
|
223
227
|
"iot-data",
|
|
224
228
|
"iot-jobs-data",
|
|
229
|
+
"iot-managed-integrations",
|
|
225
230
|
"iotanalytics",
|
|
226
231
|
"iotdeviceadvisor",
|
|
227
232
|
"iotevents",
|
|
@@ -3,6 +3,8 @@ 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
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: ColorSchemeType = "Dark"
|
|
12
14
|
```
|
|
13
|
-
|
|
14
|
-
Copyright 2025 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[
|
|
@@ -171,7 +175,6 @@ ServiceName = Literal[
|
|
|
171
175
|
"efs",
|
|
172
176
|
"eks",
|
|
173
177
|
"eks-auth",
|
|
174
|
-
"elastic-inference",
|
|
175
178
|
"elasticache",
|
|
176
179
|
"elasticbeanstalk",
|
|
177
180
|
"elastictranscoder",
|
|
@@ -195,6 +198,7 @@ ServiceName = Literal[
|
|
|
195
198
|
"freetier",
|
|
196
199
|
"fsx",
|
|
197
200
|
"gamelift",
|
|
201
|
+
"gameliftstreams",
|
|
198
202
|
"geo-maps",
|
|
199
203
|
"geo-places",
|
|
200
204
|
"geo-routes",
|
|
@@ -220,6 +224,7 @@ ServiceName = Literal[
|
|
|
220
224
|
"iot",
|
|
221
225
|
"iot-data",
|
|
222
226
|
"iot-jobs-data",
|
|
227
|
+
"iot-managed-integrations",
|
|
223
228
|
"iotanalytics",
|
|
224
229
|
"iotdeviceadvisor",
|
|
225
230
|
"iotevents",
|
|
@@ -3,15 +3,15 @@ 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
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
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 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
from __future__ import annotations
|
|
@@ -20,7 +20,14 @@ import sys
|
|
|
20
20
|
|
|
21
21
|
from botocore.response import StreamingBody
|
|
22
22
|
|
|
23
|
-
from .literals import
|
|
23
|
+
from .literals import (
|
|
24
|
+
ColorSchemeType,
|
|
25
|
+
LabelSizeType,
|
|
26
|
+
MapFeatureModeType,
|
|
27
|
+
MapStyleType,
|
|
28
|
+
ScaleBarUnitType,
|
|
29
|
+
StaticMapStyleType,
|
|
30
|
+
)
|
|
24
31
|
|
|
25
32
|
if sys.version_info >= (3, 9):
|
|
26
33
|
from builtins import dict as Dict
|
|
@@ -33,21 +40,21 @@ else:
|
|
|
33
40
|
|
|
34
41
|
|
|
35
42
|
__all__ = (
|
|
36
|
-
"
|
|
43
|
+
"GetGlyphsRequestTypeDef",
|
|
37
44
|
"GetGlyphsResponseTypeDef",
|
|
38
|
-
"
|
|
45
|
+
"GetSpritesRequestTypeDef",
|
|
39
46
|
"GetSpritesResponseTypeDef",
|
|
40
|
-
"
|
|
47
|
+
"GetStaticMapRequestTypeDef",
|
|
41
48
|
"GetStaticMapResponseTypeDef",
|
|
42
|
-
"
|
|
49
|
+
"GetStyleDescriptorRequestTypeDef",
|
|
43
50
|
"GetStyleDescriptorResponseTypeDef",
|
|
44
|
-
"
|
|
51
|
+
"GetTileRequestTypeDef",
|
|
45
52
|
"GetTileResponseTypeDef",
|
|
46
53
|
"ResponseMetadataTypeDef",
|
|
47
54
|
)
|
|
48
55
|
|
|
49
56
|
|
|
50
|
-
class
|
|
57
|
+
class GetGlyphsRequestTypeDef(TypedDict):
|
|
51
58
|
FontStack: str
|
|
52
59
|
FontUnicodeRange: str
|
|
53
60
|
|
|
@@ -60,38 +67,44 @@ class ResponseMetadataTypeDef(TypedDict):
|
|
|
60
67
|
HostId: NotRequired[str]
|
|
61
68
|
|
|
62
69
|
|
|
63
|
-
class
|
|
70
|
+
class GetSpritesRequestTypeDef(TypedDict):
|
|
64
71
|
FileName: str
|
|
65
72
|
Style: MapStyleType
|
|
66
73
|
ColorScheme: ColorSchemeType
|
|
67
74
|
Variant: Literal["Default"]
|
|
68
75
|
|
|
69
76
|
|
|
70
|
-
class
|
|
77
|
+
class GetStaticMapRequestTypeDef(TypedDict):
|
|
71
78
|
Height: int
|
|
72
79
|
FileName: str
|
|
73
80
|
Width: int
|
|
74
81
|
BoundingBox: NotRequired[str]
|
|
75
82
|
BoundedPositions: NotRequired[str]
|
|
76
83
|
Center: NotRequired[str]
|
|
84
|
+
ColorScheme: NotRequired[ColorSchemeType]
|
|
77
85
|
CompactOverlay: NotRequired[str]
|
|
86
|
+
CropLabels: NotRequired[bool]
|
|
78
87
|
GeoJsonOverlay: NotRequired[str]
|
|
79
88
|
Key: NotRequired[str]
|
|
89
|
+
LabelSize: NotRequired[LabelSizeType]
|
|
90
|
+
Language: NotRequired[str]
|
|
80
91
|
Padding: NotRequired[int]
|
|
92
|
+
PoliticalView: NotRequired[str]
|
|
93
|
+
PointsOfInterests: NotRequired[MapFeatureModeType]
|
|
81
94
|
Radius: NotRequired[int]
|
|
82
95
|
ScaleBarUnit: NotRequired[ScaleBarUnitType]
|
|
83
|
-
Style: NotRequired[
|
|
96
|
+
Style: NotRequired[StaticMapStyleType]
|
|
84
97
|
Zoom: NotRequired[float]
|
|
85
98
|
|
|
86
99
|
|
|
87
|
-
class
|
|
100
|
+
class GetStyleDescriptorRequestTypeDef(TypedDict):
|
|
88
101
|
Style: MapStyleType
|
|
89
102
|
ColorScheme: NotRequired[ColorSchemeType]
|
|
90
103
|
PoliticalView: NotRequired[str]
|
|
91
104
|
Key: NotRequired[str]
|
|
92
105
|
|
|
93
106
|
|
|
94
|
-
class
|
|
107
|
+
class GetTileRequestTypeDef(TypedDict):
|
|
95
108
|
Tileset: str
|
|
96
109
|
Z: str
|
|
97
110
|
X: str
|
|
@@ -3,15 +3,15 @@ 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
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
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 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
from __future__ import annotations
|
|
@@ -20,7 +20,14 @@ import sys
|
|
|
20
20
|
|
|
21
21
|
from botocore.response import StreamingBody
|
|
22
22
|
|
|
23
|
-
from .literals import
|
|
23
|
+
from .literals import (
|
|
24
|
+
ColorSchemeType,
|
|
25
|
+
LabelSizeType,
|
|
26
|
+
MapFeatureModeType,
|
|
27
|
+
MapStyleType,
|
|
28
|
+
ScaleBarUnitType,
|
|
29
|
+
StaticMapStyleType,
|
|
30
|
+
)
|
|
24
31
|
|
|
25
32
|
if sys.version_info >= (3, 9):
|
|
26
33
|
from builtins import dict as Dict
|
|
@@ -32,20 +39,20 @@ else:
|
|
|
32
39
|
from typing_extensions import Literal, NotRequired, TypedDict
|
|
33
40
|
|
|
34
41
|
__all__ = (
|
|
35
|
-
"
|
|
42
|
+
"GetGlyphsRequestTypeDef",
|
|
36
43
|
"GetGlyphsResponseTypeDef",
|
|
37
|
-
"
|
|
44
|
+
"GetSpritesRequestTypeDef",
|
|
38
45
|
"GetSpritesResponseTypeDef",
|
|
39
|
-
"
|
|
46
|
+
"GetStaticMapRequestTypeDef",
|
|
40
47
|
"GetStaticMapResponseTypeDef",
|
|
41
|
-
"
|
|
48
|
+
"GetStyleDescriptorRequestTypeDef",
|
|
42
49
|
"GetStyleDescriptorResponseTypeDef",
|
|
43
|
-
"
|
|
50
|
+
"GetTileRequestTypeDef",
|
|
44
51
|
"GetTileResponseTypeDef",
|
|
45
52
|
"ResponseMetadataTypeDef",
|
|
46
53
|
)
|
|
47
54
|
|
|
48
|
-
class
|
|
55
|
+
class GetGlyphsRequestTypeDef(TypedDict):
|
|
49
56
|
FontStack: str
|
|
50
57
|
FontUnicodeRange: str
|
|
51
58
|
|
|
@@ -56,35 +63,41 @@ class ResponseMetadataTypeDef(TypedDict):
|
|
|
56
63
|
RetryAttempts: int
|
|
57
64
|
HostId: NotRequired[str]
|
|
58
65
|
|
|
59
|
-
class
|
|
66
|
+
class GetSpritesRequestTypeDef(TypedDict):
|
|
60
67
|
FileName: str
|
|
61
68
|
Style: MapStyleType
|
|
62
69
|
ColorScheme: ColorSchemeType
|
|
63
70
|
Variant: Literal["Default"]
|
|
64
71
|
|
|
65
|
-
class
|
|
72
|
+
class GetStaticMapRequestTypeDef(TypedDict):
|
|
66
73
|
Height: int
|
|
67
74
|
FileName: str
|
|
68
75
|
Width: int
|
|
69
76
|
BoundingBox: NotRequired[str]
|
|
70
77
|
BoundedPositions: NotRequired[str]
|
|
71
78
|
Center: NotRequired[str]
|
|
79
|
+
ColorScheme: NotRequired[ColorSchemeType]
|
|
72
80
|
CompactOverlay: NotRequired[str]
|
|
81
|
+
CropLabels: NotRequired[bool]
|
|
73
82
|
GeoJsonOverlay: NotRequired[str]
|
|
74
83
|
Key: NotRequired[str]
|
|
84
|
+
LabelSize: NotRequired[LabelSizeType]
|
|
85
|
+
Language: NotRequired[str]
|
|
75
86
|
Padding: NotRequired[int]
|
|
87
|
+
PoliticalView: NotRequired[str]
|
|
88
|
+
PointsOfInterests: NotRequired[MapFeatureModeType]
|
|
76
89
|
Radius: NotRequired[int]
|
|
77
90
|
ScaleBarUnit: NotRequired[ScaleBarUnitType]
|
|
78
|
-
Style: NotRequired[
|
|
91
|
+
Style: NotRequired[StaticMapStyleType]
|
|
79
92
|
Zoom: NotRequired[float]
|
|
80
93
|
|
|
81
|
-
class
|
|
94
|
+
class GetStyleDescriptorRequestTypeDef(TypedDict):
|
|
82
95
|
Style: MapStyleType
|
|
83
96
|
ColorScheme: NotRequired[ColorSchemeType]
|
|
84
97
|
PoliticalView: NotRequired[str]
|
|
85
98
|
Key: NotRequired[str]
|
|
86
99
|
|
|
87
|
-
class
|
|
100
|
+
class GetTileRequestTypeDef(TypedDict):
|
|
88
101
|
Tileset: str
|
|
89
102
|
Z: str
|
|
90
103
|
X: str
|
types_boto3_geo_maps/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: types-boto3-geo-maps
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3 LocationServiceMapsV2 1.
|
|
3
|
+
Version: 1.37.14
|
|
4
|
+
Summary: Type annotations for boto3 LocationServiceMapsV2 1.37.14 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
|
|
@@ -56,7 +56,7 @@ Dynamic: summary
|
|
|
56
56
|

|
|
57
57
|
|
|
58
58
|
Type annotations for
|
|
59
|
-
[boto3 LocationServiceMapsV2 1.
|
|
59
|
+
[boto3 LocationServiceMapsV2 1.37.14](https://pypi.org/project/boto3/)
|
|
60
60
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
61
61
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
62
62
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -65,7 +65,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
65
65
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
66
66
|
|
|
67
67
|
Generated with
|
|
68
|
-
[mypy-boto3-builder 8.
|
|
68
|
+
[mypy-boto3-builder 8.10.1](https://github.com/youtype/mypy_boto3_builder).
|
|
69
69
|
|
|
70
70
|
More information can be found on
|
|
71
71
|
[types-boto3](https://pypi.org/project/types-boto3/) page and in
|
|
@@ -112,12 +112,12 @@ See how it helps you find and fix potential bugs:
|
|
|
112
112
|
### Generate locally (recommended)
|
|
113
113
|
|
|
114
114
|
You can generate type annotations for `boto3` package locally with
|
|
115
|
-
`
|
|
115
|
+
`mypy-boto3-builder`. Use
|
|
116
116
|
[uv](https://docs.astral.sh/uv/getting-started/installation/) for build
|
|
117
117
|
isolation.
|
|
118
118
|
|
|
119
119
|
1. Run mypy-boto3-builder in your package root directory:
|
|
120
|
-
`uvx --with 'boto3==1.
|
|
120
|
+
`uvx --with 'boto3==1.37.14' mypy-boto3-builder`
|
|
121
121
|
2. Select `boto3` AWS SDK.
|
|
122
122
|
3. Add `LocationServiceMapsV2` service.
|
|
123
123
|
4. Use provided commands to install generated packages.
|
|
@@ -368,11 +368,14 @@ Full list of `LocationServiceMapsV2` TypeDefs can be found in
|
|
|
368
368
|
[docs](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/type_defs/).
|
|
369
369
|
|
|
370
370
|
```python
|
|
371
|
-
|
|
371
|
+
# TypedDict usage example
|
|
372
|
+
from types_boto3_geo_maps.type_defs import GetGlyphsRequestTypeDef
|
|
372
373
|
|
|
373
374
|
|
|
374
|
-
def get_value() ->
|
|
375
|
-
return {
|
|
375
|
+
def get_value() -> GetGlyphsRequestTypeDef:
|
|
376
|
+
return {
|
|
377
|
+
"FontStack": ...,
|
|
378
|
+
}
|
|
376
379
|
```
|
|
377
380
|
|
|
378
381
|
<a id="how-it-works"></a>
|
|
@@ -426,7 +429,8 @@ Builder changelog can be found in
|
|
|
426
429
|
## Versioning
|
|
427
430
|
|
|
428
431
|
`types-boto3-geo-maps` version is the same as related `boto3` version and
|
|
429
|
-
follows
|
|
432
|
+
follows
|
|
433
|
+
[Python Packaging version specifiers](https://packaging.python.org/en/latest/specifications/version-specifiers/).
|
|
430
434
|
|
|
431
435
|
<a id="thank-you"></a>
|
|
432
436
|
|
|
@@ -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=Y1-1wN3RGZp5FUppho2ZsLj25ofbxgbg_wnTODLBb14,1015
|
|
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=LG5jmAA4E60IeyKcwT49Jkro7rB-BkifoF3O1OboyUw,93
|
|
12
|
+
types_boto3_geo_maps-1.37.14.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
13
|
+
types_boto3_geo_maps-1.37.14.dist-info/METADATA,sha256=OZTRPrYcC57pbSjPp5srUsRmAsm7igaLFVLkNwg4OYo,14452
|
|
14
|
+
types_boto3_geo_maps-1.37.14.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
|
|
15
|
+
types_boto3_geo_maps-1.37.14.dist-info/top_level.txt,sha256=CwmcVINVZ93FRQXEIzN9dWnvPhak6LqhxvD3gPv3SkU,21
|
|
16
|
+
types_boto3_geo_maps-1.37.14.dist-info/RECORD,,
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
types_boto3_geo_maps/__init__.py,sha256=kdU6VjPdnp1Wju1rMhNUagyalkd4R3EiNkoP51Cv_i4,479
|
|
2
|
-
types_boto3_geo_maps/__init__.pyi,sha256=FGv4LRWic7QPFP32XoBsBVHeXQA2kmPn1Uqk7-wKsm8,478
|
|
3
|
-
types_boto3_geo_maps/__main__.py,sha256=ht5-edya6nlvzjM86jqG65wmNeckongT3xBTLccgn6I,1011
|
|
4
|
-
types_boto3_geo_maps/client.py,sha256=EEshr3mAB9FFtfHeyYyDohSPS_5OrNVs-1AMfbOv19s,5573
|
|
5
|
-
types_boto3_geo_maps/client.pyi,sha256=hGkiYVuXUVk8r6e3Vu8mqMCjJxSHtzzwrKdRIXTF8ek,5570
|
|
6
|
-
types_boto3_geo_maps/literals.py,sha256=8oR6LbnwS6XlrE6Xp2cpNtv91TEduqH9zh--_CSS0ys,9146
|
|
7
|
-
types_boto3_geo_maps/literals.pyi,sha256=uhavitG1zLlHH9uZbakICUQvwQHZdcPet_Z0SCrYgVI,9144
|
|
8
|
-
types_boto3_geo_maps/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
types_boto3_geo_maps/type_defs.py,sha256=HYvBcWaLb4XrVzSO-7cj1YhouDhL-_7r7IL6wSEiHr8,3338
|
|
10
|
-
types_boto3_geo_maps/type_defs.pyi,sha256=ebwFK1_ZUswfBygNHcTWrop96zCSVahn1ad5F-BjM0o,3326
|
|
11
|
-
types_boto3_geo_maps/version.py,sha256=XqBLww9Ajk9GRr5oc1Ak2757Fsir4zxoRCWswSKh8Ro,92
|
|
12
|
-
types_boto3_geo_maps-1.36.0.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
13
|
-
types_boto3_geo_maps-1.36.0.dist-info/METADATA,sha256=Gn26cF_rMiunZaMD1jPjraLW8wqIQUr8tvkamgAXlOU,14353
|
|
14
|
-
types_boto3_geo_maps-1.36.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
15
|
-
types_boto3_geo_maps-1.36.0.dist-info/top_level.txt,sha256=CwmcVINVZ93FRQXEIzN9dWnvPhak6LqhxvD3gPv3SkU,21
|
|
16
|
-
types_boto3_geo_maps-1.36.0.dist-info/RECORD,,
|
|
File without changes
|
{types_boto3_geo_maps-1.36.0.dist-info → types_boto3_geo_maps-1.37.14.dist-info}/top_level.txt
RENAMED
|
File without changes
|