aws-sdk-quicksight 1.90.0 → 1.91.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8ad0ae019e562156b1801c2c3edf30765f6d4057ef3cd5b3b6d05717c855a4de
4
- data.tar.gz: c5a79841f4059d02d5ab30cf73815dd65abea1426226b3d75f0a4761c699e592
3
+ metadata.gz: 6fcceddd753f66f49faa3e786975f6a0b9f91b116f2727ad4f0aa5f273221165
4
+ data.tar.gz: d86d0628ed56f64f887c47b34681a621c66fa68801dc83555e96fbe9a83388b6
5
5
  SHA512:
6
- metadata.gz: cf9ca996c645dda4acc401bd7885b8152b6ab217443ff76f1bf7257856baa34cefd1876021470ac4135a8de136e6a9d977403c9fb55edef9a22d38d041986245
7
- data.tar.gz: 4c015e05912d7bfd3d94e586afa60f1b2f367293cc865ec8f19540af48d49b7b30f10ae96fe4e2bfe4d2627d5e8ef391f309be459c91c46beb89bab7db86e9ad
6
+ metadata.gz: c029fa962bce876f8ff9de17493e937b9305c227c199ca6b631def0bc85ac93eec0b06e4e6fec07d83be16d3c5dc0cfbdb99bbaf40ecf712027756a62f541718
7
+ data.tar.gz: c54677735561dee5e6f42565aa8fa32b8b7af902c537aaf6827d9542b396ef1e20d7371eb7d9acf20751fa77979467c6241851c96d9f7a9d896a60b29f8fdc56
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.91.0 (2023-09-25)
5
+ ------------------
6
+
7
+ * Feature - Added ability to tag users upon creation.
8
+
4
9
  1.90.0 (2023-09-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.90.0
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 topic.
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
- # * You can't use tags to track costs for Amazon QuickSight. This
9861
- # isn't possible because you can't tag the resources that Amazon
9862
- # QuickSight costs are based on, for example Amazon QuickSight storage
9863
- # capacity (SPICE), number of users, type of users, and usage metrics.
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.90.0'
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
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-quicksight/customizations'
52
52
  # @!group service
53
53
  module Aws::QuickSight
54
54
 
55
- GEM_VERSION = '1.90.0'
55
+ GEM_VERSION = '1.91.0'
56
56
 
57
57
  end
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.90.0
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 00:00:00.000000000 Z
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