mypy-boto3-geo-maps 1.35.52__py3-none-any.whl → 1.36.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.
- mypy_boto3_geo_maps/__init__.py +2 -0
- mypy_boto3_geo_maps/__init__.pyi +2 -0
- mypy_boto3_geo_maps/__main__.py +11 -8
- mypy_boto3_geo_maps/client.py +23 -32
- mypy_boto3_geo_maps/client.pyi +23 -31
- mypy_boto3_geo_maps/literals.py +21 -6
- mypy_boto3_geo_maps/literals.pyi +21 -6
- mypy_boto3_geo_maps/type_defs.py +107 -123
- mypy_boto3_geo_maps/type_defs.pyi +96 -123
- mypy_boto3_geo_maps/version.py +3 -1
- {mypy_boto3_geo_maps-1.35.52.dist-info → mypy_boto3_geo_maps-1.36.0.dist-info}/LICENSE +1 -1
- {mypy_boto3_geo_maps-1.35.52.dist-info → mypy_boto3_geo_maps-1.36.0.dist-info}/METADATA +90 -22
- mypy_boto3_geo_maps-1.36.0.dist-info/RECORD +16 -0
- {mypy_boto3_geo_maps-1.35.52.dist-info → mypy_boto3_geo_maps-1.36.0.dist-info}/WHEEL +1 -1
- mypy_boto3_geo_maps-1.35.52.dist-info/RECORD +0 -16
- {mypy_boto3_geo_maps-1.35.52.dist-info → mypy_boto3_geo_maps-1.36.0.dist-info}/top_level.txt +0 -0
mypy_boto3_geo_maps/__init__.py
CHANGED
mypy_boto3_geo_maps/__init__.pyi
CHANGED
mypy_boto3_geo_maps/__main__.py
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main CLI entrypoint.
|
|
3
|
+
|
|
4
|
+
Copyright 2025 Vlad Emelianov
|
|
3
5
|
"""
|
|
4
6
|
|
|
5
7
|
import sys
|
|
@@ -9,14 +11,14 @@ def print_info() -> None:
|
|
|
9
11
|
"""
|
|
10
12
|
Print package info to stdout.
|
|
11
13
|
"""
|
|
12
|
-
|
|
13
|
-
"Type annotations for boto3
|
|
14
|
-
"Version: 1.
|
|
15
|
-
"Builder version: 8.
|
|
14
|
+
sys.stdout.write(
|
|
15
|
+
"Type annotations for boto3 LocationServiceMapsV2 1.36.0\n"
|
|
16
|
+
"Version: 1.36.0\n"
|
|
17
|
+
"Builder version: 8.8.0\n"
|
|
16
18
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps//\n"
|
|
17
|
-
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#
|
|
19
|
+
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#locationservicemapsv2\n"
|
|
18
20
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
19
|
-
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
|
|
21
|
+
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
|
|
20
22
|
)
|
|
21
23
|
|
|
22
24
|
|
|
@@ -24,7 +26,7 @@ def print_version() -> None:
|
|
|
24
26
|
"""
|
|
25
27
|
Print package version to stdout.
|
|
26
28
|
"""
|
|
27
|
-
|
|
29
|
+
sys.stdout.write("1.36.0\n")
|
|
28
30
|
|
|
29
31
|
|
|
30
32
|
def main() -> None:
|
|
@@ -32,7 +34,8 @@ def main() -> None:
|
|
|
32
34
|
Main CLI entrypoint.
|
|
33
35
|
"""
|
|
34
36
|
if "--version" in sys.argv:
|
|
35
|
-
|
|
37
|
+
print_version()
|
|
38
|
+
return
|
|
36
39
|
print_info()
|
|
37
40
|
|
|
38
41
|
|
mypy_boto3_geo_maps/client.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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/boto3_stubs_docs/mypy_boto3_geo_maps/client/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -12,12 +12,18 @@ Usage::
|
|
|
12
12
|
session = Session()
|
|
13
13
|
client: LocationServiceMapsV2Client = session.client("geo-maps")
|
|
14
14
|
```
|
|
15
|
+
|
|
16
|
+
Copyright 2025 Vlad Emelianov
|
|
15
17
|
"""
|
|
16
18
|
|
|
19
|
+
from __future__ import annotations
|
|
20
|
+
|
|
17
21
|
import sys
|
|
18
|
-
from typing import Any
|
|
22
|
+
from typing import Any
|
|
19
23
|
|
|
20
24
|
from botocore.client import BaseClient, ClientMeta
|
|
25
|
+
from botocore.errorfactory import BaseClientExceptions
|
|
26
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
|
21
27
|
|
|
22
28
|
from .type_defs import (
|
|
23
29
|
GetGlyphsRequestRequestTypeDef,
|
|
@@ -32,6 +38,11 @@ from .type_defs import (
|
|
|
32
38
|
GetTileResponseTypeDef,
|
|
33
39
|
)
|
|
34
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
|
|
35
46
|
if sys.version_info >= (3, 12):
|
|
36
47
|
from typing import Unpack
|
|
37
48
|
else:
|
|
@@ -41,15 +52,7 @@ else:
|
|
|
41
52
|
__all__ = ("LocationServiceMapsV2Client",)
|
|
42
53
|
|
|
43
54
|
|
|
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
|
-
|
|
52
|
-
class Exceptions:
|
|
55
|
+
class Exceptions(BaseClientExceptions):
|
|
53
56
|
AccessDeniedException: Type[BotocoreClientError]
|
|
54
57
|
ClientError: Type[BotocoreClientError]
|
|
55
58
|
InternalServerException: Type[BotocoreClientError]
|
|
@@ -70,26 +73,16 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
70
73
|
"""
|
|
71
74
|
LocationServiceMapsV2Client exceptions.
|
|
72
75
|
|
|
73
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#LocationServiceMapsV2.Client
|
|
76
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#LocationServiceMapsV2.Client)
|
|
74
77
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#exceptions)
|
|
75
78
|
"""
|
|
76
79
|
|
|
77
80
|
def can_paginate(self, operation_name: str) -> bool:
|
|
78
81
|
"""
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#LocationServiceMapsV2.Client.can_paginate)
|
|
82
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/can_paginate.html)
|
|
82
83
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#can_paginate)
|
|
83
84
|
"""
|
|
84
85
|
|
|
85
|
-
def close(self) -> None:
|
|
86
|
-
"""
|
|
87
|
-
Closes underlying endpoint connections.
|
|
88
|
-
|
|
89
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#LocationServiceMapsV2.Client.close)
|
|
90
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#close)
|
|
91
|
-
"""
|
|
92
|
-
|
|
93
86
|
def generate_presigned_url(
|
|
94
87
|
self,
|
|
95
88
|
ClientMethod: str,
|
|
@@ -98,9 +91,7 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
98
91
|
HttpMethod: str = ...,
|
|
99
92
|
) -> str:
|
|
100
93
|
"""
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#LocationServiceMapsV2.Client.generate_presigned_url)
|
|
94
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/generate_presigned_url.html)
|
|
104
95
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#generate_presigned_url)
|
|
105
96
|
"""
|
|
106
97
|
|
|
@@ -110,7 +101,7 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
110
101
|
"""
|
|
111
102
|
Returns the map's glyphs.
|
|
112
103
|
|
|
113
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html
|
|
104
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_glyphs.html)
|
|
114
105
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#get_glyphs)
|
|
115
106
|
"""
|
|
116
107
|
|
|
@@ -120,7 +111,7 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
120
111
|
"""
|
|
121
112
|
Returns the map's sprites.
|
|
122
113
|
|
|
123
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html
|
|
114
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_sprites.html)
|
|
124
115
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#get_sprites)
|
|
125
116
|
"""
|
|
126
117
|
|
|
@@ -130,7 +121,7 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
130
121
|
"""
|
|
131
122
|
Provides high-quality static map images with customizable options.
|
|
132
123
|
|
|
133
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html
|
|
124
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_static_map.html)
|
|
134
125
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#get_static_map)
|
|
135
126
|
"""
|
|
136
127
|
|
|
@@ -140,7 +131,7 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
140
131
|
"""
|
|
141
132
|
Returns information about the style.
|
|
142
133
|
|
|
143
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html
|
|
134
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_style_descriptor.html)
|
|
144
135
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#get_style_descriptor)
|
|
145
136
|
"""
|
|
146
137
|
|
|
@@ -148,6 +139,6 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
148
139
|
"""
|
|
149
140
|
Returns a tile.
|
|
150
141
|
|
|
151
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html
|
|
142
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_tile.html)
|
|
152
143
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#get_tile)
|
|
153
144
|
"""
|
mypy_boto3_geo_maps/client.pyi
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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/boto3_stubs_docs/mypy_boto3_geo_maps/client/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -12,12 +12,18 @@ Usage::
|
|
|
12
12
|
session = Session()
|
|
13
13
|
client: LocationServiceMapsV2Client = session.client("geo-maps")
|
|
14
14
|
```
|
|
15
|
+
|
|
16
|
+
Copyright 2025 Vlad Emelianov
|
|
15
17
|
"""
|
|
16
18
|
|
|
19
|
+
from __future__ import annotations
|
|
20
|
+
|
|
17
21
|
import sys
|
|
18
|
-
from typing import Any
|
|
22
|
+
from typing import Any
|
|
19
23
|
|
|
20
24
|
from botocore.client import BaseClient, ClientMeta
|
|
25
|
+
from botocore.errorfactory import BaseClientExceptions
|
|
26
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
|
21
27
|
|
|
22
28
|
from .type_defs import (
|
|
23
29
|
GetGlyphsRequestRequestTypeDef,
|
|
@@ -32,6 +38,11 @@ from .type_defs import (
|
|
|
32
38
|
GetTileResponseTypeDef,
|
|
33
39
|
)
|
|
34
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
|
|
35
46
|
if sys.version_info >= (3, 12):
|
|
36
47
|
from typing import Unpack
|
|
37
48
|
else:
|
|
@@ -39,14 +50,7 @@ else:
|
|
|
39
50
|
|
|
40
51
|
__all__ = ("LocationServiceMapsV2Client",)
|
|
41
52
|
|
|
42
|
-
class
|
|
43
|
-
MSG_TEMPLATE: str
|
|
44
|
-
|
|
45
|
-
def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
|
|
46
|
-
self.response: Dict[str, Any]
|
|
47
|
-
self.operation_name: str
|
|
48
|
-
|
|
49
|
-
class Exceptions:
|
|
53
|
+
class Exceptions(BaseClientExceptions):
|
|
50
54
|
AccessDeniedException: Type[BotocoreClientError]
|
|
51
55
|
ClientError: Type[BotocoreClientError]
|
|
52
56
|
InternalServerException: Type[BotocoreClientError]
|
|
@@ -66,26 +70,16 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
66
70
|
"""
|
|
67
71
|
LocationServiceMapsV2Client exceptions.
|
|
68
72
|
|
|
69
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#LocationServiceMapsV2.Client
|
|
73
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#LocationServiceMapsV2.Client)
|
|
70
74
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#exceptions)
|
|
71
75
|
"""
|
|
72
76
|
|
|
73
77
|
def can_paginate(self, operation_name: str) -> bool:
|
|
74
78
|
"""
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#LocationServiceMapsV2.Client.can_paginate)
|
|
79
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/can_paginate.html)
|
|
78
80
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#can_paginate)
|
|
79
81
|
"""
|
|
80
82
|
|
|
81
|
-
def close(self) -> None:
|
|
82
|
-
"""
|
|
83
|
-
Closes underlying endpoint connections.
|
|
84
|
-
|
|
85
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#LocationServiceMapsV2.Client.close)
|
|
86
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#close)
|
|
87
|
-
"""
|
|
88
|
-
|
|
89
83
|
def generate_presigned_url(
|
|
90
84
|
self,
|
|
91
85
|
ClientMethod: str,
|
|
@@ -94,9 +88,7 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
94
88
|
HttpMethod: str = ...,
|
|
95
89
|
) -> str:
|
|
96
90
|
"""
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#LocationServiceMapsV2.Client.generate_presigned_url)
|
|
91
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/generate_presigned_url.html)
|
|
100
92
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#generate_presigned_url)
|
|
101
93
|
"""
|
|
102
94
|
|
|
@@ -106,7 +98,7 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
106
98
|
"""
|
|
107
99
|
Returns the map's glyphs.
|
|
108
100
|
|
|
109
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html
|
|
101
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_glyphs.html)
|
|
110
102
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#get_glyphs)
|
|
111
103
|
"""
|
|
112
104
|
|
|
@@ -116,7 +108,7 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
116
108
|
"""
|
|
117
109
|
Returns the map's sprites.
|
|
118
110
|
|
|
119
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html
|
|
111
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_sprites.html)
|
|
120
112
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#get_sprites)
|
|
121
113
|
"""
|
|
122
114
|
|
|
@@ -126,7 +118,7 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
126
118
|
"""
|
|
127
119
|
Provides high-quality static map images with customizable options.
|
|
128
120
|
|
|
129
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html
|
|
121
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_static_map.html)
|
|
130
122
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#get_static_map)
|
|
131
123
|
"""
|
|
132
124
|
|
|
@@ -136,7 +128,7 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
136
128
|
"""
|
|
137
129
|
Returns information about the style.
|
|
138
130
|
|
|
139
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html
|
|
131
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_style_descriptor.html)
|
|
140
132
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#get_style_descriptor)
|
|
141
133
|
"""
|
|
142
134
|
|
|
@@ -144,6 +136,6 @@ class LocationServiceMapsV2Client(BaseClient):
|
|
|
144
136
|
"""
|
|
145
137
|
Returns a tile.
|
|
146
138
|
|
|
147
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html
|
|
139
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_tile.html)
|
|
148
140
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/client/#get_tile)
|
|
149
141
|
"""
|
mypy_boto3_geo_maps/literals.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for geo-maps service literal definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/literals/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -10,6 +10,8 @@ Usage::
|
|
|
10
10
|
|
|
11
11
|
data: ColorSchemeType = "Dark"
|
|
12
12
|
```
|
|
13
|
+
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
13
15
|
"""
|
|
14
16
|
|
|
15
17
|
import sys
|
|
@@ -22,13 +24,13 @@ else:
|
|
|
22
24
|
|
|
23
25
|
__all__ = (
|
|
24
26
|
"ColorSchemeType",
|
|
27
|
+
"LocationServiceMapsV2ServiceName",
|
|
25
28
|
"MapStyleType",
|
|
29
|
+
"ResourceServiceName",
|
|
26
30
|
"ScaleBarUnitType",
|
|
31
|
+
"ServiceName",
|
|
27
32
|
"StaticMapStyleType",
|
|
28
33
|
"VariantType",
|
|
29
|
-
"LocationServiceMapsV2ServiceName",
|
|
30
|
-
"ServiceName",
|
|
31
|
-
"ResourceServiceName",
|
|
32
34
|
)
|
|
33
35
|
|
|
34
36
|
|
|
@@ -73,12 +75,17 @@ ServiceName = Literal[
|
|
|
73
75
|
"b2bi",
|
|
74
76
|
"backup",
|
|
75
77
|
"backup-gateway",
|
|
78
|
+
"backupsearch",
|
|
76
79
|
"batch",
|
|
77
80
|
"bcm-data-exports",
|
|
81
|
+
"bcm-pricing-calculator",
|
|
78
82
|
"bedrock",
|
|
79
83
|
"bedrock-agent",
|
|
80
84
|
"bedrock-agent-runtime",
|
|
85
|
+
"bedrock-data-automation",
|
|
86
|
+
"bedrock-data-automation-runtime",
|
|
81
87
|
"bedrock-runtime",
|
|
88
|
+
"billing",
|
|
82
89
|
"billingconductor",
|
|
83
90
|
"braket",
|
|
84
91
|
"budgets",
|
|
@@ -127,6 +134,7 @@ ServiceName = Literal[
|
|
|
127
134
|
"connect",
|
|
128
135
|
"connect-contact-lens",
|
|
129
136
|
"connectcampaigns",
|
|
137
|
+
"connectcampaignsv2",
|
|
130
138
|
"connectcases",
|
|
131
139
|
"connectparticipant",
|
|
132
140
|
"controlcatalog",
|
|
@@ -153,6 +161,7 @@ ServiceName = Literal[
|
|
|
153
161
|
"drs",
|
|
154
162
|
"ds",
|
|
155
163
|
"ds-data",
|
|
164
|
+
"dsql",
|
|
156
165
|
"dynamodb",
|
|
157
166
|
"dynamodbstreams",
|
|
158
167
|
"ebs",
|
|
@@ -209,11 +218,10 @@ ServiceName = Literal[
|
|
|
209
218
|
"inspector-scan",
|
|
210
219
|
"inspector2",
|
|
211
220
|
"internetmonitor",
|
|
221
|
+
"invoicing",
|
|
212
222
|
"iot",
|
|
213
223
|
"iot-data",
|
|
214
224
|
"iot-jobs-data",
|
|
215
|
-
"iot1click-devices",
|
|
216
|
-
"iot1click-projects",
|
|
217
225
|
"iotanalytics",
|
|
218
226
|
"iotdeviceadvisor",
|
|
219
227
|
"iotevents",
|
|
@@ -295,9 +303,13 @@ ServiceName = Literal[
|
|
|
295
303
|
"neptune-graph",
|
|
296
304
|
"neptunedata",
|
|
297
305
|
"network-firewall",
|
|
306
|
+
"networkflowmonitor",
|
|
298
307
|
"networkmanager",
|
|
299
308
|
"networkmonitor",
|
|
309
|
+
"notifications",
|
|
310
|
+
"notificationscontacts",
|
|
300
311
|
"oam",
|
|
312
|
+
"observabilityadmin",
|
|
301
313
|
"omics",
|
|
302
314
|
"opensearch",
|
|
303
315
|
"opensearchserverless",
|
|
@@ -307,6 +319,7 @@ ServiceName = Literal[
|
|
|
307
319
|
"osis",
|
|
308
320
|
"outposts",
|
|
309
321
|
"panorama",
|
|
322
|
+
"partnercentral-selling",
|
|
310
323
|
"payment-cryptography",
|
|
311
324
|
"payment-cryptography-data",
|
|
312
325
|
"pca-connector-ad",
|
|
@@ -357,6 +370,7 @@ ServiceName = Literal[
|
|
|
357
370
|
"s3",
|
|
358
371
|
"s3control",
|
|
359
372
|
"s3outposts",
|
|
373
|
+
"s3tables",
|
|
360
374
|
"sagemaker",
|
|
361
375
|
"sagemaker-a2i-runtime",
|
|
362
376
|
"sagemaker-edge",
|
|
@@ -369,6 +383,7 @@ ServiceName = Literal[
|
|
|
369
383
|
"schemas",
|
|
370
384
|
"sdb",
|
|
371
385
|
"secretsmanager",
|
|
386
|
+
"security-ir",
|
|
372
387
|
"securityhub",
|
|
373
388
|
"securitylake",
|
|
374
389
|
"serverlessrepo",
|
mypy_boto3_geo_maps/literals.pyi
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for geo-maps service literal definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/literals/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -10,6 +10,8 @@ Usage::
|
|
|
10
10
|
|
|
11
11
|
data: ColorSchemeType = "Dark"
|
|
12
12
|
```
|
|
13
|
+
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
13
15
|
"""
|
|
14
16
|
|
|
15
17
|
import sys
|
|
@@ -21,13 +23,13 @@ else:
|
|
|
21
23
|
|
|
22
24
|
__all__ = (
|
|
23
25
|
"ColorSchemeType",
|
|
26
|
+
"LocationServiceMapsV2ServiceName",
|
|
24
27
|
"MapStyleType",
|
|
28
|
+
"ResourceServiceName",
|
|
25
29
|
"ScaleBarUnitType",
|
|
30
|
+
"ServiceName",
|
|
26
31
|
"StaticMapStyleType",
|
|
27
32
|
"VariantType",
|
|
28
|
-
"LocationServiceMapsV2ServiceName",
|
|
29
|
-
"ServiceName",
|
|
30
|
-
"ResourceServiceName",
|
|
31
33
|
)
|
|
32
34
|
|
|
33
35
|
ColorSchemeType = Literal["Dark", "Light"]
|
|
@@ -71,12 +73,17 @@ ServiceName = Literal[
|
|
|
71
73
|
"b2bi",
|
|
72
74
|
"backup",
|
|
73
75
|
"backup-gateway",
|
|
76
|
+
"backupsearch",
|
|
74
77
|
"batch",
|
|
75
78
|
"bcm-data-exports",
|
|
79
|
+
"bcm-pricing-calculator",
|
|
76
80
|
"bedrock",
|
|
77
81
|
"bedrock-agent",
|
|
78
82
|
"bedrock-agent-runtime",
|
|
83
|
+
"bedrock-data-automation",
|
|
84
|
+
"bedrock-data-automation-runtime",
|
|
79
85
|
"bedrock-runtime",
|
|
86
|
+
"billing",
|
|
80
87
|
"billingconductor",
|
|
81
88
|
"braket",
|
|
82
89
|
"budgets",
|
|
@@ -125,6 +132,7 @@ ServiceName = Literal[
|
|
|
125
132
|
"connect",
|
|
126
133
|
"connect-contact-lens",
|
|
127
134
|
"connectcampaigns",
|
|
135
|
+
"connectcampaignsv2",
|
|
128
136
|
"connectcases",
|
|
129
137
|
"connectparticipant",
|
|
130
138
|
"controlcatalog",
|
|
@@ -151,6 +159,7 @@ ServiceName = Literal[
|
|
|
151
159
|
"drs",
|
|
152
160
|
"ds",
|
|
153
161
|
"ds-data",
|
|
162
|
+
"dsql",
|
|
154
163
|
"dynamodb",
|
|
155
164
|
"dynamodbstreams",
|
|
156
165
|
"ebs",
|
|
@@ -207,11 +216,10 @@ ServiceName = Literal[
|
|
|
207
216
|
"inspector-scan",
|
|
208
217
|
"inspector2",
|
|
209
218
|
"internetmonitor",
|
|
219
|
+
"invoicing",
|
|
210
220
|
"iot",
|
|
211
221
|
"iot-data",
|
|
212
222
|
"iot-jobs-data",
|
|
213
|
-
"iot1click-devices",
|
|
214
|
-
"iot1click-projects",
|
|
215
223
|
"iotanalytics",
|
|
216
224
|
"iotdeviceadvisor",
|
|
217
225
|
"iotevents",
|
|
@@ -293,9 +301,13 @@ ServiceName = Literal[
|
|
|
293
301
|
"neptune-graph",
|
|
294
302
|
"neptunedata",
|
|
295
303
|
"network-firewall",
|
|
304
|
+
"networkflowmonitor",
|
|
296
305
|
"networkmanager",
|
|
297
306
|
"networkmonitor",
|
|
307
|
+
"notifications",
|
|
308
|
+
"notificationscontacts",
|
|
298
309
|
"oam",
|
|
310
|
+
"observabilityadmin",
|
|
299
311
|
"omics",
|
|
300
312
|
"opensearch",
|
|
301
313
|
"opensearchserverless",
|
|
@@ -305,6 +317,7 @@ ServiceName = Literal[
|
|
|
305
317
|
"osis",
|
|
306
318
|
"outposts",
|
|
307
319
|
"panorama",
|
|
320
|
+
"partnercentral-selling",
|
|
308
321
|
"payment-cryptography",
|
|
309
322
|
"payment-cryptography-data",
|
|
310
323
|
"pca-connector-ad",
|
|
@@ -355,6 +368,7 @@ ServiceName = Literal[
|
|
|
355
368
|
"s3",
|
|
356
369
|
"s3control",
|
|
357
370
|
"s3outposts",
|
|
371
|
+
"s3tables",
|
|
358
372
|
"sagemaker",
|
|
359
373
|
"sagemaker-a2i-runtime",
|
|
360
374
|
"sagemaker-edge",
|
|
@@ -367,6 +381,7 @@ ServiceName = Literal[
|
|
|
367
381
|
"schemas",
|
|
368
382
|
"sdb",
|
|
369
383
|
"secretsmanager",
|
|
384
|
+
"security-ir",
|
|
370
385
|
"securityhub",
|
|
371
386
|
"securitylake",
|
|
372
387
|
"serverlessrepo",
|