aws-sdk-geomaps 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-geomaps/client.rb +1070 -0
- data/lib/aws-sdk-geomaps/client_api.rb +231 -0
- data/lib/aws-sdk-geomaps/customizations.rb +0 -0
- data/lib/aws-sdk-geomaps/endpoint_parameters.rb +69 -0
- data/lib/aws-sdk-geomaps/endpoint_provider.rb +78 -0
- data/lib/aws-sdk-geomaps/endpoints.rb +20 -0
- data/lib/aws-sdk-geomaps/errors.rb +120 -0
- data/lib/aws-sdk-geomaps/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-geomaps/resource.rb +26 -0
- data/lib/aws-sdk-geomaps/types.rb +740 -0
- data/lib/aws-sdk-geomaps.rb +61 -0
- data/sig/client.rbs +171 -0
- data/sig/errors.rbs +30 -0
- data/sig/resource.rbs +82 -0
- data/sig/types.rbs +130 -0
- data/sig/waiters.rbs +13 -0
- metadata +99 -0
@@ -0,0 +1,61 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
|
11
|
+
require 'aws-sdk-core'
|
12
|
+
require 'aws-sigv4'
|
13
|
+
|
14
|
+
Aws::Plugins::GlobalConfiguration.add_identifier(:geomaps)
|
15
|
+
|
16
|
+
# This module provides support for Amazon Location Service Maps V2. This module is available in the
|
17
|
+
# `aws-sdk-geomaps` gem.
|
18
|
+
#
|
19
|
+
# # Client
|
20
|
+
#
|
21
|
+
# The {Client} class provides one method for each API operation. Operation
|
22
|
+
# methods each accept a hash of request parameters and return a response
|
23
|
+
# structure.
|
24
|
+
#
|
25
|
+
# geo_maps = Aws::GeoMaps::Client.new
|
26
|
+
# resp = geo_maps.get_glyphs(params)
|
27
|
+
#
|
28
|
+
# See {Client} for more information.
|
29
|
+
#
|
30
|
+
# # Errors
|
31
|
+
#
|
32
|
+
# Errors returned from Amazon Location Service Maps V2 are defined in the
|
33
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
34
|
+
#
|
35
|
+
# begin
|
36
|
+
# # do stuff
|
37
|
+
# rescue Aws::GeoMaps::Errors::ServiceError
|
38
|
+
# # rescues all Amazon Location Service Maps V2 API errors
|
39
|
+
# end
|
40
|
+
#
|
41
|
+
# See {Errors} for more information.
|
42
|
+
#
|
43
|
+
# @!group service
|
44
|
+
module Aws::GeoMaps
|
45
|
+
autoload :Types, 'aws-sdk-geomaps/types'
|
46
|
+
autoload :ClientApi, 'aws-sdk-geomaps/client_api'
|
47
|
+
module Plugins
|
48
|
+
autoload :Endpoints, 'aws-sdk-geomaps/plugins/endpoints.rb'
|
49
|
+
end
|
50
|
+
autoload :Client, 'aws-sdk-geomaps/client'
|
51
|
+
autoload :Errors, 'aws-sdk-geomaps/errors'
|
52
|
+
autoload :Resource, 'aws-sdk-geomaps/resource'
|
53
|
+
autoload :EndpointParameters, 'aws-sdk-geomaps/endpoint_parameters'
|
54
|
+
autoload :EndpointProvider, 'aws-sdk-geomaps/endpoint_provider'
|
55
|
+
autoload :Endpoints, 'aws-sdk-geomaps/endpoints'
|
56
|
+
|
57
|
+
GEM_VERSION = '1.0.0'
|
58
|
+
|
59
|
+
end
|
60
|
+
|
61
|
+
require_relative 'aws-sdk-geomaps/customizations'
|
data/sig/client.rbs
ADDED
@@ -0,0 +1,171 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module GeoMaps
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GeoMaps/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?account_id: String,
|
19
|
+
?active_endpoint_cache: bool,
|
20
|
+
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?client_side_monitoring: bool,
|
22
|
+
?client_side_monitoring_client_id: String,
|
23
|
+
?client_side_monitoring_host: String,
|
24
|
+
?client_side_monitoring_port: Integer,
|
25
|
+
?client_side_monitoring_publisher: untyped,
|
26
|
+
?convert_params: bool,
|
27
|
+
?correct_clock_skew: bool,
|
28
|
+
?defaults_mode: String,
|
29
|
+
?disable_host_prefix_injection: bool,
|
30
|
+
?disable_request_compression: bool,
|
31
|
+
?endpoint: String,
|
32
|
+
?endpoint_cache_max_entries: Integer,
|
33
|
+
?endpoint_cache_max_threads: Integer,
|
34
|
+
?endpoint_cache_poll_interval: Integer,
|
35
|
+
?endpoint_discovery: bool,
|
36
|
+
?ignore_configured_endpoint_urls: bool,
|
37
|
+
?log_formatter: untyped,
|
38
|
+
?log_level: Symbol,
|
39
|
+
?logger: untyped,
|
40
|
+
?max_attempts: Integer,
|
41
|
+
?profile: String,
|
42
|
+
?request_min_compression_size_bytes: Integer,
|
43
|
+
?retry_backoff: Proc,
|
44
|
+
?retry_base_delay: Float,
|
45
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
46
|
+
?retry_limit: Integer,
|
47
|
+
?retry_max_delay: Integer,
|
48
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
49
|
+
?sdk_ua_app_id: String,
|
50
|
+
?secret_access_key: String,
|
51
|
+
?session_token: String,
|
52
|
+
?sigv4a_signing_region_set: Array[String],
|
53
|
+
?stub_responses: untyped,
|
54
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
55
|
+
?token_provider: untyped,
|
56
|
+
?use_dualstack_endpoint: bool,
|
57
|
+
?use_fips_endpoint: bool,
|
58
|
+
?validate_params: bool,
|
59
|
+
?endpoint_provider: untyped,
|
60
|
+
?http_proxy: String,
|
61
|
+
?http_open_timeout: (Float | Integer),
|
62
|
+
?http_read_timeout: (Float | Integer),
|
63
|
+
?http_idle_timeout: (Float | Integer),
|
64
|
+
?http_continue_timeout: (Float | Integer),
|
65
|
+
?ssl_timeout: (Float | Integer | nil),
|
66
|
+
?http_wire_trace: bool,
|
67
|
+
?ssl_verify_peer: bool,
|
68
|
+
?ssl_ca_bundle: String,
|
69
|
+
?ssl_ca_directory: String,
|
70
|
+
?ssl_ca_store: String,
|
71
|
+
?on_chunk_received: Proc,
|
72
|
+
?on_chunk_sent: Proc,
|
73
|
+
?raise_response_errors: bool
|
74
|
+
) -> instance
|
75
|
+
| (?Hash[Symbol, untyped]) -> instance
|
76
|
+
|
77
|
+
|
78
|
+
interface _GetGlyphsResponseSuccess
|
79
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetGlyphsResponse]
|
80
|
+
def blob: () -> ::IO
|
81
|
+
def content_type: () -> ::String
|
82
|
+
def cache_control: () -> ::String
|
83
|
+
def etag: () -> ::String
|
84
|
+
end
|
85
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GeoMaps/Client.html#get_glyphs-instance_method
|
86
|
+
def get_glyphs: (
|
87
|
+
font_stack: ::String,
|
88
|
+
font_unicode_range: ::String
|
89
|
+
) ?{ (*untyped) -> void } -> _GetGlyphsResponseSuccess
|
90
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _GetGlyphsResponseSuccess
|
91
|
+
|
92
|
+
interface _GetSpritesResponseSuccess
|
93
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetSpritesResponse]
|
94
|
+
def blob: () -> ::IO
|
95
|
+
def content_type: () -> ::String
|
96
|
+
def cache_control: () -> ::String
|
97
|
+
def etag: () -> ::String
|
98
|
+
end
|
99
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GeoMaps/Client.html#get_sprites-instance_method
|
100
|
+
def get_sprites: (
|
101
|
+
file_name: ::String,
|
102
|
+
style: ("Standard" | "Monochrome" | "Hybrid" | "Satellite"),
|
103
|
+
color_scheme: ("Light" | "Dark"),
|
104
|
+
variant: ("Default")
|
105
|
+
) ?{ (*untyped) -> void } -> _GetSpritesResponseSuccess
|
106
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _GetSpritesResponseSuccess
|
107
|
+
|
108
|
+
interface _GetStaticMapResponseSuccess
|
109
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetStaticMapResponse]
|
110
|
+
def blob: () -> ::IO
|
111
|
+
def content_type: () -> ::String
|
112
|
+
def cache_control: () -> ::String
|
113
|
+
def etag: () -> ::String
|
114
|
+
def pricing_bucket: () -> ::String
|
115
|
+
end
|
116
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GeoMaps/Client.html#get_static_map-instance_method
|
117
|
+
def get_static_map: (
|
118
|
+
?bounding_box: ::String,
|
119
|
+
?bounded_positions: ::String,
|
120
|
+
?center: ::String,
|
121
|
+
?compact_overlay: ::String,
|
122
|
+
?geo_json_overlay: ::String,
|
123
|
+
height: ::Integer,
|
124
|
+
?key: ::String,
|
125
|
+
?padding: ::Integer,
|
126
|
+
?radius: ::Integer,
|
127
|
+
file_name: ::String,
|
128
|
+
?scale_bar_unit: ("Kilometers" | "KilometersMiles" | "Miles" | "MilesKilometers"),
|
129
|
+
?style: ("Satellite"),
|
130
|
+
width: ::Integer,
|
131
|
+
?zoom: ::Float
|
132
|
+
) ?{ (*untyped) -> void } -> _GetStaticMapResponseSuccess
|
133
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _GetStaticMapResponseSuccess
|
134
|
+
|
135
|
+
interface _GetStyleDescriptorResponseSuccess
|
136
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetStyleDescriptorResponse]
|
137
|
+
def blob: () -> ::IO
|
138
|
+
def content_type: () -> ::String
|
139
|
+
def cache_control: () -> ::String
|
140
|
+
def etag: () -> ::String
|
141
|
+
end
|
142
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GeoMaps/Client.html#get_style_descriptor-instance_method
|
143
|
+
def get_style_descriptor: (
|
144
|
+
style: ("Standard" | "Monochrome" | "Hybrid" | "Satellite"),
|
145
|
+
?color_scheme: ("Light" | "Dark"),
|
146
|
+
?political_view: ::String,
|
147
|
+
?key: ::String
|
148
|
+
) ?{ (*untyped) -> void } -> _GetStyleDescriptorResponseSuccess
|
149
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _GetStyleDescriptorResponseSuccess
|
150
|
+
|
151
|
+
interface _GetTileResponseSuccess
|
152
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetTileResponse]
|
153
|
+
def blob: () -> ::IO
|
154
|
+
def content_type: () -> ::String
|
155
|
+
def cache_control: () -> ::String
|
156
|
+
def etag: () -> ::String
|
157
|
+
def pricing_bucket: () -> ::String
|
158
|
+
end
|
159
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GeoMaps/Client.html#get_tile-instance_method
|
160
|
+
def get_tile: (
|
161
|
+
tileset: ::String,
|
162
|
+
z: ::String,
|
163
|
+
x: ::String,
|
164
|
+
y: ::String,
|
165
|
+
?key: ::String
|
166
|
+
) ?{ (*untyped) -> void } -> _GetTileResponseSuccess
|
167
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _GetTileResponseSuccess
|
168
|
+
end
|
169
|
+
end
|
170
|
+
end
|
171
|
+
|
data/sig/errors.rbs
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module GeoMaps
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class AccessDeniedException < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
17
|
+
class InternalServerException < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
end
|
20
|
+
class ThrottlingException < ::Aws::Errors::ServiceError
|
21
|
+
def message: () -> ::String
|
22
|
+
end
|
23
|
+
class ValidationException < ::Aws::Errors::ServiceError
|
24
|
+
def message: () -> ::String
|
25
|
+
def reason: () -> ::String
|
26
|
+
def field_list: () -> ::String
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
data/sig/resource.rbs
ADDED
@@ -0,0 +1,82 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module GeoMaps
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GeoMaps/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GeoMaps/Resource.html#initialize-instance_method
|
13
|
+
def initialize: (
|
14
|
+
?client: Client,
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?account_id: String,
|
19
|
+
?active_endpoint_cache: bool,
|
20
|
+
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?client_side_monitoring: bool,
|
22
|
+
?client_side_monitoring_client_id: String,
|
23
|
+
?client_side_monitoring_host: String,
|
24
|
+
?client_side_monitoring_port: Integer,
|
25
|
+
?client_side_monitoring_publisher: untyped,
|
26
|
+
?convert_params: bool,
|
27
|
+
?correct_clock_skew: bool,
|
28
|
+
?defaults_mode: String,
|
29
|
+
?disable_host_prefix_injection: bool,
|
30
|
+
?disable_request_compression: bool,
|
31
|
+
?endpoint: String,
|
32
|
+
?endpoint_cache_max_entries: Integer,
|
33
|
+
?endpoint_cache_max_threads: Integer,
|
34
|
+
?endpoint_cache_poll_interval: Integer,
|
35
|
+
?endpoint_discovery: bool,
|
36
|
+
?ignore_configured_endpoint_urls: bool,
|
37
|
+
?log_formatter: untyped,
|
38
|
+
?log_level: Symbol,
|
39
|
+
?logger: untyped,
|
40
|
+
?max_attempts: Integer,
|
41
|
+
?profile: String,
|
42
|
+
?request_min_compression_size_bytes: Integer,
|
43
|
+
?retry_backoff: Proc,
|
44
|
+
?retry_base_delay: Float,
|
45
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
46
|
+
?retry_limit: Integer,
|
47
|
+
?retry_max_delay: Integer,
|
48
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
49
|
+
?sdk_ua_app_id: String,
|
50
|
+
?secret_access_key: String,
|
51
|
+
?session_token: String,
|
52
|
+
?sigv4a_signing_region_set: Array[String],
|
53
|
+
?stub_responses: untyped,
|
54
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
55
|
+
?token_provider: untyped,
|
56
|
+
?use_dualstack_endpoint: bool,
|
57
|
+
?use_fips_endpoint: bool,
|
58
|
+
?validate_params: bool,
|
59
|
+
?endpoint_provider: untyped,
|
60
|
+
?http_proxy: String,
|
61
|
+
?http_open_timeout: (Float | Integer),
|
62
|
+
?http_read_timeout: (Float | Integer),
|
63
|
+
?http_idle_timeout: (Float | Integer),
|
64
|
+
?http_continue_timeout: (Float | Integer),
|
65
|
+
?ssl_timeout: (Float | Integer | nil),
|
66
|
+
?http_wire_trace: bool,
|
67
|
+
?ssl_verify_peer: bool,
|
68
|
+
?ssl_ca_bundle: String,
|
69
|
+
?ssl_ca_directory: String,
|
70
|
+
?ssl_ca_store: String,
|
71
|
+
?on_chunk_received: Proc,
|
72
|
+
?on_chunk_sent: Proc,
|
73
|
+
?raise_response_errors: bool
|
74
|
+
) -> void
|
75
|
+
| (?Hash[Symbol, untyped]) -> void
|
76
|
+
|
77
|
+
def client: () -> Client
|
78
|
+
|
79
|
+
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
data/sig/types.rbs
ADDED
@@ -0,0 +1,130 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::GeoMaps
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class GetGlyphsRequest
|
17
|
+
attr_accessor font_stack: ::String
|
18
|
+
attr_accessor font_unicode_range: ::String
|
19
|
+
SENSITIVE: []
|
20
|
+
end
|
21
|
+
|
22
|
+
class GetGlyphsResponse
|
23
|
+
attr_accessor blob: ::IO
|
24
|
+
attr_accessor content_type: ::String
|
25
|
+
attr_accessor cache_control: ::String
|
26
|
+
attr_accessor etag: ::String
|
27
|
+
SENSITIVE: []
|
28
|
+
end
|
29
|
+
|
30
|
+
class GetSpritesRequest
|
31
|
+
attr_accessor file_name: ::String
|
32
|
+
attr_accessor style: ("Standard" | "Monochrome" | "Hybrid" | "Satellite")
|
33
|
+
attr_accessor color_scheme: ("Light" | "Dark")
|
34
|
+
attr_accessor variant: ("Default")
|
35
|
+
SENSITIVE: []
|
36
|
+
end
|
37
|
+
|
38
|
+
class GetSpritesResponse
|
39
|
+
attr_accessor blob: ::IO
|
40
|
+
attr_accessor content_type: ::String
|
41
|
+
attr_accessor cache_control: ::String
|
42
|
+
attr_accessor etag: ::String
|
43
|
+
SENSITIVE: []
|
44
|
+
end
|
45
|
+
|
46
|
+
class GetStaticMapRequest
|
47
|
+
attr_accessor bounding_box: ::String
|
48
|
+
attr_accessor bounded_positions: ::String
|
49
|
+
attr_accessor center: ::String
|
50
|
+
attr_accessor compact_overlay: ::String
|
51
|
+
attr_accessor geo_json_overlay: ::String
|
52
|
+
attr_accessor height: ::Integer
|
53
|
+
attr_accessor key: ::String
|
54
|
+
attr_accessor padding: ::Integer
|
55
|
+
attr_accessor radius: ::Integer
|
56
|
+
attr_accessor file_name: ::String
|
57
|
+
attr_accessor scale_bar_unit: ("Kilometers" | "KilometersMiles" | "Miles" | "MilesKilometers")
|
58
|
+
attr_accessor style: ("Satellite")
|
59
|
+
attr_accessor width: ::Integer
|
60
|
+
attr_accessor zoom: ::Float
|
61
|
+
SENSITIVE: [:key]
|
62
|
+
end
|
63
|
+
|
64
|
+
class GetStaticMapResponse
|
65
|
+
attr_accessor blob: ::IO
|
66
|
+
attr_accessor content_type: ::String
|
67
|
+
attr_accessor cache_control: ::String
|
68
|
+
attr_accessor etag: ::String
|
69
|
+
attr_accessor pricing_bucket: ::String
|
70
|
+
SENSITIVE: []
|
71
|
+
end
|
72
|
+
|
73
|
+
class GetStyleDescriptorRequest
|
74
|
+
attr_accessor style: ("Standard" | "Monochrome" | "Hybrid" | "Satellite")
|
75
|
+
attr_accessor color_scheme: ("Light" | "Dark")
|
76
|
+
attr_accessor political_view: ::String
|
77
|
+
attr_accessor key: ::String
|
78
|
+
SENSITIVE: [:key]
|
79
|
+
end
|
80
|
+
|
81
|
+
class GetStyleDescriptorResponse
|
82
|
+
attr_accessor blob: ::IO
|
83
|
+
attr_accessor content_type: ::String
|
84
|
+
attr_accessor cache_control: ::String
|
85
|
+
attr_accessor etag: ::String
|
86
|
+
SENSITIVE: []
|
87
|
+
end
|
88
|
+
|
89
|
+
class GetTileRequest
|
90
|
+
attr_accessor tileset: ::String
|
91
|
+
attr_accessor z: ::String
|
92
|
+
attr_accessor x: ::String
|
93
|
+
attr_accessor y: ::String
|
94
|
+
attr_accessor key: ::String
|
95
|
+
SENSITIVE: [:key]
|
96
|
+
end
|
97
|
+
|
98
|
+
class GetTileResponse
|
99
|
+
attr_accessor blob: ::IO
|
100
|
+
attr_accessor content_type: ::String
|
101
|
+
attr_accessor cache_control: ::String
|
102
|
+
attr_accessor etag: ::String
|
103
|
+
attr_accessor pricing_bucket: ::String
|
104
|
+
SENSITIVE: []
|
105
|
+
end
|
106
|
+
|
107
|
+
class InternalServerException
|
108
|
+
attr_accessor message: ::String
|
109
|
+
SENSITIVE: []
|
110
|
+
end
|
111
|
+
|
112
|
+
class ThrottlingException
|
113
|
+
attr_accessor message: ::String
|
114
|
+
SENSITIVE: []
|
115
|
+
end
|
116
|
+
|
117
|
+
class ValidationException
|
118
|
+
attr_accessor message: ::String
|
119
|
+
attr_accessor reason: ("UnknownOperation" | "Missing" | "CannotParse" | "FieldValidationFailed" | "Other" | "UnknownField")
|
120
|
+
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
121
|
+
SENSITIVE: []
|
122
|
+
end
|
123
|
+
|
124
|
+
class ValidationExceptionField
|
125
|
+
attr_accessor name: ::String
|
126
|
+
attr_accessor message: ::String
|
127
|
+
SENSITIVE: []
|
128
|
+
end
|
129
|
+
end
|
130
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module GeoMaps
|
10
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
metadata
ADDED
@@ -0,0 +1,99 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: aws-sdk-geomaps
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Amazon Web Services
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-10-30 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: aws-sdk-core
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3'
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 3.210.0
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '3'
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 3.210.0
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: aws-sigv4
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '1.5'
|
40
|
+
type: :runtime
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - "~>"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '1.5'
|
47
|
+
description: Official AWS Ruby gem for Amazon Location Service Maps V2. This gem is
|
48
|
+
part of the AWS SDK for Ruby.
|
49
|
+
email:
|
50
|
+
- aws-dr-rubygems@amazon.com
|
51
|
+
executables: []
|
52
|
+
extensions: []
|
53
|
+
extra_rdoc_files: []
|
54
|
+
files:
|
55
|
+
- CHANGELOG.md
|
56
|
+
- LICENSE.txt
|
57
|
+
- VERSION
|
58
|
+
- lib/aws-sdk-geomaps.rb
|
59
|
+
- lib/aws-sdk-geomaps/client.rb
|
60
|
+
- lib/aws-sdk-geomaps/client_api.rb
|
61
|
+
- lib/aws-sdk-geomaps/customizations.rb
|
62
|
+
- lib/aws-sdk-geomaps/endpoint_parameters.rb
|
63
|
+
- lib/aws-sdk-geomaps/endpoint_provider.rb
|
64
|
+
- lib/aws-sdk-geomaps/endpoints.rb
|
65
|
+
- lib/aws-sdk-geomaps/errors.rb
|
66
|
+
- lib/aws-sdk-geomaps/plugins/endpoints.rb
|
67
|
+
- lib/aws-sdk-geomaps/resource.rb
|
68
|
+
- lib/aws-sdk-geomaps/types.rb
|
69
|
+
- sig/client.rbs
|
70
|
+
- sig/errors.rbs
|
71
|
+
- sig/resource.rbs
|
72
|
+
- sig/types.rbs
|
73
|
+
- sig/waiters.rbs
|
74
|
+
homepage: https://github.com/aws/aws-sdk-ruby
|
75
|
+
licenses:
|
76
|
+
- Apache-2.0
|
77
|
+
metadata:
|
78
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-geomaps
|
79
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-geomaps/CHANGELOG.md
|
80
|
+
post_install_message:
|
81
|
+
rdoc_options: []
|
82
|
+
require_paths:
|
83
|
+
- lib
|
84
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '2.5'
|
89
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
90
|
+
requirements:
|
91
|
+
- - ">="
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '0'
|
94
|
+
requirements: []
|
95
|
+
rubygems_version: 3.4.10
|
96
|
+
signing_key:
|
97
|
+
specification_version: 4
|
98
|
+
summary: AWS SDK for Ruby - Amazon Location Service Maps V2
|
99
|
+
test_files: []
|