types-boto3-geo-maps 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.
@@ -0,0 +1,25 @@
1
+ """
2
+ Main interface for geo-maps service.
3
+
4
+ Usage::
5
+
6
+ ```python
7
+ from boto3.session import Session
8
+ from types_boto3_geo_maps import (
9
+ Client,
10
+ LocationServiceMapsV2Client,
11
+ )
12
+
13
+ session = Session()
14
+ client: LocationServiceMapsV2Client = session.client("geo-maps")
15
+ ```
16
+
17
+ Copyright 2025 Vlad Emelianov
18
+ """
19
+
20
+ from .client import LocationServiceMapsV2Client
21
+
22
+ Client = LocationServiceMapsV2Client
23
+
24
+
25
+ __all__ = ("Client", "LocationServiceMapsV2Client")
@@ -0,0 +1,24 @@
1
+ """
2
+ Main interface for geo-maps service.
3
+
4
+ Usage::
5
+
6
+ ```python
7
+ from boto3.session import Session
8
+ from types_boto3_geo_maps import (
9
+ Client,
10
+ LocationServiceMapsV2Client,
11
+ )
12
+
13
+ session = Session()
14
+ client: LocationServiceMapsV2Client = session.client("geo-maps")
15
+ ```
16
+
17
+ Copyright 2025 Vlad Emelianov
18
+ """
19
+
20
+ from .client import LocationServiceMapsV2Client
21
+
22
+ Client = LocationServiceMapsV2Client
23
+
24
+ __all__ = ("Client", "LocationServiceMapsV2Client")
@@ -0,0 +1,43 @@
1
+ """
2
+ Main CLI entrypoint.
3
+
4
+ Copyright 2025 Vlad Emelianov
5
+ """
6
+
7
+ import sys
8
+
9
+
10
+ def print_info() -> None:
11
+ """
12
+ Print package info to stdout.
13
+ """
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"
18
+ "Docs: https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps//\n"
19
+ "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#locationservicemapsv2\n"
20
+ "Other services: https://pypi.org/project/boto3-stubs/\n"
21
+ "Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
22
+ )
23
+
24
+
25
+ def print_version() -> None:
26
+ """
27
+ Print package version to stdout.
28
+ """
29
+ sys.stdout.write("1.36.0\n")
30
+
31
+
32
+ def main() -> None:
33
+ """
34
+ Main CLI entrypoint.
35
+ """
36
+ if "--version" in sys.argv:
37
+ print_version()
38
+ return
39
+ print_info()
40
+
41
+
42
+ if __name__ == "__main__":
43
+ main()
@@ -0,0 +1,144 @@
1
+ """
2
+ Type annotations for geo-maps service Client.
3
+
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/)
5
+
6
+ Usage::
7
+
8
+ ```python
9
+ from boto3.session import Session
10
+ from types_boto3_geo_maps.client import LocationServiceMapsV2Client
11
+
12
+ session = Session()
13
+ client: LocationServiceMapsV2Client = session.client("geo-maps")
14
+ ```
15
+
16
+ Copyright 2025 Vlad Emelianov
17
+ """
18
+
19
+ from __future__ import annotations
20
+
21
+ import sys
22
+ from typing import Any
23
+
24
+ from botocore.client import BaseClient, ClientMeta
25
+ from botocore.errorfactory import BaseClientExceptions
26
+ from botocore.exceptions import ClientError as BotocoreClientError
27
+
28
+ from .type_defs import (
29
+ GetGlyphsRequestRequestTypeDef,
30
+ GetGlyphsResponseTypeDef,
31
+ GetSpritesRequestRequestTypeDef,
32
+ GetSpritesResponseTypeDef,
33
+ GetStaticMapRequestRequestTypeDef,
34
+ GetStaticMapResponseTypeDef,
35
+ GetStyleDescriptorRequestRequestTypeDef,
36
+ GetStyleDescriptorResponseTypeDef,
37
+ GetTileRequestRequestTypeDef,
38
+ GetTileResponseTypeDef,
39
+ )
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
46
+ if sys.version_info >= (3, 12):
47
+ from typing import Unpack
48
+ else:
49
+ from typing_extensions import Unpack
50
+
51
+
52
+ __all__ = ("LocationServiceMapsV2Client",)
53
+
54
+
55
+ class Exceptions(BaseClientExceptions):
56
+ AccessDeniedException: Type[BotocoreClientError]
57
+ ClientError: Type[BotocoreClientError]
58
+ InternalServerException: Type[BotocoreClientError]
59
+ ThrottlingException: Type[BotocoreClientError]
60
+ ValidationException: Type[BotocoreClientError]
61
+
62
+
63
+ class LocationServiceMapsV2Client(BaseClient):
64
+ """
65
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#LocationServiceMapsV2.Client)
66
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/)
67
+ """
68
+
69
+ meta: ClientMeta
70
+
71
+ @property
72
+ def exceptions(self) -> Exceptions:
73
+ """
74
+ LocationServiceMapsV2Client exceptions.
75
+
76
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#LocationServiceMapsV2.Client)
77
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#exceptions)
78
+ """
79
+
80
+ def can_paginate(self, operation_name: str) -> bool:
81
+ """
82
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/can_paginate.html)
83
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#can_paginate)
84
+ """
85
+
86
+ def generate_presigned_url(
87
+ self,
88
+ ClientMethod: str,
89
+ Params: Mapping[str, Any] = ...,
90
+ ExpiresIn: int = 3600,
91
+ HttpMethod: str = ...,
92
+ ) -> str:
93
+ """
94
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/generate_presigned_url.html)
95
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#generate_presigned_url)
96
+ """
97
+
98
+ def get_glyphs(
99
+ self, **kwargs: Unpack[GetGlyphsRequestRequestTypeDef]
100
+ ) -> GetGlyphsResponseTypeDef:
101
+ """
102
+ Returns the map's glyphs.
103
+
104
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_glyphs.html)
105
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_glyphs)
106
+ """
107
+
108
+ def get_sprites(
109
+ self, **kwargs: Unpack[GetSpritesRequestRequestTypeDef]
110
+ ) -> GetSpritesResponseTypeDef:
111
+ """
112
+ Returns the map's sprites.
113
+
114
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_sprites.html)
115
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_sprites)
116
+ """
117
+
118
+ def get_static_map(
119
+ self, **kwargs: Unpack[GetStaticMapRequestRequestTypeDef]
120
+ ) -> GetStaticMapResponseTypeDef:
121
+ """
122
+ Provides high-quality static map images with customizable options.
123
+
124
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_static_map.html)
125
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_static_map)
126
+ """
127
+
128
+ def get_style_descriptor(
129
+ self, **kwargs: Unpack[GetStyleDescriptorRequestRequestTypeDef]
130
+ ) -> GetStyleDescriptorResponseTypeDef:
131
+ """
132
+ Returns information about the style.
133
+
134
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_style_descriptor.html)
135
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_style_descriptor)
136
+ """
137
+
138
+ def get_tile(self, **kwargs: Unpack[GetTileRequestRequestTypeDef]) -> GetTileResponseTypeDef:
139
+ """
140
+ Returns a tile.
141
+
142
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_tile.html)
143
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_tile)
144
+ """
@@ -0,0 +1,141 @@
1
+ """
2
+ Type annotations for geo-maps service Client.
3
+
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/)
5
+
6
+ Usage::
7
+
8
+ ```python
9
+ from boto3.session import Session
10
+ from types_boto3_geo_maps.client import LocationServiceMapsV2Client
11
+
12
+ session = Session()
13
+ client: LocationServiceMapsV2Client = session.client("geo-maps")
14
+ ```
15
+
16
+ Copyright 2025 Vlad Emelianov
17
+ """
18
+
19
+ from __future__ import annotations
20
+
21
+ import sys
22
+ from typing import Any
23
+
24
+ from botocore.client import BaseClient, ClientMeta
25
+ from botocore.errorfactory import BaseClientExceptions
26
+ from botocore.exceptions import ClientError as BotocoreClientError
27
+
28
+ from .type_defs import (
29
+ GetGlyphsRequestRequestTypeDef,
30
+ GetGlyphsResponseTypeDef,
31
+ GetSpritesRequestRequestTypeDef,
32
+ GetSpritesResponseTypeDef,
33
+ GetStaticMapRequestRequestTypeDef,
34
+ GetStaticMapResponseTypeDef,
35
+ GetStyleDescriptorRequestRequestTypeDef,
36
+ GetStyleDescriptorResponseTypeDef,
37
+ GetTileRequestRequestTypeDef,
38
+ GetTileResponseTypeDef,
39
+ )
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
46
+ if sys.version_info >= (3, 12):
47
+ from typing import Unpack
48
+ else:
49
+ from typing_extensions import Unpack
50
+
51
+ __all__ = ("LocationServiceMapsV2Client",)
52
+
53
+ class Exceptions(BaseClientExceptions):
54
+ AccessDeniedException: Type[BotocoreClientError]
55
+ ClientError: Type[BotocoreClientError]
56
+ InternalServerException: Type[BotocoreClientError]
57
+ ThrottlingException: Type[BotocoreClientError]
58
+ ValidationException: Type[BotocoreClientError]
59
+
60
+ class LocationServiceMapsV2Client(BaseClient):
61
+ """
62
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#LocationServiceMapsV2.Client)
63
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/)
64
+ """
65
+
66
+ meta: ClientMeta
67
+
68
+ @property
69
+ def exceptions(self) -> Exceptions:
70
+ """
71
+ LocationServiceMapsV2Client exceptions.
72
+
73
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps.html#LocationServiceMapsV2.Client)
74
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#exceptions)
75
+ """
76
+
77
+ def can_paginate(self, operation_name: str) -> bool:
78
+ """
79
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/can_paginate.html)
80
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#can_paginate)
81
+ """
82
+
83
+ def generate_presigned_url(
84
+ self,
85
+ ClientMethod: str,
86
+ Params: Mapping[str, Any] = ...,
87
+ ExpiresIn: int = 3600,
88
+ HttpMethod: str = ...,
89
+ ) -> str:
90
+ """
91
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/generate_presigned_url.html)
92
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#generate_presigned_url)
93
+ """
94
+
95
+ def get_glyphs(
96
+ self, **kwargs: Unpack[GetGlyphsRequestRequestTypeDef]
97
+ ) -> GetGlyphsResponseTypeDef:
98
+ """
99
+ Returns the map's glyphs.
100
+
101
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_glyphs.html)
102
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_glyphs)
103
+ """
104
+
105
+ def get_sprites(
106
+ self, **kwargs: Unpack[GetSpritesRequestRequestTypeDef]
107
+ ) -> GetSpritesResponseTypeDef:
108
+ """
109
+ Returns the map's sprites.
110
+
111
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_sprites.html)
112
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_sprites)
113
+ """
114
+
115
+ def get_static_map(
116
+ self, **kwargs: Unpack[GetStaticMapRequestRequestTypeDef]
117
+ ) -> GetStaticMapResponseTypeDef:
118
+ """
119
+ Provides high-quality static map images with customizable options.
120
+
121
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_static_map.html)
122
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_static_map)
123
+ """
124
+
125
+ def get_style_descriptor(
126
+ self, **kwargs: Unpack[GetStyleDescriptorRequestRequestTypeDef]
127
+ ) -> GetStyleDescriptorResponseTypeDef:
128
+ """
129
+ Returns information about the style.
130
+
131
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_style_descriptor.html)
132
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_style_descriptor)
133
+ """
134
+
135
+ def get_tile(self, **kwargs: Unpack[GetTileRequestRequestTypeDef]) -> GetTileResponseTypeDef:
136
+ """
137
+ Returns a tile.
138
+
139
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/geo-maps/client/get_tile.html)
140
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/client/#get_tile)
141
+ """