@aws-sdk/client-quicksight 3.418.0 → 3.419.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.
@@ -499,6 +499,7 @@ exports.MemberType = {
499
499
  ANALYSIS: "ANALYSIS",
500
500
  DASHBOARD: "DASHBOARD",
501
501
  DATASET: "DATASET",
502
+ TOPIC: "TOPIC",
502
503
  };
503
504
  exports.IngestionType = {
504
505
  FULL_REFRESH: "FULL_REFRESH",
@@ -2698,6 +2698,7 @@ const se_RegisterUserCommand = async (input, context) => {
2698
2698
  IamArn: [],
2699
2699
  IdentityType: [],
2700
2700
  SessionName: [],
2701
+ Tags: (_) => (0, smithy_client_1._json)(_),
2701
2702
  UserName: [],
2702
2703
  UserRole: [],
2703
2704
  }));
@@ -483,6 +483,7 @@ export const MemberType = {
483
483
  ANALYSIS: "ANALYSIS",
484
484
  DASHBOARD: "DASHBOARD",
485
485
  DATASET: "DATASET",
486
+ TOPIC: "TOPIC",
486
487
  };
487
488
  export const IngestionType = {
488
489
  FULL_REFRESH: "FULL_REFRESH",
@@ -2570,6 +2570,7 @@ export const se_RegisterUserCommand = async (input, context) => {
2570
2570
  IamArn: [],
2571
2571
  IdentityType: [],
2572
2572
  SessionName: [],
2573
+ Tags: (_) => _json(_),
2573
2574
  UserName: [],
2574
2575
  UserRole: [],
2575
2576
  }));
@@ -34,7 +34,7 @@ export interface CreateFolderMembershipCommandOutput extends CreateFolderMembers
34
34
  * AwsAccountId: "STRING_VALUE", // required
35
35
  * FolderId: "STRING_VALUE", // required
36
36
  * MemberId: "STRING_VALUE", // required
37
- * MemberType: "DASHBOARD" || "ANALYSIS" || "DATASET", // required
37
+ * MemberType: "DASHBOARD" || "ANALYSIS" || "DATASET" || "TOPIC", // required
38
38
  * };
39
39
  * const command = new CreateFolderMembershipCommand(input);
40
40
  * const response = await client.send(command);
@@ -42,7 +42,7 @@ export interface CreateFolderMembershipCommandOutput extends CreateFolderMembers
42
42
  * // Status: Number("int"),
43
43
  * // FolderMember: { // FolderMember
44
44
  * // MemberId: "STRING_VALUE",
45
- * // MemberType: "DASHBOARD" || "ANALYSIS" || "DATASET",
45
+ * // MemberType: "DASHBOARD" || "ANALYSIS" || "DATASET" || "TOPIC",
46
46
  * // },
47
47
  * // RequestId: "STRING_VALUE",
48
48
  * // };
@@ -34,7 +34,7 @@ export interface DeleteFolderMembershipCommandOutput extends DeleteFolderMembers
34
34
  * AwsAccountId: "STRING_VALUE", // required
35
35
  * FolderId: "STRING_VALUE", // required
36
36
  * MemberId: "STRING_VALUE", // required
37
- * MemberType: "DASHBOARD" || "ANALYSIS" || "DATASET", // required
37
+ * MemberType: "DASHBOARD" || "ANALYSIS" || "DATASET" || "TOPIC", // required
38
38
  * };
39
39
  * const command = new DeleteFolderMembershipCommand(input);
40
40
  * const response = await client.send(command);
@@ -43,6 +43,12 @@ export interface RegisterUserCommandOutput extends RegisterUserResponse, __Metad
43
43
  * ExternalLoginFederationProviderType: "STRING_VALUE",
44
44
  * CustomFederationProviderUrl: "STRING_VALUE",
45
45
  * ExternalLoginId: "STRING_VALUE",
46
+ * Tags: [ // TagList
47
+ * { // Tag
48
+ * Key: "STRING_VALUE", // required
49
+ * Value: "STRING_VALUE", // required
50
+ * },
51
+ * ],
46
52
  * };
47
53
  * const command = new RegisterUserCommand(input);
48
54
  * const response = await client.send(command);
@@ -32,15 +32,12 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
32
32
  * that is already associated with the resource, the new tag value that you specify
33
33
  * replaces the previous value for that tag.</p>
34
34
  * <p>You can associate as many as 50 tags with a resource. Amazon QuickSight supports tagging on data
35
- * set, data source, dashboard, template, and topic. </p>
35
+ * set, data source, dashboard, template, topic, and user. </p>
36
36
  * <p>Tagging for Amazon QuickSight works in a similar way to tagging for other Amazon Web Services services, except for
37
37
  * the following:</p>
38
38
  * <ul>
39
39
  * <li>
40
- * <p>You can't use tags to track costs for Amazon QuickSight. This isn't
41
- * possible because you can't tag the resources that Amazon QuickSight costs are based
42
- * on, for example Amazon QuickSight storage capacity (SPICE), number of users, type
43
- * of users, and usage metrics.</p>
40
+ * <p>Tags are used to track costs for users in Amazon QuickSight. You can't tag other resources that Amazon QuickSight costs are based on, such as storage capacoty (SPICE), session usage, alert consumption, or reporting units.</p>
44
41
  * </li>
45
42
  * <li>
46
43
  * <p>Amazon QuickSight doesn't currently support the tag editor for Resource Groups.</p>
@@ -4929,6 +4929,7 @@ export declare const MemberType: {
4929
4929
  readonly ANALYSIS: "ANALYSIS";
4930
4930
  readonly DASHBOARD: "DASHBOARD";
4931
4931
  readonly DATASET: "DATASET";
4932
+ readonly TOPIC: "TOPIC";
4932
4933
  };
4933
4934
  /**
4934
4935
  * @public
@@ -7308,6 +7308,11 @@ export interface RegisterUserRequest {
7308
7308
  * <p>The identity ID for a user in the external login provider.</p>
7309
7309
  */
7310
7310
  ExternalLoginId?: string;
7311
+ /**
7312
+ * @public
7313
+ * <p>The tags to associate with the user.</p>
7314
+ */
7315
+ Tags?: Tag[];
7311
7316
  }
7312
7317
  /**
7313
7318
  * @public
@@ -1999,6 +1999,7 @@ export declare const MemberType: {
1999
1999
  readonly ANALYSIS: "ANALYSIS";
2000
2000
  readonly DASHBOARD: "DASHBOARD";
2001
2001
  readonly DATASET: "DATASET";
2002
+ readonly TOPIC: "TOPIC";
2002
2003
  };
2003
2004
  export type MemberType = (typeof MemberType)[keyof typeof MemberType];
2004
2005
  export interface CreateFolderMembershipRequest {
@@ -1789,6 +1789,7 @@ export interface RegisterUserRequest {
1789
1789
  ExternalLoginFederationProviderType?: string;
1790
1790
  CustomFederationProviderUrl?: string;
1791
1791
  ExternalLoginId?: string;
1792
+ Tags?: Tag[];
1792
1793
  }
1793
1794
  export interface RegisterUserResponse {
1794
1795
  User?: User;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-quicksight",
3
3
  "description": "AWS SDK for JavaScript Quicksight Client for Node.js, Browser and React Native",
4
- "version": "3.418.0",
4
+ "version": "3.419.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",