aws-sdk-quicksight 1.28.0 → 1.29.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/lib/aws-sdk-quicksight.rb +1 -1
- data/lib/aws-sdk-quicksight/client.rb +16 -1
- data/lib/aws-sdk-quicksight/client_api.rb +4 -0
- data/lib/aws-sdk-quicksight/types.rb +30 -1
- 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: aee2f20ed2bc9a059eebb1465da1015deaeecc1ca4f9e5612049689264120ace
|
4
|
+
data.tar.gz: b27f58d26efb95ac6d613ce037dbd797871c3675fd6a9fb81ca9453b92e48850
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 44f74bf7547ee0de7d49ec31e3bf6807fdb6c3c097c078f6d841b34bcdbc5bccf82f563bb5db29dd6c29f62a6c51d5d33e93023540280da75c1d2b7abc56b9c6
|
7
|
+
data.tar.gz: f7201fab039e4eb883c955d8a5848990b3eb669d2e8dbf01b414cd3551db6b6cccb8708c9b0a890080103bb70353f80328e5398660e7846a66b2b83bef300c78
|
data/lib/aws-sdk-quicksight.rb
CHANGED
@@ -410,8 +410,12 @@ module Aws::QuickSight
|
|
410
410
|
# "arn:aws:quicksight:us-west-2:111122223333:theme/bdb844d0-0fe9-4d9d-b520-0fe602d93639"
|
411
411
|
# \}`.
|
412
412
|
#
|
413
|
+
# @option params [Array<Types::Tag>] :tags
|
414
|
+
# A list of the tags that you want to attach to this resource.
|
415
|
+
#
|
413
416
|
# @return [Types::CreateAccountCustomizationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
414
417
|
#
|
418
|
+
# * {Types::CreateAccountCustomizationResponse#arn #arn} => String
|
415
419
|
# * {Types::CreateAccountCustomizationResponse#aws_account_id #aws_account_id} => String
|
416
420
|
# * {Types::CreateAccountCustomizationResponse#namespace #namespace} => String
|
417
421
|
# * {Types::CreateAccountCustomizationResponse#account_customization #account_customization} => Types::AccountCustomization
|
@@ -426,10 +430,17 @@ module Aws::QuickSight
|
|
426
430
|
# account_customization: { # required
|
427
431
|
# default_theme: "Arn",
|
428
432
|
# },
|
433
|
+
# tags: [
|
434
|
+
# {
|
435
|
+
# key: "TagKey", # required
|
436
|
+
# value: "TagValue", # required
|
437
|
+
# },
|
438
|
+
# ],
|
429
439
|
# })
|
430
440
|
#
|
431
441
|
# @example Response structure
|
432
442
|
#
|
443
|
+
# resp.arn #=> String
|
433
444
|
# resp.aws_account_id #=> String
|
434
445
|
# resp.namespace #=> String
|
435
446
|
# resp.account_customization.default_theme #=> String
|
@@ -2589,6 +2600,7 @@ module Aws::QuickSight
|
|
2589
2600
|
#
|
2590
2601
|
# @return [Types::DescribeAccountCustomizationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2591
2602
|
#
|
2603
|
+
# * {Types::DescribeAccountCustomizationResponse#arn #arn} => String
|
2592
2604
|
# * {Types::DescribeAccountCustomizationResponse#aws_account_id #aws_account_id} => String
|
2593
2605
|
# * {Types::DescribeAccountCustomizationResponse#namespace #namespace} => String
|
2594
2606
|
# * {Types::DescribeAccountCustomizationResponse#account_customization #account_customization} => Types::AccountCustomization
|
@@ -2605,6 +2617,7 @@ module Aws::QuickSight
|
|
2605
2617
|
#
|
2606
2618
|
# @example Response structure
|
2607
2619
|
#
|
2620
|
+
# resp.arn #=> String
|
2608
2621
|
# resp.aws_account_id #=> String
|
2609
2622
|
# resp.namespace #=> String
|
2610
2623
|
# resp.account_customization.default_theme #=> String
|
@@ -5547,6 +5560,7 @@ module Aws::QuickSight
|
|
5547
5560
|
#
|
5548
5561
|
# @return [Types::UpdateAccountCustomizationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5549
5562
|
#
|
5563
|
+
# * {Types::UpdateAccountCustomizationResponse#arn #arn} => String
|
5550
5564
|
# * {Types::UpdateAccountCustomizationResponse#aws_account_id #aws_account_id} => String
|
5551
5565
|
# * {Types::UpdateAccountCustomizationResponse#namespace #namespace} => String
|
5552
5566
|
# * {Types::UpdateAccountCustomizationResponse#account_customization #account_customization} => Types::AccountCustomization
|
@@ -5565,6 +5579,7 @@ module Aws::QuickSight
|
|
5565
5579
|
#
|
5566
5580
|
# @example Response structure
|
5567
5581
|
#
|
5582
|
+
# resp.arn #=> String
|
5568
5583
|
# resp.aws_account_id #=> String
|
5569
5584
|
# resp.namespace #=> String
|
5570
5585
|
# resp.account_customization.default_theme #=> String
|
@@ -7272,7 +7287,7 @@ module Aws::QuickSight
|
|
7272
7287
|
params: params,
|
7273
7288
|
config: config)
|
7274
7289
|
context[:gem_name] = 'aws-sdk-quicksight'
|
7275
|
-
context[:gem_version] = '1.
|
7290
|
+
context[:gem_version] = '1.29.0'
|
7276
7291
|
Seahorse::Client::Request.new(handlers, context)
|
7277
7292
|
end
|
7278
7293
|
|
@@ -670,8 +670,10 @@ module Aws::QuickSight
|
|
670
670
|
CreateAccountCustomizationRequest.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location: "uri", location_name: "AwsAccountId"))
|
671
671
|
CreateAccountCustomizationRequest.add_member(:namespace, Shapes::ShapeRef.new(shape: Namespace, location: "querystring", location_name: "namespace"))
|
672
672
|
CreateAccountCustomizationRequest.add_member(:account_customization, Shapes::ShapeRef.new(shape: AccountCustomization, required: true, location_name: "AccountCustomization"))
|
673
|
+
CreateAccountCustomizationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
673
674
|
CreateAccountCustomizationRequest.struct_class = Types::CreateAccountCustomizationRequest
|
674
675
|
|
676
|
+
CreateAccountCustomizationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
|
675
677
|
CreateAccountCustomizationResponse.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, location_name: "AwsAccountId"))
|
676
678
|
CreateAccountCustomizationResponse.add_member(:namespace, Shapes::ShapeRef.new(shape: Namespace, location_name: "Namespace"))
|
677
679
|
CreateAccountCustomizationResponse.add_member(:account_customization, Shapes::ShapeRef.new(shape: AccountCustomization, location_name: "AccountCustomization"))
|
@@ -1223,6 +1225,7 @@ module Aws::QuickSight
|
|
1223
1225
|
DescribeAccountCustomizationRequest.add_member(:resolved, Shapes::ShapeRef.new(shape: boolean, location: "querystring", location_name: "resolved"))
|
1224
1226
|
DescribeAccountCustomizationRequest.struct_class = Types::DescribeAccountCustomizationRequest
|
1225
1227
|
|
1228
|
+
DescribeAccountCustomizationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
|
1226
1229
|
DescribeAccountCustomizationResponse.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, location_name: "AwsAccountId"))
|
1227
1230
|
DescribeAccountCustomizationResponse.add_member(:namespace, Shapes::ShapeRef.new(shape: Namespace, location_name: "Namespace"))
|
1228
1231
|
DescribeAccountCustomizationResponse.add_member(:account_customization, Shapes::ShapeRef.new(shape: AccountCustomization, location_name: "AccountCustomization"))
|
@@ -2250,6 +2253,7 @@ module Aws::QuickSight
|
|
2250
2253
|
UpdateAccountCustomizationRequest.add_member(:account_customization, Shapes::ShapeRef.new(shape: AccountCustomization, required: true, location_name: "AccountCustomization"))
|
2251
2254
|
UpdateAccountCustomizationRequest.struct_class = Types::UpdateAccountCustomizationRequest
|
2252
2255
|
|
2256
|
+
UpdateAccountCustomizationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
|
2253
2257
|
UpdateAccountCustomizationResponse.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, location_name: "AwsAccountId"))
|
2254
2258
|
UpdateAccountCustomizationResponse.add_member(:namespace, Shapes::ShapeRef.new(shape: Namespace, location_name: "Namespace"))
|
2255
2259
|
UpdateAccountCustomizationResponse.add_member(:account_customization, Shapes::ShapeRef.new(shape: AccountCustomization, location_name: "AccountCustomization"))
|
@@ -771,6 +771,12 @@ module Aws::QuickSight
|
|
771
771
|
# account_customization: { # required
|
772
772
|
# default_theme: "Arn",
|
773
773
|
# },
|
774
|
+
# tags: [
|
775
|
+
# {
|
776
|
+
# key: "TagKey", # required
|
777
|
+
# value: "TagValue", # required
|
778
|
+
# },
|
779
|
+
# ],
|
774
780
|
# }
|
775
781
|
#
|
776
782
|
# @!attribute [rw] aws_account_id
|
@@ -797,16 +803,26 @@ module Aws::QuickSight
|
|
797
803
|
# \}`.
|
798
804
|
# @return [Types::AccountCustomization]
|
799
805
|
#
|
806
|
+
# @!attribute [rw] tags
|
807
|
+
# A list of the tags that you want to attach to this resource.
|
808
|
+
# @return [Array<Types::Tag>]
|
809
|
+
#
|
800
810
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateAccountCustomizationRequest AWS API Documentation
|
801
811
|
#
|
802
812
|
class CreateAccountCustomizationRequest < Struct.new(
|
803
813
|
:aws_account_id,
|
804
814
|
:namespace,
|
805
|
-
:account_customization
|
815
|
+
:account_customization,
|
816
|
+
:tags)
|
806
817
|
SENSITIVE = []
|
807
818
|
include Aws::Structure
|
808
819
|
end
|
809
820
|
|
821
|
+
# @!attribute [rw] arn
|
822
|
+
# The Amazon Resource Name (ARN) for the customization that you
|
823
|
+
# created for this AWS account.
|
824
|
+
# @return [String]
|
825
|
+
#
|
810
826
|
# @!attribute [rw] aws_account_id
|
811
827
|
# The ID for the AWS account that you want to customize QuickSight
|
812
828
|
# for.
|
@@ -832,6 +848,7 @@ module Aws::QuickSight
|
|
832
848
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateAccountCustomizationResponse AWS API Documentation
|
833
849
|
#
|
834
850
|
class CreateAccountCustomizationResponse < Struct.new(
|
851
|
+
:arn,
|
835
852
|
:aws_account_id,
|
836
853
|
:namespace,
|
837
854
|
:account_customization,
|
@@ -4676,6 +4693,11 @@ module Aws::QuickSight
|
|
4676
4693
|
include Aws::Structure
|
4677
4694
|
end
|
4678
4695
|
|
4696
|
+
# @!attribute [rw] arn
|
4697
|
+
# The Amazon Resource Name (ARN) of the customization that's
|
4698
|
+
# associated with this AWS account.
|
4699
|
+
# @return [String]
|
4700
|
+
#
|
4679
4701
|
# @!attribute [rw] aws_account_id
|
4680
4702
|
# The ID for the AWS account that you're describing.
|
4681
4703
|
# @return [String]
|
@@ -4699,6 +4721,7 @@ module Aws::QuickSight
|
|
4699
4721
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeAccountCustomizationResponse AWS API Documentation
|
4700
4722
|
#
|
4701
4723
|
class DescribeAccountCustomizationResponse < Struct.new(
|
4724
|
+
:arn,
|
4702
4725
|
:aws_account_id,
|
4703
4726
|
:namespace,
|
4704
4727
|
:account_customization,
|
@@ -10561,6 +10584,11 @@ module Aws::QuickSight
|
|
10561
10584
|
include Aws::Structure
|
10562
10585
|
end
|
10563
10586
|
|
10587
|
+
# @!attribute [rw] arn
|
10588
|
+
# The Amazon Resource Name (ARN) for the updated customization for
|
10589
|
+
# this AWS account.
|
10590
|
+
# @return [String]
|
10591
|
+
#
|
10564
10592
|
# @!attribute [rw] aws_account_id
|
10565
10593
|
# The ID for the AWS account that you want to update QuickSight
|
10566
10594
|
# customizations for.
|
@@ -10587,6 +10615,7 @@ module Aws::QuickSight
|
|
10587
10615
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateAccountCustomizationResponse AWS API Documentation
|
10588
10616
|
#
|
10589
10617
|
class UpdateAccountCustomizationResponse < Struct.new(
|
10618
|
+
:arn,
|
10590
10619
|
:aws_account_id,
|
10591
10620
|
:namespace,
|
10592
10621
|
:account_customization,
|
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.29.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: 2020-08
|
11
|
+
date: 2020-09-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|