aws-sdk-oam 1.12.0 → 1.13.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: afa19d5e1defd6b0ec04daa7db9bb1a7fe0c805db57b039e11f7553b5463b28e
4
- data.tar.gz: c479bd50f5f7aadc426f9b967349e6ed8bb8ee0bdb969071fbb7f13aabc7a7eb
3
+ metadata.gz: dddbcdd56630109021c8c7c332d0920fd94d40729cc68c2661dc8dbcb719febb
4
+ data.tar.gz: 995a80ce02e128da50ec2d3e43f78cb937ac1db3d104c44daf57baf31efcc742
5
5
  SHA512:
6
- metadata.gz: b25b9e825baa68e309d657c0e0666e059577455628303ba41c8367565b030197381413f78ddcbb9b2bc48af66e81cc8f13e526796afc9159f178e09ae96f1f9e
7
- data.tar.gz: 23e1e98323bdb2f5ef1a99494ae140b1d4d5f8f34cb2926ec73aa959c5ac2136255e3b52b64a1ee8a72c1f5bf572d65d2573760b1c1396ac109995d5c00bfd6e
6
+ metadata.gz: 650b8fd9fb43ea1c88208e90b218884c9bf599315e51d69ea99f39ff5c0b7135895a28a96c4ae2f9f0185458a4c13c069be35f4ce6f464fd567a82ce326e752f
7
+ data.tar.gz: 5dacdb7f56f2d5efe68f33da7f214b1f20f4418d94e944e255b4bf3ccf75d9d8931585b75044f2375f883d65aa78d116bd352f10d887b3fc8a0bd9cfabe0dae6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.13.0 (2024-03-28)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for sharing AWS::InternetMonitor::Monitor resources.
8
+
4
9
  1.12.0 (2024-01-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.12.0
1
+ 1.13.0
@@ -466,7 +466,7 @@ module Aws::OAM
466
466
  #
467
467
  # resp = client.create_link({
468
468
  # label_template: "LabelTemplate", # required
469
- # resource_types: ["AWS::CloudWatch::Metric"], # required, accepts AWS::CloudWatch::Metric, AWS::Logs::LogGroup, AWS::XRay::Trace, AWS::ApplicationInsights::Application
469
+ # resource_types: ["AWS::CloudWatch::Metric"], # required, accepts AWS::CloudWatch::Metric, AWS::Logs::LogGroup, AWS::XRay::Trace, AWS::ApplicationInsights::Application, AWS::InternetMonitor::Monitor
470
470
  # sink_identifier: "ResourceIdentifier", # required
471
471
  # tags: {
472
472
  # "TagKey" => "TagValue",
@@ -1130,7 +1130,7 @@ module Aws::OAM
1130
1130
  #
1131
1131
  # resp = client.update_link({
1132
1132
  # identifier: "ResourceIdentifier", # required
1133
- # resource_types: ["AWS::CloudWatch::Metric"], # required, accepts AWS::CloudWatch::Metric, AWS::Logs::LogGroup, AWS::XRay::Trace, AWS::ApplicationInsights::Application
1133
+ # resource_types: ["AWS::CloudWatch::Metric"], # required, accepts AWS::CloudWatch::Metric, AWS::Logs::LogGroup, AWS::XRay::Trace, AWS::ApplicationInsights::Application, AWS::InternetMonitor::Monitor
1134
1134
  # })
1135
1135
  #
1136
1136
  # @example Response structure
@@ -1167,7 +1167,7 @@ module Aws::OAM
1167
1167
  params: params,
1168
1168
  config: config)
1169
1169
  context[:gem_name] = 'aws-sdk-oam'
1170
- context[:gem_version] = '1.12.0'
1170
+ context[:gem_version] = '1.13.0'
1171
1171
  Seahorse::Client::Request.new(handlers, context)
1172
1172
  end
1173
1173
 
@@ -32,7 +32,7 @@ module Aws::OAM
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  return Aws::Endpoints::Endpoint.new(url: "https://oam-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
37
  end
38
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
data/lib/aws-sdk-oam.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-oam/customizations'
52
52
  # @!group service
53
53
  module Aws::OAM
54
54
 
55
- GEM_VERSION = '1.12.0'
55
+ GEM_VERSION = '1.13.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -85,7 +85,7 @@ module Aws
85
85
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OAM/Client.html#create_link-instance_method
86
86
  def create_link: (
87
87
  label_template: ::String,
88
- resource_types: Array[("AWS::CloudWatch::Metric" | "AWS::Logs::LogGroup" | "AWS::XRay::Trace" | "AWS::ApplicationInsights::Application")],
88
+ resource_types: Array[("AWS::CloudWatch::Metric" | "AWS::Logs::LogGroup" | "AWS::XRay::Trace" | "AWS::ApplicationInsights::Application" | "AWS::InternetMonitor::Monitor")],
89
89
  sink_identifier: ::String,
90
90
  ?tags: Hash[::String, ::String]
91
91
  ) -> _CreateLinkResponseSuccess
@@ -257,7 +257,7 @@ module Aws
257
257
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OAM/Client.html#update_link-instance_method
258
258
  def update_link: (
259
259
  identifier: ::String,
260
- resource_types: Array[("AWS::CloudWatch::Metric" | "AWS::Logs::LogGroup" | "AWS::XRay::Trace" | "AWS::ApplicationInsights::Application")]
260
+ resource_types: Array[("AWS::CloudWatch::Metric" | "AWS::Logs::LogGroup" | "AWS::XRay::Trace" | "AWS::ApplicationInsights::Application" | "AWS::InternetMonitor::Monitor")]
261
261
  ) -> _UpdateLinkResponseSuccess
262
262
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLinkResponseSuccess
263
263
  end
data/sig/types.rbs CHANGED
@@ -16,7 +16,7 @@ module Aws::OAM
16
16
 
17
17
  class CreateLinkInput
18
18
  attr_accessor label_template: ::String
19
- attr_accessor resource_types: ::Array[("AWS::CloudWatch::Metric" | "AWS::Logs::LogGroup" | "AWS::XRay::Trace" | "AWS::ApplicationInsights::Application")]
19
+ attr_accessor resource_types: ::Array[("AWS::CloudWatch::Metric" | "AWS::Logs::LogGroup" | "AWS::XRay::Trace" | "AWS::ApplicationInsights::Application" | "AWS::InternetMonitor::Monitor")]
20
20
  attr_accessor sink_identifier: ::String
21
21
  attr_accessor tags: ::Hash[::String, ::String]
22
22
  SENSITIVE: []
@@ -242,7 +242,7 @@ module Aws::OAM
242
242
 
243
243
  class UpdateLinkInput
244
244
  attr_accessor identifier: ::String
245
- attr_accessor resource_types: ::Array[("AWS::CloudWatch::Metric" | "AWS::Logs::LogGroup" | "AWS::XRay::Trace" | "AWS::ApplicationInsights::Application")]
245
+ attr_accessor resource_types: ::Array[("AWS::CloudWatch::Metric" | "AWS::Logs::LogGroup" | "AWS::XRay::Trace" | "AWS::ApplicationInsights::Application" | "AWS::InternetMonitor::Monitor")]
246
246
  SENSITIVE: []
247
247
  end
248
248
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-oam
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.12.0
4
+ version: 1.13.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-01-26 00:00:00.000000000 Z
11
+ date: 2024-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core