aws-sdk-internetmonitor 1.23.0 → 1.24.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5292b3761eba51192f7376e723f38ab2129515a5d27f01fc588c84063797e867
4
- data.tar.gz: beaefc389e6afa68638237f29d923ab9ac74c738318d65ea713c22ffde3289e4
3
+ metadata.gz: cb9623fb6fd282a118ea63a2ba238ab405f5f1f8fd8a212ff2487c745e769e24
4
+ data.tar.gz: 59bae89a1ed2482cd59b466d8e8d901e0d95f493b2517ce8cc9d46a609ffa407
5
5
  SHA512:
6
- metadata.gz: 0d2248d15b91c4a938098b7479523d380c63e4b37ea29569e470292eb473ac6946c8fa59780544fbd9bf66352b618aff88c26f57f475ee901960c472bd2584de
7
- data.tar.gz: 32d4a02f85e48060baf0710e4fd980ab2a3cfe9f1a7fa400d167df16feb7d26641b539283fcb9bc6e245aa307e6a06244270ed74e63cab287336a2f161525dc9
6
+ metadata.gz: 1e31cfae434eb11b1bdd87562daaded91b0d92a8db2fd2cc44e5e7238b9ebdd2f4498442439c8d5f37eb721cc0e3b91bbf2b0d0f7509f698b4ed2eb00042d779
7
+ data.tar.gz: 244173a3fcde694514834d81df0c8fa27b200f8aab7241c0f6c6c0f8036ace38c8e672380aeffef268c80fe12ac7c5ebe0cdcd4cdc42e560d57a153e6cf1b340
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.23.0 (2024-07-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.23.0
1
+ 1.24.0
@@ -1290,6 +1290,15 @@ module Aws::InternetMonitor
1290
1290
  # current configuration, and the best performing EC2 configuration, at
1291
1291
  # 1 hour intervals.
1292
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
+ #
1293
1302
  # For lists of the fields returned with each query type and more
1294
1303
  # information about how each type of query is performed, see [ Using the
1295
1304
  # Amazon CloudWatch Internet Monitor query interface][1] in the Amazon
@@ -1336,7 +1345,7 @@ module Aws::InternetMonitor
1336
1345
  # monitor_name: "ResourceName", # required
1337
1346
  # start_time: Time.now, # required
1338
1347
  # end_time: Time.now, # required
1339
- # 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
1340
1349
  # filter_parameters: [
1341
1350
  # {
1342
1351
  # field: "String",
@@ -1602,7 +1611,7 @@ module Aws::InternetMonitor
1602
1611
  params: params,
1603
1612
  config: config)
1604
1613
  context[:gem_name] = 'aws-sdk-internetmonitor'
1605
- context[:gem_version] = '1.23.0'
1614
+ context[:gem_version] = '1.24.0'
1606
1615
  Seahorse::Client::Request.new(handlers, context)
1607
1616
  end
1608
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.23.0'
56
+ GEM_VERSION = '1.24.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -271,7 +271,7 @@ module Aws
271
271
  monitor_name: ::String,
272
272
  start_time: ::Time,
273
273
  end_time: ::Time,
274
- query_type: ("MEASUREMENTS" | "TOP_LOCATIONS" | "TOP_LOCATION_DETAILS"),
274
+ query_type: ("MEASUREMENTS" | "TOP_LOCATIONS" | "TOP_LOCATION_DETAILS" | "OVERALL_TRAFFIC_SUGGESTIONS" | "OVERALL_TRAFFIC_SUGGESTIONS_DETAILS"),
275
275
  ?filter_parameters: Array[
276
276
  {
277
277
  field: ::String?,
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.23.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-07-02 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
@@ -36,14 +36,14 @@ dependencies:
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: