aws-sdk-internetmonitor 1.13.0 → 1.15.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-internetmonitor/client.rb +14 -4
- data/lib/aws-sdk-internetmonitor/client_api.rb +4 -0
- data/lib/aws-sdk-internetmonitor/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-internetmonitor/types.rb +17 -5
- 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 +383 -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: 3a86235b5a7ba570ba63f301f721092a502e75dff135c76cdd4a8ae3d48f7c7c
|
4
|
+
data.tar.gz: 6d2c00996a373bb35ebf0ce837265e34b9df314819af442fac363f09d7387e3e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eed983dccdf693e901959d6488430a0a78fe7523363cdb4bac7e5ff50a0a564b251d2200d61dc34ff0ef8158f291216abdaf8e9e37a62a675d20e8b55926f37e
|
7
|
+
data.tar.gz: ffb3f71381ed71da95b03838832fda336944feadbadc1480a508500d93e586443b10e84582f7bbe68d9ca49b2a93295005368ba88a2583d679fe1baf6e13feca
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.15.0 (2024-02-22)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds IPv4 prefixes to health events
|
8
|
+
|
9
|
+
1.14.0 (2024-01-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.13.0 (2023-11-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.15.0
|
@@ -645,6 +645,8 @@ module Aws::InternetMonitor
|
|
645
645
|
# resp.impacted_locations[0].internet_health.performance.round_trip_time.p50 #=> Float
|
646
646
|
# resp.impacted_locations[0].internet_health.performance.round_trip_time.p90 #=> Float
|
647
647
|
# resp.impacted_locations[0].internet_health.performance.round_trip_time.p95 #=> Float
|
648
|
+
# resp.impacted_locations[0].ipv_4_prefixes #=> Array
|
649
|
+
# resp.impacted_locations[0].ipv_4_prefixes[0] #=> String
|
648
650
|
# resp.status #=> String, one of "ACTIVE", "RESOLVED"
|
649
651
|
# resp.percent_of_total_traffic_impacted #=> Float
|
650
652
|
# resp.impact_type #=> String, one of "AVAILABILITY", "PERFORMANCE", "LOCAL_AVAILABILITY", "LOCAL_PERFORMANCE"
|
@@ -919,6 +921,8 @@ module Aws::InternetMonitor
|
|
919
921
|
# resp.health_events[0].impacted_locations[0].internet_health.performance.round_trip_time.p50 #=> Float
|
920
922
|
# resp.health_events[0].impacted_locations[0].internet_health.performance.round_trip_time.p90 #=> Float
|
921
923
|
# resp.health_events[0].impacted_locations[0].internet_health.performance.round_trip_time.p95 #=> Float
|
924
|
+
# resp.health_events[0].impacted_locations[0].ipv_4_prefixes #=> Array
|
925
|
+
# resp.health_events[0].impacted_locations[0].ipv_4_prefixes[0] #=> String
|
922
926
|
# resp.health_events[0].status #=> String, one of "ACTIVE", "RESOLVED"
|
923
927
|
# resp.health_events[0].percent_of_total_traffic_impacted #=> Float
|
924
928
|
# resp.health_events[0].impact_type #=> String, one of "AVAILABILITY", "PERFORMANCE", "LOCAL_AVAILABILITY", "LOCAL_PERFORMANCE"
|
@@ -1047,11 +1051,17 @@ module Aws::InternetMonitor
|
|
1047
1051
|
# The type of query to run. The following are the three types of queries
|
1048
1052
|
# that you can run using the Internet Monitor query interface:
|
1049
1053
|
#
|
1050
|
-
# * `MEASUREMENTS`:
|
1054
|
+
# * `MEASUREMENTS`: Provides availability score, performance score,
|
1055
|
+
# total traffic, and round-trip times, at 5 minute intervals.
|
1051
1056
|
#
|
1052
|
-
# * `TOP_LOCATIONS`:
|
1057
|
+
# * `TOP_LOCATIONS`: Provides availability score, performance score,
|
1058
|
+
# total traffic, and time to first byte (TTFB) information, for the
|
1059
|
+
# top location and ASN combinations that you're monitoring, by
|
1060
|
+
# traffic volume.
|
1053
1061
|
#
|
1054
|
-
# * `TOP_LOCATION_DETAILS`:
|
1062
|
+
# * `TOP_LOCATION_DETAILS`: Provides TTFB for Amazon CloudFront, your
|
1063
|
+
# current configuration, and the best performing EC2 configuration, at
|
1064
|
+
# 1 hour intervals.
|
1055
1065
|
#
|
1056
1066
|
# For lists of the fields returned with each query type and more
|
1057
1067
|
# information about how each type of query is performed, see [ Using the
|
@@ -1352,7 +1362,7 @@ module Aws::InternetMonitor
|
|
1352
1362
|
params: params,
|
1353
1363
|
config: config)
|
1354
1364
|
context[:gem_name] = 'aws-sdk-internetmonitor'
|
1355
|
-
context[:gem_version] = '1.
|
1365
|
+
context[:gem_version] = '1.15.0'
|
1356
1366
|
Seahorse::Client::Request.new(handlers, context)
|
1357
1367
|
end
|
1358
1368
|
|
@@ -46,6 +46,7 @@ module Aws::InternetMonitor
|
|
46
46
|
InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
|
47
47
|
InternetHealth = Shapes::StructureShape.new(name: 'InternetHealth')
|
48
48
|
InternetMeasurementsLogDelivery = Shapes::StructureShape.new(name: 'InternetMeasurementsLogDelivery')
|
49
|
+
Ipv4PrefixList = Shapes::ListShape.new(name: 'Ipv4PrefixList')
|
49
50
|
LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
|
50
51
|
ListHealthEventsInput = Shapes::StructureShape.new(name: 'ListHealthEventsInput')
|
51
52
|
ListHealthEventsOutput = Shapes::StructureShape.new(name: 'ListHealthEventsOutput')
|
@@ -236,6 +237,7 @@ module Aws::InternetMonitor
|
|
236
237
|
ImpactedLocation.add_member(:status, Shapes::ShapeRef.new(shape: HealthEventStatus, required: true, location_name: "Status"))
|
237
238
|
ImpactedLocation.add_member(:caused_by, Shapes::ShapeRef.new(shape: NetworkImpairment, location_name: "CausedBy"))
|
238
239
|
ImpactedLocation.add_member(:internet_health, Shapes::ShapeRef.new(shape: InternetHealth, location_name: "InternetHealth"))
|
240
|
+
ImpactedLocation.add_member(:ipv_4_prefixes, Shapes::ShapeRef.new(shape: Ipv4PrefixList, location_name: "Ipv4Prefixes"))
|
239
241
|
ImpactedLocation.struct_class = Types::ImpactedLocation
|
240
242
|
|
241
243
|
ImpactedLocationsList.member = Shapes::ShapeRef.new(shape: ImpactedLocation)
|
@@ -253,6 +255,8 @@ module Aws::InternetMonitor
|
|
253
255
|
InternetMeasurementsLogDelivery.add_member(:s3_config, Shapes::ShapeRef.new(shape: S3Config, location_name: "S3Config"))
|
254
256
|
InternetMeasurementsLogDelivery.struct_class = Types::InternetMeasurementsLogDelivery
|
255
257
|
|
258
|
+
Ipv4PrefixList.member = Shapes::ShapeRef.new(shape: String)
|
259
|
+
|
256
260
|
LimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
257
261
|
LimitExceededException.struct_class = Types::LimitExceededException
|
258
262
|
|
@@ -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 '\
|
@@ -840,6 +840,11 @@ module Aws::InternetMonitor
|
|
840
840
|
# The calculated health at a specific location.
|
841
841
|
# @return [Types::InternetHealth]
|
842
842
|
#
|
843
|
+
# @!attribute [rw] ipv_4_prefixes
|
844
|
+
# The IPv4 prefixes at the client location that was impacted by the
|
845
|
+
# health event.
|
846
|
+
# @return [Array<String>]
|
847
|
+
#
|
843
848
|
# @see http://docs.aws.amazon.com/goto/WebAPI/internetmonitor-2021-06-03/ImpactedLocation AWS API Documentation
|
844
849
|
#
|
845
850
|
class ImpactedLocation < Struct.new(
|
@@ -856,7 +861,8 @@ module Aws::InternetMonitor
|
|
856
861
|
:service_location,
|
857
862
|
:status,
|
858
863
|
:caused_by,
|
859
|
-
:internet_health
|
864
|
+
:internet_health,
|
865
|
+
:ipv_4_prefixes)
|
860
866
|
SENSITIVE = []
|
861
867
|
include Aws::Structure
|
862
868
|
end
|
@@ -1143,7 +1149,7 @@ module Aws::InternetMonitor
|
|
1143
1149
|
# event when a threshold is crossed for a local health score.
|
1144
1150
|
#
|
1145
1151
|
# If you don't set a minimum traffic impact threshold, the default
|
1146
|
-
# value is 0.
|
1152
|
+
# value is 0.1%.
|
1147
1153
|
# @return [Float]
|
1148
1154
|
#
|
1149
1155
|
# @see http://docs.aws.amazon.com/goto/WebAPI/internetmonitor-2021-06-03/LocalHealthEventsConfig AWS API Documentation
|
@@ -1463,11 +1469,17 @@ module Aws::InternetMonitor
|
|
1463
1469
|
# The type of query to run. The following are the three types of
|
1464
1470
|
# queries that you can run using the Internet Monitor query interface:
|
1465
1471
|
#
|
1466
|
-
# * `MEASUREMENTS`:
|
1472
|
+
# * `MEASUREMENTS`: Provides availability score, performance score,
|
1473
|
+
# total traffic, and round-trip times, at 5 minute intervals.
|
1467
1474
|
#
|
1468
|
-
# * `TOP_LOCATIONS`:
|
1475
|
+
# * `TOP_LOCATIONS`: Provides availability score, performance score,
|
1476
|
+
# total traffic, and time to first byte (TTFB) information, for the
|
1477
|
+
# top location and ASN combinations that you're monitoring, by
|
1478
|
+
# traffic volume.
|
1469
1479
|
#
|
1470
|
-
# * `TOP_LOCATION_DETAILS`:
|
1480
|
+
# * `TOP_LOCATION_DETAILS`: Provides TTFB for Amazon CloudFront, your
|
1481
|
+
# current configuration, and the best performing EC2 configuration,
|
1482
|
+
# at 1 hour intervals.
|
1471
1483
|
#
|
1472
1484
|
# For lists of the fields returned with each query type and more
|
1473
1485
|
# information about how each type of query is performed, see [ Using
|
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,383 @@
|
|
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
|
+
attr_accessor ipv_4_prefixes: ::Array[::String]
|
174
|
+
SENSITIVE: []
|
175
|
+
end
|
176
|
+
|
177
|
+
class InternalServerErrorException
|
178
|
+
attr_accessor message: ::String
|
179
|
+
SENSITIVE: []
|
180
|
+
end
|
181
|
+
|
182
|
+
class InternalServerException
|
183
|
+
attr_accessor message: ::String
|
184
|
+
SENSITIVE: []
|
185
|
+
end
|
186
|
+
|
187
|
+
class InternetHealth
|
188
|
+
attr_accessor availability: Types::AvailabilityMeasurement
|
189
|
+
attr_accessor performance: Types::PerformanceMeasurement
|
190
|
+
SENSITIVE: []
|
191
|
+
end
|
192
|
+
|
193
|
+
class InternetMeasurementsLogDelivery
|
194
|
+
attr_accessor s3_config: Types::S3Config
|
195
|
+
SENSITIVE: []
|
196
|
+
end
|
197
|
+
|
198
|
+
class LimitExceededException
|
199
|
+
attr_accessor message: ::String
|
200
|
+
SENSITIVE: []
|
201
|
+
end
|
202
|
+
|
203
|
+
class ListHealthEventsInput
|
204
|
+
attr_accessor monitor_name: ::String
|
205
|
+
attr_accessor start_time: ::Time
|
206
|
+
attr_accessor end_time: ::Time
|
207
|
+
attr_accessor next_token: ::String
|
208
|
+
attr_accessor max_results: ::Integer
|
209
|
+
attr_accessor event_status: ("ACTIVE" | "RESOLVED")
|
210
|
+
SENSITIVE: []
|
211
|
+
end
|
212
|
+
|
213
|
+
class ListHealthEventsOutput
|
214
|
+
attr_accessor health_events: ::Array[Types::HealthEvent]
|
215
|
+
attr_accessor next_token: ::String
|
216
|
+
SENSITIVE: []
|
217
|
+
end
|
218
|
+
|
219
|
+
class ListMonitorsInput
|
220
|
+
attr_accessor next_token: ::String
|
221
|
+
attr_accessor max_results: ::Integer
|
222
|
+
attr_accessor monitor_status: ::String
|
223
|
+
SENSITIVE: []
|
224
|
+
end
|
225
|
+
|
226
|
+
class ListMonitorsOutput
|
227
|
+
attr_accessor monitors: ::Array[Types::Monitor]
|
228
|
+
attr_accessor next_token: ::String
|
229
|
+
SENSITIVE: []
|
230
|
+
end
|
231
|
+
|
232
|
+
class ListTagsForResourceInput
|
233
|
+
attr_accessor resource_arn: ::String
|
234
|
+
SENSITIVE: []
|
235
|
+
end
|
236
|
+
|
237
|
+
class ListTagsForResourceOutput
|
238
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
239
|
+
SENSITIVE: []
|
240
|
+
end
|
241
|
+
|
242
|
+
class LocalHealthEventsConfig
|
243
|
+
attr_accessor status: ("ENABLED" | "DISABLED")
|
244
|
+
attr_accessor health_score_threshold: ::Float
|
245
|
+
attr_accessor min_traffic_impact: ::Float
|
246
|
+
SENSITIVE: []
|
247
|
+
end
|
248
|
+
|
249
|
+
class Monitor
|
250
|
+
attr_accessor monitor_name: ::String
|
251
|
+
attr_accessor monitor_arn: ::String
|
252
|
+
attr_accessor status: ("PENDING" | "ACTIVE" | "INACTIVE" | "ERROR")
|
253
|
+
attr_accessor processing_status: ("OK" | "INACTIVE" | "COLLECTING_DATA" | "INSUFFICIENT_DATA" | "FAULT_SERVICE" | "FAULT_ACCESS_CLOUDWATCH")
|
254
|
+
SENSITIVE: []
|
255
|
+
end
|
256
|
+
|
257
|
+
class Network
|
258
|
+
attr_accessor as_name: ::String
|
259
|
+
attr_accessor as_number: ::Integer
|
260
|
+
SENSITIVE: []
|
261
|
+
end
|
262
|
+
|
263
|
+
class NetworkImpairment
|
264
|
+
attr_accessor networks: ::Array[Types::Network]
|
265
|
+
attr_accessor as_path: ::Array[Types::Network]
|
266
|
+
attr_accessor network_event_type: ("AWS" | "Internet")
|
267
|
+
SENSITIVE: []
|
268
|
+
end
|
269
|
+
|
270
|
+
class NotFoundException
|
271
|
+
attr_accessor message: ::String
|
272
|
+
SENSITIVE: []
|
273
|
+
end
|
274
|
+
|
275
|
+
class PerformanceMeasurement
|
276
|
+
attr_accessor experience_score: ::Float
|
277
|
+
attr_accessor percent_of_total_traffic_impacted: ::Float
|
278
|
+
attr_accessor percent_of_client_location_impacted: ::Float
|
279
|
+
attr_accessor round_trip_time: Types::RoundTripTime
|
280
|
+
SENSITIVE: []
|
281
|
+
end
|
282
|
+
|
283
|
+
class QueryField
|
284
|
+
attr_accessor name: ::String
|
285
|
+
attr_accessor type: ::String
|
286
|
+
SENSITIVE: []
|
287
|
+
end
|
288
|
+
|
289
|
+
class ResourceNotFoundException
|
290
|
+
attr_accessor message: ::String
|
291
|
+
SENSITIVE: []
|
292
|
+
end
|
293
|
+
|
294
|
+
class RoundTripTime
|
295
|
+
attr_accessor p50: ::Float
|
296
|
+
attr_accessor p90: ::Float
|
297
|
+
attr_accessor p95: ::Float
|
298
|
+
SENSITIVE: []
|
299
|
+
end
|
300
|
+
|
301
|
+
class S3Config
|
302
|
+
attr_accessor bucket_name: ::String
|
303
|
+
attr_accessor bucket_prefix: ::String
|
304
|
+
attr_accessor log_delivery_status: ("ENABLED" | "DISABLED")
|
305
|
+
SENSITIVE: []
|
306
|
+
end
|
307
|
+
|
308
|
+
class StartQueryInput
|
309
|
+
attr_accessor monitor_name: ::String
|
310
|
+
attr_accessor start_time: ::Time
|
311
|
+
attr_accessor end_time: ::Time
|
312
|
+
attr_accessor query_type: ("MEASUREMENTS" | "TOP_LOCATIONS" | "TOP_LOCATION_DETAILS")
|
313
|
+
attr_accessor filter_parameters: ::Array[Types::FilterParameter]
|
314
|
+
SENSITIVE: []
|
315
|
+
end
|
316
|
+
|
317
|
+
class StartQueryOutput
|
318
|
+
attr_accessor query_id: ::String
|
319
|
+
SENSITIVE: []
|
320
|
+
end
|
321
|
+
|
322
|
+
class StopQueryInput
|
323
|
+
attr_accessor monitor_name: ::String
|
324
|
+
attr_accessor query_id: ::String
|
325
|
+
SENSITIVE: []
|
326
|
+
end
|
327
|
+
|
328
|
+
class StopQueryOutput < Aws::EmptyStructure
|
329
|
+
end
|
330
|
+
|
331
|
+
class TagResourceInput
|
332
|
+
attr_accessor resource_arn: ::String
|
333
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
334
|
+
SENSITIVE: []
|
335
|
+
end
|
336
|
+
|
337
|
+
class TagResourceOutput < Aws::EmptyStructure
|
338
|
+
end
|
339
|
+
|
340
|
+
class ThrottlingException
|
341
|
+
attr_accessor message: ::String
|
342
|
+
SENSITIVE: []
|
343
|
+
end
|
344
|
+
|
345
|
+
class TooManyRequestsException
|
346
|
+
attr_accessor message: ::String
|
347
|
+
SENSITIVE: []
|
348
|
+
end
|
349
|
+
|
350
|
+
class UntagResourceInput
|
351
|
+
attr_accessor resource_arn: ::String
|
352
|
+
attr_accessor tag_keys: ::Array[::String]
|
353
|
+
SENSITIVE: []
|
354
|
+
end
|
355
|
+
|
356
|
+
class UntagResourceOutput < Aws::EmptyStructure
|
357
|
+
end
|
358
|
+
|
359
|
+
class UpdateMonitorInput
|
360
|
+
attr_accessor monitor_name: ::String
|
361
|
+
attr_accessor resources_to_add: ::Array[::String]
|
362
|
+
attr_accessor resources_to_remove: ::Array[::String]
|
363
|
+
attr_accessor status: ("PENDING" | "ACTIVE" | "INACTIVE" | "ERROR")
|
364
|
+
attr_accessor client_token: ::String
|
365
|
+
attr_accessor max_city_networks_to_monitor: ::Integer
|
366
|
+
attr_accessor internet_measurements_log_delivery: Types::InternetMeasurementsLogDelivery
|
367
|
+
attr_accessor traffic_percentage_to_monitor: ::Integer
|
368
|
+
attr_accessor health_events_config: Types::HealthEventsConfig
|
369
|
+
SENSITIVE: []
|
370
|
+
end
|
371
|
+
|
372
|
+
class UpdateMonitorOutput
|
373
|
+
attr_accessor monitor_arn: ::String
|
374
|
+
attr_accessor status: ("PENDING" | "ACTIVE" | "INACTIVE" | "ERROR")
|
375
|
+
SENSITIVE: []
|
376
|
+
end
|
377
|
+
|
378
|
+
class ValidationException
|
379
|
+
attr_accessor message: ::String
|
380
|
+
SENSITIVE: []
|
381
|
+
end
|
382
|
+
end
|
383
|
+
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.15.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-02-22 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: []
|