aws-sdk-internetmonitor 1.23.0 → 1.25.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 +29 -3
- data/lib/aws-sdk-internetmonitor/client_api.rb +2 -1
- data/lib/aws-sdk-internetmonitor/types.rb +9 -0
- data/lib/aws-sdk-internetmonitor.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: da92ea23029c19e4bb0664862ba76c68c7c83319e3547ef9e483df68b859c724
|
4
|
+
data.tar.gz: 45182aae9aba38df15de4d71ff9bf265f83bab9b1e7c25a8e4c2404e21694bc8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef1860141e34ea1c031af2d103b38a2668bf167a8de2612feb2dabd335f095d87d5519ad598d276e5dd626993360b58411f46b7988a0bd0c84e2d4a7a72850c7
|
7
|
+
data.tar.gz: 52ee57cb9f00579089fa64bd8584c926f2a16987d261d6268187ecfb663733ac0a0b1cf0d002749986c1f9eb4e8837706208a025c559d4e50121278c8dd46d4a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.25.0 (2024-09-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.24.0 (2024-08-28)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Adds new querying types to show overall traffic suggestion information for monitors
|
13
|
+
|
4
14
|
1.23.0 (2024-07-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.25.0
|
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
|
32
32
|
require 'aws-sdk-core/plugins/request_compression.rb'
|
33
33
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
34
34
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
35
|
+
require 'aws-sdk-core/plugins/telemetry.rb'
|
35
36
|
require 'aws-sdk-core/plugins/sign.rb'
|
36
37
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
37
38
|
|
@@ -83,6 +84,7 @@ module Aws::InternetMonitor
|
|
83
84
|
add_plugin(Aws::Plugins::RequestCompression)
|
84
85
|
add_plugin(Aws::Plugins::DefaultsMode)
|
85
86
|
add_plugin(Aws::Plugins::RecursionDetection)
|
87
|
+
add_plugin(Aws::Plugins::Telemetry)
|
86
88
|
add_plugin(Aws::Plugins::Sign)
|
87
89
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
88
90
|
add_plugin(Aws::InternetMonitor::Plugins::Endpoints)
|
@@ -330,6 +332,16 @@ module Aws::InternetMonitor
|
|
330
332
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
331
333
|
# requests are made, and retries are disabled.
|
332
334
|
#
|
335
|
+
# @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
|
336
|
+
# Allows you to provide a telemetry provider, which is used to
|
337
|
+
# emit telemetry data. By default, uses `NoOpTelemetryProvider` which
|
338
|
+
# will not record or emit any telemetry data. The SDK supports the
|
339
|
+
# following telemetry providers:
|
340
|
+
#
|
341
|
+
# * OpenTelemetry (OTel) - To use the OTel provider, install and require the
|
342
|
+
# `opentelemetry-sdk` gem and then, pass in an instance of a
|
343
|
+
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
344
|
+
#
|
333
345
|
# @option options [Aws::TokenProvider] :token_provider
|
334
346
|
# A Bearer Token Provider. This can be an instance of any one of the
|
335
347
|
# following classes:
|
@@ -1290,6 +1302,15 @@ module Aws::InternetMonitor
|
|
1290
1302
|
# current configuration, and the best performing EC2 configuration, at
|
1291
1303
|
# 1 hour intervals.
|
1292
1304
|
#
|
1305
|
+
# * `OVERALL_TRAFFIC_SUGGESTIONS`: Provides TTFB, using a 30-day
|
1306
|
+
# weighted average, for all traffic in each Amazon Web Services
|
1307
|
+
# location that is monitored.
|
1308
|
+
#
|
1309
|
+
# * `OVERALL_TRAFFIC_SUGGESTIONS_DETAILS`: Provides TTFB, using a 30-day
|
1310
|
+
# weighted average, for each top location, for a proposed Amazon Web
|
1311
|
+
# Services location. Must provide a Amazon Web Services location to
|
1312
|
+
# search.
|
1313
|
+
#
|
1293
1314
|
# For lists of the fields returned with each query type and more
|
1294
1315
|
# information about how each type of query is performed, see [ Using the
|
1295
1316
|
# Amazon CloudWatch Internet Monitor query interface][1] in the Amazon
|
@@ -1336,7 +1357,7 @@ module Aws::InternetMonitor
|
|
1336
1357
|
# monitor_name: "ResourceName", # required
|
1337
1358
|
# start_time: Time.now, # required
|
1338
1359
|
# end_time: Time.now, # required
|
1339
|
-
# query_type: "MEASUREMENTS", # required, accepts MEASUREMENTS, TOP_LOCATIONS, TOP_LOCATION_DETAILS
|
1360
|
+
# query_type: "MEASUREMENTS", # required, accepts MEASUREMENTS, TOP_LOCATIONS, TOP_LOCATION_DETAILS, OVERALL_TRAFFIC_SUGGESTIONS, OVERALL_TRAFFIC_SUGGESTIONS_DETAILS
|
1340
1361
|
# filter_parameters: [
|
1341
1362
|
# {
|
1342
1363
|
# field: "String",
|
@@ -1595,14 +1616,19 @@ module Aws::InternetMonitor
|
|
1595
1616
|
# @api private
|
1596
1617
|
def build_request(operation_name, params = {})
|
1597
1618
|
handlers = @handlers.for(operation_name)
|
1619
|
+
tracer = config.telemetry_provider.tracer_provider.tracer(
|
1620
|
+
Aws::Telemetry.module_to_tracer_name('Aws::InternetMonitor')
|
1621
|
+
)
|
1598
1622
|
context = Seahorse::Client::RequestContext.new(
|
1599
1623
|
operation_name: operation_name,
|
1600
1624
|
operation: config.api.operation(operation_name),
|
1601
1625
|
client: self,
|
1602
1626
|
params: params,
|
1603
|
-
config: config
|
1627
|
+
config: config,
|
1628
|
+
tracer: tracer
|
1629
|
+
)
|
1604
1630
|
context[:gem_name] = 'aws-sdk-internetmonitor'
|
1605
|
-
context[:gem_version] = '1.
|
1631
|
+
context[:gem_version] = '1.25.0'
|
1606
1632
|
Seahorse::Client::Request.new(handlers, context)
|
1607
1633
|
end
|
1608
1634
|
|
@@ -473,9 +473,10 @@ module Aws::InternetMonitor
|
|
473
473
|
|
474
474
|
api.metadata = {
|
475
475
|
"apiVersion" => "2021-06-03",
|
476
|
+
"auth" => ["aws.auth#sigv4"],
|
476
477
|
"endpointPrefix" => "internetmonitor",
|
477
|
-
"jsonVersion" => "1.1",
|
478
478
|
"protocol" => "rest-json",
|
479
|
+
"protocols" => ["rest-json"],
|
479
480
|
"serviceFullName" => "Amazon CloudWatch Internet Monitor",
|
480
481
|
"serviceId" => "InternetMonitor",
|
481
482
|
"signatureVersion" => "v4",
|
@@ -1763,6 +1763,15 @@ module Aws::InternetMonitor
|
|
1763
1763
|
# current configuration, and the best performing EC2 configuration,
|
1764
1764
|
# at 1 hour intervals.
|
1765
1765
|
#
|
1766
|
+
# * `OVERALL_TRAFFIC_SUGGESTIONS`: Provides TTFB, using a 30-day
|
1767
|
+
# weighted average, for all traffic in each Amazon Web Services
|
1768
|
+
# location that is monitored.
|
1769
|
+
#
|
1770
|
+
# * `OVERALL_TRAFFIC_SUGGESTIONS_DETAILS`: Provides TTFB, using a
|
1771
|
+
# 30-day weighted average, for each top location, for a proposed
|
1772
|
+
# Amazon Web Services location. Must provide a Amazon Web Services
|
1773
|
+
# location to search.
|
1774
|
+
#
|
1766
1775
|
# For lists of the fields returned with each query type and more
|
1767
1776
|
# information about how each type of query is performed, see [ Using
|
1768
1777
|
# the Amazon CloudWatch Internet Monitor query interface][1] in the
|
data/sig/client.rbs
CHANGED
@@ -50,6 +50,7 @@ module Aws
|
|
50
50
|
?session_token: String,
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
52
52
|
?stub_responses: untyped,
|
53
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
53
54
|
?token_provider: untyped,
|
54
55
|
?use_dualstack_endpoint: bool,
|
55
56
|
?use_fips_endpoint: bool,
|
@@ -271,7 +272,7 @@ module Aws
|
|
271
272
|
monitor_name: ::String,
|
272
273
|
start_time: ::Time,
|
273
274
|
end_time: ::Time,
|
274
|
-
query_type: ("MEASUREMENTS" | "TOP_LOCATIONS" | "TOP_LOCATION_DETAILS"),
|
275
|
+
query_type: ("MEASUREMENTS" | "TOP_LOCATIONS" | "TOP_LOCATION_DETAILS" | "OVERALL_TRAFFIC_SUGGESTIONS" | "OVERALL_TRAFFIC_SUGGESTIONS_DETAILS"),
|
275
276
|
?filter_parameters: Array[
|
276
277
|
{
|
277
278
|
field: ::String?,
|
data/sig/resource.rbs
CHANGED
@@ -50,6 +50,7 @@ module Aws
|
|
50
50
|
?session_token: String,
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
52
52
|
?stub_responses: untyped,
|
53
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
53
54
|
?token_provider: untyped,
|
54
55
|
?use_dualstack_endpoint: bool,
|
55
56
|
?use_fips_endpoint: bool,
|
data/sig/types.rbs
CHANGED
@@ -368,7 +368,7 @@ module Aws::InternetMonitor
|
|
368
368
|
attr_accessor monitor_name: ::String
|
369
369
|
attr_accessor start_time: ::Time
|
370
370
|
attr_accessor end_time: ::Time
|
371
|
-
attr_accessor query_type: ("MEASUREMENTS" | "TOP_LOCATIONS" | "TOP_LOCATION_DETAILS")
|
371
|
+
attr_accessor query_type: ("MEASUREMENTS" | "TOP_LOCATIONS" | "TOP_LOCATION_DETAILS" | "OVERALL_TRAFFIC_SUGGESTIONS" | "OVERALL_TRAFFIC_SUGGESTIONS_DETAILS")
|
372
372
|
attr_accessor filter_parameters: ::Array[Types::FilterParameter]
|
373
373
|
attr_accessor linked_account_id: ::String
|
374
374
|
SENSITIVE: []
|
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.25.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-09-03 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.203.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,21 +29,21 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.203.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '1.
|
39
|
+
version: '1.5'
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '1.
|
46
|
+
version: '1.5'
|
47
47
|
description: Official AWS Ruby gem for Amazon CloudWatch Internet Monitor. This gem
|
48
48
|
is part of the AWS SDK for Ruby.
|
49
49
|
email:
|