aws-sdk-bcmdashboards 1.6.0 → 1.8.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: 554a0e795c3028f09a83734f89781b270c4d1a0be502874220517e7ecccf523b
4
- data.tar.gz: fa33fd75c48c9fd2c7c5e689b3bb60d3b4419137bf94a69e19ed238d98d7a68e
3
+ metadata.gz: 5c5cc46349dbf4f6369d7398b87b7f3f7e9fbeab19af5a3222e7f8b3ea05ac8a
4
+ data.tar.gz: bace9cb80e28d6c4e66bd2e8388dc4dd04909207c5d99e86d00537c71c3b8665
5
5
  SHA512:
6
- metadata.gz: 4dddec87df491634298d72ca9368931e9b1605e2309194359cd6d1d1ecb477f89ba233f1c1d1351f56dd28fe8c165e6fc75fd907457536a2aaac43ab2f841ba5
7
- data.tar.gz: 0b99ef8f3326f9b26f428f2aa7d70bc3773e4d1eaad835b49c170ff0604b35909339bf569a3b2ea52a4db6ee88b4c8f7490888bb9137584ccaa211ee05811a1c
6
+ metadata.gz: 4bdf3af9c81f9b4504000de9526553e8679ef6dcbaf6a5373aaa40a5259bca491bce7bda7f75c6cce728ae2abafe35567fd4515da3c93c5821ed2ef8160c749c
7
+ data.tar.gz: 910e7c382a0120b7c75034fc937d4f056e97232c87497a8fcf7ec42f33b1be264ab37d97aa890dd4ddc83244e041d938d39ef2252c002d5962dccd480ca8d4cf
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.8.0 (2026-02-19)
5
+ ------------------
6
+
7
+ * Feature - The Billing and Cost Management GetDashboard API now returns identifier for each widget, enabling users to uniquely identify widgets within their dashboards.
8
+
9
+ 1.7.0 (2026-01-16)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.6.0 (2026-01-08)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.0
1
+ 1.8.0
@@ -565,6 +565,7 @@ module Aws::BCMDashboards
565
565
  # description: "Description",
566
566
  # widgets: [ # required
567
567
  # {
568
+ # id: "WidgetId",
568
569
  # title: "WidgetTitle", # required
569
570
  # description: "Description",
570
571
  # width: 1,
@@ -980,6 +981,7 @@ module Aws::BCMDashboards
980
981
  # resp.description #=> String
981
982
  # resp.type #=> String, one of "CUSTOM"
982
983
  # resp.widgets #=> Array
984
+ # resp.widgets[0].id #=> String
983
985
  # resp.widgets[0].title #=> String
984
986
  # resp.widgets[0].description #=> String
985
987
  # resp.widgets[0].width #=> Integer
@@ -1466,6 +1468,7 @@ module Aws::BCMDashboards
1466
1468
  # description: "Description",
1467
1469
  # widgets: [
1468
1470
  # {
1471
+ # id: "WidgetId",
1469
1472
  # title: "WidgetTitle", # required
1470
1473
  # description: "Description",
1471
1474
  # width: 1,
@@ -1763,7 +1766,7 @@ module Aws::BCMDashboards
1763
1766
  tracer: tracer
1764
1767
  )
1765
1768
  context[:gem_name] = 'aws-sdk-bcmdashboards'
1766
- context[:gem_version] = '1.6.0'
1769
+ context[:gem_version] = '1.8.0'
1767
1770
  Seahorse::Client::Request.new(handlers, context)
1768
1771
  end
1769
1772
 
@@ -89,6 +89,7 @@ module Aws::BCMDashboards
89
89
  WidgetConfig = Shapes::StructureShape.new(name: 'WidgetConfig')
90
90
  WidgetConfigList = Shapes::ListShape.new(name: 'WidgetConfigList')
91
91
  WidgetHeight = Shapes::IntegerShape.new(name: 'WidgetHeight')
92
+ WidgetId = Shapes::StringShape.new(name: 'WidgetId')
92
93
  WidgetList = Shapes::ListShape.new(name: 'WidgetList')
93
94
  WidgetTitle = Shapes::StringShape.new(name: 'WidgetTitle')
94
95
  WidgetWidth = Shapes::IntegerShape.new(name: 'WidgetWidth')
@@ -305,6 +306,7 @@ module Aws::BCMDashboards
305
306
  ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: GenericString, required: true, location_name: "message"))
306
307
  ValidationException.struct_class = Types::ValidationException
307
308
 
309
+ Widget.add_member(:id, Shapes::ShapeRef.new(shape: WidgetId, location_name: "id"))
308
310
  Widget.add_member(:title, Shapes::ShapeRef.new(shape: WidgetTitle, required: true, location_name: "title"))
309
311
  Widget.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
310
312
  Widget.add_member(:width, Shapes::ShapeRef.new(shape: WidgetWidth, location_name: "width"))
@@ -944,6 +944,10 @@ module Aws::BCMDashboards
944
944
  # charts or tables and includes settings for data querying, filtering,
945
945
  # and visual presentation.
946
946
  #
947
+ # @!attribute [rw] id
948
+ # The unique identifier for the widget.
949
+ # @return [String]
950
+ #
947
951
  # @!attribute [rw] title
948
952
  # The title of the widget.
949
953
  # @return [String]
@@ -975,6 +979,7 @@ module Aws::BCMDashboards
975
979
  # @see http://docs.aws.amazon.com/goto/WebAPI/bcm-dashboards-2025-08-18/Widget AWS API Documentation
976
980
  #
977
981
  class Widget < Struct.new(
982
+ :id,
978
983
  :title,
979
984
  :description,
980
985
  :width,
@@ -55,7 +55,7 @@ module Aws::BCMDashboards
55
55
  autoload :EndpointProvider, 'aws-sdk-bcmdashboards/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-bcmdashboards/endpoints'
57
57
 
58
- GEM_VERSION = '1.6.0'
58
+ GEM_VERSION = '1.8.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -89,6 +89,7 @@ module Aws
89
89
  ?description: ::String,
90
90
  widgets: Array[
91
91
  {
92
+ id: ::String?,
92
93
  title: ::String,
93
94
  description: ::String?,
94
95
  width: ::Integer?,
@@ -425,6 +426,7 @@ module Aws
425
426
  ?description: ::String,
426
427
  ?widgets: Array[
427
428
  {
429
+ id: ::String?,
428
430
  title: ::String,
429
431
  description: ::String?,
430
432
  width: ::Integer?,
data/sig/types.rbs CHANGED
@@ -294,6 +294,7 @@ module Aws::BCMDashboards
294
294
  end
295
295
 
296
296
  class Widget
297
+ attr_accessor id: ::String
297
298
  attr_accessor title: ::String
298
299
  attr_accessor description: ::String
299
300
  attr_accessor width: ::Integer
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-bcmdashboards
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.241.3
21
+ version: 3.241.4
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.241.3
31
+ version: 3.241.4
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement