aws-sdk-internetmonitor 1.13.0 → 1.14.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-internetmonitor/client.rb +1 -1
- data/lib/aws-sdk-internetmonitor/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-internetmonitor.rb +1 -1
- data/sig/client.rbs +318 -0
- data/sig/errors.rbs +49 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +382 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c8dea500545168525244b5b8e1f2adbd0e98c05559bff2162ea1ceefe181c7a8
|
|
4
|
+
data.tar.gz: '08f289c946df86446e6c5488f5eb925c025c57dc0fe164c03385441dd9e0e498'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0bed6c1ca15b52f13154a6cf96432aa68df08096d957aaa5c6df40c6a6f60f1a28ebd4f9f657e6c9204ef2c122f286f7e32f95304fba4c787da935c7a3cc7049
|
|
7
|
+
data.tar.gz: d2c3eaaf15c590339b77ed5293f2b29d38d836c7bba8fbd01e5f6010d13d0da8c18cc63360bcf520dbf59fa8863d471e73da017b031425b6745e2738fee83881
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.14.0
|
|
@@ -1352,7 +1352,7 @@ module Aws::InternetMonitor
|
|
|
1352
1352
|
params: params,
|
|
1353
1353
|
config: config)
|
|
1354
1354
|
context[:gem_name] = 'aws-sdk-internetmonitor'
|
|
1355
|
-
context[:gem_version] = '1.
|
|
1355
|
+
context[:gem_version] = '1.14.0'
|
|
1356
1356
|
Seahorse::Client::Request.new(handlers, context)
|
|
1357
1357
|
end
|
|
1358
1358
|
|
|
@@ -14,6 +14,7 @@ module Aws::InternetMonitor
|
|
|
14
14
|
option(
|
|
15
15
|
:endpoint_provider,
|
|
16
16
|
doc_type: 'Aws::InternetMonitor::EndpointProvider',
|
|
17
|
+
rbs_type: 'untyped',
|
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
|
19
20
|
'where `parameters` is a Struct similar to '\
|
data/sig/client.rbs
ADDED
|
@@ -0,0 +1,318 @@
|
|
|
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 InternetMonitor
|
|
10
|
+
class Client < ::Seahorse::Client::Base
|
|
11
|
+
include ::Aws::ClientStubs
|
|
12
|
+
|
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/InternetMonitor/Client.html#initialize-instance_method
|
|
14
|
+
def self.new: (
|
|
15
|
+
?credentials: untyped,
|
|
16
|
+
?region: String,
|
|
17
|
+
?access_key_id: String,
|
|
18
|
+
?active_endpoint_cache: bool,
|
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
|
20
|
+
?client_side_monitoring: bool,
|
|
21
|
+
?client_side_monitoring_client_id: String,
|
|
22
|
+
?client_side_monitoring_host: String,
|
|
23
|
+
?client_side_monitoring_port: Integer,
|
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
|
25
|
+
?convert_params: bool,
|
|
26
|
+
?correct_clock_skew: bool,
|
|
27
|
+
?defaults_mode: String,
|
|
28
|
+
?disable_host_prefix_injection: bool,
|
|
29
|
+
?disable_request_compression: bool,
|
|
30
|
+
?endpoint: String,
|
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
|
34
|
+
?endpoint_discovery: bool,
|
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
|
36
|
+
?log_formatter: untyped,
|
|
37
|
+
?log_level: Symbol,
|
|
38
|
+
?logger: untyped,
|
|
39
|
+
?max_attempts: Integer,
|
|
40
|
+
?profile: String,
|
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
|
42
|
+
?retry_backoff: Proc,
|
|
43
|
+
?retry_base_delay: Float,
|
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
|
45
|
+
?retry_limit: Integer,
|
|
46
|
+
?retry_max_delay: Integer,
|
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
|
48
|
+
?sdk_ua_app_id: String,
|
|
49
|
+
?secret_access_key: String,
|
|
50
|
+
?session_token: String,
|
|
51
|
+
?stub_responses: untyped,
|
|
52
|
+
?token_provider: untyped,
|
|
53
|
+
?use_dualstack_endpoint: bool,
|
|
54
|
+
?use_fips_endpoint: bool,
|
|
55
|
+
?validate_params: bool,
|
|
56
|
+
?endpoint_provider: untyped,
|
|
57
|
+
?http_proxy: String,
|
|
58
|
+
?http_open_timeout: (Float | Integer),
|
|
59
|
+
?http_read_timeout: (Float | Integer),
|
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
|
63
|
+
?http_wire_trace: bool,
|
|
64
|
+
?ssl_verify_peer: bool,
|
|
65
|
+
?ssl_ca_bundle: String,
|
|
66
|
+
?ssl_ca_directory: String,
|
|
67
|
+
?ssl_ca_store: String,
|
|
68
|
+
?on_chunk_received: Proc,
|
|
69
|
+
?on_chunk_sent: Proc,
|
|
70
|
+
?raise_response_errors: bool
|
|
71
|
+
) -> instance
|
|
72
|
+
| (?Hash[Symbol, untyped]) -> instance
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
interface _CreateMonitorResponseSuccess
|
|
76
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateMonitorOutput]
|
|
77
|
+
def arn: () -> ::String
|
|
78
|
+
def status: () -> ("PENDING" | "ACTIVE" | "INACTIVE" | "ERROR")
|
|
79
|
+
end
|
|
80
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/InternetMonitor/Client.html#create_monitor-instance_method
|
|
81
|
+
def create_monitor: (
|
|
82
|
+
monitor_name: ::String,
|
|
83
|
+
?resources: Array[::String],
|
|
84
|
+
?client_token: ::String,
|
|
85
|
+
?tags: Hash[::String, ::String],
|
|
86
|
+
?max_city_networks_to_monitor: ::Integer,
|
|
87
|
+
?internet_measurements_log_delivery: {
|
|
88
|
+
s3_config: {
|
|
89
|
+
bucket_name: ::String?,
|
|
90
|
+
bucket_prefix: ::String?,
|
|
91
|
+
log_delivery_status: ("ENABLED" | "DISABLED")?
|
|
92
|
+
}?
|
|
93
|
+
},
|
|
94
|
+
?traffic_percentage_to_monitor: ::Integer,
|
|
95
|
+
?health_events_config: {
|
|
96
|
+
availability_score_threshold: ::Float?,
|
|
97
|
+
performance_score_threshold: ::Float?,
|
|
98
|
+
availability_local_health_events_config: {
|
|
99
|
+
status: ("ENABLED" | "DISABLED")?,
|
|
100
|
+
health_score_threshold: ::Float?,
|
|
101
|
+
min_traffic_impact: ::Float?
|
|
102
|
+
}?,
|
|
103
|
+
performance_local_health_events_config: {
|
|
104
|
+
status: ("ENABLED" | "DISABLED")?,
|
|
105
|
+
health_score_threshold: ::Float?,
|
|
106
|
+
min_traffic_impact: ::Float?
|
|
107
|
+
}?
|
|
108
|
+
}
|
|
109
|
+
) -> _CreateMonitorResponseSuccess
|
|
110
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMonitorResponseSuccess
|
|
111
|
+
|
|
112
|
+
interface _DeleteMonitorResponseSuccess
|
|
113
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteMonitorOutput]
|
|
114
|
+
end
|
|
115
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/InternetMonitor/Client.html#delete_monitor-instance_method
|
|
116
|
+
def delete_monitor: (
|
|
117
|
+
monitor_name: ::String
|
|
118
|
+
) -> _DeleteMonitorResponseSuccess
|
|
119
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteMonitorResponseSuccess
|
|
120
|
+
|
|
121
|
+
interface _GetHealthEventResponseSuccess
|
|
122
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetHealthEventOutput]
|
|
123
|
+
def event_arn: () -> ::String
|
|
124
|
+
def event_id: () -> ::String
|
|
125
|
+
def started_at: () -> ::Time
|
|
126
|
+
def ended_at: () -> ::Time
|
|
127
|
+
def created_at: () -> ::Time
|
|
128
|
+
def last_updated_at: () -> ::Time
|
|
129
|
+
def impacted_locations: () -> ::Array[Types::ImpactedLocation]
|
|
130
|
+
def status: () -> ("ACTIVE" | "RESOLVED")
|
|
131
|
+
def percent_of_total_traffic_impacted: () -> ::Float
|
|
132
|
+
def impact_type: () -> ("AVAILABILITY" | "PERFORMANCE" | "LOCAL_AVAILABILITY" | "LOCAL_PERFORMANCE")
|
|
133
|
+
def health_score_threshold: () -> ::Float
|
|
134
|
+
end
|
|
135
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/InternetMonitor/Client.html#get_health_event-instance_method
|
|
136
|
+
def get_health_event: (
|
|
137
|
+
monitor_name: ::String,
|
|
138
|
+
event_id: ::String
|
|
139
|
+
) -> _GetHealthEventResponseSuccess
|
|
140
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetHealthEventResponseSuccess
|
|
141
|
+
|
|
142
|
+
interface _GetMonitorResponseSuccess
|
|
143
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetMonitorOutput]
|
|
144
|
+
def monitor_name: () -> ::String
|
|
145
|
+
def monitor_arn: () -> ::String
|
|
146
|
+
def resources: () -> ::Array[::String]
|
|
147
|
+
def status: () -> ("PENDING" | "ACTIVE" | "INACTIVE" | "ERROR")
|
|
148
|
+
def created_at: () -> ::Time
|
|
149
|
+
def modified_at: () -> ::Time
|
|
150
|
+
def processing_status: () -> ("OK" | "INACTIVE" | "COLLECTING_DATA" | "INSUFFICIENT_DATA" | "FAULT_SERVICE" | "FAULT_ACCESS_CLOUDWATCH")
|
|
151
|
+
def processing_status_info: () -> ::String
|
|
152
|
+
def tags: () -> ::Hash[::String, ::String]
|
|
153
|
+
def max_city_networks_to_monitor: () -> ::Integer
|
|
154
|
+
def internet_measurements_log_delivery: () -> Types::InternetMeasurementsLogDelivery
|
|
155
|
+
def traffic_percentage_to_monitor: () -> ::Integer
|
|
156
|
+
def health_events_config: () -> Types::HealthEventsConfig
|
|
157
|
+
end
|
|
158
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/InternetMonitor/Client.html#get_monitor-instance_method
|
|
159
|
+
def get_monitor: (
|
|
160
|
+
monitor_name: ::String
|
|
161
|
+
) -> _GetMonitorResponseSuccess
|
|
162
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMonitorResponseSuccess
|
|
163
|
+
|
|
164
|
+
interface _GetQueryResultsResponseSuccess
|
|
165
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetQueryResultsOutput]
|
|
166
|
+
def fields: () -> ::Array[Types::QueryField]
|
|
167
|
+
def next_token: () -> ::String
|
|
168
|
+
end
|
|
169
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/InternetMonitor/Client.html#get_query_results-instance_method
|
|
170
|
+
def get_query_results: (
|
|
171
|
+
monitor_name: ::String,
|
|
172
|
+
query_id: ::String,
|
|
173
|
+
?next_token: ::String,
|
|
174
|
+
?max_results: ::Integer
|
|
175
|
+
) -> _GetQueryResultsResponseSuccess
|
|
176
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetQueryResultsResponseSuccess
|
|
177
|
+
|
|
178
|
+
interface _GetQueryStatusResponseSuccess
|
|
179
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetQueryStatusOutput]
|
|
180
|
+
def status: () -> ("QUEUED" | "RUNNING" | "SUCCEEDED" | "FAILED" | "CANCELED")
|
|
181
|
+
end
|
|
182
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/InternetMonitor/Client.html#get_query_status-instance_method
|
|
183
|
+
def get_query_status: (
|
|
184
|
+
monitor_name: ::String,
|
|
185
|
+
query_id: ::String
|
|
186
|
+
) -> _GetQueryStatusResponseSuccess
|
|
187
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetQueryStatusResponseSuccess
|
|
188
|
+
|
|
189
|
+
interface _ListHealthEventsResponseSuccess
|
|
190
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListHealthEventsOutput]
|
|
191
|
+
def health_events: () -> ::Array[Types::HealthEvent]
|
|
192
|
+
def next_token: () -> ::String
|
|
193
|
+
end
|
|
194
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/InternetMonitor/Client.html#list_health_events-instance_method
|
|
195
|
+
def list_health_events: (
|
|
196
|
+
monitor_name: ::String,
|
|
197
|
+
?start_time: ::Time,
|
|
198
|
+
?end_time: ::Time,
|
|
199
|
+
?next_token: ::String,
|
|
200
|
+
?max_results: ::Integer,
|
|
201
|
+
?event_status: ("ACTIVE" | "RESOLVED")
|
|
202
|
+
) -> _ListHealthEventsResponseSuccess
|
|
203
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListHealthEventsResponseSuccess
|
|
204
|
+
|
|
205
|
+
interface _ListMonitorsResponseSuccess
|
|
206
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListMonitorsOutput]
|
|
207
|
+
def monitors: () -> ::Array[Types::Monitor]
|
|
208
|
+
def next_token: () -> ::String
|
|
209
|
+
end
|
|
210
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/InternetMonitor/Client.html#list_monitors-instance_method
|
|
211
|
+
def list_monitors: (
|
|
212
|
+
?next_token: ::String,
|
|
213
|
+
?max_results: ::Integer,
|
|
214
|
+
?monitor_status: ::String
|
|
215
|
+
) -> _ListMonitorsResponseSuccess
|
|
216
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListMonitorsResponseSuccess
|
|
217
|
+
|
|
218
|
+
interface _ListTagsForResourceResponseSuccess
|
|
219
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceOutput]
|
|
220
|
+
def tags: () -> ::Hash[::String, ::String]
|
|
221
|
+
end
|
|
222
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/InternetMonitor/Client.html#list_tags_for_resource-instance_method
|
|
223
|
+
def list_tags_for_resource: (
|
|
224
|
+
resource_arn: ::String
|
|
225
|
+
) -> _ListTagsForResourceResponseSuccess
|
|
226
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
|
227
|
+
|
|
228
|
+
interface _StartQueryResponseSuccess
|
|
229
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartQueryOutput]
|
|
230
|
+
def query_id: () -> ::String
|
|
231
|
+
end
|
|
232
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/InternetMonitor/Client.html#start_query-instance_method
|
|
233
|
+
def start_query: (
|
|
234
|
+
monitor_name: ::String,
|
|
235
|
+
start_time: ::Time,
|
|
236
|
+
end_time: ::Time,
|
|
237
|
+
query_type: ("MEASUREMENTS" | "TOP_LOCATIONS" | "TOP_LOCATION_DETAILS"),
|
|
238
|
+
?filter_parameters: Array[
|
|
239
|
+
{
|
|
240
|
+
field: ::String?,
|
|
241
|
+
operator: ("EQUALS" | "NOT_EQUALS")?,
|
|
242
|
+
values: Array[::String]?
|
|
243
|
+
},
|
|
244
|
+
]
|
|
245
|
+
) -> _StartQueryResponseSuccess
|
|
246
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartQueryResponseSuccess
|
|
247
|
+
|
|
248
|
+
interface _StopQueryResponseSuccess
|
|
249
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopQueryOutput]
|
|
250
|
+
end
|
|
251
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/InternetMonitor/Client.html#stop_query-instance_method
|
|
252
|
+
def stop_query: (
|
|
253
|
+
monitor_name: ::String,
|
|
254
|
+
query_id: ::String
|
|
255
|
+
) -> _StopQueryResponseSuccess
|
|
256
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopQueryResponseSuccess
|
|
257
|
+
|
|
258
|
+
interface _TagResourceResponseSuccess
|
|
259
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceOutput]
|
|
260
|
+
end
|
|
261
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/InternetMonitor/Client.html#tag_resource-instance_method
|
|
262
|
+
def tag_resource: (
|
|
263
|
+
resource_arn: ::String,
|
|
264
|
+
tags: Hash[::String, ::String]
|
|
265
|
+
) -> _TagResourceResponseSuccess
|
|
266
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
|
267
|
+
|
|
268
|
+
interface _UntagResourceResponseSuccess
|
|
269
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceOutput]
|
|
270
|
+
end
|
|
271
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/InternetMonitor/Client.html#untag_resource-instance_method
|
|
272
|
+
def untag_resource: (
|
|
273
|
+
resource_arn: ::String,
|
|
274
|
+
tag_keys: Array[::String]
|
|
275
|
+
) -> _UntagResourceResponseSuccess
|
|
276
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
|
277
|
+
|
|
278
|
+
interface _UpdateMonitorResponseSuccess
|
|
279
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateMonitorOutput]
|
|
280
|
+
def monitor_arn: () -> ::String
|
|
281
|
+
def status: () -> ("PENDING" | "ACTIVE" | "INACTIVE" | "ERROR")
|
|
282
|
+
end
|
|
283
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/InternetMonitor/Client.html#update_monitor-instance_method
|
|
284
|
+
def update_monitor: (
|
|
285
|
+
monitor_name: ::String,
|
|
286
|
+
?resources_to_add: Array[::String],
|
|
287
|
+
?resources_to_remove: Array[::String],
|
|
288
|
+
?status: ("PENDING" | "ACTIVE" | "INACTIVE" | "ERROR"),
|
|
289
|
+
?client_token: ::String,
|
|
290
|
+
?max_city_networks_to_monitor: ::Integer,
|
|
291
|
+
?internet_measurements_log_delivery: {
|
|
292
|
+
s3_config: {
|
|
293
|
+
bucket_name: ::String?,
|
|
294
|
+
bucket_prefix: ::String?,
|
|
295
|
+
log_delivery_status: ("ENABLED" | "DISABLED")?
|
|
296
|
+
}?
|
|
297
|
+
},
|
|
298
|
+
?traffic_percentage_to_monitor: ::Integer,
|
|
299
|
+
?health_events_config: {
|
|
300
|
+
availability_score_threshold: ::Float?,
|
|
301
|
+
performance_score_threshold: ::Float?,
|
|
302
|
+
availability_local_health_events_config: {
|
|
303
|
+
status: ("ENABLED" | "DISABLED")?,
|
|
304
|
+
health_score_threshold: ::Float?,
|
|
305
|
+
min_traffic_impact: ::Float?
|
|
306
|
+
}?,
|
|
307
|
+
performance_local_health_events_config: {
|
|
308
|
+
status: ("ENABLED" | "DISABLED")?,
|
|
309
|
+
health_score_threshold: ::Float?,
|
|
310
|
+
min_traffic_impact: ::Float?
|
|
311
|
+
}?
|
|
312
|
+
}
|
|
313
|
+
) -> _UpdateMonitorResponseSuccess
|
|
314
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMonitorResponseSuccess
|
|
315
|
+
end
|
|
316
|
+
end
|
|
317
|
+
end
|
|
318
|
+
|
data/sig/errors.rbs
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
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 InternetMonitor
|
|
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 BadRequestException < ::Aws::Errors::ServiceError
|
|
18
|
+
def message: () -> ::String
|
|
19
|
+
end
|
|
20
|
+
class ConflictException < ::Aws::Errors::ServiceError
|
|
21
|
+
def message: () -> ::String
|
|
22
|
+
end
|
|
23
|
+
class InternalServerErrorException < ::Aws::Errors::ServiceError
|
|
24
|
+
def message: () -> ::String
|
|
25
|
+
end
|
|
26
|
+
class InternalServerException < ::Aws::Errors::ServiceError
|
|
27
|
+
def message: () -> ::String
|
|
28
|
+
end
|
|
29
|
+
class LimitExceededException < ::Aws::Errors::ServiceError
|
|
30
|
+
def message: () -> ::String
|
|
31
|
+
end
|
|
32
|
+
class NotFoundException < ::Aws::Errors::ServiceError
|
|
33
|
+
def message: () -> ::String
|
|
34
|
+
end
|
|
35
|
+
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
|
36
|
+
def message: () -> ::String
|
|
37
|
+
end
|
|
38
|
+
class ThrottlingException < ::Aws::Errors::ServiceError
|
|
39
|
+
def message: () -> ::String
|
|
40
|
+
end
|
|
41
|
+
class TooManyRequestsException < ::Aws::Errors::ServiceError
|
|
42
|
+
def message: () -> ::String
|
|
43
|
+
end
|
|
44
|
+
class ValidationException < ::Aws::Errors::ServiceError
|
|
45
|
+
def message: () -> ::String
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
end
|
|
49
|
+
end
|
data/sig/resource.rbs
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
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 InternetMonitor
|
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/InternetMonitor/Resource.html
|
|
11
|
+
class Resource
|
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/InternetMonitor/Resource.html#initialize-instance_method
|
|
13
|
+
def initialize: (
|
|
14
|
+
?client: Client,
|
|
15
|
+
?credentials: untyped,
|
|
16
|
+
?region: String,
|
|
17
|
+
?access_key_id: String,
|
|
18
|
+
?active_endpoint_cache: bool,
|
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
|
20
|
+
?client_side_monitoring: bool,
|
|
21
|
+
?client_side_monitoring_client_id: String,
|
|
22
|
+
?client_side_monitoring_host: String,
|
|
23
|
+
?client_side_monitoring_port: Integer,
|
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
|
25
|
+
?convert_params: bool,
|
|
26
|
+
?correct_clock_skew: bool,
|
|
27
|
+
?defaults_mode: String,
|
|
28
|
+
?disable_host_prefix_injection: bool,
|
|
29
|
+
?disable_request_compression: bool,
|
|
30
|
+
?endpoint: String,
|
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
|
34
|
+
?endpoint_discovery: bool,
|
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
|
36
|
+
?log_formatter: untyped,
|
|
37
|
+
?log_level: Symbol,
|
|
38
|
+
?logger: untyped,
|
|
39
|
+
?max_attempts: Integer,
|
|
40
|
+
?profile: String,
|
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
|
42
|
+
?retry_backoff: Proc,
|
|
43
|
+
?retry_base_delay: Float,
|
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
|
45
|
+
?retry_limit: Integer,
|
|
46
|
+
?retry_max_delay: Integer,
|
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
|
48
|
+
?sdk_ua_app_id: String,
|
|
49
|
+
?secret_access_key: String,
|
|
50
|
+
?session_token: String,
|
|
51
|
+
?stub_responses: untyped,
|
|
52
|
+
?token_provider: untyped,
|
|
53
|
+
?use_dualstack_endpoint: bool,
|
|
54
|
+
?use_fips_endpoint: bool,
|
|
55
|
+
?validate_params: bool,
|
|
56
|
+
?endpoint_provider: untyped,
|
|
57
|
+
?http_proxy: String,
|
|
58
|
+
?http_open_timeout: (Float | Integer),
|
|
59
|
+
?http_read_timeout: (Float | Integer),
|
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
|
63
|
+
?http_wire_trace: bool,
|
|
64
|
+
?ssl_verify_peer: bool,
|
|
65
|
+
?ssl_ca_bundle: String,
|
|
66
|
+
?ssl_ca_directory: String,
|
|
67
|
+
?ssl_ca_store: String,
|
|
68
|
+
?on_chunk_received: Proc,
|
|
69
|
+
?on_chunk_sent: Proc,
|
|
70
|
+
?raise_response_errors: bool
|
|
71
|
+
) -> void
|
|
72
|
+
| (?Hash[Symbol, untyped]) -> void
|
|
73
|
+
|
|
74
|
+
def client: () -> Client
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
end
|
|
78
|
+
end
|
|
79
|
+
end
|
data/sig/types.rbs
ADDED
|
@@ -0,0 +1,382 @@
|
|
|
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::InternetMonitor
|
|
9
|
+
module Types
|
|
10
|
+
|
|
11
|
+
class AccessDeniedException
|
|
12
|
+
attr_accessor message: ::String
|
|
13
|
+
SENSITIVE: []
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
class AvailabilityMeasurement
|
|
17
|
+
attr_accessor experience_score: ::Float
|
|
18
|
+
attr_accessor percent_of_total_traffic_impacted: ::Float
|
|
19
|
+
attr_accessor percent_of_client_location_impacted: ::Float
|
|
20
|
+
SENSITIVE: []
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
class BadRequestException
|
|
24
|
+
attr_accessor message: ::String
|
|
25
|
+
SENSITIVE: []
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
class ConflictException
|
|
29
|
+
attr_accessor message: ::String
|
|
30
|
+
SENSITIVE: []
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
class CreateMonitorInput
|
|
34
|
+
attr_accessor monitor_name: ::String
|
|
35
|
+
attr_accessor resources: ::Array[::String]
|
|
36
|
+
attr_accessor client_token: ::String
|
|
37
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
38
|
+
attr_accessor max_city_networks_to_monitor: ::Integer
|
|
39
|
+
attr_accessor internet_measurements_log_delivery: Types::InternetMeasurementsLogDelivery
|
|
40
|
+
attr_accessor traffic_percentage_to_monitor: ::Integer
|
|
41
|
+
attr_accessor health_events_config: Types::HealthEventsConfig
|
|
42
|
+
SENSITIVE: []
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
class CreateMonitorOutput
|
|
46
|
+
attr_accessor arn: ::String
|
|
47
|
+
attr_accessor status: ("PENDING" | "ACTIVE" | "INACTIVE" | "ERROR")
|
|
48
|
+
SENSITIVE: []
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
class DeleteMonitorInput
|
|
52
|
+
attr_accessor monitor_name: ::String
|
|
53
|
+
SENSITIVE: []
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
class DeleteMonitorOutput < Aws::EmptyStructure
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
class FilterParameter
|
|
60
|
+
attr_accessor field: ::String
|
|
61
|
+
attr_accessor operator: ("EQUALS" | "NOT_EQUALS")
|
|
62
|
+
attr_accessor values: ::Array[::String]
|
|
63
|
+
SENSITIVE: []
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
class GetHealthEventInput
|
|
67
|
+
attr_accessor monitor_name: ::String
|
|
68
|
+
attr_accessor event_id: ::String
|
|
69
|
+
SENSITIVE: []
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
class GetHealthEventOutput
|
|
73
|
+
attr_accessor event_arn: ::String
|
|
74
|
+
attr_accessor event_id: ::String
|
|
75
|
+
attr_accessor started_at: ::Time
|
|
76
|
+
attr_accessor ended_at: ::Time
|
|
77
|
+
attr_accessor created_at: ::Time
|
|
78
|
+
attr_accessor last_updated_at: ::Time
|
|
79
|
+
attr_accessor impacted_locations: ::Array[Types::ImpactedLocation]
|
|
80
|
+
attr_accessor status: ("ACTIVE" | "RESOLVED")
|
|
81
|
+
attr_accessor percent_of_total_traffic_impacted: ::Float
|
|
82
|
+
attr_accessor impact_type: ("AVAILABILITY" | "PERFORMANCE" | "LOCAL_AVAILABILITY" | "LOCAL_PERFORMANCE")
|
|
83
|
+
attr_accessor health_score_threshold: ::Float
|
|
84
|
+
SENSITIVE: []
|
|
85
|
+
end
|
|
86
|
+
|
|
87
|
+
class GetMonitorInput
|
|
88
|
+
attr_accessor monitor_name: ::String
|
|
89
|
+
SENSITIVE: []
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
class GetMonitorOutput
|
|
93
|
+
attr_accessor monitor_name: ::String
|
|
94
|
+
attr_accessor monitor_arn: ::String
|
|
95
|
+
attr_accessor resources: ::Array[::String]
|
|
96
|
+
attr_accessor status: ("PENDING" | "ACTIVE" | "INACTIVE" | "ERROR")
|
|
97
|
+
attr_accessor created_at: ::Time
|
|
98
|
+
attr_accessor modified_at: ::Time
|
|
99
|
+
attr_accessor processing_status: ("OK" | "INACTIVE" | "COLLECTING_DATA" | "INSUFFICIENT_DATA" | "FAULT_SERVICE" | "FAULT_ACCESS_CLOUDWATCH")
|
|
100
|
+
attr_accessor processing_status_info: ::String
|
|
101
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
102
|
+
attr_accessor max_city_networks_to_monitor: ::Integer
|
|
103
|
+
attr_accessor internet_measurements_log_delivery: Types::InternetMeasurementsLogDelivery
|
|
104
|
+
attr_accessor traffic_percentage_to_monitor: ::Integer
|
|
105
|
+
attr_accessor health_events_config: Types::HealthEventsConfig
|
|
106
|
+
SENSITIVE: []
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
class GetQueryResultsInput
|
|
110
|
+
attr_accessor monitor_name: ::String
|
|
111
|
+
attr_accessor query_id: ::String
|
|
112
|
+
attr_accessor next_token: ::String
|
|
113
|
+
attr_accessor max_results: ::Integer
|
|
114
|
+
SENSITIVE: []
|
|
115
|
+
end
|
|
116
|
+
|
|
117
|
+
class GetQueryResultsOutput
|
|
118
|
+
attr_accessor fields: ::Array[Types::QueryField]
|
|
119
|
+
attr_accessor data: ::Array[::Array[::String]]
|
|
120
|
+
attr_accessor next_token: ::String
|
|
121
|
+
SENSITIVE: []
|
|
122
|
+
end
|
|
123
|
+
|
|
124
|
+
class GetQueryStatusInput
|
|
125
|
+
attr_accessor monitor_name: ::String
|
|
126
|
+
attr_accessor query_id: ::String
|
|
127
|
+
SENSITIVE: []
|
|
128
|
+
end
|
|
129
|
+
|
|
130
|
+
class GetQueryStatusOutput
|
|
131
|
+
attr_accessor status: ("QUEUED" | "RUNNING" | "SUCCEEDED" | "FAILED" | "CANCELED")
|
|
132
|
+
SENSITIVE: []
|
|
133
|
+
end
|
|
134
|
+
|
|
135
|
+
class HealthEvent
|
|
136
|
+
attr_accessor event_arn: ::String
|
|
137
|
+
attr_accessor event_id: ::String
|
|
138
|
+
attr_accessor started_at: ::Time
|
|
139
|
+
attr_accessor ended_at: ::Time
|
|
140
|
+
attr_accessor created_at: ::Time
|
|
141
|
+
attr_accessor last_updated_at: ::Time
|
|
142
|
+
attr_accessor impacted_locations: ::Array[Types::ImpactedLocation]
|
|
143
|
+
attr_accessor status: ("ACTIVE" | "RESOLVED")
|
|
144
|
+
attr_accessor percent_of_total_traffic_impacted: ::Float
|
|
145
|
+
attr_accessor impact_type: ("AVAILABILITY" | "PERFORMANCE" | "LOCAL_AVAILABILITY" | "LOCAL_PERFORMANCE")
|
|
146
|
+
attr_accessor health_score_threshold: ::Float
|
|
147
|
+
SENSITIVE: []
|
|
148
|
+
end
|
|
149
|
+
|
|
150
|
+
class HealthEventsConfig
|
|
151
|
+
attr_accessor availability_score_threshold: ::Float
|
|
152
|
+
attr_accessor performance_score_threshold: ::Float
|
|
153
|
+
attr_accessor availability_local_health_events_config: Types::LocalHealthEventsConfig
|
|
154
|
+
attr_accessor performance_local_health_events_config: Types::LocalHealthEventsConfig
|
|
155
|
+
SENSITIVE: []
|
|
156
|
+
end
|
|
157
|
+
|
|
158
|
+
class ImpactedLocation
|
|
159
|
+
attr_accessor as_name: ::String
|
|
160
|
+
attr_accessor as_number: ::Integer
|
|
161
|
+
attr_accessor country: ::String
|
|
162
|
+
attr_accessor subdivision: ::String
|
|
163
|
+
attr_accessor metro: ::String
|
|
164
|
+
attr_accessor city: ::String
|
|
165
|
+
attr_accessor latitude: ::Float
|
|
166
|
+
attr_accessor longitude: ::Float
|
|
167
|
+
attr_accessor country_code: ::String
|
|
168
|
+
attr_accessor subdivision_code: ::String
|
|
169
|
+
attr_accessor service_location: ::String
|
|
170
|
+
attr_accessor status: ("ACTIVE" | "RESOLVED")
|
|
171
|
+
attr_accessor caused_by: Types::NetworkImpairment
|
|
172
|
+
attr_accessor internet_health: Types::InternetHealth
|
|
173
|
+
SENSITIVE: []
|
|
174
|
+
end
|
|
175
|
+
|
|
176
|
+
class InternalServerErrorException
|
|
177
|
+
attr_accessor message: ::String
|
|
178
|
+
SENSITIVE: []
|
|
179
|
+
end
|
|
180
|
+
|
|
181
|
+
class InternalServerException
|
|
182
|
+
attr_accessor message: ::String
|
|
183
|
+
SENSITIVE: []
|
|
184
|
+
end
|
|
185
|
+
|
|
186
|
+
class InternetHealth
|
|
187
|
+
attr_accessor availability: Types::AvailabilityMeasurement
|
|
188
|
+
attr_accessor performance: Types::PerformanceMeasurement
|
|
189
|
+
SENSITIVE: []
|
|
190
|
+
end
|
|
191
|
+
|
|
192
|
+
class InternetMeasurementsLogDelivery
|
|
193
|
+
attr_accessor s3_config: Types::S3Config
|
|
194
|
+
SENSITIVE: []
|
|
195
|
+
end
|
|
196
|
+
|
|
197
|
+
class LimitExceededException
|
|
198
|
+
attr_accessor message: ::String
|
|
199
|
+
SENSITIVE: []
|
|
200
|
+
end
|
|
201
|
+
|
|
202
|
+
class ListHealthEventsInput
|
|
203
|
+
attr_accessor monitor_name: ::String
|
|
204
|
+
attr_accessor start_time: ::Time
|
|
205
|
+
attr_accessor end_time: ::Time
|
|
206
|
+
attr_accessor next_token: ::String
|
|
207
|
+
attr_accessor max_results: ::Integer
|
|
208
|
+
attr_accessor event_status: ("ACTIVE" | "RESOLVED")
|
|
209
|
+
SENSITIVE: []
|
|
210
|
+
end
|
|
211
|
+
|
|
212
|
+
class ListHealthEventsOutput
|
|
213
|
+
attr_accessor health_events: ::Array[Types::HealthEvent]
|
|
214
|
+
attr_accessor next_token: ::String
|
|
215
|
+
SENSITIVE: []
|
|
216
|
+
end
|
|
217
|
+
|
|
218
|
+
class ListMonitorsInput
|
|
219
|
+
attr_accessor next_token: ::String
|
|
220
|
+
attr_accessor max_results: ::Integer
|
|
221
|
+
attr_accessor monitor_status: ::String
|
|
222
|
+
SENSITIVE: []
|
|
223
|
+
end
|
|
224
|
+
|
|
225
|
+
class ListMonitorsOutput
|
|
226
|
+
attr_accessor monitors: ::Array[Types::Monitor]
|
|
227
|
+
attr_accessor next_token: ::String
|
|
228
|
+
SENSITIVE: []
|
|
229
|
+
end
|
|
230
|
+
|
|
231
|
+
class ListTagsForResourceInput
|
|
232
|
+
attr_accessor resource_arn: ::String
|
|
233
|
+
SENSITIVE: []
|
|
234
|
+
end
|
|
235
|
+
|
|
236
|
+
class ListTagsForResourceOutput
|
|
237
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
238
|
+
SENSITIVE: []
|
|
239
|
+
end
|
|
240
|
+
|
|
241
|
+
class LocalHealthEventsConfig
|
|
242
|
+
attr_accessor status: ("ENABLED" | "DISABLED")
|
|
243
|
+
attr_accessor health_score_threshold: ::Float
|
|
244
|
+
attr_accessor min_traffic_impact: ::Float
|
|
245
|
+
SENSITIVE: []
|
|
246
|
+
end
|
|
247
|
+
|
|
248
|
+
class Monitor
|
|
249
|
+
attr_accessor monitor_name: ::String
|
|
250
|
+
attr_accessor monitor_arn: ::String
|
|
251
|
+
attr_accessor status: ("PENDING" | "ACTIVE" | "INACTIVE" | "ERROR")
|
|
252
|
+
attr_accessor processing_status: ("OK" | "INACTIVE" | "COLLECTING_DATA" | "INSUFFICIENT_DATA" | "FAULT_SERVICE" | "FAULT_ACCESS_CLOUDWATCH")
|
|
253
|
+
SENSITIVE: []
|
|
254
|
+
end
|
|
255
|
+
|
|
256
|
+
class Network
|
|
257
|
+
attr_accessor as_name: ::String
|
|
258
|
+
attr_accessor as_number: ::Integer
|
|
259
|
+
SENSITIVE: []
|
|
260
|
+
end
|
|
261
|
+
|
|
262
|
+
class NetworkImpairment
|
|
263
|
+
attr_accessor networks: ::Array[Types::Network]
|
|
264
|
+
attr_accessor as_path: ::Array[Types::Network]
|
|
265
|
+
attr_accessor network_event_type: ("AWS" | "Internet")
|
|
266
|
+
SENSITIVE: []
|
|
267
|
+
end
|
|
268
|
+
|
|
269
|
+
class NotFoundException
|
|
270
|
+
attr_accessor message: ::String
|
|
271
|
+
SENSITIVE: []
|
|
272
|
+
end
|
|
273
|
+
|
|
274
|
+
class PerformanceMeasurement
|
|
275
|
+
attr_accessor experience_score: ::Float
|
|
276
|
+
attr_accessor percent_of_total_traffic_impacted: ::Float
|
|
277
|
+
attr_accessor percent_of_client_location_impacted: ::Float
|
|
278
|
+
attr_accessor round_trip_time: Types::RoundTripTime
|
|
279
|
+
SENSITIVE: []
|
|
280
|
+
end
|
|
281
|
+
|
|
282
|
+
class QueryField
|
|
283
|
+
attr_accessor name: ::String
|
|
284
|
+
attr_accessor type: ::String
|
|
285
|
+
SENSITIVE: []
|
|
286
|
+
end
|
|
287
|
+
|
|
288
|
+
class ResourceNotFoundException
|
|
289
|
+
attr_accessor message: ::String
|
|
290
|
+
SENSITIVE: []
|
|
291
|
+
end
|
|
292
|
+
|
|
293
|
+
class RoundTripTime
|
|
294
|
+
attr_accessor p50: ::Float
|
|
295
|
+
attr_accessor p90: ::Float
|
|
296
|
+
attr_accessor p95: ::Float
|
|
297
|
+
SENSITIVE: []
|
|
298
|
+
end
|
|
299
|
+
|
|
300
|
+
class S3Config
|
|
301
|
+
attr_accessor bucket_name: ::String
|
|
302
|
+
attr_accessor bucket_prefix: ::String
|
|
303
|
+
attr_accessor log_delivery_status: ("ENABLED" | "DISABLED")
|
|
304
|
+
SENSITIVE: []
|
|
305
|
+
end
|
|
306
|
+
|
|
307
|
+
class StartQueryInput
|
|
308
|
+
attr_accessor monitor_name: ::String
|
|
309
|
+
attr_accessor start_time: ::Time
|
|
310
|
+
attr_accessor end_time: ::Time
|
|
311
|
+
attr_accessor query_type: ("MEASUREMENTS" | "TOP_LOCATIONS" | "TOP_LOCATION_DETAILS")
|
|
312
|
+
attr_accessor filter_parameters: ::Array[Types::FilterParameter]
|
|
313
|
+
SENSITIVE: []
|
|
314
|
+
end
|
|
315
|
+
|
|
316
|
+
class StartQueryOutput
|
|
317
|
+
attr_accessor query_id: ::String
|
|
318
|
+
SENSITIVE: []
|
|
319
|
+
end
|
|
320
|
+
|
|
321
|
+
class StopQueryInput
|
|
322
|
+
attr_accessor monitor_name: ::String
|
|
323
|
+
attr_accessor query_id: ::String
|
|
324
|
+
SENSITIVE: []
|
|
325
|
+
end
|
|
326
|
+
|
|
327
|
+
class StopQueryOutput < Aws::EmptyStructure
|
|
328
|
+
end
|
|
329
|
+
|
|
330
|
+
class TagResourceInput
|
|
331
|
+
attr_accessor resource_arn: ::String
|
|
332
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
333
|
+
SENSITIVE: []
|
|
334
|
+
end
|
|
335
|
+
|
|
336
|
+
class TagResourceOutput < Aws::EmptyStructure
|
|
337
|
+
end
|
|
338
|
+
|
|
339
|
+
class ThrottlingException
|
|
340
|
+
attr_accessor message: ::String
|
|
341
|
+
SENSITIVE: []
|
|
342
|
+
end
|
|
343
|
+
|
|
344
|
+
class TooManyRequestsException
|
|
345
|
+
attr_accessor message: ::String
|
|
346
|
+
SENSITIVE: []
|
|
347
|
+
end
|
|
348
|
+
|
|
349
|
+
class UntagResourceInput
|
|
350
|
+
attr_accessor resource_arn: ::String
|
|
351
|
+
attr_accessor tag_keys: ::Array[::String]
|
|
352
|
+
SENSITIVE: []
|
|
353
|
+
end
|
|
354
|
+
|
|
355
|
+
class UntagResourceOutput < Aws::EmptyStructure
|
|
356
|
+
end
|
|
357
|
+
|
|
358
|
+
class UpdateMonitorInput
|
|
359
|
+
attr_accessor monitor_name: ::String
|
|
360
|
+
attr_accessor resources_to_add: ::Array[::String]
|
|
361
|
+
attr_accessor resources_to_remove: ::Array[::String]
|
|
362
|
+
attr_accessor status: ("PENDING" | "ACTIVE" | "INACTIVE" | "ERROR")
|
|
363
|
+
attr_accessor client_token: ::String
|
|
364
|
+
attr_accessor max_city_networks_to_monitor: ::Integer
|
|
365
|
+
attr_accessor internet_measurements_log_delivery: Types::InternetMeasurementsLogDelivery
|
|
366
|
+
attr_accessor traffic_percentage_to_monitor: ::Integer
|
|
367
|
+
attr_accessor health_events_config: Types::HealthEventsConfig
|
|
368
|
+
SENSITIVE: []
|
|
369
|
+
end
|
|
370
|
+
|
|
371
|
+
class UpdateMonitorOutput
|
|
372
|
+
attr_accessor monitor_arn: ::String
|
|
373
|
+
attr_accessor status: ("PENDING" | "ACTIVE" | "INACTIVE" | "ERROR")
|
|
374
|
+
SENSITIVE: []
|
|
375
|
+
end
|
|
376
|
+
|
|
377
|
+
class ValidationException
|
|
378
|
+
attr_accessor message: ::String
|
|
379
|
+
SENSITIVE: []
|
|
380
|
+
end
|
|
381
|
+
end
|
|
382
|
+
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 InternetMonitor
|
|
10
|
+
module Waiters
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-internetmonitor
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.14.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-01-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '3'
|
|
20
20
|
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 3.
|
|
22
|
+
version: 3.191.0
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '3'
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 3.
|
|
32
|
+
version: 3.191.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -67,13 +67,18 @@ files:
|
|
|
67
67
|
- lib/aws-sdk-internetmonitor/resource.rb
|
|
68
68
|
- lib/aws-sdk-internetmonitor/types.rb
|
|
69
69
|
- lib/aws-sdk-internetmonitor/waiters.rb
|
|
70
|
+
- sig/client.rbs
|
|
71
|
+
- sig/errors.rbs
|
|
72
|
+
- sig/resource.rbs
|
|
73
|
+
- sig/types.rbs
|
|
74
|
+
- sig/waiters.rbs
|
|
70
75
|
homepage: https://github.com/aws/aws-sdk-ruby
|
|
71
76
|
licenses:
|
|
72
77
|
- Apache-2.0
|
|
73
78
|
metadata:
|
|
74
79
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-internetmonitor
|
|
75
80
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-internetmonitor/CHANGELOG.md
|
|
76
|
-
post_install_message:
|
|
81
|
+
post_install_message:
|
|
77
82
|
rdoc_options: []
|
|
78
83
|
require_paths:
|
|
79
84
|
- lib
|
|
@@ -88,8 +93,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
88
93
|
- !ruby/object:Gem::Version
|
|
89
94
|
version: '0'
|
|
90
95
|
requirements: []
|
|
91
|
-
rubygems_version: 3.
|
|
92
|
-
signing_key:
|
|
96
|
+
rubygems_version: 3.4.10
|
|
97
|
+
signing_key:
|
|
93
98
|
specification_version: 4
|
|
94
99
|
summary: AWS SDK for Ruby - Amazon CloudWatch Internet Monitor
|
|
95
100
|
test_files: []
|