aws-sdk-quicksight 1.90.0 → 1.91.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 +18 -9
- data/lib/aws-sdk-quicksight/client_api.rb +1 -0
- data/lib/aws-sdk-quicksight/types.rb +6 -1
- data/lib/aws-sdk-quicksight.rb +1 -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: 6fcceddd753f66f49faa3e786975f6a0b9f91b116f2727ad4f0aa5f273221165
|
4
|
+
data.tar.gz: d86d0628ed56f64f887c47b34681a621c66fa68801dc83555e96fbe9a83388b6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c029fa962bce876f8ff9de17493e937b9305c227c199ca6b631def0bc85ac93eec0b06e4e6fec07d83be16d3c5dc0cfbdb99bbaf40ecf712027756a62f541718
|
7
|
+
data.tar.gz: c54677735561dee5e6f42565aa8fa32b8b7af902c537aaf6827d9542b396ef1e20d7371eb7d9acf20751fa77979467c6241851c96d9f7a9d896a60b29f8fdc56
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.91.0
|
@@ -1645,14 +1645,14 @@ module Aws::QuickSight
|
|
1645
1645
|
# aws_account_id: "AwsAccountId", # required
|
1646
1646
|
# folder_id: "RestrictiveResourceId", # required
|
1647
1647
|
# member_id: "RestrictiveResourceId", # required
|
1648
|
-
# member_type: "DASHBOARD", # required, accepts DASHBOARD, ANALYSIS, DATASET
|
1648
|
+
# member_type: "DASHBOARD", # required, accepts DASHBOARD, ANALYSIS, DATASET, TOPIC
|
1649
1649
|
# })
|
1650
1650
|
#
|
1651
1651
|
# @example Response structure
|
1652
1652
|
#
|
1653
1653
|
# resp.status #=> Integer
|
1654
1654
|
# resp.folder_member.member_id #=> String
|
1655
|
-
# resp.folder_member.member_type #=> String, one of "DASHBOARD", "ANALYSIS", "DATASET"
|
1655
|
+
# resp.folder_member.member_type #=> String, one of "DASHBOARD", "ANALYSIS", "DATASET", "TOPIC"
|
1656
1656
|
# resp.request_id #=> String
|
1657
1657
|
#
|
1658
1658
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateFolderMembership AWS API Documentation
|
@@ -3150,7 +3150,7 @@ module Aws::QuickSight
|
|
3150
3150
|
# aws_account_id: "AwsAccountId", # required
|
3151
3151
|
# folder_id: "RestrictiveResourceId", # required
|
3152
3152
|
# member_id: "RestrictiveResourceId", # required
|
3153
|
-
# member_type: "DASHBOARD", # required, accepts DASHBOARD, ANALYSIS, DATASET
|
3153
|
+
# member_type: "DASHBOARD", # required, accepts DASHBOARD, ANALYSIS, DATASET, TOPIC
|
3154
3154
|
# })
|
3155
3155
|
#
|
3156
3156
|
# @example Response structure
|
@@ -8831,6 +8831,9 @@ module Aws::QuickSight
|
|
8831
8831
|
# @option params [String] :external_login_id
|
8832
8832
|
# The identity ID for a user in the external login provider.
|
8833
8833
|
#
|
8834
|
+
# @option params [Array<Types::Tag>] :tags
|
8835
|
+
# The tags to associate with the user.
|
8836
|
+
#
|
8834
8837
|
# @return [Types::RegisterUserResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8835
8838
|
#
|
8836
8839
|
# * {Types::RegisterUserResponse#user #user} => Types::User
|
@@ -8853,6 +8856,12 @@ module Aws::QuickSight
|
|
8853
8856
|
# external_login_federation_provider_type: "String",
|
8854
8857
|
# custom_federation_provider_url: "String",
|
8855
8858
|
# external_login_id: "String",
|
8859
|
+
# tags: [
|
8860
|
+
# {
|
8861
|
+
# key: "TagKey", # required
|
8862
|
+
# value: "TagValue", # required
|
8863
|
+
# },
|
8864
|
+
# ],
|
8856
8865
|
# })
|
8857
8866
|
#
|
8858
8867
|
# @example Response structure
|
@@ -9852,15 +9861,15 @@ module Aws::QuickSight
|
|
9852
9861
|
#
|
9853
9862
|
# You can associate as many as 50 tags with a resource. Amazon
|
9854
9863
|
# QuickSight supports tagging on data set, data source, dashboard,
|
9855
|
-
# template, and
|
9864
|
+
# template, topic, and user.
|
9856
9865
|
#
|
9857
9866
|
# Tagging for Amazon QuickSight works in a similar way to tagging for
|
9858
9867
|
# other Amazon Web Services services, except for the following:
|
9859
9868
|
#
|
9860
|
-
# *
|
9861
|
-
#
|
9862
|
-
#
|
9863
|
-
#
|
9869
|
+
# * Tags are used to track costs for users in Amazon QuickSight. You
|
9870
|
+
# can't tag other resources that Amazon QuickSight costs are based
|
9871
|
+
# on, such as storage capacoty (SPICE), session usage, alert
|
9872
|
+
# consumption, or reporting units.
|
9864
9873
|
#
|
9865
9874
|
# * Amazon QuickSight doesn't currently support the tag editor for
|
9866
9875
|
# Resource Groups.
|
@@ -12529,7 +12538,7 @@ module Aws::QuickSight
|
|
12529
12538
|
params: params,
|
12530
12539
|
config: config)
|
12531
12540
|
context[:gem_name] = 'aws-sdk-quicksight'
|
12532
|
-
context[:gem_version] = '1.
|
12541
|
+
context[:gem_version] = '1.91.0'
|
12533
12542
|
Seahorse::Client::Request.new(handlers, context)
|
12534
12543
|
end
|
12535
12544
|
|
@@ -6191,6 +6191,7 @@ module Aws::QuickSight
|
|
6191
6191
|
RegisterUserRequest.add_member(:external_login_federation_provider_type, Shapes::ShapeRef.new(shape: String, location_name: "ExternalLoginFederationProviderType"))
|
6192
6192
|
RegisterUserRequest.add_member(:custom_federation_provider_url, Shapes::ShapeRef.new(shape: String, location_name: "CustomFederationProviderUrl"))
|
6193
6193
|
RegisterUserRequest.add_member(:external_login_id, Shapes::ShapeRef.new(shape: String, location_name: "ExternalLoginId"))
|
6194
|
+
RegisterUserRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
6194
6195
|
RegisterUserRequest.struct_class = Types::RegisterUserRequest
|
6195
6196
|
|
6196
6197
|
RegisterUserResponse.add_member(:user, Shapes::ShapeRef.new(shape: User, location_name: "User"))
|
@@ -22073,6 +22073,10 @@ module Aws::QuickSight
|
|
22073
22073
|
# The identity ID for a user in the external login provider.
|
22074
22074
|
# @return [String]
|
22075
22075
|
#
|
22076
|
+
# @!attribute [rw] tags
|
22077
|
+
# The tags to associate with the user.
|
22078
|
+
# @return [Array<Types::Tag>]
|
22079
|
+
#
|
22076
22080
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/RegisterUserRequest AWS API Documentation
|
22077
22081
|
#
|
22078
22082
|
class RegisterUserRequest < Struct.new(
|
@@ -22087,7 +22091,8 @@ module Aws::QuickSight
|
|
22087
22091
|
:custom_permissions_name,
|
22088
22092
|
:external_login_federation_provider_type,
|
22089
22093
|
:custom_federation_provider_url,
|
22090
|
-
:external_login_id
|
22094
|
+
:external_login_id,
|
22095
|
+
:tags)
|
22091
22096
|
SENSITIVE = []
|
22092
22097
|
include Aws::Structure
|
22093
22098
|
end
|
data/lib/aws-sdk-quicksight.rb
CHANGED
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.91.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: 2023-09-
|
11
|
+
date: 2023-09-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|