@aws-sdk/client-quicksight 3.632.0 → 3.633.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.
- package/dist-cjs/index.js +38 -0
- package/dist-es/models/models_2.js +14 -0
- package/dist-es/protocols/Aws_restJson1.js +18 -1
- package/dist-types/commands/CreateDataSourceCommand.d.ts +3 -0
- package/dist-types/commands/CreateFolderCommand.d.ts +1 -2
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +3 -0
- package/dist-types/models/models_2.d.ts +18 -48
- package/dist-types/models/models_3.d.ts +48 -27
- package/dist-types/models/models_4.d.ts +28 -1
- package/dist-types/ts3.4/commands/CreateFolderCommand.d.ts +1 -2
- package/dist-types/ts3.4/models/models_2.d.ts +12 -10
- package/dist-types/ts3.4/models/models_3.d.ts +10 -6
- package/dist-types/ts3.4/models/models_4.d.ts +6 -1
- package/package.json +1 -1
package/dist-cjs/index.js
CHANGED
|
@@ -150,6 +150,7 @@ __export(src_exports, {
|
|
|
150
150
|
CustomContentVisualFilterSensitiveLog: () => CustomContentVisualFilterSensitiveLog,
|
|
151
151
|
CustomParameterValuesFilterSensitiveLog: () => CustomParameterValuesFilterSensitiveLog,
|
|
152
152
|
CustomValuesConfigurationFilterSensitiveLog: () => CustomValuesConfigurationFilterSensitiveLog,
|
|
153
|
+
CustomerManagedKeyUnavailableException: () => CustomerManagedKeyUnavailableException,
|
|
153
154
|
DashboardBehavior: () => DashboardBehavior,
|
|
154
155
|
DashboardErrorType: () => DashboardErrorType,
|
|
155
156
|
DashboardFilterAttribute: () => DashboardFilterAttribute,
|
|
@@ -3278,6 +3279,25 @@ var DataSourceType = {
|
|
|
3278
3279
|
TRINO: "TRINO",
|
|
3279
3280
|
TWITTER: "TWITTER"
|
|
3280
3281
|
};
|
|
3282
|
+
var _CustomerManagedKeyUnavailableException = class _CustomerManagedKeyUnavailableException extends QuickSightServiceException {
|
|
3283
|
+
/**
|
|
3284
|
+
* @internal
|
|
3285
|
+
*/
|
|
3286
|
+
constructor(opts) {
|
|
3287
|
+
super({
|
|
3288
|
+
name: "CustomerManagedKeyUnavailableException",
|
|
3289
|
+
$fault: "client",
|
|
3290
|
+
...opts
|
|
3291
|
+
});
|
|
3292
|
+
this.name = "CustomerManagedKeyUnavailableException";
|
|
3293
|
+
this.$fault = "client";
|
|
3294
|
+
Object.setPrototypeOf(this, _CustomerManagedKeyUnavailableException.prototype);
|
|
3295
|
+
this.Message = opts.Message;
|
|
3296
|
+
this.RequestId = opts.RequestId;
|
|
3297
|
+
}
|
|
3298
|
+
};
|
|
3299
|
+
__name(_CustomerManagedKeyUnavailableException, "CustomerManagedKeyUnavailableException");
|
|
3300
|
+
var CustomerManagedKeyUnavailableException = _CustomerManagedKeyUnavailableException;
|
|
3281
3301
|
var FolderType = {
|
|
3282
3302
|
RESTRICTED: "RESTRICTED",
|
|
3283
3303
|
SHARED: "SHARED"
|
|
@@ -10305,6 +10325,9 @@ var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
10305
10325
|
case "UnsupportedUserEditionException":
|
|
10306
10326
|
case "com.amazonaws.quicksight#UnsupportedUserEditionException":
|
|
10307
10327
|
throw await de_UnsupportedUserEditionExceptionRes(parsedOutput, context);
|
|
10328
|
+
case "CustomerManagedKeyUnavailableException":
|
|
10329
|
+
case "com.amazonaws.quicksight#CustomerManagedKeyUnavailableException":
|
|
10330
|
+
throw await de_CustomerManagedKeyUnavailableExceptionRes(parsedOutput, context);
|
|
10308
10331
|
case "ConcurrentUpdatingException":
|
|
10309
10332
|
case "com.amazonaws.quicksight#ConcurrentUpdatingException":
|
|
10310
10333
|
throw await de_ConcurrentUpdatingExceptionRes(parsedOutput, context);
|
|
@@ -10381,6 +10404,20 @@ var de_ConflictExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, contex
|
|
|
10381
10404
|
});
|
|
10382
10405
|
return (0, import_smithy_client.decorateServiceException)(exception, parsedOutput.body);
|
|
10383
10406
|
}, "de_ConflictExceptionRes");
|
|
10407
|
+
var de_CustomerManagedKeyUnavailableExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
|
|
10408
|
+
const contents = (0, import_smithy_client.map)({});
|
|
10409
|
+
const data = parsedOutput.body;
|
|
10410
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
10411
|
+
Message: import_smithy_client.expectString,
|
|
10412
|
+
RequestId: import_smithy_client.expectString
|
|
10413
|
+
});
|
|
10414
|
+
Object.assign(contents, doc);
|
|
10415
|
+
const exception = new CustomerManagedKeyUnavailableException({
|
|
10416
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
10417
|
+
...contents
|
|
10418
|
+
});
|
|
10419
|
+
return (0, import_smithy_client.decorateServiceException)(exception, parsedOutput.body);
|
|
10420
|
+
}, "de_CustomerManagedKeyUnavailableExceptionRes");
|
|
10384
10421
|
var de_DomainNotWhitelistedExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
|
|
10385
10422
|
const contents = (0, import_smithy_client.map)({});
|
|
10386
10423
|
const data = parsedOutput.body;
|
|
@@ -19637,6 +19674,7 @@ var paginateSearchGroups = (0, import_core.createPaginator)(QuickSightClient, Se
|
|
|
19637
19674
|
RowLevelPermissionPolicy,
|
|
19638
19675
|
Status,
|
|
19639
19676
|
DataSourceType,
|
|
19677
|
+
CustomerManagedKeyUnavailableException,
|
|
19640
19678
|
FolderType,
|
|
19641
19679
|
SharingModel,
|
|
19642
19680
|
WaterfallChartAggregatedFieldWellsFilterSensitiveLog,
|
|
@@ -632,6 +632,20 @@ export const DataSourceType = {
|
|
|
632
632
|
TRINO: "TRINO",
|
|
633
633
|
TWITTER: "TWITTER",
|
|
634
634
|
};
|
|
635
|
+
export class CustomerManagedKeyUnavailableException extends __BaseException {
|
|
636
|
+
constructor(opts) {
|
|
637
|
+
super({
|
|
638
|
+
name: "CustomerManagedKeyUnavailableException",
|
|
639
|
+
$fault: "client",
|
|
640
|
+
...opts,
|
|
641
|
+
});
|
|
642
|
+
this.name = "CustomerManagedKeyUnavailableException";
|
|
643
|
+
this.$fault = "client";
|
|
644
|
+
Object.setPrototypeOf(this, CustomerManagedKeyUnavailableException.prototype);
|
|
645
|
+
this.Message = opts.Message;
|
|
646
|
+
this.RequestId = opts.RequestId;
|
|
647
|
+
}
|
|
648
|
+
}
|
|
635
649
|
export const FolderType = {
|
|
636
650
|
RESTRICTED: "RESTRICTED",
|
|
637
651
|
SHARED: "SHARED",
|
|
@@ -2,7 +2,7 @@ import { awsExpectUnion as __expectUnion, loadRestJsonErrorCode, parseJsonBody a
|
|
|
2
2
|
import { requestBuilder as rb } from "@smithy/core";
|
|
3
3
|
import { _json, collectBody, decorateServiceException as __decorateServiceException, expectBoolean as __expectBoolean, expectInt32 as __expectInt32, expectLong as __expectLong, expectNonNull as __expectNonNull, expectNumber as __expectNumber, expectObject as __expectObject, expectString as __expectString, limitedParseDouble as __limitedParseDouble, map, parseEpochTimestamp as __parseEpochTimestamp, serializeFloat as __serializeFloat, take, withBaseException, } from "@smithy/smithy-client";
|
|
4
4
|
import { AccessDeniedException, } from "../models/models_0";
|
|
5
|
-
import { ConcurrentUpdatingException, ConflictException, InternalFailureException, InvalidParameterValueException, LimitExceededException, PreconditionNotMetException, ResourceExistsException, ResourceNotFoundException, ResourceUnavailableException, ThrottlingException, TransformOperation, UnsupportedUserEditionException, } from "../models/models_2";
|
|
5
|
+
import { ConcurrentUpdatingException, ConflictException, CustomerManagedKeyUnavailableException, InternalFailureException, InvalidParameterValueException, LimitExceededException, PreconditionNotMetException, ResourceExistsException, ResourceNotFoundException, ResourceUnavailableException, ThrottlingException, TransformOperation, UnsupportedUserEditionException, } from "../models/models_2";
|
|
6
6
|
import { DomainNotWhitelistedException, InvalidNextTokenException, } from "../models/models_3";
|
|
7
7
|
import { IdentityTypeNotSupportedException, InvalidRequestException, QuickSightUserNotFoundException, SessionLifetimeInMinutesInvalidException, UnsupportedPricingPlanException, } from "../models/models_4";
|
|
8
8
|
import { QuickSightServiceException as __BaseException } from "../models/QuickSightServiceException";
|
|
@@ -5938,6 +5938,9 @@ const de_CommandError = async (output, context) => {
|
|
|
5938
5938
|
case "UnsupportedUserEditionException":
|
|
5939
5939
|
case "com.amazonaws.quicksight#UnsupportedUserEditionException":
|
|
5940
5940
|
throw await de_UnsupportedUserEditionExceptionRes(parsedOutput, context);
|
|
5941
|
+
case "CustomerManagedKeyUnavailableException":
|
|
5942
|
+
case "com.amazonaws.quicksight#CustomerManagedKeyUnavailableException":
|
|
5943
|
+
throw await de_CustomerManagedKeyUnavailableExceptionRes(parsedOutput, context);
|
|
5941
5944
|
case "ConcurrentUpdatingException":
|
|
5942
5945
|
case "com.amazonaws.quicksight#ConcurrentUpdatingException":
|
|
5943
5946
|
throw await de_ConcurrentUpdatingExceptionRes(parsedOutput, context);
|
|
@@ -6014,6 +6017,20 @@ const de_ConflictExceptionRes = async (parsedOutput, context) => {
|
|
|
6014
6017
|
});
|
|
6015
6018
|
return __decorateServiceException(exception, parsedOutput.body);
|
|
6016
6019
|
};
|
|
6020
|
+
const de_CustomerManagedKeyUnavailableExceptionRes = async (parsedOutput, context) => {
|
|
6021
|
+
const contents = map({});
|
|
6022
|
+
const data = parsedOutput.body;
|
|
6023
|
+
const doc = take(data, {
|
|
6024
|
+
Message: __expectString,
|
|
6025
|
+
RequestId: __expectString,
|
|
6026
|
+
});
|
|
6027
|
+
Object.assign(contents, doc);
|
|
6028
|
+
const exception = new CustomerManagedKeyUnavailableException({
|
|
6029
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
6030
|
+
...contents,
|
|
6031
|
+
});
|
|
6032
|
+
return __decorateServiceException(exception, parsedOutput.body);
|
|
6033
|
+
};
|
|
6017
6034
|
const de_DomainNotWhitelistedExceptionRes = async (parsedOutput, context) => {
|
|
6018
6035
|
const contents = map({});
|
|
6019
6036
|
const data = parsedOutput.body;
|
|
@@ -362,6 +362,9 @@ declare const CreateDataSourceCommand_base: {
|
|
|
362
362
|
* @throws {@link ConflictException} (client fault)
|
|
363
363
|
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
364
364
|
*
|
|
365
|
+
* @throws {@link CustomerManagedKeyUnavailableException} (client fault)
|
|
366
|
+
* <p>The customer managed key that is registered to your Amazon QuickSight account is unavailable.</p>
|
|
367
|
+
*
|
|
365
368
|
* @throws {@link InternalFailureException} (server fault)
|
|
366
369
|
* <p>An internal failure occurred.</p>
|
|
367
370
|
*
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { CreateFolderRequest } from "../models/
|
|
4
|
-
import { CreateFolderResponse } from "../models/models_3";
|
|
3
|
+
import { CreateFolderRequest, CreateFolderResponse } from "../models/models_3";
|
|
5
4
|
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
@@ -344,6 +344,9 @@ declare const UpdateDataSourceCommand_base: {
|
|
|
344
344
|
* @throws {@link ConflictException} (client fault)
|
|
345
345
|
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
346
346
|
*
|
|
347
|
+
* @throws {@link CustomerManagedKeyUnavailableException} (client fault)
|
|
348
|
+
* <p>The customer managed key that is registered to your Amazon QuickSight account is unavailable.</p>
|
|
349
|
+
*
|
|
347
350
|
* @throws {@link InternalFailureException} (server fault)
|
|
348
351
|
* <p>An internal failure occurred.</p>
|
|
349
352
|
*
|
|
@@ -7532,6 +7532,24 @@ export interface CreateDataSourceResponse {
|
|
|
7532
7532
|
*/
|
|
7533
7533
|
Status?: number;
|
|
7534
7534
|
}
|
|
7535
|
+
/**
|
|
7536
|
+
* <p>The customer managed key that is registered to your Amazon QuickSight account is unavailable.</p>
|
|
7537
|
+
* @public
|
|
7538
|
+
*/
|
|
7539
|
+
export declare class CustomerManagedKeyUnavailableException extends __BaseException {
|
|
7540
|
+
readonly name: "CustomerManagedKeyUnavailableException";
|
|
7541
|
+
readonly $fault: "client";
|
|
7542
|
+
Message?: string;
|
|
7543
|
+
/**
|
|
7544
|
+
* <p>The Amazon Web Services request ID for this operation.</p>
|
|
7545
|
+
* @public
|
|
7546
|
+
*/
|
|
7547
|
+
RequestId?: string;
|
|
7548
|
+
/**
|
|
7549
|
+
* @internal
|
|
7550
|
+
*/
|
|
7551
|
+
constructor(opts: __ExceptionOptionType<CustomerManagedKeyUnavailableException, __BaseException>);
|
|
7552
|
+
}
|
|
7535
7553
|
/**
|
|
7536
7554
|
* @public
|
|
7537
7555
|
* @enum
|
|
@@ -7556,54 +7574,6 @@ export declare const SharingModel: {
|
|
|
7556
7574
|
* @public
|
|
7557
7575
|
*/
|
|
7558
7576
|
export type SharingModel = (typeof SharingModel)[keyof typeof SharingModel];
|
|
7559
|
-
/**
|
|
7560
|
-
* @public
|
|
7561
|
-
*/
|
|
7562
|
-
export interface CreateFolderRequest {
|
|
7563
|
-
/**
|
|
7564
|
-
* <p>The ID for the Amazon Web Services account where you want to create the folder.</p>
|
|
7565
|
-
* @public
|
|
7566
|
-
*/
|
|
7567
|
-
AwsAccountId: string | undefined;
|
|
7568
|
-
/**
|
|
7569
|
-
* <p>The ID of the folder.</p>
|
|
7570
|
-
* @public
|
|
7571
|
-
*/
|
|
7572
|
-
FolderId: string | undefined;
|
|
7573
|
-
/**
|
|
7574
|
-
* <p>The name of the folder.</p>
|
|
7575
|
-
* @public
|
|
7576
|
-
*/
|
|
7577
|
-
Name?: string;
|
|
7578
|
-
/**
|
|
7579
|
-
* <p>The type of folder. By default, <code>folderType</code> is <code>SHARED</code>.</p>
|
|
7580
|
-
* @public
|
|
7581
|
-
*/
|
|
7582
|
-
FolderType?: FolderType;
|
|
7583
|
-
/**
|
|
7584
|
-
* <p>The Amazon Resource Name (ARN) for the parent folder.</p>
|
|
7585
|
-
* <p>
|
|
7586
|
-
* <code>ParentFolderArn</code> can be null. An empty <code>parentFolderArn</code> creates a root-level folder.</p>
|
|
7587
|
-
* @public
|
|
7588
|
-
*/
|
|
7589
|
-
ParentFolderArn?: string;
|
|
7590
|
-
/**
|
|
7591
|
-
* <p>A structure that describes the principals and the resource-level permissions of a folder.</p>
|
|
7592
|
-
* <p>To specify no permissions, omit <code>Permissions</code>.</p>
|
|
7593
|
-
* @public
|
|
7594
|
-
*/
|
|
7595
|
-
Permissions?: ResourcePermission[];
|
|
7596
|
-
/**
|
|
7597
|
-
* <p>Tags for the folder.</p>
|
|
7598
|
-
* @public
|
|
7599
|
-
*/
|
|
7600
|
-
Tags?: Tag[];
|
|
7601
|
-
/**
|
|
7602
|
-
* <p>An optional parameter that determines the sharing scope of the folder. The default value for this parameter is <code>ACCOUNT</code>.</p>
|
|
7603
|
-
* @public
|
|
7604
|
-
*/
|
|
7605
|
-
SharingModel?: SharingModel;
|
|
7606
|
-
}
|
|
7607
7577
|
/**
|
|
7608
7578
|
* @internal
|
|
7609
7579
|
*/
|
|
@@ -2,6 +2,54 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-cli
|
|
|
2
2
|
import { AccountCustomization, AccountInfo, AccountSettings, Analysis, AnalysisDefaults, AnalysisError, AssetOptions, CalculatedField, ColumnConfiguration, Entity, FilterGroup, ParameterDeclaration, ResourceStatus, Sheet, TopicTimeGranularity } from "./models_0";
|
|
3
3
|
import { _Parameters, AnalysisDefinition, AnonymousUserSnapshotJobResult, AssetBundleCloudFormationOverridePropertyConfiguration, AssetBundleExportFormat, AssetBundleExportJobError, AssetBundleExportJobStatus, AssetBundleExportJobValidationStrategy, AssetBundleExportJobWarning, AssetBundleImportFailureAction, AssetBundleImportJobError, AssetBundleImportJobOverrideParameters, AssetBundleImportJobOverridePermissions, AssetBundleImportJobOverrideTags, AssetBundleImportJobOverrideValidationStrategy, AssetBundleImportJobStatus, AssetBundleImportJobWarning, AssetBundleImportSourceDescription, AssignmentStatus, AuthorSpecifiedAggregation, BorderStyle, CategoryFilterFunction, CategoryFilterType, CellValueSynonym, CollectiveConstant, ColumnDataRole, ColumnDataSubType, ColumnDataType, ColumnGroup, ColumnGroupSchema, ColumnLevelPermissionRule, ColumnSchema, ComparativeOrder, ConstantType, DashboardPublishOptions, DashboardVersionDefinition, DataSetImportMode, DatasetParameter, DataSetReference, DataSetUsageConfiguration, DataSourceParameters, DataSourceType, DisplayFormat, DisplayFormatOptions, FieldFolder, FilterClass, FilterOperator, FolderType, LinkSharingConfiguration, LogicalTable, PhysicalTable, ResourcePermission, RowLevelPermissionDataSet, RowLevelPermissionTagConfiguration, ServiceType, SharingModel, SheetDefinition, SnapshotFile, SnapshotS3DestinationConfiguration, SslProperties, Tag, ValidationStrategy, VpcConnectionProperties } from "./models_2";
|
|
4
4
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface CreateFolderRequest {
|
|
9
|
+
/**
|
|
10
|
+
* <p>The ID for the Amazon Web Services account where you want to create the folder.</p>
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
AwsAccountId: string | undefined;
|
|
14
|
+
/**
|
|
15
|
+
* <p>The ID of the folder.</p>
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
FolderId: string | undefined;
|
|
19
|
+
/**
|
|
20
|
+
* <p>The name of the folder.</p>
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
Name?: string;
|
|
24
|
+
/**
|
|
25
|
+
* <p>The type of folder. By default, <code>folderType</code> is <code>SHARED</code>.</p>
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
FolderType?: FolderType;
|
|
29
|
+
/**
|
|
30
|
+
* <p>The Amazon Resource Name (ARN) for the parent folder.</p>
|
|
31
|
+
* <p>
|
|
32
|
+
* <code>ParentFolderArn</code> can be null. An empty <code>parentFolderArn</code> creates a root-level folder.</p>
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
ParentFolderArn?: string;
|
|
36
|
+
/**
|
|
37
|
+
* <p>A structure that describes the principals and the resource-level permissions of a folder.</p>
|
|
38
|
+
* <p>To specify no permissions, omit <code>Permissions</code>.</p>
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
41
|
+
Permissions?: ResourcePermission[];
|
|
42
|
+
/**
|
|
43
|
+
* <p>Tags for the folder.</p>
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
Tags?: Tag[];
|
|
47
|
+
/**
|
|
48
|
+
* <p>An optional parameter that determines the sharing scope of the folder. The default value for this parameter is <code>ACCOUNT</code>.</p>
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
SharingModel?: SharingModel;
|
|
52
|
+
}
|
|
5
53
|
/**
|
|
6
54
|
* @public
|
|
7
55
|
*/
|
|
@@ -8009,33 +8057,6 @@ export declare const EmbeddingIdentityType: {
|
|
|
8009
8057
|
* @public
|
|
8010
8058
|
*/
|
|
8011
8059
|
export type EmbeddingIdentityType = (typeof EmbeddingIdentityType)[keyof typeof EmbeddingIdentityType];
|
|
8012
|
-
/**
|
|
8013
|
-
* <p>An entry that appears when a <code>KeyRegistration</code> update to Amazon QuickSight fails.</p>
|
|
8014
|
-
* @public
|
|
8015
|
-
*/
|
|
8016
|
-
export interface FailedKeyRegistrationEntry {
|
|
8017
|
-
/**
|
|
8018
|
-
* <p>The ARN of the KMS key that failed to update.</p>
|
|
8019
|
-
* @public
|
|
8020
|
-
*/
|
|
8021
|
-
KeyArn?: string;
|
|
8022
|
-
/**
|
|
8023
|
-
* <p>A message that provides information about why a <code>FailedKeyRegistrationEntry</code> error occurred.</p>
|
|
8024
|
-
* @public
|
|
8025
|
-
*/
|
|
8026
|
-
Message: string | undefined;
|
|
8027
|
-
/**
|
|
8028
|
-
* <p>The HTTP status of a <code>FailedKeyRegistrationEntry</code> error.</p>
|
|
8029
|
-
* @public
|
|
8030
|
-
*/
|
|
8031
|
-
StatusCode: number | undefined;
|
|
8032
|
-
/**
|
|
8033
|
-
* <p>A boolean that indicates whether a <code>FailedKeyRegistrationEntry</code> resulted from user error. If the value of this property is <code>True</code>, the error was caused by user error. If the value of this property is <code>False</code>, the error occurred on the backend. If your job continues fail and with a <code>False</code>
|
|
8034
|
-
* <code>SenderFault</code> value, contact Amazon Web Services Support.</p>
|
|
8035
|
-
* @public
|
|
8036
|
-
*/
|
|
8037
|
-
SenderFault: boolean | undefined;
|
|
8038
|
-
}
|
|
8039
8060
|
/**
|
|
8040
8061
|
* @internal
|
|
8041
8062
|
*/
|
|
@@ -1,8 +1,35 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { AccountCustomization, ActiveIAMPolicyAssignment, ResourceStatus } from "./models_0";
|
|
3
3
|
import { _Parameters, AnalysisDefinition, AnalysisSearchFilter, AnalysisSourceEntity, AnalysisSummary, AnonymousUserEmbeddingExperienceConfiguration, AssetBundleCloudFormationOverridePropertyConfiguration, AssetBundleExportFormat, AssetBundleExportJobSummary, AssetBundleExportJobValidationStrategy, AssetBundleImportFailureAction, AssetBundleImportJobOverrideParameters, AssetBundleImportJobOverridePermissions, AssetBundleImportJobOverrideTags, AssetBundleImportJobOverrideValidationStrategy, AssetBundleImportJobSummary, AssetBundleImportSource, AssignmentStatus, AuthorizedTargetsByService, BookmarksConfigurations, ColumnGroup, ColumnLevelPermissionRule, DashboardPublishOptions, DashboardSourceEntity, DashboardVersionDefinition, DashboardVisualId, DataSetImportMode, DatasetParameter, DataSetUsageConfiguration, DataSourceCredentials, DataSourceParameters, FieldFolder, FilterOperator, FolderType, LinkSharingConfiguration, LogicalTable, PhysicalTable, ResourcePermission, RowLevelPermissionDataSet, RowLevelPermissionTagConfiguration, ServiceType, SharingModel, SslProperties, Tag, TopicIR, TopicTemplate, ValidationStrategy, VisualRole, VpcConnectionProperties } from "./models_2";
|
|
4
|
-
import { DashboardSearchFilter, DashboardSummary, DashboardVersionSummary, DataSetRefreshProperties, DataSetSearchFilter, DataSetSummary, DataSource, DataSourceSearchFilter, DataSourceSummary, EmbeddingIdentityType,
|
|
4
|
+
import { DashboardSearchFilter, DashboardSummary, DashboardVersionSummary, DataSetRefreshProperties, DataSetSearchFilter, DataSetSummary, DataSource, DataSourceSearchFilter, DataSourceSummary, EmbeddingIdentityType, Group, GroupMember, IdentityType, Ingestion, NamespaceInfoV2, NetworkInterface, RefreshSchedule, RegisteredCustomerManagedKey, Role, SnapshotConfiguration, TemplateAlias, TemplateSourceEntity, TemplateVersionDefinition, ThemeAlias, ThemeConfiguration, ThemeType, TopicDetails, TopicRefreshSchedule, TopicUserExperienceVersion, User, UserRole, VPCConnectionAvailabilityStatus, VPCConnectionResourceStatus } from "./models_3";
|
|
5
5
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
6
|
+
/**
|
|
7
|
+
* <p>An entry that appears when a <code>KeyRegistration</code> update to Amazon QuickSight fails.</p>
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
export interface FailedKeyRegistrationEntry {
|
|
11
|
+
/**
|
|
12
|
+
* <p>The ARN of the KMS key that failed to update.</p>
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
KeyArn?: string;
|
|
16
|
+
/**
|
|
17
|
+
* <p>A message that provides information about why a <code>FailedKeyRegistrationEntry</code> error occurred.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
Message: string | undefined;
|
|
21
|
+
/**
|
|
22
|
+
* <p>The HTTP status of a <code>FailedKeyRegistrationEntry</code> error.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
StatusCode: number | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* <p>A boolean that indicates whether a <code>FailedKeyRegistrationEntry</code> resulted from user error. If the value of this property is <code>True</code>, the error was caused by user error. If the value of this property is <code>False</code>, the error occurred on the backend. If your job continues fail and with a <code>False</code>
|
|
28
|
+
* <code>SenderFault</code> value, contact Amazon Web Services Support.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
SenderFault: boolean | undefined;
|
|
32
|
+
}
|
|
6
33
|
/**
|
|
7
34
|
* @public
|
|
8
35
|
* @enum
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { CreateFolderRequest } from "../models/
|
|
4
|
-
import { CreateFolderResponse } from "../models/models_3";
|
|
3
|
+
import { CreateFolderRequest, CreateFolderResponse } from "../models/models_3";
|
|
5
4
|
import {
|
|
6
5
|
QuickSightClientResolvedConfig,
|
|
7
6
|
ServiceInputTypes,
|
|
@@ -2842,6 +2842,18 @@ export interface CreateDataSourceResponse {
|
|
|
2842
2842
|
RequestId?: string;
|
|
2843
2843
|
Status?: number;
|
|
2844
2844
|
}
|
|
2845
|
+
export declare class CustomerManagedKeyUnavailableException extends __BaseException {
|
|
2846
|
+
readonly name: "CustomerManagedKeyUnavailableException";
|
|
2847
|
+
readonly $fault: "client";
|
|
2848
|
+
Message?: string;
|
|
2849
|
+
RequestId?: string;
|
|
2850
|
+
constructor(
|
|
2851
|
+
opts: __ExceptionOptionType<
|
|
2852
|
+
CustomerManagedKeyUnavailableException,
|
|
2853
|
+
__BaseException
|
|
2854
|
+
>
|
|
2855
|
+
);
|
|
2856
|
+
}
|
|
2845
2857
|
export declare const FolderType: {
|
|
2846
2858
|
readonly RESTRICTED: "RESTRICTED";
|
|
2847
2859
|
readonly SHARED: "SHARED";
|
|
@@ -2852,16 +2864,6 @@ export declare const SharingModel: {
|
|
|
2852
2864
|
readonly NAMESPACE: "NAMESPACE";
|
|
2853
2865
|
};
|
|
2854
2866
|
export type SharingModel = (typeof SharingModel)[keyof typeof SharingModel];
|
|
2855
|
-
export interface CreateFolderRequest {
|
|
2856
|
-
AwsAccountId: string | undefined;
|
|
2857
|
-
FolderId: string | undefined;
|
|
2858
|
-
Name?: string;
|
|
2859
|
-
FolderType?: FolderType;
|
|
2860
|
-
ParentFolderArn?: string;
|
|
2861
|
-
Permissions?: ResourcePermission[];
|
|
2862
|
-
Tags?: Tag[];
|
|
2863
|
-
SharingModel?: SharingModel;
|
|
2864
|
-
}
|
|
2865
2867
|
export declare const WaterfallChartAggregatedFieldWellsFilterSensitiveLog: (
|
|
2866
2868
|
obj: WaterfallChartAggregatedFieldWells
|
|
2867
2869
|
) => any;
|
|
@@ -82,6 +82,16 @@ import {
|
|
|
82
82
|
VpcConnectionProperties,
|
|
83
83
|
} from "./models_2";
|
|
84
84
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
85
|
+
export interface CreateFolderRequest {
|
|
86
|
+
AwsAccountId: string | undefined;
|
|
87
|
+
FolderId: string | undefined;
|
|
88
|
+
Name?: string;
|
|
89
|
+
FolderType?: FolderType;
|
|
90
|
+
ParentFolderArn?: string;
|
|
91
|
+
Permissions?: ResourcePermission[];
|
|
92
|
+
Tags?: Tag[];
|
|
93
|
+
SharingModel?: SharingModel;
|
|
94
|
+
}
|
|
85
95
|
export interface CreateFolderResponse {
|
|
86
96
|
Status?: number;
|
|
87
97
|
Arn?: string;
|
|
@@ -2040,12 +2050,6 @@ export declare const EmbeddingIdentityType: {
|
|
|
2040
2050
|
};
|
|
2041
2051
|
export type EmbeddingIdentityType =
|
|
2042
2052
|
(typeof EmbeddingIdentityType)[keyof typeof EmbeddingIdentityType];
|
|
2043
|
-
export interface FailedKeyRegistrationEntry {
|
|
2044
|
-
KeyArn?: string;
|
|
2045
|
-
Message: string | undefined;
|
|
2046
|
-
StatusCode: number | undefined;
|
|
2047
|
-
SenderFault: boolean | undefined;
|
|
2048
|
-
}
|
|
2049
2053
|
export declare const TemplateVersionDefinitionFilterSensitiveLog: (
|
|
2050
2054
|
obj: TemplateVersionDefinition
|
|
2051
2055
|
) => any;
|
|
@@ -66,7 +66,6 @@ import {
|
|
|
66
66
|
DataSourceSearchFilter,
|
|
67
67
|
DataSourceSummary,
|
|
68
68
|
EmbeddingIdentityType,
|
|
69
|
-
FailedKeyRegistrationEntry,
|
|
70
69
|
Group,
|
|
71
70
|
GroupMember,
|
|
72
71
|
IdentityType,
|
|
@@ -92,6 +91,12 @@ import {
|
|
|
92
91
|
VPCConnectionResourceStatus,
|
|
93
92
|
} from "./models_3";
|
|
94
93
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
94
|
+
export interface FailedKeyRegistrationEntry {
|
|
95
|
+
KeyArn?: string;
|
|
96
|
+
Message: string | undefined;
|
|
97
|
+
StatusCode: number | undefined;
|
|
98
|
+
SenderFault: boolean | undefined;
|
|
99
|
+
}
|
|
95
100
|
export declare const FolderFilterAttribute: {
|
|
96
101
|
readonly DIRECT_QUICKSIGHT_OWNER: "DIRECT_QUICKSIGHT_OWNER";
|
|
97
102
|
readonly DIRECT_QUICKSIGHT_SOLE_OWNER: "DIRECT_QUICKSIGHT_SOLE_OWNER";
|
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.
|
|
4
|
+
"version": "3.633.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-quicksight",
|