aws-sdk-quicksight 1.119.0 → 1.120.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +1 -1
- data/lib/aws-sdk-quicksight/client_api.rb +7 -0
- data/lib/aws-sdk-quicksight/errors.rb +21 -0
- data/lib/aws-sdk-quicksight/types.rb +19 -0
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/errors.rbs +4 -0
- data/sig/types.rbs +6 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 17dc18378d1d0b23837ffbf356a951093341577d9030e1b2222abc4b805d82ca
|
4
|
+
data.tar.gz: 39492464593f14b6a2b545c5d123c729f5043eeabbf4421295e825ba98597ebf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a53ad56faace170df1b870b3db36f2e3c971bbb37ac3707ef43e7979252051df6d76479e63871aadbd9ec3e8aed65ea44b7fe1ee8a1344365895d03e39a233ca
|
7
|
+
data.tar.gz: 699ec10455c7e81104d21ba8fa48a5388545d988941677c92e59932800d1090337dbda455dbf5a8f41dbed0c07191bc840b2b0332ac36b2d10e0a7c9e7e0f316
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.120.0
|
@@ -15242,7 +15242,7 @@ module Aws::QuickSight
|
|
15242
15242
|
params: params,
|
15243
15243
|
config: config)
|
15244
15244
|
context[:gem_name] = 'aws-sdk-quicksight'
|
15245
|
-
context[:gem_version] = '1.
|
15245
|
+
context[:gem_version] = '1.120.0'
|
15246
15246
|
Seahorse::Client::Request.new(handlers, context)
|
15247
15247
|
end
|
15248
15248
|
|
@@ -424,6 +424,7 @@ module Aws::QuickSight
|
|
424
424
|
CustomSql = Shapes::StructureShape.new(name: 'CustomSql')
|
425
425
|
CustomSqlName = Shapes::StringShape.new(name: 'CustomSqlName')
|
426
426
|
CustomValuesConfiguration = Shapes::StructureShape.new(name: 'CustomValuesConfiguration')
|
427
|
+
CustomerManagedKeyUnavailableException = Shapes::StructureShape.new(name: 'CustomerManagedKeyUnavailableException')
|
427
428
|
Dashboard = Shapes::StructureShape.new(name: 'Dashboard')
|
428
429
|
DashboardBehavior = Shapes::StringShape.new(name: 'DashboardBehavior')
|
429
430
|
DashboardError = Shapes::StructureShape.new(name: 'DashboardError')
|
@@ -3406,6 +3407,10 @@ module Aws::QuickSight
|
|
3406
3407
|
CustomValuesConfiguration.add_member(:custom_values, Shapes::ShapeRef.new(shape: CustomParameterValues, required: true, location_name: "CustomValues"))
|
3407
3408
|
CustomValuesConfiguration.struct_class = Types::CustomValuesConfiguration
|
3408
3409
|
|
3410
|
+
CustomerManagedKeyUnavailableException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
3411
|
+
CustomerManagedKeyUnavailableException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
3412
|
+
CustomerManagedKeyUnavailableException.struct_class = Types::CustomerManagedKeyUnavailableException
|
3413
|
+
|
3409
3414
|
Dashboard.add_member(:dashboard_id, Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId, location_name: "DashboardId"))
|
3410
3415
|
Dashboard.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
|
3411
3416
|
Dashboard.add_member(:name, Shapes::ShapeRef.new(shape: DashboardName, location_name: "Name"))
|
@@ -9251,6 +9256,7 @@ module Aws::QuickSight
|
|
9251
9256
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
9252
9257
|
o.errors << Shapes::ShapeRef.new(shape: ResourceExistsException)
|
9253
9258
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
9259
|
+
o.errors << Shapes::ShapeRef.new(shape: CustomerManagedKeyUnavailableException)
|
9254
9260
|
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
9255
9261
|
end)
|
9256
9262
|
|
@@ -11569,6 +11575,7 @@ module Aws::QuickSight
|
|
11569
11575
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
11570
11576
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
11571
11577
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
11578
|
+
o.errors << Shapes::ShapeRef.new(shape: CustomerManagedKeyUnavailableException)
|
11572
11579
|
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
11573
11580
|
end)
|
11574
11581
|
|
@@ -30,6 +30,7 @@ module Aws::QuickSight
|
|
30
30
|
# * {AccessDeniedException}
|
31
31
|
# * {ConcurrentUpdatingException}
|
32
32
|
# * {ConflictException}
|
33
|
+
# * {CustomerManagedKeyUnavailableException}
|
33
34
|
# * {DomainNotWhitelistedException}
|
34
35
|
# * {IdentityTypeNotSupportedException}
|
35
36
|
# * {InternalFailureException}
|
@@ -113,6 +114,26 @@ module Aws::QuickSight
|
|
113
114
|
end
|
114
115
|
end
|
115
116
|
|
117
|
+
class CustomerManagedKeyUnavailableException < ServiceError
|
118
|
+
|
119
|
+
# @param [Seahorse::Client::RequestContext] context
|
120
|
+
# @param [String] message
|
121
|
+
# @param [Aws::QuickSight::Types::CustomerManagedKeyUnavailableException] data
|
122
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
123
|
+
super(context, message, data)
|
124
|
+
end
|
125
|
+
|
126
|
+
# @return [String]
|
127
|
+
def message
|
128
|
+
@message || @data[:message]
|
129
|
+
end
|
130
|
+
|
131
|
+
# @return [String]
|
132
|
+
def request_id
|
133
|
+
@data[:request_id]
|
134
|
+
end
|
135
|
+
end
|
136
|
+
|
116
137
|
class DomainNotWhitelistedException < ServiceError
|
117
138
|
|
118
139
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -7288,6 +7288,25 @@ module Aws::QuickSight
|
|
7288
7288
|
include Aws::Structure
|
7289
7289
|
end
|
7290
7290
|
|
7291
|
+
# The customer managed key that is registered to your Amazon QuickSight
|
7292
|
+
# account is unavailable.
|
7293
|
+
#
|
7294
|
+
# @!attribute [rw] message
|
7295
|
+
# @return [String]
|
7296
|
+
#
|
7297
|
+
# @!attribute [rw] request_id
|
7298
|
+
# The Amazon Web Services request ID for this operation.
|
7299
|
+
# @return [String]
|
7300
|
+
#
|
7301
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CustomerManagedKeyUnavailableException AWS API Documentation
|
7302
|
+
#
|
7303
|
+
class CustomerManagedKeyUnavailableException < Struct.new(
|
7304
|
+
:message,
|
7305
|
+
:request_id)
|
7306
|
+
SENSITIVE = []
|
7307
|
+
include Aws::Structure
|
7308
|
+
end
|
7309
|
+
|
7291
7310
|
# Dashboard.
|
7292
7311
|
#
|
7293
7312
|
# @!attribute [rw] dashboard_id
|
data/lib/aws-sdk-quicksight.rb
CHANGED
data/sig/errors.rbs
CHANGED
@@ -23,6 +23,10 @@ module Aws
|
|
23
23
|
def message: () -> ::String
|
24
24
|
def request_id: () -> ::String
|
25
25
|
end
|
26
|
+
class CustomerManagedKeyUnavailableException < ::Aws::Errors::ServiceError
|
27
|
+
def message: () -> ::String
|
28
|
+
def request_id: () -> ::String
|
29
|
+
end
|
26
30
|
class DomainNotWhitelistedException < ::Aws::Errors::ServiceError
|
27
31
|
def message: () -> ::String
|
28
32
|
def request_id: () -> ::String
|
data/sig/types.rbs
CHANGED
@@ -1812,6 +1812,12 @@ module Aws::QuickSight
|
|
1812
1812
|
SENSITIVE: []
|
1813
1813
|
end
|
1814
1814
|
|
1815
|
+
class CustomerManagedKeyUnavailableException
|
1816
|
+
attr_accessor message: ::String
|
1817
|
+
attr_accessor request_id: ::String
|
1818
|
+
SENSITIVE: []
|
1819
|
+
end
|
1820
|
+
|
1815
1821
|
class Dashboard
|
1816
1822
|
attr_accessor dashboard_id: ::String
|
1817
1823
|
attr_accessor arn: ::String
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-quicksight
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.120.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-08-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|