aws-sdk-internetmonitor 1.22.0 → 1.24.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d389f9d1523984ddddf9c6cff6d5054346afb8bae4a4b96fd0f9be05b0ff402e
4
- data.tar.gz: f51cfe5e9efa00f719a79d1ff8be7d3e2f7cc930eae2ac18d5330974e48381b4
3
+ metadata.gz: cb9623fb6fd282a118ea63a2ba238ab405f5f1f8fd8a212ff2487c745e769e24
4
+ data.tar.gz: 59bae89a1ed2482cd59b466d8e8d901e0d95f493b2517ce8cc9d46a609ffa407
5
5
  SHA512:
6
- metadata.gz: 5b6f652c5bc1a04cb83d766625eecf29359e2ccd553cd6566372372fc100ffd058f78e1f508362773200a0489f540aea2ff5f064a00e9d6cd40ebd3a9a7ec164
7
- data.tar.gz: 11be99364a90e0a120029fb26e4244190c3ff364437a60570fcd8babf5f24ad1ca327b73a00c2a87d8b5ef8b144901c61618d2f07c071c3fb74bd9f142754aca
6
+ metadata.gz: 1e31cfae434eb11b1bdd87562daaded91b0d92a8db2fd2cc44e5e7238b9ebdd2f4498442439c8d5f37eb721cc0e3b91bbf2b0d0f7509f698b4ed2eb00042d779
7
+ data.tar.gz: 244173a3fcde694514834d81df0c8fa27b200f8aab7241c0f6c6c0f8036ace38c8e672380aeffef268c80fe12ac7c5ebe0cdcd4cdc42e560d57a153e6cf1b340
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.24.0 (2024-08-28)
5
+ ------------------
6
+
7
+ * Feature - Adds new querying types to show overall traffic suggestion information for monitors
8
+
9
+ 1.23.0 (2024-07-02)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.22.0 (2024-06-25)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.22.0
1
+ 1.24.0
@@ -312,6 +312,15 @@ module Aws::InternetMonitor
312
312
  #
313
313
  # @option options [String] :session_token
314
314
  #
315
+ # @option options [Array] :sigv4a_signing_region_set
316
+ # A list of regions that should be signed with SigV4a signing. When
317
+ # not passed, a default `:sigv4a_signing_region_set` is searched for
318
+ # in the following locations:
319
+ #
320
+ # * `Aws.config[:sigv4a_signing_region_set]`
321
+ # * `ENV['AWS_SIGV4A_SIGNING_REGION_SET']`
322
+ # * `~/.aws/config`
323
+ #
315
324
  # @option options [Boolean] :stub_responses (false)
316
325
  # Causes the client to return stubbed responses. By default
317
326
  # fake responses are generated and returned. You can specify
@@ -1281,6 +1290,15 @@ module Aws::InternetMonitor
1281
1290
  # current configuration, and the best performing EC2 configuration, at
1282
1291
  # 1 hour intervals.
1283
1292
  #
1293
+ # * `OVERALL_TRAFFIC_SUGGESTIONS`: Provides TTFB, using a 30-day
1294
+ # weighted average, for all traffic in each Amazon Web Services
1295
+ # location that is monitored.
1296
+ #
1297
+ # * `OVERALL_TRAFFIC_SUGGESTIONS_DETAILS`: Provides TTFB, using a 30-day
1298
+ # weighted average, for each top location, for a proposed Amazon Web
1299
+ # Services location. Must provide a Amazon Web Services location to
1300
+ # search.
1301
+ #
1284
1302
  # For lists of the fields returned with each query type and more
1285
1303
  # information about how each type of query is performed, see [ Using the
1286
1304
  # Amazon CloudWatch Internet Monitor query interface][1] in the Amazon
@@ -1327,7 +1345,7 @@ module Aws::InternetMonitor
1327
1345
  # monitor_name: "ResourceName", # required
1328
1346
  # start_time: Time.now, # required
1329
1347
  # end_time: Time.now, # required
1330
- # query_type: "MEASUREMENTS", # required, accepts MEASUREMENTS, TOP_LOCATIONS, TOP_LOCATION_DETAILS
1348
+ # query_type: "MEASUREMENTS", # required, accepts MEASUREMENTS, TOP_LOCATIONS, TOP_LOCATION_DETAILS, OVERALL_TRAFFIC_SUGGESTIONS, OVERALL_TRAFFIC_SUGGESTIONS_DETAILS
1331
1349
  # filter_parameters: [
1332
1350
  # {
1333
1351
  # field: "String",
@@ -1593,7 +1611,7 @@ module Aws::InternetMonitor
1593
1611
  params: params,
1594
1612
  config: config)
1595
1613
  context[:gem_name] = 'aws-sdk-internetmonitor'
1596
- context[:gem_version] = '1.22.0'
1614
+ context[:gem_version] = '1.24.0'
1597
1615
  Seahorse::Client::Request.new(handlers, context)
1598
1616
  end
1599
1617
 
@@ -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
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-internetmonitor/customizations'
53
53
  # @!group service
54
54
  module Aws::InternetMonitor
55
55
 
56
- GEM_VERSION = '1.22.0'
56
+ GEM_VERSION = '1.24.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -48,6 +48,7 @@ module Aws
48
48
  ?sdk_ua_app_id: String,
49
49
  ?secret_access_key: String,
50
50
  ?session_token: String,
51
+ ?sigv4a_signing_region_set: Array[String],
51
52
  ?stub_responses: untyped,
52
53
  ?token_provider: untyped,
53
54
  ?use_dualstack_endpoint: bool,
@@ -270,7 +271,7 @@ module Aws
270
271
  monitor_name: ::String,
271
272
  start_time: ::Time,
272
273
  end_time: ::Time,
273
- query_type: ("MEASUREMENTS" | "TOP_LOCATIONS" | "TOP_LOCATION_DETAILS"),
274
+ query_type: ("MEASUREMENTS" | "TOP_LOCATIONS" | "TOP_LOCATION_DETAILS" | "OVERALL_TRAFFIC_SUGGESTIONS" | "OVERALL_TRAFFIC_SUGGESTIONS_DETAILS"),
274
275
  ?filter_parameters: Array[
275
276
  {
276
277
  field: ::String?,
data/sig/resource.rbs CHANGED
@@ -48,6 +48,7 @@ module Aws
48
48
  ?sdk_ua_app_id: String,
49
49
  ?secret_access_key: String,
50
50
  ?session_token: String,
51
+ ?sigv4a_signing_region_set: Array[String],
51
52
  ?stub_responses: untyped,
52
53
  ?token_provider: untyped,
53
54
  ?use_dualstack_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.22.0
4
+ version: 1.24.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-06-25 00:00:00.000000000 Z
11
+ date: 2024-08-28 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.199.0
22
+ version: 3.201.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.199.0
32
+ version: 3.201.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.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.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: