@aws-sdk/client-quicksight 3.252.0 → 3.255.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.
Files changed (33) hide show
  1. package/dist-cjs/commands/CreateAnalysisCommand.js +2 -1
  2. package/dist-cjs/commands/ListDataSourcesCommand.js +2 -1
  3. package/dist-cjs/commands/ListFolderMembersCommand.js +1 -2
  4. package/dist-cjs/endpoint/ruleset.js +3 -3
  5. package/dist-cjs/models/models_1.js +13 -25
  6. package/dist-cjs/models/models_2.js +27 -16
  7. package/dist-cjs/models/models_3.js +12 -3
  8. package/dist-cjs/protocols/Aws_restJson1.js +59 -11
  9. package/dist-es/commands/CreateAnalysisCommand.js +2 -1
  10. package/dist-es/commands/ListDataSourcesCommand.js +2 -1
  11. package/dist-es/commands/ListFolderMembersCommand.js +1 -2
  12. package/dist-es/endpoint/ruleset.js +3 -3
  13. package/dist-es/models/models_1.js +6 -18
  14. package/dist-es/models/models_2.js +18 -7
  15. package/dist-es/models/models_3.js +8 -1
  16. package/dist-es/protocols/Aws_restJson1.js +60 -12
  17. package/dist-types/QuickSight.d.ts +1 -1
  18. package/dist-types/QuickSightClient.d.ts +3 -3
  19. package/dist-types/commands/CreateAnalysisCommand.d.ts +2 -1
  20. package/dist-types/commands/ListDataSourcesCommand.d.ts +2 -1
  21. package/dist-types/commands/ListFolderMembersCommand.d.ts +1 -2
  22. package/dist-types/commands/RegisterUserCommand.d.ts +1 -1
  23. package/dist-types/models/models_1.d.ts +38 -46
  24. package/dist-types/models/models_2.d.ts +87 -48
  25. package/dist-types/models/models_3.d.ts +45 -1
  26. package/dist-types/ts3.4/QuickSightClient.d.ts +2 -1
  27. package/dist-types/ts3.4/commands/CreateAnalysisCommand.d.ts +2 -4
  28. package/dist-types/ts3.4/commands/ListDataSourcesCommand.d.ts +2 -4
  29. package/dist-types/ts3.4/commands/ListFolderMembersCommand.d.ts +4 -2
  30. package/dist-types/ts3.4/models/models_1.d.ts +15 -20
  31. package/dist-types/ts3.4/models/models_2.d.ts +21 -18
  32. package/dist-types/ts3.4/models/models_3.d.ts +19 -0
  33. package/package.json +31 -31
@@ -451,21 +451,6 @@ export class PreconditionNotMetException extends __BaseException {
451
451
  this.RequestId = opts.RequestId;
452
452
  }
453
453
  }
454
- export class LimitExceededException extends __BaseException {
455
- constructor(opts) {
456
- super({
457
- name: "LimitExceededException",
458
- $fault: "client",
459
- ...opts,
460
- });
461
- this.name = "LimitExceededException";
462
- this.$fault = "client";
463
- Object.setPrototypeOf(this, LimitExceededException.prototype);
464
- this.Message = opts.Message;
465
- this.ResourceType = opts.ResourceType;
466
- this.RequestId = opts.RequestId;
467
- }
468
- }
469
454
  export const ComboChartVisualFilterSensitiveLog = (obj) => ({
470
455
  ...obj,
471
456
  });
@@ -1149,6 +1134,12 @@ export const TablePaginatedReportOptionsFilterSensitiveLog = (obj) => ({
1149
1134
  export const TableSortConfigurationFilterSensitiveLog = (obj) => ({
1150
1135
  ...obj,
1151
1136
  });
1137
+ export const DataBarsOptionsFilterSensitiveLog = (obj) => ({
1138
+ ...obj,
1139
+ });
1140
+ export const TableInlineVisualizationFilterSensitiveLog = (obj) => ({
1141
+ ...obj,
1142
+ });
1152
1143
  export const TableOptionsFilterSensitiveLog = (obj) => ({
1153
1144
  ...obj,
1154
1145
  });
@@ -1403,6 +1394,3 @@ export const CreateAnalysisRequestFilterSensitiveLog = (obj) => ({
1403
1394
  ...obj,
1404
1395
  ...(obj.Parameters && { Parameters: _ParametersFilterSensitiveLog(obj.Parameters) }),
1405
1396
  });
1406
- export const CreateAnalysisResponseFilterSensitiveLog = (obj) => ({
1407
- ...obj,
1408
- });
@@ -2,6 +2,21 @@ import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
2
2
  import { AmazonElasticsearchParametersFilterSensitiveLog, AmazonOpenSearchParametersFilterSensitiveLog, CalculatedFieldFilterSensitiveLog, ColumnConfigurationFilterSensitiveLog, ParameterDeclarationFilterSensitiveLog, } from "./models_0";
3
3
  import { _ParametersFilterSensitiveLog, AthenaParametersFilterSensitiveLog, AuroraParametersFilterSensitiveLog, AuroraPostgreSqlParametersFilterSensitiveLog, AwsIotAnalyticsParametersFilterSensitiveLog, CalculatedColumnFilterSensitiveLog, CastColumnTypeOperationFilterSensitiveLog, } from "./models_1";
4
4
  import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
5
+ export class LimitExceededException extends __BaseException {
6
+ constructor(opts) {
7
+ super({
8
+ name: "LimitExceededException",
9
+ $fault: "client",
10
+ ...opts,
11
+ });
12
+ this.name = "LimitExceededException";
13
+ this.$fault = "client";
14
+ Object.setPrototypeOf(this, LimitExceededException.prototype);
15
+ this.Message = opts.Message;
16
+ this.ResourceType = opts.ResourceType;
17
+ this.RequestId = opts.RequestId;
18
+ }
19
+ }
5
20
  export class UnsupportedUserEditionException extends __BaseException {
6
21
  constructor(opts) {
7
22
  super({
@@ -487,6 +502,9 @@ export class InvalidRequestException extends __BaseException {
487
502
  this.RequestId = opts.RequestId;
488
503
  }
489
504
  }
505
+ export const CreateAnalysisResponseFilterSensitiveLog = (obj) => ({
506
+ ...obj,
507
+ });
490
508
  export const CreateColumnsOperationFilterSensitiveLog = (obj) => ({
491
509
  ...obj,
492
510
  ...(obj.Columns && { Columns: obj.Columns.map((item) => CalculatedColumnFilterSensitiveLog(item)) }),
@@ -1392,10 +1410,3 @@ export const ListDataSetsResponseFilterSensitiveLog = (obj) => ({
1392
1410
  export const ListDataSourcesRequestFilterSensitiveLog = (obj) => ({
1393
1411
  ...obj,
1394
1412
  });
1395
- export const ListDataSourcesResponseFilterSensitiveLog = (obj) => ({
1396
- ...obj,
1397
- ...(obj.DataSources && { DataSources: obj.DataSources.map((item) => DataSourceFilterSensitiveLog(item)) }),
1398
- });
1399
- export const ListFolderMembersRequestFilterSensitiveLog = (obj) => ({
1400
- ...obj,
1401
- });
@@ -1,6 +1,13 @@
1
1
  import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
2
2
  import { _ParametersFilterSensitiveLog, } from "./models_1";
3
- import { DataSourceParametersFilterSensitiveLog, LogicalTableFilterSensitiveLog, PhysicalTableFilterSensitiveLog, RowLevelPermissionTagConfigurationFilterSensitiveLog, } from "./models_2";
3
+ import { DataSourceFilterSensitiveLog, DataSourceParametersFilterSensitiveLog, LogicalTableFilterSensitiveLog, PhysicalTableFilterSensitiveLog, RowLevelPermissionTagConfigurationFilterSensitiveLog, } from "./models_2";
4
+ export const ListDataSourcesResponseFilterSensitiveLog = (obj) => ({
5
+ ...obj,
6
+ ...(obj.DataSources && { DataSources: obj.DataSources.map((item) => DataSourceFilterSensitiveLog(item)) }),
7
+ });
8
+ export const ListFolderMembersRequestFilterSensitiveLog = (obj) => ({
9
+ ...obj,
10
+ });
4
11
  export const ListFolderMembersResponseFilterSensitiveLog = (obj) => ({
5
12
  ...obj,
6
13
  });
@@ -1,8 +1,8 @@
1
1
  import { HttpRequest as __HttpRequest } from "@aws-sdk/protocol-http";
2
2
  import { decorateServiceException as __decorateServiceException, expectBoolean as __expectBoolean, expectInt32 as __expectInt32, expectLong as __expectLong, expectNonNull as __expectNonNull, expectNumber as __expectNumber, expectObject as __expectObject, expectString as __expectString, expectUnion as __expectUnion, limitedParseDouble as __limitedParseDouble, map as __map, parseEpochTimestamp as __parseEpochTimestamp, resolvedPath as __resolvedPath, serializeFloat as __serializeFloat, throwDefaultError, } from "@aws-sdk/smithy-client";
3
3
  import { AccessDeniedException, } from "../models/models_0";
4
- import { ConcurrentUpdatingException, ConflictException, InternalFailureException, InvalidParameterValueException, LimitExceededException, PreconditionNotMetException, ResourceExistsException, ResourceNotFoundException, ResourceUnavailableException, ThrottlingException, } from "../models/models_1";
5
- import { DataSourceParameters, DomainNotWhitelistedException, IdentityTypeNotSupportedException, InvalidNextTokenException, InvalidRequestException, PhysicalTable, QuickSightUserNotFoundException, SessionLifetimeInMinutesInvalidException, TransformOperation, UnsupportedPricingPlanException, UnsupportedUserEditionException, } from "../models/models_2";
4
+ import { ConcurrentUpdatingException, ConflictException, InternalFailureException, InvalidParameterValueException, PreconditionNotMetException, ResourceExistsException, ResourceNotFoundException, ResourceUnavailableException, ThrottlingException, } from "../models/models_1";
5
+ import { DataSourceParameters, DomainNotWhitelistedException, IdentityTypeNotSupportedException, InvalidNextTokenException, InvalidRequestException, LimitExceededException, PhysicalTable, QuickSightUserNotFoundException, SessionLifetimeInMinutesInvalidException, TransformOperation, UnsupportedPricingPlanException, UnsupportedUserEditionException, } from "../models/models_2";
6
6
  import { QuickSightServiceException as __BaseException } from "../models/QuickSightServiceException";
7
7
  export const serializeAws_restJson1CancelIngestionCommand = async (input, context) => {
8
8
  const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
@@ -12108,6 +12108,13 @@ const serializeAws_restJson1DashboardVisualPublishOptions = (input, context) =>
12108
12108
  }),
12109
12109
  };
12110
12110
  };
12111
+ const serializeAws_restJson1DataBarsOptions = (input, context) => {
12112
+ return {
12113
+ ...(input.FieldId != null && { FieldId: input.FieldId }),
12114
+ ...(input.NegativeColor != null && { NegativeColor: input.NegativeColor }),
12115
+ ...(input.PositiveColor != null && { PositiveColor: input.PositiveColor }),
12116
+ };
12117
+ };
12111
12118
  const serializeAws_restJson1DatabricksParameters = (input, context) => {
12112
12119
  return {
12113
12120
  ...(input.Host != null && { Host: input.Host }),
@@ -12400,7 +12407,7 @@ const serializeAws_restJson1DateTimeDefaultValueList = (input, context) => {
12400
12407
  return input
12401
12408
  .filter((e) => e != null)
12402
12409
  .map((entry) => {
12403
- return Math.round(entry.getTime() / 1000).toString();
12410
+ return Math.round(entry.getTime() / 1000);
12404
12411
  });
12405
12412
  };
12406
12413
  const serializeAws_restJson1DateTimeDefaultValues = (input, context) => {
@@ -12470,7 +12477,7 @@ const serializeAws_restJson1DateTimePickerControlDisplayOptions = (input, contex
12470
12477
  };
12471
12478
  const serializeAws_restJson1DateTimeValueWhenUnsetConfiguration = (input, context) => {
12472
12479
  return {
12473
- ...(input.CustomValue != null && { CustomValue: Math.round(input.CustomValue.getTime() / 1000).toString() }),
12480
+ ...(input.CustomValue != null && { CustomValue: Math.round(input.CustomValue.getTime() / 1000) }),
12474
12481
  ...(input.ValueWhenUnsetOption != null && { ValueWhenUnsetOption: input.ValueWhenUnsetOption }),
12475
12482
  };
12476
12483
  };
@@ -15670,7 +15677,7 @@ const serializeAws_restJson1SensitiveTimestampList = (input, context) => {
15670
15677
  return input
15671
15678
  .filter((e) => e != null)
15672
15679
  .map((entry) => {
15673
- return Math.round(entry.getTime() / 1000).toString();
15680
+ return Math.round(entry.getTime() / 1000);
15674
15681
  });
15675
15682
  };
15676
15683
  const serializeAws_restJson1SeriesItem = (input, context) => {
@@ -16062,6 +16069,9 @@ const serializeAws_restJson1TableConfiguration = (input, context) => {
16062
16069
  ...(input.SortConfiguration != null && {
16063
16070
  SortConfiguration: serializeAws_restJson1TableSortConfiguration(input.SortConfiguration, context),
16064
16071
  }),
16072
+ ...(input.TableInlineVisualizations != null && {
16073
+ TableInlineVisualizations: serializeAws_restJson1TableInlineVisualizationList(input.TableInlineVisualizations, context),
16074
+ }),
16065
16075
  ...(input.TableOptions != null && {
16066
16076
  TableOptions: serializeAws_restJson1TableOptions(input.TableOptions, context),
16067
16077
  }),
@@ -16154,6 +16164,18 @@ const serializeAws_restJson1TableFieldWells = (input, context) => {
16154
16164
  }),
16155
16165
  };
16156
16166
  };
16167
+ const serializeAws_restJson1TableInlineVisualization = (input, context) => {
16168
+ return {
16169
+ ...(input.DataBars != null && { DataBars: serializeAws_restJson1DataBarsOptions(input.DataBars, context) }),
16170
+ };
16171
+ };
16172
+ const serializeAws_restJson1TableInlineVisualizationList = (input, context) => {
16173
+ return input
16174
+ .filter((e) => e != null)
16175
+ .map((entry) => {
16176
+ return serializeAws_restJson1TableInlineVisualization(entry, context);
16177
+ });
16178
+ };
16157
16179
  const serializeAws_restJson1TableOptions = (input, context) => {
16158
16180
  return {
16159
16181
  ...(input.CellStyle != null && { CellStyle: serializeAws_restJson1TableCellStyle(input.CellStyle, context) }),
@@ -16385,14 +16407,14 @@ const serializeAws_restJson1TimeEqualityFilter = (input, context) => {
16385
16407
  ...(input.FilterId != null && { FilterId: input.FilterId }),
16386
16408
  ...(input.ParameterName != null && { ParameterName: input.ParameterName }),
16387
16409
  ...(input.TimeGranularity != null && { TimeGranularity: input.TimeGranularity }),
16388
- ...(input.Value != null && { Value: Math.round(input.Value.getTime() / 1000).toString() }),
16410
+ ...(input.Value != null && { Value: Math.round(input.Value.getTime() / 1000) }),
16389
16411
  };
16390
16412
  };
16391
16413
  const serializeAws_restJson1TimeRangeDrillDownFilter = (input, context) => {
16392
16414
  return {
16393
16415
  ...(input.Column != null && { Column: serializeAws_restJson1ColumnIdentifier(input.Column, context) }),
16394
- ...(input.RangeMaximum != null && { RangeMaximum: Math.round(input.RangeMaximum.getTime() / 1000).toString() }),
16395
- ...(input.RangeMinimum != null && { RangeMinimum: Math.round(input.RangeMinimum.getTime() / 1000).toString() }),
16416
+ ...(input.RangeMaximum != null && { RangeMaximum: Math.round(input.RangeMaximum.getTime() / 1000) }),
16417
+ ...(input.RangeMinimum != null && { RangeMinimum: Math.round(input.RangeMinimum.getTime() / 1000) }),
16396
16418
  ...(input.TimeGranularity != null && { TimeGranularity: input.TimeGranularity }),
16397
16419
  };
16398
16420
  };
@@ -16421,7 +16443,7 @@ const serializeAws_restJson1TimeRangeFilterValue = (input, context) => {
16421
16443
  ...(input.RollingDate != null && {
16422
16444
  RollingDate: serializeAws_restJson1RollingDateConfiguration(input.RollingDate, context),
16423
16445
  }),
16424
- ...(input.StaticValue != null && { StaticValue: Math.round(input.StaticValue.getTime() / 1000).toString() }),
16446
+ ...(input.StaticValue != null && { StaticValue: Math.round(input.StaticValue.getTime() / 1000) }),
16425
16447
  };
16426
16448
  };
16427
16449
  const serializeAws_restJson1TooltipItem = (input, context) => {
@@ -16915,14 +16937,14 @@ const serializeAws_restJson1WaterfallVisual = (input, context) => {
16915
16937
  };
16916
16938
  const serializeAws_restJson1WhatIfPointScenario = (input, context) => {
16917
16939
  return {
16918
- ...(input.Date != null && { Date: Math.round(input.Date.getTime() / 1000).toString() }),
16940
+ ...(input.Date != null && { Date: Math.round(input.Date.getTime() / 1000) }),
16919
16941
  ...(input.Value != null && { Value: __serializeFloat(input.Value) }),
16920
16942
  };
16921
16943
  };
16922
16944
  const serializeAws_restJson1WhatIfRangeScenario = (input, context) => {
16923
16945
  return {
16924
- ...(input.EndDate != null && { EndDate: Math.round(input.EndDate.getTime() / 1000).toString() }),
16925
- ...(input.StartDate != null && { StartDate: Math.round(input.StartDate.getTime() / 1000).toString() }),
16946
+ ...(input.EndDate != null && { EndDate: Math.round(input.EndDate.getTime() / 1000) }),
16947
+ ...(input.StartDate != null && { StartDate: Math.round(input.StartDate.getTime() / 1000) }),
16926
16948
  ...(input.Value != null && { Value: __serializeFloat(input.Value) }),
16927
16949
  };
16928
16950
  };
@@ -18461,6 +18483,13 @@ const deserializeAws_restJson1DashboardVersionSummaryList = (output, context) =>
18461
18483
  });
18462
18484
  return retVal;
18463
18485
  };
18486
+ const deserializeAws_restJson1DataBarsOptions = (output, context) => {
18487
+ return {
18488
+ FieldId: __expectString(output.FieldId),
18489
+ NegativeColor: __expectString(output.NegativeColor),
18490
+ PositiveColor: __expectString(output.PositiveColor),
18491
+ };
18492
+ };
18464
18493
  const deserializeAws_restJson1DatabricksParameters = (output, context) => {
18465
18494
  return {
18466
18495
  Host: __expectString(output.Host),
@@ -22848,6 +22877,9 @@ const deserializeAws_restJson1TableConfiguration = (output, context) => {
22848
22877
  SortConfiguration: output.SortConfiguration != null
22849
22878
  ? deserializeAws_restJson1TableSortConfiguration(output.SortConfiguration, context)
22850
22879
  : undefined,
22880
+ TableInlineVisualizations: output.TableInlineVisualizations != null
22881
+ ? deserializeAws_restJson1TableInlineVisualizationList(output.TableInlineVisualizations, context)
22882
+ : undefined,
22851
22883
  TableOptions: output.TableOptions != null ? deserializeAws_restJson1TableOptions(output.TableOptions, context) : undefined,
22852
22884
  TotalOptions: output.TotalOptions != null ? deserializeAws_restJson1TotalOptions(output.TotalOptions, context) : undefined,
22853
22885
  };
@@ -22940,6 +22972,22 @@ const deserializeAws_restJson1TableFieldWells = (output, context) => {
22940
22972
  : undefined,
22941
22973
  };
22942
22974
  };
22975
+ const deserializeAws_restJson1TableInlineVisualization = (output, context) => {
22976
+ return {
22977
+ DataBars: output.DataBars != null ? deserializeAws_restJson1DataBarsOptions(output.DataBars, context) : undefined,
22978
+ };
22979
+ };
22980
+ const deserializeAws_restJson1TableInlineVisualizationList = (output, context) => {
22981
+ const retVal = (output || [])
22982
+ .filter((e) => e != null)
22983
+ .map((entry) => {
22984
+ if (entry === null) {
22985
+ return null;
22986
+ }
22987
+ return deserializeAws_restJson1TableInlineVisualization(entry, context);
22988
+ });
22989
+ return retVal;
22990
+ };
22943
22991
  const deserializeAws_restJson1TableOptions = (output, context) => {
22944
22992
  return {
22945
22993
  CellStyle: output.CellStyle != null ? deserializeAws_restJson1TableCellStyle(output.CellStyle, context) : undefined,
@@ -959,7 +959,7 @@ export declare class QuickSight extends QuickSightClient {
959
959
  listUsers(args: ListUsersCommandInput, cb: (err: any, data?: ListUsersCommandOutput) => void): void;
960
960
  listUsers(args: ListUsersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUsersCommandOutput) => void): void;
961
961
  /**
962
- * <p>Creates an Amazon QuickSight user, whose identity is associated with the Identity and Access Management (IAM) identity or role specified in the request. </p>
962
+ * <p>Creates an Amazon QuickSight user whose identity is associated with the Identity and Access Management (IAM) identity or role specified in the request. When you register a new user from the Amazon QuickSight API, Amazon QuickSight generates a registration URL. The user accesses this registration URL to create their account. Amazon QuickSight doesn't send a registration email to users who are registered from the Amazon QuickSight API. If you want new users to receive a registration email, then add those users in the Amazon QuickSight console. For more information on registering a new user in the Amazon QuickSight console, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/managing-users.html#inviting-users"> Inviting users to access Amazon QuickSight</a>.</p>
963
963
  */
964
964
  registerUser(args: RegisterUserCommandInput, options?: __HttpHandlerOptions): Promise<RegisterUserCommandOutput>;
965
965
  registerUser(args: RegisterUserCommandInput, cb: (err: any, data?: RegisterUserCommandOutput) => void): void;
@@ -6,7 +6,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
6
6
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
7
7
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
8
8
  import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
9
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
+ import { BodyLengthCalculator as __BodyLengthCalculator, ChecksumConstructor as __ChecksumConstructor, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
10
10
  import { CancelIngestionCommandInput, CancelIngestionCommandOutput } from "./commands/CancelIngestionCommand";
11
11
  import { CreateAccountCustomizationCommandInput, CreateAccountCustomizationCommandOutput } from "./commands/CreateAccountCustomizationCommand";
12
12
  import { CreateAccountSubscriptionCommandInput, CreateAccountSubscriptionCommandOutput } from "./commands/CreateAccountSubscriptionCommand";
@@ -142,11 +142,11 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
142
142
  */
143
143
  requestHandler?: __HttpHandler;
144
144
  /**
145
- * A constructor for a class implementing the {@link __Hash} interface
145
+ * A constructor for a class implementing the {@link __Checksum} interface
146
146
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
147
147
  * @internal
148
148
  */
149
- sha256?: __HashConstructor;
149
+ sha256?: __ChecksumConstructor | __HashConstructor;
150
150
  /**
151
151
  * The function that will be used to convert strings into HTTP endpoints.
152
152
  * @internal
@@ -1,7 +1,8 @@
1
1
  import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
- import { CreateAnalysisRequest, CreateAnalysisResponse } from "../models/models_1";
4
+ import { CreateAnalysisRequest } from "../models/models_1";
5
+ import { CreateAnalysisResponse } from "../models/models_2";
5
6
  import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
6
7
  export interface CreateAnalysisCommandInput extends CreateAnalysisRequest {
7
8
  }
@@ -1,7 +1,8 @@
1
1
  import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
- import { ListDataSourcesRequest, ListDataSourcesResponse } from "../models/models_2";
4
+ import { ListDataSourcesRequest } from "../models/models_2";
5
+ import { ListDataSourcesResponse } from "../models/models_3";
5
6
  import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
6
7
  export interface ListDataSourcesCommandInput extends ListDataSourcesRequest {
7
8
  }
@@ -1,8 +1,7 @@
1
1
  import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
- import { ListFolderMembersRequest } from "../models/models_2";
5
- import { ListFolderMembersResponse } from "../models/models_3";
4
+ import { ListFolderMembersRequest, ListFolderMembersResponse } from "../models/models_3";
6
5
  import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
7
6
  export interface ListFolderMembersCommandInput extends ListFolderMembersRequest {
8
7
  }
@@ -8,7 +8,7 @@ export interface RegisterUserCommandInput extends RegisterUserRequest {
8
8
  export interface RegisterUserCommandOutput extends RegisterUserResponse, __MetadataBearer {
9
9
  }
10
10
  /**
11
- * <p>Creates an Amazon QuickSight user, whose identity is associated with the Identity and Access Management (IAM) identity or role specified in the request. </p>
11
+ * <p>Creates an Amazon QuickSight user whose identity is associated with the Identity and Access Management (IAM) identity or role specified in the request. When you register a new user from the Amazon QuickSight API, Amazon QuickSight generates a registration URL. The user accesses this registration URL to create their account. Amazon QuickSight doesn't send a registration email to users who are registered from the Amazon QuickSight API. If you want new users to receive a registration email, then add those users in the Amazon QuickSight console. For more information on registering a new user in the Amazon QuickSight console, see <a href="https://docs.aws.amazon.com/quicksight/latest/user/managing-users.html#inviting-users"> Inviting users to access Amazon QuickSight</a>.</p>
12
12
  * @example
13
13
  * Use a bare-bones client and the command you need to make an API call.
14
14
  * ```javascript
@@ -3517,6 +3517,32 @@ export interface TableSortConfiguration {
3517
3517
  */
3518
3518
  PaginationConfiguration?: PaginationConfiguration;
3519
3519
  }
3520
+ /**
3521
+ * <p>The options for data bars.</p>
3522
+ */
3523
+ export interface DataBarsOptions {
3524
+ /**
3525
+ * <p>The field ID for the data bars options.</p>
3526
+ */
3527
+ FieldId: string | undefined;
3528
+ /**
3529
+ * <p>The color of the positive data bar.</p>
3530
+ */
3531
+ PositiveColor?: string;
3532
+ /**
3533
+ * <p>The color of the negative data bar.</p>
3534
+ */
3535
+ NegativeColor?: string;
3536
+ }
3537
+ /**
3538
+ * <p>The inline visualization of a specific type to display within a chart.</p>
3539
+ */
3540
+ export interface TableInlineVisualization {
3541
+ /**
3542
+ * <p>The configuration of the inline visualization of the data bars within a chart.</p>
3543
+ */
3544
+ DataBars?: DataBarsOptions;
3545
+ }
3520
3546
  export declare enum TableOrientation {
3521
3547
  HORIZONTAL = "HORIZONTAL",
3522
3548
  VERTICAL = "VERTICAL"
@@ -3595,6 +3621,10 @@ export interface TableConfiguration {
3595
3621
  * <p>The paginated report options for a table visual.</p>
3596
3622
  */
3597
3623
  PaginatedReportOptions?: TablePaginatedReportOptions;
3624
+ /**
3625
+ * <p>A collection of inline visualizations to display within a chart.</p>
3626
+ */
3627
+ TableInlineVisualizations?: TableInlineVisualization[];
3598
3628
  }
3599
3629
  /**
3600
3630
  * <p>The cell conditional formatting option for a table.</p>
@@ -5274,48 +5304,6 @@ export interface CreateAnalysisRequest {
5274
5304
  */
5275
5305
  Definition?: AnalysisDefinition;
5276
5306
  }
5277
- export interface CreateAnalysisResponse {
5278
- /**
5279
- * <p>The ARN for the analysis.</p>
5280
- */
5281
- Arn?: string;
5282
- /**
5283
- * <p>The ID of the analysis.</p>
5284
- */
5285
- AnalysisId?: string;
5286
- /**
5287
- * <p>The status of the creation of the analysis. </p>
5288
- */
5289
- CreationStatus?: ResourceStatus | string;
5290
- /**
5291
- * <p>The HTTP status of the request.</p>
5292
- */
5293
- Status?: number;
5294
- /**
5295
- * <p>The Amazon Web Services request ID for this operation.</p>
5296
- */
5297
- RequestId?: string;
5298
- }
5299
- /**
5300
- * <p>A limit is exceeded.</p>
5301
- */
5302
- export declare class LimitExceededException extends __BaseException {
5303
- readonly name: "LimitExceededException";
5304
- readonly $fault: "client";
5305
- Message?: string;
5306
- /**
5307
- * <p>Limit exceeded.</p>
5308
- */
5309
- ResourceType?: ExceptionResourceType | string;
5310
- /**
5311
- * <p>The Amazon Web Services request ID for this request.</p>
5312
- */
5313
- RequestId?: string;
5314
- /**
5315
- * @internal
5316
- */
5317
- constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
5318
- }
5319
5307
  /**
5320
5308
  * @internal
5321
5309
  */
@@ -6004,6 +5992,14 @@ export declare const TablePaginatedReportOptionsFilterSensitiveLog: (obj: TableP
6004
5992
  * @internal
6005
5993
  */
6006
5994
  export declare const TableSortConfigurationFilterSensitiveLog: (obj: TableSortConfiguration) => any;
5995
+ /**
5996
+ * @internal
5997
+ */
5998
+ export declare const DataBarsOptionsFilterSensitiveLog: (obj: DataBarsOptions) => any;
5999
+ /**
6000
+ * @internal
6001
+ */
6002
+ export declare const TableInlineVisualizationFilterSensitiveLog: (obj: TableInlineVisualization) => any;
6007
6003
  /**
6008
6004
  * @internal
6009
6005
  */
@@ -6276,7 +6272,3 @@ export declare const ResourcePermissionFilterSensitiveLog: (obj: ResourcePermiss
6276
6272
  * @internal
6277
6273
  */
6278
6274
  export declare const CreateAnalysisRequestFilterSensitiveLog: (obj: CreateAnalysisRequest) => any;
6279
- /**
6280
- * @internal
6281
- */
6282
- export declare const CreateAnalysisResponseFilterSensitiveLog: (obj: CreateAnalysisResponse) => any;
@@ -1,7 +1,49 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { AccountCustomization, AccountInfo, AccountSettings, AdHocFilteringOption, AmazonElasticsearchParameters, AmazonOpenSearchParameters, Analysis, AnalysisDefaults, AnalysisError, CalculatedField, ColumnConfiguration, DashboardBehavior, DataSetIdentifierDeclaration, Entity, FilterGroup, ParameterDeclaration, ResourceStatus, Sheet } from "./models_0";
3
- import { _Parameters, AnalysisDefinition, AnalysisSummary, AnonymousUserEmbeddingExperienceConfiguration, AssignmentStatus, AthenaParameters, AuroraParameters, AuroraPostgreSqlParameters, AwsIotAnalyticsParameters, BorderStyle, CalculatedColumn, CastColumnTypeOperation, ColumnDataType, ColumnGroup, ColumnGroupSchema, ColumnLevelPermissionRule, ColumnSchema, ColumnTag, ColumnTagName, DashboardVisualId, DataSetReference, FilterOperator, ResourcePermission, SheetDefinition, Tag } from "./models_1";
3
+ import { _Parameters, AnalysisDefinition, AnalysisSummary, AnonymousUserEmbeddingExperienceConfiguration, AssignmentStatus, AthenaParameters, AuroraParameters, AuroraPostgreSqlParameters, AwsIotAnalyticsParameters, BorderStyle, CalculatedColumn, CastColumnTypeOperation, ColumnDataType, ColumnGroup, ColumnGroupSchema, ColumnLevelPermissionRule, ColumnSchema, ColumnTag, ColumnTagName, DashboardVisualId, DataSetReference, ExceptionResourceType, FilterOperator, ResourcePermission, SheetDefinition, Tag } from "./models_1";
4
4
  import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
5
+ export interface CreateAnalysisResponse {
6
+ /**
7
+ * <p>The ARN for the analysis.</p>
8
+ */
9
+ Arn?: string;
10
+ /**
11
+ * <p>The ID of the analysis.</p>
12
+ */
13
+ AnalysisId?: string;
14
+ /**
15
+ * <p>The status of the creation of the analysis. </p>
16
+ */
17
+ CreationStatus?: ResourceStatus | string;
18
+ /**
19
+ * <p>The HTTP status of the request.</p>
20
+ */
21
+ Status?: number;
22
+ /**
23
+ * <p>The Amazon Web Services request ID for this operation.</p>
24
+ */
25
+ RequestId?: string;
26
+ }
27
+ /**
28
+ * <p>A limit is exceeded.</p>
29
+ */
30
+ export declare class LimitExceededException extends __BaseException {
31
+ readonly name: "LimitExceededException";
32
+ readonly $fault: "client";
33
+ Message?: string;
34
+ /**
35
+ * <p>Limit exceeded.</p>
36
+ */
37
+ ResourceType?: ExceptionResourceType | string;
38
+ /**
39
+ * <p>The Amazon Web Services request ID for this request.</p>
40
+ */
41
+ RequestId?: string;
42
+ /**
43
+ * @internal
44
+ */
45
+ constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
46
+ }
5
47
  /**
6
48
  * <p>This error indicates that you are calling an operation on an Amazon QuickSight
7
49
  * subscription where the edition doesn't include support for that operation. Amazon
@@ -559,7 +601,7 @@ export interface LogicalTable {
559
601
  */
560
602
  Alias: string | undefined;
561
603
  /**
562
- * <p>Transform operations that act on this logical table.</p>
604
+ * <p>Transform operations that act on this logical table. For this structure to be valid, only one of the attributes can be non-null. </p>
563
605
  */
564
606
  DataTransforms?: TransformOperation[];
565
607
  /**
@@ -5270,7 +5312,7 @@ export interface TemplateError {
5270
5312
  */
5271
5313
  Message?: string;
5272
5314
  /**
5273
- * <p></p>
5315
+ * <p>An error path that shows which entities caused the template error.</p>
5274
5316
  */
5275
5317
  ViolatedEntities?: Entity[];
5276
5318
  }
@@ -5291,7 +5333,44 @@ export interface TemplateVersion {
5291
5333
  */
5292
5334
  VersionNumber?: number;
5293
5335
  /**
5294
- * <p>The HTTP status of the request.</p>
5336
+ * <p>The status that is associated with the template.</p>
5337
+ * <ul>
5338
+ * <li>
5339
+ * <p>
5340
+ * <code>CREATION_IN_PROGRESS</code>
5341
+ * </p>
5342
+ * </li>
5343
+ * <li>
5344
+ * <p>
5345
+ * <code>CREATION_SUCCESSFUL</code>
5346
+ * </p>
5347
+ * </li>
5348
+ * <li>
5349
+ * <p>
5350
+ * <code>CREATION_FAILED</code>
5351
+ * </p>
5352
+ * </li>
5353
+ * <li>
5354
+ * <p>
5355
+ * <code>UPDATE_IN_PROGRESS</code>
5356
+ * </p>
5357
+ * </li>
5358
+ * <li>
5359
+ * <p>
5360
+ * <code>UPDATE_SUCCESSFUL</code>
5361
+ * </p>
5362
+ * </li>
5363
+ * <li>
5364
+ * <p>
5365
+ * <code>UPDATE_FAILED</code>
5366
+ * </p>
5367
+ * </li>
5368
+ * <li>
5369
+ * <p>
5370
+ * <code>DELETED</code>
5371
+ * </p>
5372
+ * </li>
5373
+ * </ul>
5295
5374
  */
5296
5375
  Status?: ResourceStatus | string;
5297
5376
  /**
@@ -6671,42 +6750,10 @@ export interface ListDataSourcesRequest {
6671
6750
  */
6672
6751
  MaxResults?: number;
6673
6752
  }
6674
- export interface ListDataSourcesResponse {
6675
- /**
6676
- * <p>A list of data sources.</p>
6677
- */
6678
- DataSources?: DataSource[];
6679
- /**
6680
- * <p>The token for the next set of results, or null if there are no more results.</p>
6681
- */
6682
- NextToken?: string;
6683
- /**
6684
- * <p>The Amazon Web Services request ID for this operation.</p>
6685
- */
6686
- RequestId?: string;
6687
- /**
6688
- * <p>The HTTP status of the request.</p>
6689
- */
6690
- Status?: number;
6691
- }
6692
- export interface ListFolderMembersRequest {
6693
- /**
6694
- * <p>The ID for the Amazon Web Services account that contains the folder.</p>
6695
- */
6696
- AwsAccountId: string | undefined;
6697
- /**
6698
- * <p>The ID of the folder.</p>
6699
- */
6700
- FolderId: string | undefined;
6701
- /**
6702
- * <p>The token for the next set of results, or null if there are no more results.</p>
6703
- */
6704
- NextToken?: string;
6705
- /**
6706
- * <p>The maximum number of results to be returned per request.</p>
6707
- */
6708
- MaxResults?: number;
6709
- }
6753
+ /**
6754
+ * @internal
6755
+ */
6756
+ export declare const CreateAnalysisResponseFilterSensitiveLog: (obj: CreateAnalysisResponse) => any;
6710
6757
  /**
6711
6758
  * @internal
6712
6759
  */
@@ -7731,11 +7778,3 @@ export declare const ListDataSetsResponseFilterSensitiveLog: (obj: ListDataSetsR
7731
7778
  * @internal
7732
7779
  */
7733
7780
  export declare const ListDataSourcesRequestFilterSensitiveLog: (obj: ListDataSourcesRequest) => any;
7734
- /**
7735
- * @internal
7736
- */
7737
- export declare const ListDataSourcesResponseFilterSensitiveLog: (obj: ListDataSourcesResponse) => any;
7738
- /**
7739
- * @internal
7740
- */
7741
- export declare const ListFolderMembersRequestFilterSensitiveLog: (obj: ListFolderMembersRequest) => any;