@aws-sdk/client-quicksight 3.662.0 → 3.664.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 +541 -524
- package/dist-cjs/runtimeConfig.js +1 -0
- package/dist-es/commands/CreateDataSetCommand.js +1 -1
- package/dist-es/models/models_2.js +4 -20
- package/dist-es/models/models_3.js +26 -13
- package/dist-es/models/models_4.js +14 -1
- package/dist-es/protocols/Aws_restJson1.js +6 -0
- package/dist-es/runtimeConfig.js +2 -1
- package/dist-types/commands/CreateDataSetCommand.d.ts +1 -1
- package/dist-types/commands/CreateTopicCommand.d.ts +3 -0
- package/dist-types/commands/DescribeAssetBundleExportJobCommand.d.ts +10 -0
- package/dist-types/commands/DescribeAssetBundleImportJobCommand.d.ts +19 -0
- package/dist-types/commands/DescribeTopicCommand.d.ts +3 -0
- package/dist-types/commands/DescribeTopicRefreshCommand.d.ts +2 -1
- package/dist-types/commands/DescribeTopicRefreshScheduleCommand.d.ts +1 -1
- package/dist-types/commands/DescribeUserCommand.d.ts +1 -2
- package/dist-types/commands/StartAssetBundleExportJobCommand.d.ts +10 -0
- package/dist-types/commands/StartAssetBundleImportJobCommand.d.ts +19 -0
- package/dist-types/commands/UpdateTopicCommand.d.ts +3 -0
- package/dist-types/models/models_2.d.ts +101 -212
- package/dist-types/models/models_3.d.ts +246 -142
- package/dist-types/models/models_4.d.ts +159 -2
- package/dist-types/runtimeConfig.browser.d.ts +2 -1
- package/dist-types/runtimeConfig.d.ts +2 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -1
- package/dist-types/ts3.4/commands/CreateDataSetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTopicRefreshCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeTopicRefreshScheduleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +1 -2
- package/dist-types/ts3.4/models/models_2.d.ts +27 -51
- package/dist-types/ts3.4/models/models_3.d.ts +65 -45
- package/dist-types/ts3.4/models/models_4.d.ts +47 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +6 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -3
- package/package.json +14 -14
package/dist-cjs/index.js
CHANGED
|
@@ -38,6 +38,7 @@ __export(src_exports, {
|
|
|
38
38
|
AssetBundleExportJobDashboardPropertyToOverride: () => AssetBundleExportJobDashboardPropertyToOverride,
|
|
39
39
|
AssetBundleExportJobDataSetPropertyToOverride: () => AssetBundleExportJobDataSetPropertyToOverride,
|
|
40
40
|
AssetBundleExportJobDataSourcePropertyToOverride: () => AssetBundleExportJobDataSourcePropertyToOverride,
|
|
41
|
+
AssetBundleExportJobFolderPropertyToOverride: () => AssetBundleExportJobFolderPropertyToOverride,
|
|
41
42
|
AssetBundleExportJobRefreshSchedulePropertyToOverride: () => AssetBundleExportJobRefreshSchedulePropertyToOverride,
|
|
42
43
|
AssetBundleExportJobStatus: () => AssetBundleExportJobStatus,
|
|
43
44
|
AssetBundleExportJobThemePropertyToOverride: () => AssetBundleExportJobThemePropertyToOverride,
|
|
@@ -356,6 +357,7 @@ __export(src_exports, {
|
|
|
356
357
|
IdentityStore: () => IdentityStore,
|
|
357
358
|
IdentityType: () => IdentityType,
|
|
358
359
|
IdentityTypeNotSupportedException: () => IdentityTypeNotSupportedException,
|
|
360
|
+
IncludeFolderMembers: () => IncludeFolderMembers,
|
|
359
361
|
IngestionErrorType: () => IngestionErrorType,
|
|
360
362
|
IngestionRequestSource: () => IngestionRequestSource,
|
|
361
363
|
IngestionRequestType: () => IngestionRequestType,
|
|
@@ -2690,6 +2692,10 @@ var AssetBundleExportJobDataSourcePropertyToOverride = {
|
|
|
2690
2692
|
WAREHOUSE: "Warehouse",
|
|
2691
2693
|
WORK_GROUP: "WorkGroup"
|
|
2692
2694
|
};
|
|
2695
|
+
var AssetBundleExportJobFolderPropertyToOverride = {
|
|
2696
|
+
NAME: "Name",
|
|
2697
|
+
PARENT_FOLDER_ARN: "ParentFolderArn"
|
|
2698
|
+
};
|
|
2693
2699
|
var AssetBundleExportJobRefreshSchedulePropertyToOverride = {
|
|
2694
2700
|
START_AFTER_DATE_TIME: "StartAfterDateTime"
|
|
2695
2701
|
};
|
|
@@ -3474,408 +3480,112 @@ var LogicalTableFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
|
3474
3480
|
DataTransforms: obj.DataTransforms.map((item) => TransformOperationFilterSensitiveLog(item))
|
|
3475
3481
|
}
|
|
3476
3482
|
}), "LogicalTableFilterSensitiveLog");
|
|
3477
|
-
var RowLevelPermissionTagRuleFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3478
|
-
...obj,
|
|
3479
|
-
...obj.MatchAllValue && { MatchAllValue: import_smithy_client.SENSITIVE_STRING }
|
|
3480
|
-
}), "RowLevelPermissionTagRuleFilterSensitiveLog");
|
|
3481
|
-
var RowLevelPermissionTagConfigurationFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3482
|
-
...obj,
|
|
3483
|
-
...obj.TagRules && { TagRules: obj.TagRules.map((item) => RowLevelPermissionTagRuleFilterSensitiveLog(item)) }
|
|
3484
|
-
}), "RowLevelPermissionTagConfigurationFilterSensitiveLog");
|
|
3485
|
-
var CreateDataSetRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3486
|
-
...obj,
|
|
3487
|
-
...obj.PhysicalTableMap && {
|
|
3488
|
-
PhysicalTableMap: Object.entries(obj.PhysicalTableMap).reduce(
|
|
3489
|
-
(acc, [key, value]) => (acc[key] = value, acc),
|
|
3490
|
-
{}
|
|
3491
|
-
)
|
|
3492
|
-
},
|
|
3493
|
-
...obj.LogicalTableMap && {
|
|
3494
|
-
LogicalTableMap: Object.entries(obj.LogicalTableMap).reduce(
|
|
3495
|
-
(acc, [key, value]) => (acc[key] = LogicalTableFilterSensitiveLog(value), acc),
|
|
3496
|
-
{}
|
|
3497
|
-
)
|
|
3498
|
-
},
|
|
3499
|
-
...obj.RowLevelPermissionTagConfiguration && {
|
|
3500
|
-
RowLevelPermissionTagConfiguration: RowLevelPermissionTagConfigurationFilterSensitiveLog(
|
|
3501
|
-
obj.RowLevelPermissionTagConfiguration
|
|
3502
|
-
)
|
|
3503
|
-
}
|
|
3504
|
-
}), "CreateDataSetRequestFilterSensitiveLog");
|
|
3505
3483
|
|
|
3506
|
-
// src/models/
|
|
3507
|
-
|
|
3508
|
-
|
|
3509
|
-
|
|
3510
|
-
|
|
3511
|
-
|
|
3512
|
-
|
|
3513
|
-
|
|
3514
|
-
|
|
3515
|
-
|
|
3516
|
-
|
|
3517
|
-
|
|
3518
|
-
|
|
3519
|
-
|
|
3520
|
-
|
|
3521
|
-
|
|
3522
|
-
|
|
3523
|
-
|
|
3524
|
-
|
|
3525
|
-
|
|
3526
|
-
|
|
3527
|
-
|
|
3484
|
+
// src/models/models_3.ts
|
|
3485
|
+
|
|
3486
|
+
var DataSourceType = {
|
|
3487
|
+
ADOBE_ANALYTICS: "ADOBE_ANALYTICS",
|
|
3488
|
+
AMAZON_ELASTICSEARCH: "AMAZON_ELASTICSEARCH",
|
|
3489
|
+
AMAZON_OPENSEARCH: "AMAZON_OPENSEARCH",
|
|
3490
|
+
ATHENA: "ATHENA",
|
|
3491
|
+
AURORA: "AURORA",
|
|
3492
|
+
AURORA_POSTGRESQL: "AURORA_POSTGRESQL",
|
|
3493
|
+
AWS_IOT_ANALYTICS: "AWS_IOT_ANALYTICS",
|
|
3494
|
+
BIGQUERY: "BIGQUERY",
|
|
3495
|
+
DATABRICKS: "DATABRICKS",
|
|
3496
|
+
EXASOL: "EXASOL",
|
|
3497
|
+
GITHUB: "GITHUB",
|
|
3498
|
+
JIRA: "JIRA",
|
|
3499
|
+
MARIADB: "MARIADB",
|
|
3500
|
+
MYSQL: "MYSQL",
|
|
3501
|
+
ORACLE: "ORACLE",
|
|
3502
|
+
POSTGRESQL: "POSTGRESQL",
|
|
3503
|
+
PRESTO: "PRESTO",
|
|
3504
|
+
REDSHIFT: "REDSHIFT",
|
|
3505
|
+
S3: "S3",
|
|
3506
|
+
SALESFORCE: "SALESFORCE",
|
|
3507
|
+
SERVICENOW: "SERVICENOW",
|
|
3508
|
+
SNOWFLAKE: "SNOWFLAKE",
|
|
3509
|
+
SPARK: "SPARK",
|
|
3510
|
+
SQLSERVER: "SQLSERVER",
|
|
3511
|
+
STARBURST: "STARBURST",
|
|
3512
|
+
TERADATA: "TERADATA",
|
|
3513
|
+
TIMESTREAM: "TIMESTREAM",
|
|
3514
|
+
TRINO: "TRINO",
|
|
3515
|
+
TWITTER: "TWITTER"
|
|
3528
3516
|
};
|
|
3529
|
-
var
|
|
3517
|
+
var _CustomerManagedKeyUnavailableException = class _CustomerManagedKeyUnavailableException extends QuickSightServiceException {
|
|
3530
3518
|
/**
|
|
3531
3519
|
* @internal
|
|
3532
3520
|
*/
|
|
3533
3521
|
constructor(opts) {
|
|
3534
3522
|
super({
|
|
3535
|
-
name: "
|
|
3523
|
+
name: "CustomerManagedKeyUnavailableException",
|
|
3536
3524
|
$fault: "client",
|
|
3537
3525
|
...opts
|
|
3538
3526
|
});
|
|
3539
|
-
this.name = "
|
|
3527
|
+
this.name = "CustomerManagedKeyUnavailableException";
|
|
3540
3528
|
this.$fault = "client";
|
|
3541
|
-
Object.setPrototypeOf(this,
|
|
3529
|
+
Object.setPrototypeOf(this, _CustomerManagedKeyUnavailableException.prototype);
|
|
3542
3530
|
this.Message = opts.Message;
|
|
3543
3531
|
this.RequestId = opts.RequestId;
|
|
3544
3532
|
}
|
|
3545
3533
|
};
|
|
3546
|
-
__name(
|
|
3547
|
-
var
|
|
3548
|
-
var
|
|
3549
|
-
|
|
3550
|
-
|
|
3551
|
-
QUICKSIGHT: "QUICKSIGHT"
|
|
3552
|
-
};
|
|
3553
|
-
var FolderFilterAttribute = {
|
|
3554
|
-
DIRECT_QUICKSIGHT_OWNER: "DIRECT_QUICKSIGHT_OWNER",
|
|
3555
|
-
DIRECT_QUICKSIGHT_SOLE_OWNER: "DIRECT_QUICKSIGHT_SOLE_OWNER",
|
|
3556
|
-
DIRECT_QUICKSIGHT_VIEWER_OR_OWNER: "DIRECT_QUICKSIGHT_VIEWER_OR_OWNER",
|
|
3557
|
-
FOLDER_NAME: "FOLDER_NAME",
|
|
3558
|
-
PARENT_FOLDER_ARN: "PARENT_FOLDER_ARN",
|
|
3559
|
-
QUICKSIGHT_OWNER: "QUICKSIGHT_OWNER",
|
|
3560
|
-
QUICKSIGHT_VIEWER_OR_OWNER: "QUICKSIGHT_VIEWER_OR_OWNER"
|
|
3534
|
+
__name(_CustomerManagedKeyUnavailableException, "CustomerManagedKeyUnavailableException");
|
|
3535
|
+
var CustomerManagedKeyUnavailableException = _CustomerManagedKeyUnavailableException;
|
|
3536
|
+
var FolderType = {
|
|
3537
|
+
RESTRICTED: "RESTRICTED",
|
|
3538
|
+
SHARED: "SHARED"
|
|
3561
3539
|
};
|
|
3562
|
-
var
|
|
3563
|
-
|
|
3564
|
-
|
|
3565
|
-
*/
|
|
3566
|
-
constructor(opts) {
|
|
3567
|
-
super({
|
|
3568
|
-
name: "SessionLifetimeInMinutesInvalidException",
|
|
3569
|
-
$fault: "client",
|
|
3570
|
-
...opts
|
|
3571
|
-
});
|
|
3572
|
-
this.name = "SessionLifetimeInMinutesInvalidException";
|
|
3573
|
-
this.$fault = "client";
|
|
3574
|
-
Object.setPrototypeOf(this, _SessionLifetimeInMinutesInvalidException.prototype);
|
|
3575
|
-
this.Message = opts.Message;
|
|
3576
|
-
this.RequestId = opts.RequestId;
|
|
3577
|
-
}
|
|
3540
|
+
var SharingModel = {
|
|
3541
|
+
ACCOUNT: "ACCOUNT",
|
|
3542
|
+
NAMESPACE: "NAMESPACE"
|
|
3578
3543
|
};
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
constructor(opts) {
|
|
3586
|
-
super({
|
|
3587
|
-
name: "UnsupportedPricingPlanException",
|
|
3588
|
-
$fault: "client",
|
|
3589
|
-
...opts
|
|
3590
|
-
});
|
|
3591
|
-
this.name = "UnsupportedPricingPlanException";
|
|
3592
|
-
this.$fault = "client";
|
|
3593
|
-
Object.setPrototypeOf(this, _UnsupportedPricingPlanException.prototype);
|
|
3594
|
-
this.Message = opts.Message;
|
|
3595
|
-
this.RequestId = opts.RequestId;
|
|
3596
|
-
}
|
|
3544
|
+
var MemberType = {
|
|
3545
|
+
ANALYSIS: "ANALYSIS",
|
|
3546
|
+
DASHBOARD: "DASHBOARD",
|
|
3547
|
+
DATASET: "DATASET",
|
|
3548
|
+
DATASOURCE: "DATASOURCE",
|
|
3549
|
+
TOPIC: "TOPIC"
|
|
3597
3550
|
};
|
|
3598
|
-
|
|
3599
|
-
|
|
3600
|
-
|
|
3601
|
-
/**
|
|
3602
|
-
* @internal
|
|
3603
|
-
*/
|
|
3604
|
-
constructor(opts) {
|
|
3605
|
-
super({
|
|
3606
|
-
name: "QuickSightUserNotFoundException",
|
|
3607
|
-
$fault: "client",
|
|
3608
|
-
...opts
|
|
3609
|
-
});
|
|
3610
|
-
this.name = "QuickSightUserNotFoundException";
|
|
3611
|
-
this.$fault = "client";
|
|
3612
|
-
Object.setPrototypeOf(this, _QuickSightUserNotFoundException.prototype);
|
|
3613
|
-
this.Message = opts.Message;
|
|
3614
|
-
this.RequestId = opts.RequestId;
|
|
3615
|
-
}
|
|
3551
|
+
var IngestionType = {
|
|
3552
|
+
FULL_REFRESH: "FULL_REFRESH",
|
|
3553
|
+
INCREMENTAL_REFRESH: "INCREMENTAL_REFRESH"
|
|
3616
3554
|
};
|
|
3617
|
-
|
|
3618
|
-
|
|
3619
|
-
|
|
3620
|
-
|
|
3621
|
-
|
|
3622
|
-
|
|
3623
|
-
|
|
3624
|
-
super({
|
|
3625
|
-
name: "IdentityTypeNotSupportedException",
|
|
3626
|
-
$fault: "client",
|
|
3627
|
-
...opts
|
|
3628
|
-
});
|
|
3629
|
-
this.name = "IdentityTypeNotSupportedException";
|
|
3630
|
-
this.$fault = "client";
|
|
3631
|
-
Object.setPrototypeOf(this, _IdentityTypeNotSupportedException.prototype);
|
|
3632
|
-
this.Message = opts.Message;
|
|
3633
|
-
this.RequestId = opts.RequestId;
|
|
3634
|
-
}
|
|
3555
|
+
var IngestionStatus = {
|
|
3556
|
+
CANCELLED: "CANCELLED",
|
|
3557
|
+
COMPLETED: "COMPLETED",
|
|
3558
|
+
FAILED: "FAILED",
|
|
3559
|
+
INITIALIZED: "INITIALIZED",
|
|
3560
|
+
QUEUED: "QUEUED",
|
|
3561
|
+
RUNNING: "RUNNING"
|
|
3635
3562
|
};
|
|
3636
|
-
|
|
3637
|
-
|
|
3638
|
-
var GroupFilterAttribute = {
|
|
3639
|
-
GROUP_NAME: "GROUP_NAME"
|
|
3563
|
+
var IdentityStore = {
|
|
3564
|
+
QUICKSIGHT: "QUICKSIGHT"
|
|
3640
3565
|
};
|
|
3641
|
-
var
|
|
3642
|
-
|
|
3566
|
+
var NamespaceStatus = {
|
|
3567
|
+
CREATED: "CREATED",
|
|
3568
|
+
CREATING: "CREATING",
|
|
3569
|
+
DELETING: "DELETING",
|
|
3570
|
+
NON_RETRYABLE_FAILURE: "NON_RETRYABLE_FAILURE",
|
|
3571
|
+
RETRYABLE_FAILURE: "RETRYABLE_FAILURE"
|
|
3643
3572
|
};
|
|
3644
|
-
var
|
|
3645
|
-
|
|
3646
|
-
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
3650
|
-
|
|
3651
|
-
$fault: "client",
|
|
3652
|
-
...opts
|
|
3653
|
-
});
|
|
3654
|
-
this.name = "InvalidRequestException";
|
|
3655
|
-
this.$fault = "client";
|
|
3656
|
-
Object.setPrototypeOf(this, _InvalidRequestException.prototype);
|
|
3657
|
-
this.Message = opts.Message;
|
|
3658
|
-
this.RequestId = opts.RequestId;
|
|
3659
|
-
}
|
|
3573
|
+
var RefreshInterval = {
|
|
3574
|
+
DAILY: "DAILY",
|
|
3575
|
+
HOURLY: "HOURLY",
|
|
3576
|
+
MINUTE15: "MINUTE15",
|
|
3577
|
+
MINUTE30: "MINUTE30",
|
|
3578
|
+
MONTHLY: "MONTHLY",
|
|
3579
|
+
WEEKLY: "WEEKLY"
|
|
3660
3580
|
};
|
|
3661
|
-
|
|
3662
|
-
|
|
3663
|
-
|
|
3664
|
-
|
|
3665
|
-
|
|
3666
|
-
|
|
3667
|
-
|
|
3668
|
-
|
|
3669
|
-
...obj.Value && { Value: import_smithy_client.SENSITIVE_STRING }
|
|
3670
|
-
}), "SessionTagFilterSensitiveLog");
|
|
3671
|
-
var GenerateEmbedUrlForAnonymousUserRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3672
|
-
...obj,
|
|
3673
|
-
...obj.SessionTags && { SessionTags: obj.SessionTags.map((item) => SessionTagFilterSensitiveLog(item)) }
|
|
3674
|
-
}), "GenerateEmbedUrlForAnonymousUserRequestFilterSensitiveLog");
|
|
3675
|
-
var GenerateEmbedUrlForAnonymousUserResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3676
|
-
...obj,
|
|
3677
|
-
...obj.EmbedUrl && { EmbedUrl: import_smithy_client.SENSITIVE_STRING }
|
|
3678
|
-
}), "GenerateEmbedUrlForAnonymousUserResponseFilterSensitiveLog");
|
|
3679
|
-
var GenerateEmbedUrlForRegisteredUserResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3680
|
-
...obj,
|
|
3681
|
-
...obj.EmbedUrl && { EmbedUrl: import_smithy_client.SENSITIVE_STRING }
|
|
3682
|
-
}), "GenerateEmbedUrlForRegisteredUserResponseFilterSensitiveLog");
|
|
3683
|
-
var GetDashboardEmbedUrlResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3684
|
-
...obj,
|
|
3685
|
-
...obj.EmbedUrl && { EmbedUrl: import_smithy_client.SENSITIVE_STRING }
|
|
3686
|
-
}), "GetDashboardEmbedUrlResponseFilterSensitiveLog");
|
|
3687
|
-
var GetSessionEmbedUrlResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3688
|
-
...obj,
|
|
3689
|
-
...obj.EmbedUrl && { EmbedUrl: import_smithy_client.SENSITIVE_STRING }
|
|
3690
|
-
}), "GetSessionEmbedUrlResponseFilterSensitiveLog");
|
|
3691
|
-
var StartAssetBundleImportJobRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3692
|
-
...obj,
|
|
3693
|
-
...obj.AssetBundleImportSource && {
|
|
3694
|
-
AssetBundleImportSource: AssetBundleImportSourceFilterSensitiveLog(obj.AssetBundleImportSource)
|
|
3695
|
-
}
|
|
3696
|
-
}), "StartAssetBundleImportJobRequestFilterSensitiveLog");
|
|
3697
|
-
var SnapshotAnonymousUserFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3698
|
-
...obj,
|
|
3699
|
-
...obj.RowLevelPermissionTags && {
|
|
3700
|
-
RowLevelPermissionTags: obj.RowLevelPermissionTags.map((item) => SessionTagFilterSensitiveLog(item))
|
|
3701
|
-
}
|
|
3702
|
-
}), "SnapshotAnonymousUserFilterSensitiveLog");
|
|
3703
|
-
var SnapshotUserConfigurationFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3704
|
-
...obj
|
|
3705
|
-
}), "SnapshotUserConfigurationFilterSensitiveLog");
|
|
3706
|
-
var StartDashboardSnapshotJobRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3707
|
-
...obj
|
|
3708
|
-
}), "StartDashboardSnapshotJobRequestFilterSensitiveLog");
|
|
3709
|
-
var UpdateAnalysisRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3710
|
-
...obj,
|
|
3711
|
-
...obj.Parameters && { Parameters: _ParametersFilterSensitiveLog(obj.Parameters) }
|
|
3712
|
-
}), "UpdateAnalysisRequestFilterSensitiveLog");
|
|
3713
|
-
var UpdateDashboardRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3714
|
-
...obj,
|
|
3715
|
-
...obj.Parameters && { Parameters: _ParametersFilterSensitiveLog(obj.Parameters) }
|
|
3716
|
-
}), "UpdateDashboardRequestFilterSensitiveLog");
|
|
3717
|
-
var UpdateDataSetRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3718
|
-
...obj,
|
|
3719
|
-
...obj.PhysicalTableMap && {
|
|
3720
|
-
PhysicalTableMap: Object.entries(obj.PhysicalTableMap).reduce(
|
|
3721
|
-
(acc, [key, value]) => (acc[key] = value, acc),
|
|
3722
|
-
{}
|
|
3723
|
-
)
|
|
3724
|
-
},
|
|
3725
|
-
...obj.LogicalTableMap && {
|
|
3726
|
-
LogicalTableMap: Object.entries(obj.LogicalTableMap).reduce(
|
|
3727
|
-
(acc, [key, value]) => (acc[key] = LogicalTableFilterSensitiveLog(value), acc),
|
|
3728
|
-
{}
|
|
3729
|
-
)
|
|
3730
|
-
},
|
|
3731
|
-
...obj.RowLevelPermissionTagConfiguration && {
|
|
3732
|
-
RowLevelPermissionTagConfiguration: RowLevelPermissionTagConfigurationFilterSensitiveLog(
|
|
3733
|
-
obj.RowLevelPermissionTagConfiguration
|
|
3734
|
-
)
|
|
3735
|
-
}
|
|
3736
|
-
}), "UpdateDataSetRequestFilterSensitiveLog");
|
|
3737
|
-
var UpdateDataSourceRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3738
|
-
...obj,
|
|
3739
|
-
...obj.DataSourceParameters && { DataSourceParameters: obj.DataSourceParameters },
|
|
3740
|
-
...obj.Credentials && { Credentials: import_smithy_client.SENSITIVE_STRING }
|
|
3741
|
-
}), "UpdateDataSourceRequestFilterSensitiveLog");
|
|
3742
|
-
var UpdateTemplateRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3743
|
-
...obj
|
|
3744
|
-
}), "UpdateTemplateRequestFilterSensitiveLog");
|
|
3745
|
-
var UpdateTopicRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3746
|
-
...obj
|
|
3747
|
-
}), "UpdateTopicRequestFilterSensitiveLog");
|
|
3748
|
-
var TopicVisualFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3749
|
-
...obj,
|
|
3750
|
-
...obj.Ir && { Ir: TopicIRFilterSensitiveLog(obj.Ir) }
|
|
3751
|
-
}), "TopicVisualFilterSensitiveLog");
|
|
3752
|
-
var CreateTopicReviewedAnswerFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3753
|
-
...obj,
|
|
3754
|
-
...obj.Mir && { Mir: TopicIRFilterSensitiveLog(obj.Mir) },
|
|
3755
|
-
...obj.PrimaryVisual && { PrimaryVisual: TopicVisualFilterSensitiveLog(obj.PrimaryVisual) }
|
|
3756
|
-
}), "CreateTopicReviewedAnswerFilterSensitiveLog");
|
|
3757
|
-
var TopicReviewedAnswerFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3758
|
-
...obj,
|
|
3759
|
-
...obj.Mir && { Mir: TopicIRFilterSensitiveLog(obj.Mir) },
|
|
3760
|
-
...obj.PrimaryVisual && { PrimaryVisual: TopicVisualFilterSensitiveLog(obj.PrimaryVisual) }
|
|
3761
|
-
}), "TopicReviewedAnswerFilterSensitiveLog");
|
|
3762
|
-
var BatchCreateTopicReviewedAnswerRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3763
|
-
...obj
|
|
3764
|
-
}), "BatchCreateTopicReviewedAnswerRequestFilterSensitiveLog");
|
|
3765
|
-
var ListTopicReviewedAnswersResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3766
|
-
...obj
|
|
3767
|
-
}), "ListTopicReviewedAnswersResponseFilterSensitiveLog");
|
|
3768
|
-
|
|
3769
|
-
// src/protocols/Aws_restJson1.ts
|
|
3770
|
-
var import_core2 = require("@aws-sdk/core");
|
|
3771
|
-
|
|
3772
|
-
|
|
3773
|
-
|
|
3774
|
-
// src/models/models_3.ts
|
|
3775
|
-
|
|
3776
|
-
var DataSourceType = {
|
|
3777
|
-
ADOBE_ANALYTICS: "ADOBE_ANALYTICS",
|
|
3778
|
-
AMAZON_ELASTICSEARCH: "AMAZON_ELASTICSEARCH",
|
|
3779
|
-
AMAZON_OPENSEARCH: "AMAZON_OPENSEARCH",
|
|
3780
|
-
ATHENA: "ATHENA",
|
|
3781
|
-
AURORA: "AURORA",
|
|
3782
|
-
AURORA_POSTGRESQL: "AURORA_POSTGRESQL",
|
|
3783
|
-
AWS_IOT_ANALYTICS: "AWS_IOT_ANALYTICS",
|
|
3784
|
-
BIGQUERY: "BIGQUERY",
|
|
3785
|
-
DATABRICKS: "DATABRICKS",
|
|
3786
|
-
EXASOL: "EXASOL",
|
|
3787
|
-
GITHUB: "GITHUB",
|
|
3788
|
-
JIRA: "JIRA",
|
|
3789
|
-
MARIADB: "MARIADB",
|
|
3790
|
-
MYSQL: "MYSQL",
|
|
3791
|
-
ORACLE: "ORACLE",
|
|
3792
|
-
POSTGRESQL: "POSTGRESQL",
|
|
3793
|
-
PRESTO: "PRESTO",
|
|
3794
|
-
REDSHIFT: "REDSHIFT",
|
|
3795
|
-
S3: "S3",
|
|
3796
|
-
SALESFORCE: "SALESFORCE",
|
|
3797
|
-
SERVICENOW: "SERVICENOW",
|
|
3798
|
-
SNOWFLAKE: "SNOWFLAKE",
|
|
3799
|
-
SPARK: "SPARK",
|
|
3800
|
-
SQLSERVER: "SQLSERVER",
|
|
3801
|
-
STARBURST: "STARBURST",
|
|
3802
|
-
TERADATA: "TERADATA",
|
|
3803
|
-
TIMESTREAM: "TIMESTREAM",
|
|
3804
|
-
TRINO: "TRINO",
|
|
3805
|
-
TWITTER: "TWITTER"
|
|
3806
|
-
};
|
|
3807
|
-
var _CustomerManagedKeyUnavailableException = class _CustomerManagedKeyUnavailableException extends QuickSightServiceException {
|
|
3808
|
-
/**
|
|
3809
|
-
* @internal
|
|
3810
|
-
*/
|
|
3811
|
-
constructor(opts) {
|
|
3812
|
-
super({
|
|
3813
|
-
name: "CustomerManagedKeyUnavailableException",
|
|
3814
|
-
$fault: "client",
|
|
3815
|
-
...opts
|
|
3816
|
-
});
|
|
3817
|
-
this.name = "CustomerManagedKeyUnavailableException";
|
|
3818
|
-
this.$fault = "client";
|
|
3819
|
-
Object.setPrototypeOf(this, _CustomerManagedKeyUnavailableException.prototype);
|
|
3820
|
-
this.Message = opts.Message;
|
|
3821
|
-
this.RequestId = opts.RequestId;
|
|
3822
|
-
}
|
|
3823
|
-
};
|
|
3824
|
-
__name(_CustomerManagedKeyUnavailableException, "CustomerManagedKeyUnavailableException");
|
|
3825
|
-
var CustomerManagedKeyUnavailableException = _CustomerManagedKeyUnavailableException;
|
|
3826
|
-
var FolderType = {
|
|
3827
|
-
RESTRICTED: "RESTRICTED",
|
|
3828
|
-
SHARED: "SHARED"
|
|
3829
|
-
};
|
|
3830
|
-
var SharingModel = {
|
|
3831
|
-
ACCOUNT: "ACCOUNT",
|
|
3832
|
-
NAMESPACE: "NAMESPACE"
|
|
3833
|
-
};
|
|
3834
|
-
var MemberType = {
|
|
3835
|
-
ANALYSIS: "ANALYSIS",
|
|
3836
|
-
DASHBOARD: "DASHBOARD",
|
|
3837
|
-
DATASET: "DATASET",
|
|
3838
|
-
DATASOURCE: "DATASOURCE",
|
|
3839
|
-
TOPIC: "TOPIC"
|
|
3840
|
-
};
|
|
3841
|
-
var IngestionType = {
|
|
3842
|
-
FULL_REFRESH: "FULL_REFRESH",
|
|
3843
|
-
INCREMENTAL_REFRESH: "INCREMENTAL_REFRESH"
|
|
3844
|
-
};
|
|
3845
|
-
var IngestionStatus = {
|
|
3846
|
-
CANCELLED: "CANCELLED",
|
|
3847
|
-
COMPLETED: "COMPLETED",
|
|
3848
|
-
FAILED: "FAILED",
|
|
3849
|
-
INITIALIZED: "INITIALIZED",
|
|
3850
|
-
QUEUED: "QUEUED",
|
|
3851
|
-
RUNNING: "RUNNING"
|
|
3852
|
-
};
|
|
3853
|
-
var IdentityStore = {
|
|
3854
|
-
QUICKSIGHT: "QUICKSIGHT"
|
|
3855
|
-
};
|
|
3856
|
-
var NamespaceStatus = {
|
|
3857
|
-
CREATED: "CREATED",
|
|
3858
|
-
CREATING: "CREATING",
|
|
3859
|
-
DELETING: "DELETING",
|
|
3860
|
-
NON_RETRYABLE_FAILURE: "NON_RETRYABLE_FAILURE",
|
|
3861
|
-
RETRYABLE_FAILURE: "RETRYABLE_FAILURE"
|
|
3862
|
-
};
|
|
3863
|
-
var RefreshInterval = {
|
|
3864
|
-
DAILY: "DAILY",
|
|
3865
|
-
HOURLY: "HOURLY",
|
|
3866
|
-
MINUTE15: "MINUTE15",
|
|
3867
|
-
MINUTE30: "MINUTE30",
|
|
3868
|
-
MONTHLY: "MONTHLY",
|
|
3869
|
-
WEEKLY: "WEEKLY"
|
|
3870
|
-
};
|
|
3871
|
-
var DayOfWeek = {
|
|
3872
|
-
FRIDAY: "FRIDAY",
|
|
3873
|
-
MONDAY: "MONDAY",
|
|
3874
|
-
SATURDAY: "SATURDAY",
|
|
3875
|
-
SUNDAY: "SUNDAY",
|
|
3876
|
-
THURSDAY: "THURSDAY",
|
|
3877
|
-
TUESDAY: "TUESDAY",
|
|
3878
|
-
WEDNESDAY: "WEDNESDAY"
|
|
3581
|
+
var DayOfWeek = {
|
|
3582
|
+
FRIDAY: "FRIDAY",
|
|
3583
|
+
MONDAY: "MONDAY",
|
|
3584
|
+
SATURDAY: "SATURDAY",
|
|
3585
|
+
SUNDAY: "SUNDAY",
|
|
3586
|
+
THURSDAY: "THURSDAY",
|
|
3587
|
+
TUESDAY: "TUESDAY",
|
|
3588
|
+
WEDNESDAY: "WEDNESDAY"
|
|
3879
3589
|
};
|
|
3880
3590
|
var Role = {
|
|
3881
3591
|
ADMIN: "ADMIN",
|
|
@@ -4026,6 +3736,11 @@ var DataSourceFilterAttribute = {
|
|
|
4026
3736
|
DIRECT_QUICKSIGHT_SOLE_OWNER: "DIRECT_QUICKSIGHT_SOLE_OWNER",
|
|
4027
3737
|
DIRECT_QUICKSIGHT_VIEWER_OR_OWNER: "DIRECT_QUICKSIGHT_VIEWER_OR_OWNER"
|
|
4028
3738
|
};
|
|
3739
|
+
var IncludeFolderMembers = {
|
|
3740
|
+
NONE: "NONE",
|
|
3741
|
+
ONE_LEVEL: "ONE_LEVEL",
|
|
3742
|
+
RECURSE: "RECURSE"
|
|
3743
|
+
};
|
|
4029
3744
|
var SnapshotJobStatus = {
|
|
4030
3745
|
COMPLETED: "COMPLETED",
|
|
4031
3746
|
FAILED: "FAILED",
|
|
@@ -4122,128 +3837,428 @@ var TemplateErrorType = {
|
|
|
4122
3837
|
INTERNAL_FAILURE: "INTERNAL_FAILURE",
|
|
4123
3838
|
SOURCE_NOT_FOUND: "SOURCE_NOT_FOUND"
|
|
4124
3839
|
};
|
|
4125
|
-
var ThemeType = {
|
|
4126
|
-
ALL: "ALL",
|
|
4127
|
-
CUSTOM: "CUSTOM",
|
|
4128
|
-
QUICKSIGHT: "QUICKSIGHT"
|
|
3840
|
+
var ThemeType = {
|
|
3841
|
+
ALL: "ALL",
|
|
3842
|
+
CUSTOM: "CUSTOM",
|
|
3843
|
+
QUICKSIGHT: "QUICKSIGHT"
|
|
3844
|
+
};
|
|
3845
|
+
var ThemeErrorType = {
|
|
3846
|
+
INTERNAL_FAILURE: "INTERNAL_FAILURE"
|
|
3847
|
+
};
|
|
3848
|
+
var RowLevelPermissionTagRuleFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3849
|
+
...obj,
|
|
3850
|
+
...obj.MatchAllValue && { MatchAllValue: import_smithy_client.SENSITIVE_STRING }
|
|
3851
|
+
}), "RowLevelPermissionTagRuleFilterSensitiveLog");
|
|
3852
|
+
var RowLevelPermissionTagConfigurationFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3853
|
+
...obj,
|
|
3854
|
+
...obj.TagRules && { TagRules: obj.TagRules.map((item) => RowLevelPermissionTagRuleFilterSensitiveLog(item)) }
|
|
3855
|
+
}), "RowLevelPermissionTagConfigurationFilterSensitiveLog");
|
|
3856
|
+
var CreateDataSetRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3857
|
+
...obj,
|
|
3858
|
+
...obj.PhysicalTableMap && {
|
|
3859
|
+
PhysicalTableMap: Object.entries(obj.PhysicalTableMap).reduce(
|
|
3860
|
+
(acc, [key, value]) => (acc[key] = value, acc),
|
|
3861
|
+
{}
|
|
3862
|
+
)
|
|
3863
|
+
},
|
|
3864
|
+
...obj.LogicalTableMap && {
|
|
3865
|
+
LogicalTableMap: Object.entries(obj.LogicalTableMap).reduce(
|
|
3866
|
+
(acc, [key, value]) => (acc[key] = LogicalTableFilterSensitiveLog(value), acc),
|
|
3867
|
+
{}
|
|
3868
|
+
)
|
|
3869
|
+
},
|
|
3870
|
+
...obj.RowLevelPermissionTagConfiguration && {
|
|
3871
|
+
RowLevelPermissionTagConfiguration: RowLevelPermissionTagConfigurationFilterSensitiveLog(
|
|
3872
|
+
obj.RowLevelPermissionTagConfiguration
|
|
3873
|
+
)
|
|
3874
|
+
}
|
|
3875
|
+
}), "CreateDataSetRequestFilterSensitiveLog");
|
|
3876
|
+
var DataSourceCredentialsFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3877
|
+
...obj,
|
|
3878
|
+
...obj.CredentialPair && { CredentialPair: obj.CredentialPair }
|
|
3879
|
+
}), "DataSourceCredentialsFilterSensitiveLog");
|
|
3880
|
+
var CreateDataSourceRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3881
|
+
...obj,
|
|
3882
|
+
...obj.DataSourceParameters && { DataSourceParameters: obj.DataSourceParameters },
|
|
3883
|
+
...obj.Credentials && { Credentials: import_smithy_client.SENSITIVE_STRING }
|
|
3884
|
+
}), "CreateDataSourceRequestFilterSensitiveLog");
|
|
3885
|
+
var TemplateVersionDefinitionFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3886
|
+
...obj,
|
|
3887
|
+
...obj.CalculatedFields && {
|
|
3888
|
+
CalculatedFields: obj.CalculatedFields.map((item) => CalculatedFieldFilterSensitiveLog(item))
|
|
3889
|
+
},
|
|
3890
|
+
...obj.ParameterDeclarations && {
|
|
3891
|
+
ParameterDeclarations: obj.ParameterDeclarations.map((item) => ParameterDeclarationFilterSensitiveLog(item))
|
|
3892
|
+
},
|
|
3893
|
+
...obj.ColumnConfigurations && {
|
|
3894
|
+
ColumnConfigurations: obj.ColumnConfigurations.map((item) => ColumnConfigurationFilterSensitiveLog(item))
|
|
3895
|
+
}
|
|
3896
|
+
}), "TemplateVersionDefinitionFilterSensitiveLog");
|
|
3897
|
+
var CreateTemplateRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3898
|
+
...obj
|
|
3899
|
+
}), "CreateTemplateRequestFilterSensitiveLog");
|
|
3900
|
+
var SemanticTypeFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3901
|
+
...obj,
|
|
3902
|
+
...obj.TruthyCellValue && { TruthyCellValue: import_smithy_client.SENSITIVE_STRING },
|
|
3903
|
+
...obj.TruthyCellValueSynonyms && { TruthyCellValueSynonyms: import_smithy_client.SENSITIVE_STRING },
|
|
3904
|
+
...obj.FalseyCellValue && { FalseyCellValue: import_smithy_client.SENSITIVE_STRING },
|
|
3905
|
+
...obj.FalseyCellValueSynonyms && { FalseyCellValueSynonyms: import_smithy_client.SENSITIVE_STRING }
|
|
3906
|
+
}), "SemanticTypeFilterSensitiveLog");
|
|
3907
|
+
var TopicCalculatedFieldFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3908
|
+
...obj,
|
|
3909
|
+
...obj.Expression && { Expression: import_smithy_client.SENSITIVE_STRING },
|
|
3910
|
+
...obj.SemanticType && { SemanticType: SemanticTypeFilterSensitiveLog(obj.SemanticType) }
|
|
3911
|
+
}), "TopicCalculatedFieldFilterSensitiveLog");
|
|
3912
|
+
var TopicColumnFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3913
|
+
...obj,
|
|
3914
|
+
...obj.SemanticType && { SemanticType: SemanticTypeFilterSensitiveLog(obj.SemanticType) }
|
|
3915
|
+
}), "TopicColumnFilterSensitiveLog");
|
|
3916
|
+
var TopicCategoryFilterConstantFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3917
|
+
...obj
|
|
3918
|
+
}), "TopicCategoryFilterConstantFilterSensitiveLog");
|
|
3919
|
+
var TopicCategoryFilterFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3920
|
+
...obj,
|
|
3921
|
+
...obj.Constant && { Constant: import_smithy_client.SENSITIVE_STRING }
|
|
3922
|
+
}), "TopicCategoryFilterFilterSensitiveLog");
|
|
3923
|
+
var TopicRangeFilterConstantFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3924
|
+
...obj
|
|
3925
|
+
}), "TopicRangeFilterConstantFilterSensitiveLog");
|
|
3926
|
+
var TopicDateRangeFilterFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3927
|
+
...obj,
|
|
3928
|
+
...obj.Constant && { Constant: import_smithy_client.SENSITIVE_STRING }
|
|
3929
|
+
}), "TopicDateRangeFilterFilterSensitiveLog");
|
|
3930
|
+
var TopicSingularFilterConstantFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3931
|
+
...obj
|
|
3932
|
+
}), "TopicSingularFilterConstantFilterSensitiveLog");
|
|
3933
|
+
var TopicNumericEqualityFilterFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3934
|
+
...obj,
|
|
3935
|
+
...obj.Constant && { Constant: import_smithy_client.SENSITIVE_STRING }
|
|
3936
|
+
}), "TopicNumericEqualityFilterFilterSensitiveLog");
|
|
3937
|
+
var TopicNumericRangeFilterFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3938
|
+
...obj,
|
|
3939
|
+
...obj.Constant && { Constant: import_smithy_client.SENSITIVE_STRING }
|
|
3940
|
+
}), "TopicNumericRangeFilterFilterSensitiveLog");
|
|
3941
|
+
var TopicRelativeDateFilterFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3942
|
+
...obj,
|
|
3943
|
+
...obj.Constant && { Constant: import_smithy_client.SENSITIVE_STRING }
|
|
3944
|
+
}), "TopicRelativeDateFilterFilterSensitiveLog");
|
|
3945
|
+
var TopicFilterFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3946
|
+
...obj,
|
|
3947
|
+
...obj.CategoryFilter && { CategoryFilter: TopicCategoryFilterFilterSensitiveLog(obj.CategoryFilter) },
|
|
3948
|
+
...obj.NumericEqualityFilter && {
|
|
3949
|
+
NumericEqualityFilter: TopicNumericEqualityFilterFilterSensitiveLog(obj.NumericEqualityFilter)
|
|
3950
|
+
},
|
|
3951
|
+
...obj.NumericRangeFilter && {
|
|
3952
|
+
NumericRangeFilter: TopicNumericRangeFilterFilterSensitiveLog(obj.NumericRangeFilter)
|
|
3953
|
+
},
|
|
3954
|
+
...obj.DateRangeFilter && { DateRangeFilter: TopicDateRangeFilterFilterSensitiveLog(obj.DateRangeFilter) },
|
|
3955
|
+
...obj.RelativeDateFilter && {
|
|
3956
|
+
RelativeDateFilter: TopicRelativeDateFilterFilterSensitiveLog(obj.RelativeDateFilter)
|
|
3957
|
+
}
|
|
3958
|
+
}), "TopicFilterFilterSensitiveLog");
|
|
3959
|
+
var DatasetMetadataFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3960
|
+
...obj,
|
|
3961
|
+
...obj.Filters && { Filters: obj.Filters.map((item) => TopicFilterFilterSensitiveLog(item)) },
|
|
3962
|
+
...obj.Columns && { Columns: obj.Columns.map((item) => TopicColumnFilterSensitiveLog(item)) },
|
|
3963
|
+
...obj.CalculatedFields && {
|
|
3964
|
+
CalculatedFields: obj.CalculatedFields.map((item) => TopicCalculatedFieldFilterSensitiveLog(item))
|
|
3965
|
+
}
|
|
3966
|
+
}), "DatasetMetadataFilterSensitiveLog");
|
|
3967
|
+
var TopicDetailsFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3968
|
+
...obj
|
|
3969
|
+
}), "TopicDetailsFilterSensitiveLog");
|
|
3970
|
+
var CreateTopicRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3971
|
+
...obj
|
|
3972
|
+
}), "CreateTopicRequestFilterSensitiveLog");
|
|
3973
|
+
var OutputColumnFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3974
|
+
...obj,
|
|
3975
|
+
...obj.Description && { Description: import_smithy_client.SENSITIVE_STRING }
|
|
3976
|
+
}), "OutputColumnFilterSensitiveLog");
|
|
3977
|
+
var DataSetFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3978
|
+
...obj,
|
|
3979
|
+
...obj.PhysicalTableMap && {
|
|
3980
|
+
PhysicalTableMap: Object.entries(obj.PhysicalTableMap).reduce(
|
|
3981
|
+
(acc, [key, value]) => (acc[key] = value, acc),
|
|
3982
|
+
{}
|
|
3983
|
+
)
|
|
3984
|
+
},
|
|
3985
|
+
...obj.LogicalTableMap && {
|
|
3986
|
+
LogicalTableMap: Object.entries(obj.LogicalTableMap).reduce(
|
|
3987
|
+
(acc, [key, value]) => (acc[key] = LogicalTableFilterSensitiveLog(value), acc),
|
|
3988
|
+
{}
|
|
3989
|
+
)
|
|
3990
|
+
},
|
|
3991
|
+
...obj.OutputColumns && { OutputColumns: obj.OutputColumns.map((item) => OutputColumnFilterSensitiveLog(item)) },
|
|
3992
|
+
...obj.RowLevelPermissionTagConfiguration && {
|
|
3993
|
+
RowLevelPermissionTagConfiguration: RowLevelPermissionTagConfigurationFilterSensitiveLog(
|
|
3994
|
+
obj.RowLevelPermissionTagConfiguration
|
|
3995
|
+
)
|
|
3996
|
+
}
|
|
3997
|
+
}), "DataSetFilterSensitiveLog");
|
|
3998
|
+
var DescribeAnalysisDefinitionResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3999
|
+
...obj
|
|
4000
|
+
}), "DescribeAnalysisDefinitionResponseFilterSensitiveLog");
|
|
4001
|
+
var DescribeAssetBundleExportJobResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4002
|
+
...obj,
|
|
4003
|
+
...obj.DownloadUrl && { DownloadUrl: import_smithy_client.SENSITIVE_STRING }
|
|
4004
|
+
}), "DescribeAssetBundleExportJobResponseFilterSensitiveLog");
|
|
4005
|
+
var DescribeAssetBundleImportJobResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4006
|
+
...obj,
|
|
4007
|
+
...obj.AssetBundleImportSource && {
|
|
4008
|
+
AssetBundleImportSource: AssetBundleImportSourceDescriptionFilterSensitiveLog(obj.AssetBundleImportSource)
|
|
4009
|
+
}
|
|
4010
|
+
}), "DescribeAssetBundleImportJobResponseFilterSensitiveLog");
|
|
4011
|
+
var DescribeDashboardDefinitionResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4012
|
+
...obj
|
|
4013
|
+
}), "DescribeDashboardDefinitionResponseFilterSensitiveLog");
|
|
4014
|
+
var SnapshotConfigurationFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4015
|
+
...obj,
|
|
4016
|
+
...obj.Parameters && { Parameters: _ParametersFilterSensitiveLog(obj.Parameters) }
|
|
4017
|
+
}), "SnapshotConfigurationFilterSensitiveLog");
|
|
4018
|
+
var DescribeDashboardSnapshotJobResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4019
|
+
...obj
|
|
4020
|
+
}), "DescribeDashboardSnapshotJobResponseFilterSensitiveLog");
|
|
4021
|
+
var SnapshotJobResultFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4022
|
+
...obj
|
|
4023
|
+
}), "SnapshotJobResultFilterSensitiveLog");
|
|
4024
|
+
var DescribeDashboardSnapshotJobResultResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4025
|
+
...obj
|
|
4026
|
+
}), "DescribeDashboardSnapshotJobResultResponseFilterSensitiveLog");
|
|
4027
|
+
var DescribeDataSetResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4028
|
+
...obj,
|
|
4029
|
+
...obj.DataSet && { DataSet: DataSetFilterSensitiveLog(obj.DataSet) }
|
|
4030
|
+
}), "DescribeDataSetResponseFilterSensitiveLog");
|
|
4031
|
+
var DescribeTemplateDefinitionResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4032
|
+
...obj
|
|
4033
|
+
}), "DescribeTemplateDefinitionResponseFilterSensitiveLog");
|
|
4034
|
+
var DescribeTopicResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4035
|
+
...obj
|
|
4036
|
+
}), "DescribeTopicResponseFilterSensitiveLog");
|
|
4037
|
+
|
|
4038
|
+
// src/models/models_4.ts
|
|
4039
|
+
var TopicRefreshStatus = {
|
|
4040
|
+
CANCELLED: "CANCELLED",
|
|
4041
|
+
COMPLETED: "COMPLETED",
|
|
4042
|
+
FAILED: "FAILED",
|
|
4043
|
+
INITIALIZED: "INITIALIZED",
|
|
4044
|
+
RUNNING: "RUNNING"
|
|
4045
|
+
};
|
|
4046
|
+
var IdentityType = {
|
|
4047
|
+
IAM: "IAM",
|
|
4048
|
+
IAM_IDENTITY_CENTER: "IAM_IDENTITY_CENTER",
|
|
4049
|
+
QUICKSIGHT: "QUICKSIGHT"
|
|
4050
|
+
};
|
|
4051
|
+
var UserRole = {
|
|
4052
|
+
ADMIN: "ADMIN",
|
|
4053
|
+
ADMIN_PRO: "ADMIN_PRO",
|
|
4054
|
+
AUTHOR: "AUTHOR",
|
|
4055
|
+
AUTHOR_PRO: "AUTHOR_PRO",
|
|
4056
|
+
READER: "READER",
|
|
4057
|
+
READER_PRO: "READER_PRO",
|
|
4058
|
+
RESTRICTED_AUTHOR: "RESTRICTED_AUTHOR",
|
|
4059
|
+
RESTRICTED_READER: "RESTRICTED_READER"
|
|
4060
|
+
};
|
|
4061
|
+
var NetworkInterfaceStatus = {
|
|
4062
|
+
ATTACHMENT_FAILED_ROLLBACK_FAILED: "ATTACHMENT_FAILED_ROLLBACK_FAILED",
|
|
4063
|
+
AVAILABLE: "AVAILABLE",
|
|
4064
|
+
CREATING: "CREATING",
|
|
4065
|
+
CREATION_FAILED: "CREATION_FAILED",
|
|
4066
|
+
DELETED: "DELETED",
|
|
4067
|
+
DELETING: "DELETING",
|
|
4068
|
+
DELETION_FAILED: "DELETION_FAILED",
|
|
4069
|
+
DELETION_SCHEDULED: "DELETION_SCHEDULED",
|
|
4070
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
4071
|
+
UPDATING: "UPDATING"
|
|
4072
|
+
};
|
|
4073
|
+
var _DomainNotWhitelistedException = class _DomainNotWhitelistedException extends QuickSightServiceException {
|
|
4074
|
+
/**
|
|
4075
|
+
* @internal
|
|
4076
|
+
*/
|
|
4077
|
+
constructor(opts) {
|
|
4078
|
+
super({
|
|
4079
|
+
name: "DomainNotWhitelistedException",
|
|
4080
|
+
$fault: "client",
|
|
4081
|
+
...opts
|
|
4082
|
+
});
|
|
4083
|
+
this.name = "DomainNotWhitelistedException";
|
|
4084
|
+
this.$fault = "client";
|
|
4085
|
+
Object.setPrototypeOf(this, _DomainNotWhitelistedException.prototype);
|
|
4086
|
+
this.Message = opts.Message;
|
|
4087
|
+
this.RequestId = opts.RequestId;
|
|
4088
|
+
}
|
|
4089
|
+
};
|
|
4090
|
+
__name(_DomainNotWhitelistedException, "DomainNotWhitelistedException");
|
|
4091
|
+
var DomainNotWhitelistedException = _DomainNotWhitelistedException;
|
|
4092
|
+
var EmbeddingIdentityType = {
|
|
4093
|
+
ANONYMOUS: "ANONYMOUS",
|
|
4094
|
+
IAM: "IAM",
|
|
4095
|
+
QUICKSIGHT: "QUICKSIGHT"
|
|
4096
|
+
};
|
|
4097
|
+
var FolderFilterAttribute = {
|
|
4098
|
+
DIRECT_QUICKSIGHT_OWNER: "DIRECT_QUICKSIGHT_OWNER",
|
|
4099
|
+
DIRECT_QUICKSIGHT_SOLE_OWNER: "DIRECT_QUICKSIGHT_SOLE_OWNER",
|
|
4100
|
+
DIRECT_QUICKSIGHT_VIEWER_OR_OWNER: "DIRECT_QUICKSIGHT_VIEWER_OR_OWNER",
|
|
4101
|
+
FOLDER_NAME: "FOLDER_NAME",
|
|
4102
|
+
PARENT_FOLDER_ARN: "PARENT_FOLDER_ARN",
|
|
4103
|
+
QUICKSIGHT_OWNER: "QUICKSIGHT_OWNER",
|
|
4104
|
+
QUICKSIGHT_VIEWER_OR_OWNER: "QUICKSIGHT_VIEWER_OR_OWNER"
|
|
4105
|
+
};
|
|
4106
|
+
var _SessionLifetimeInMinutesInvalidException = class _SessionLifetimeInMinutesInvalidException extends QuickSightServiceException {
|
|
4107
|
+
/**
|
|
4108
|
+
* @internal
|
|
4109
|
+
*/
|
|
4110
|
+
constructor(opts) {
|
|
4111
|
+
super({
|
|
4112
|
+
name: "SessionLifetimeInMinutesInvalidException",
|
|
4113
|
+
$fault: "client",
|
|
4114
|
+
...opts
|
|
4115
|
+
});
|
|
4116
|
+
this.name = "SessionLifetimeInMinutesInvalidException";
|
|
4117
|
+
this.$fault = "client";
|
|
4118
|
+
Object.setPrototypeOf(this, _SessionLifetimeInMinutesInvalidException.prototype);
|
|
4119
|
+
this.Message = opts.Message;
|
|
4120
|
+
this.RequestId = opts.RequestId;
|
|
4121
|
+
}
|
|
4122
|
+
};
|
|
4123
|
+
__name(_SessionLifetimeInMinutesInvalidException, "SessionLifetimeInMinutesInvalidException");
|
|
4124
|
+
var SessionLifetimeInMinutesInvalidException = _SessionLifetimeInMinutesInvalidException;
|
|
4125
|
+
var _UnsupportedPricingPlanException = class _UnsupportedPricingPlanException extends QuickSightServiceException {
|
|
4126
|
+
/**
|
|
4127
|
+
* @internal
|
|
4128
|
+
*/
|
|
4129
|
+
constructor(opts) {
|
|
4130
|
+
super({
|
|
4131
|
+
name: "UnsupportedPricingPlanException",
|
|
4132
|
+
$fault: "client",
|
|
4133
|
+
...opts
|
|
4134
|
+
});
|
|
4135
|
+
this.name = "UnsupportedPricingPlanException";
|
|
4136
|
+
this.$fault = "client";
|
|
4137
|
+
Object.setPrototypeOf(this, _UnsupportedPricingPlanException.prototype);
|
|
4138
|
+
this.Message = opts.Message;
|
|
4139
|
+
this.RequestId = opts.RequestId;
|
|
4140
|
+
}
|
|
4141
|
+
};
|
|
4142
|
+
__name(_UnsupportedPricingPlanException, "UnsupportedPricingPlanException");
|
|
4143
|
+
var UnsupportedPricingPlanException = _UnsupportedPricingPlanException;
|
|
4144
|
+
var _QuickSightUserNotFoundException = class _QuickSightUserNotFoundException extends QuickSightServiceException {
|
|
4145
|
+
/**
|
|
4146
|
+
* @internal
|
|
4147
|
+
*/
|
|
4148
|
+
constructor(opts) {
|
|
4149
|
+
super({
|
|
4150
|
+
name: "QuickSightUserNotFoundException",
|
|
4151
|
+
$fault: "client",
|
|
4152
|
+
...opts
|
|
4153
|
+
});
|
|
4154
|
+
this.name = "QuickSightUserNotFoundException";
|
|
4155
|
+
this.$fault = "client";
|
|
4156
|
+
Object.setPrototypeOf(this, _QuickSightUserNotFoundException.prototype);
|
|
4157
|
+
this.Message = opts.Message;
|
|
4158
|
+
this.RequestId = opts.RequestId;
|
|
4159
|
+
}
|
|
4160
|
+
};
|
|
4161
|
+
__name(_QuickSightUserNotFoundException, "QuickSightUserNotFoundException");
|
|
4162
|
+
var QuickSightUserNotFoundException = _QuickSightUserNotFoundException;
|
|
4163
|
+
var _IdentityTypeNotSupportedException = class _IdentityTypeNotSupportedException extends QuickSightServiceException {
|
|
4164
|
+
/**
|
|
4165
|
+
* @internal
|
|
4166
|
+
*/
|
|
4167
|
+
constructor(opts) {
|
|
4168
|
+
super({
|
|
4169
|
+
name: "IdentityTypeNotSupportedException",
|
|
4170
|
+
$fault: "client",
|
|
4171
|
+
...opts
|
|
4172
|
+
});
|
|
4173
|
+
this.name = "IdentityTypeNotSupportedException";
|
|
4174
|
+
this.$fault = "client";
|
|
4175
|
+
Object.setPrototypeOf(this, _IdentityTypeNotSupportedException.prototype);
|
|
4176
|
+
this.Message = opts.Message;
|
|
4177
|
+
this.RequestId = opts.RequestId;
|
|
4178
|
+
}
|
|
4179
|
+
};
|
|
4180
|
+
__name(_IdentityTypeNotSupportedException, "IdentityTypeNotSupportedException");
|
|
4181
|
+
var IdentityTypeNotSupportedException = _IdentityTypeNotSupportedException;
|
|
4182
|
+
var GroupFilterAttribute = {
|
|
4183
|
+
GROUP_NAME: "GROUP_NAME"
|
|
4129
4184
|
};
|
|
4130
|
-
var
|
|
4131
|
-
|
|
4185
|
+
var GroupFilterOperator = {
|
|
4186
|
+
StartsWith: "StartsWith"
|
|
4132
4187
|
};
|
|
4133
|
-
var
|
|
4134
|
-
|
|
4135
|
-
|
|
4136
|
-
|
|
4137
|
-
|
|
4138
|
-
|
|
4188
|
+
var _InvalidRequestException = class _InvalidRequestException extends QuickSightServiceException {
|
|
4189
|
+
/**
|
|
4190
|
+
* @internal
|
|
4191
|
+
*/
|
|
4192
|
+
constructor(opts) {
|
|
4193
|
+
super({
|
|
4194
|
+
name: "InvalidRequestException",
|
|
4195
|
+
$fault: "client",
|
|
4196
|
+
...opts
|
|
4197
|
+
});
|
|
4198
|
+
this.name = "InvalidRequestException";
|
|
4199
|
+
this.$fault = "client";
|
|
4200
|
+
Object.setPrototypeOf(this, _InvalidRequestException.prototype);
|
|
4201
|
+
this.Message = opts.Message;
|
|
4202
|
+
this.RequestId = opts.RequestId;
|
|
4203
|
+
}
|
|
4139
4204
|
};
|
|
4140
|
-
|
|
4141
|
-
|
|
4142
|
-
|
|
4143
|
-
|
|
4205
|
+
__name(_InvalidRequestException, "InvalidRequestException");
|
|
4206
|
+
var InvalidRequestException = _InvalidRequestException;
|
|
4207
|
+
var PurchaseMode = {
|
|
4208
|
+
AUTO_PURCHASE: "AUTO_PURCHASE",
|
|
4209
|
+
MANUAL: "MANUAL"
|
|
4144
4210
|
};
|
|
4145
|
-
var
|
|
4146
|
-
...obj,
|
|
4147
|
-
...obj.CredentialPair && { CredentialPair: obj.CredentialPair }
|
|
4148
|
-
}), "DataSourceCredentialsFilterSensitiveLog");
|
|
4149
|
-
var CreateDataSourceRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4150
|
-
...obj,
|
|
4151
|
-
...obj.DataSourceParameters && { DataSourceParameters: obj.DataSourceParameters },
|
|
4152
|
-
...obj.Credentials && { Credentials: import_smithy_client.SENSITIVE_STRING }
|
|
4153
|
-
}), "CreateDataSourceRequestFilterSensitiveLog");
|
|
4154
|
-
var TemplateVersionDefinitionFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4155
|
-
...obj,
|
|
4156
|
-
...obj.CalculatedFields && {
|
|
4157
|
-
CalculatedFields: obj.CalculatedFields.map((item) => CalculatedFieldFilterSensitiveLog(item))
|
|
4158
|
-
},
|
|
4159
|
-
...obj.ParameterDeclarations && {
|
|
4160
|
-
ParameterDeclarations: obj.ParameterDeclarations.map((item) => ParameterDeclarationFilterSensitiveLog(item))
|
|
4161
|
-
},
|
|
4162
|
-
...obj.ColumnConfigurations && {
|
|
4163
|
-
ColumnConfigurations: obj.ColumnConfigurations.map((item) => ColumnConfigurationFilterSensitiveLog(item))
|
|
4164
|
-
}
|
|
4165
|
-
}), "TemplateVersionDefinitionFilterSensitiveLog");
|
|
4166
|
-
var CreateTemplateRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4167
|
-
...obj
|
|
4168
|
-
}), "CreateTemplateRequestFilterSensitiveLog");
|
|
4169
|
-
var SemanticTypeFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4170
|
-
...obj,
|
|
4171
|
-
...obj.TruthyCellValue && { TruthyCellValue: import_smithy_client.SENSITIVE_STRING },
|
|
4172
|
-
...obj.TruthyCellValueSynonyms && { TruthyCellValueSynonyms: import_smithy_client.SENSITIVE_STRING },
|
|
4173
|
-
...obj.FalseyCellValue && { FalseyCellValue: import_smithy_client.SENSITIVE_STRING },
|
|
4174
|
-
...obj.FalseyCellValueSynonyms && { FalseyCellValueSynonyms: import_smithy_client.SENSITIVE_STRING }
|
|
4175
|
-
}), "SemanticTypeFilterSensitiveLog");
|
|
4176
|
-
var TopicCalculatedFieldFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4177
|
-
...obj,
|
|
4178
|
-
...obj.Expression && { Expression: import_smithy_client.SENSITIVE_STRING },
|
|
4179
|
-
...obj.SemanticType && { SemanticType: SemanticTypeFilterSensitiveLog(obj.SemanticType) }
|
|
4180
|
-
}), "TopicCalculatedFieldFilterSensitiveLog");
|
|
4181
|
-
var TopicColumnFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4211
|
+
var SessionTagFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4182
4212
|
...obj,
|
|
4183
|
-
...obj.
|
|
4184
|
-
}), "
|
|
4185
|
-
var
|
|
4186
|
-
...obj
|
|
4187
|
-
}), "TopicCategoryFilterConstantFilterSensitiveLog");
|
|
4188
|
-
var TopicCategoryFilterFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4213
|
+
...obj.Value && { Value: import_smithy_client.SENSITIVE_STRING }
|
|
4214
|
+
}), "SessionTagFilterSensitiveLog");
|
|
4215
|
+
var GenerateEmbedUrlForAnonymousUserRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4189
4216
|
...obj,
|
|
4190
|
-
...obj.
|
|
4191
|
-
}), "
|
|
4192
|
-
var
|
|
4193
|
-
...obj
|
|
4194
|
-
}), "TopicRangeFilterConstantFilterSensitiveLog");
|
|
4195
|
-
var TopicDateRangeFilterFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4217
|
+
...obj.SessionTags && { SessionTags: obj.SessionTags.map((item) => SessionTagFilterSensitiveLog(item)) }
|
|
4218
|
+
}), "GenerateEmbedUrlForAnonymousUserRequestFilterSensitiveLog");
|
|
4219
|
+
var GenerateEmbedUrlForAnonymousUserResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4196
4220
|
...obj,
|
|
4197
|
-
...obj.
|
|
4198
|
-
}), "
|
|
4199
|
-
var
|
|
4200
|
-
...obj
|
|
4201
|
-
}), "TopicSingularFilterConstantFilterSensitiveLog");
|
|
4202
|
-
var TopicNumericEqualityFilterFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4221
|
+
...obj.EmbedUrl && { EmbedUrl: import_smithy_client.SENSITIVE_STRING }
|
|
4222
|
+
}), "GenerateEmbedUrlForAnonymousUserResponseFilterSensitiveLog");
|
|
4223
|
+
var GenerateEmbedUrlForRegisteredUserResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4203
4224
|
...obj,
|
|
4204
|
-
...obj.
|
|
4205
|
-
}), "
|
|
4206
|
-
var
|
|
4225
|
+
...obj.EmbedUrl && { EmbedUrl: import_smithy_client.SENSITIVE_STRING }
|
|
4226
|
+
}), "GenerateEmbedUrlForRegisteredUserResponseFilterSensitiveLog");
|
|
4227
|
+
var GetDashboardEmbedUrlResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4207
4228
|
...obj,
|
|
4208
|
-
...obj.
|
|
4209
|
-
}), "
|
|
4210
|
-
var
|
|
4229
|
+
...obj.EmbedUrl && { EmbedUrl: import_smithy_client.SENSITIVE_STRING }
|
|
4230
|
+
}), "GetDashboardEmbedUrlResponseFilterSensitiveLog");
|
|
4231
|
+
var GetSessionEmbedUrlResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4211
4232
|
...obj,
|
|
4212
|
-
...obj.
|
|
4213
|
-
}), "
|
|
4214
|
-
var
|
|
4233
|
+
...obj.EmbedUrl && { EmbedUrl: import_smithy_client.SENSITIVE_STRING }
|
|
4234
|
+
}), "GetSessionEmbedUrlResponseFilterSensitiveLog");
|
|
4235
|
+
var StartAssetBundleImportJobRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4215
4236
|
...obj,
|
|
4216
|
-
...obj.
|
|
4217
|
-
|
|
4218
|
-
NumericEqualityFilter: TopicNumericEqualityFilterFilterSensitiveLog(obj.NumericEqualityFilter)
|
|
4219
|
-
},
|
|
4220
|
-
...obj.NumericRangeFilter && {
|
|
4221
|
-
NumericRangeFilter: TopicNumericRangeFilterFilterSensitiveLog(obj.NumericRangeFilter)
|
|
4222
|
-
},
|
|
4223
|
-
...obj.DateRangeFilter && { DateRangeFilter: TopicDateRangeFilterFilterSensitiveLog(obj.DateRangeFilter) },
|
|
4224
|
-
...obj.RelativeDateFilter && {
|
|
4225
|
-
RelativeDateFilter: TopicRelativeDateFilterFilterSensitiveLog(obj.RelativeDateFilter)
|
|
4237
|
+
...obj.AssetBundleImportSource && {
|
|
4238
|
+
AssetBundleImportSource: AssetBundleImportSourceFilterSensitiveLog(obj.AssetBundleImportSource)
|
|
4226
4239
|
}
|
|
4227
|
-
}), "
|
|
4228
|
-
var
|
|
4240
|
+
}), "StartAssetBundleImportJobRequestFilterSensitiveLog");
|
|
4241
|
+
var SnapshotAnonymousUserFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4229
4242
|
...obj,
|
|
4230
|
-
...obj.
|
|
4231
|
-
|
|
4232
|
-
...obj.CalculatedFields && {
|
|
4233
|
-
CalculatedFields: obj.CalculatedFields.map((item) => TopicCalculatedFieldFilterSensitiveLog(item))
|
|
4243
|
+
...obj.RowLevelPermissionTags && {
|
|
4244
|
+
RowLevelPermissionTags: obj.RowLevelPermissionTags.map((item) => SessionTagFilterSensitiveLog(item))
|
|
4234
4245
|
}
|
|
4235
|
-
}), "
|
|
4236
|
-
var
|
|
4246
|
+
}), "SnapshotAnonymousUserFilterSensitiveLog");
|
|
4247
|
+
var SnapshotUserConfigurationFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4237
4248
|
...obj
|
|
4238
|
-
}), "
|
|
4239
|
-
var
|
|
4249
|
+
}), "SnapshotUserConfigurationFilterSensitiveLog");
|
|
4250
|
+
var StartDashboardSnapshotJobRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4240
4251
|
...obj
|
|
4241
|
-
}), "
|
|
4242
|
-
var
|
|
4252
|
+
}), "StartDashboardSnapshotJobRequestFilterSensitiveLog");
|
|
4253
|
+
var UpdateAnalysisRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4243
4254
|
...obj,
|
|
4244
|
-
...obj.
|
|
4245
|
-
}), "
|
|
4246
|
-
var
|
|
4255
|
+
...obj.Parameters && { Parameters: _ParametersFilterSensitiveLog(obj.Parameters) }
|
|
4256
|
+
}), "UpdateAnalysisRequestFilterSensitiveLog");
|
|
4257
|
+
var UpdateDashboardRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4258
|
+
...obj,
|
|
4259
|
+
...obj.Parameters && { Parameters: _ParametersFilterSensitiveLog(obj.Parameters) }
|
|
4260
|
+
}), "UpdateDashboardRequestFilterSensitiveLog");
|
|
4261
|
+
var UpdateDataSetRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4247
4262
|
...obj,
|
|
4248
4263
|
...obj.PhysicalTableMap && {
|
|
4249
4264
|
PhysicalTableMap: Object.entries(obj.PhysicalTableMap).reduce(
|
|
@@ -4257,54 +4272,48 @@ var DataSetFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
|
4257
4272
|
{}
|
|
4258
4273
|
)
|
|
4259
4274
|
},
|
|
4260
|
-
...obj.OutputColumns && { OutputColumns: obj.OutputColumns.map((item) => OutputColumnFilterSensitiveLog(item)) },
|
|
4261
4275
|
...obj.RowLevelPermissionTagConfiguration && {
|
|
4262
4276
|
RowLevelPermissionTagConfiguration: RowLevelPermissionTagConfigurationFilterSensitiveLog(
|
|
4263
4277
|
obj.RowLevelPermissionTagConfiguration
|
|
4264
4278
|
)
|
|
4265
4279
|
}
|
|
4266
|
-
}), "
|
|
4267
|
-
var
|
|
4268
|
-
...obj
|
|
4269
|
-
}), "DescribeAnalysisDefinitionResponseFilterSensitiveLog");
|
|
4270
|
-
var DescribeAssetBundleExportJobResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4271
|
-
...obj,
|
|
4272
|
-
...obj.DownloadUrl && { DownloadUrl: import_smithy_client.SENSITIVE_STRING }
|
|
4273
|
-
}), "DescribeAssetBundleExportJobResponseFilterSensitiveLog");
|
|
4274
|
-
var DescribeAssetBundleImportJobResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4275
|
-
...obj,
|
|
4276
|
-
...obj.AssetBundleImportSource && {
|
|
4277
|
-
AssetBundleImportSource: AssetBundleImportSourceDescriptionFilterSensitiveLog(obj.AssetBundleImportSource)
|
|
4278
|
-
}
|
|
4279
|
-
}), "DescribeAssetBundleImportJobResponseFilterSensitiveLog");
|
|
4280
|
-
var DescribeDashboardDefinitionResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4281
|
-
...obj
|
|
4282
|
-
}), "DescribeDashboardDefinitionResponseFilterSensitiveLog");
|
|
4283
|
-
var SnapshotConfigurationFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4280
|
+
}), "UpdateDataSetRequestFilterSensitiveLog");
|
|
4281
|
+
var UpdateDataSourceRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4284
4282
|
...obj,
|
|
4285
|
-
...obj.
|
|
4286
|
-
}
|
|
4287
|
-
|
|
4288
|
-
|
|
4289
|
-
}), "DescribeDashboardSnapshotJobResponseFilterSensitiveLog");
|
|
4290
|
-
var SnapshotJobResultFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4283
|
+
...obj.DataSourceParameters && { DataSourceParameters: obj.DataSourceParameters },
|
|
4284
|
+
...obj.Credentials && { Credentials: import_smithy_client.SENSITIVE_STRING }
|
|
4285
|
+
}), "UpdateDataSourceRequestFilterSensitiveLog");
|
|
4286
|
+
var UpdateTemplateRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4291
4287
|
...obj
|
|
4292
|
-
}), "
|
|
4293
|
-
var
|
|
4288
|
+
}), "UpdateTemplateRequestFilterSensitiveLog");
|
|
4289
|
+
var UpdateTopicRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4294
4290
|
...obj
|
|
4295
|
-
}), "
|
|
4296
|
-
var
|
|
4291
|
+
}), "UpdateTopicRequestFilterSensitiveLog");
|
|
4292
|
+
var TopicVisualFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4297
4293
|
...obj,
|
|
4298
|
-
...obj.
|
|
4299
|
-
}), "
|
|
4300
|
-
var
|
|
4294
|
+
...obj.Ir && { Ir: TopicIRFilterSensitiveLog(obj.Ir) }
|
|
4295
|
+
}), "TopicVisualFilterSensitiveLog");
|
|
4296
|
+
var CreateTopicReviewedAnswerFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4297
|
+
...obj,
|
|
4298
|
+
...obj.Mir && { Mir: TopicIRFilterSensitiveLog(obj.Mir) },
|
|
4299
|
+
...obj.PrimaryVisual && { PrimaryVisual: TopicVisualFilterSensitiveLog(obj.PrimaryVisual) }
|
|
4300
|
+
}), "CreateTopicReviewedAnswerFilterSensitiveLog");
|
|
4301
|
+
var TopicReviewedAnswerFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4302
|
+
...obj,
|
|
4303
|
+
...obj.Mir && { Mir: TopicIRFilterSensitiveLog(obj.Mir) },
|
|
4304
|
+
...obj.PrimaryVisual && { PrimaryVisual: TopicVisualFilterSensitiveLog(obj.PrimaryVisual) }
|
|
4305
|
+
}), "TopicReviewedAnswerFilterSensitiveLog");
|
|
4306
|
+
var BatchCreateTopicReviewedAnswerRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4301
4307
|
...obj
|
|
4302
|
-
}), "
|
|
4303
|
-
var
|
|
4308
|
+
}), "BatchCreateTopicReviewedAnswerRequestFilterSensitiveLog");
|
|
4309
|
+
var ListTopicReviewedAnswersResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
4304
4310
|
...obj
|
|
4305
|
-
}), "
|
|
4311
|
+
}), "ListTopicReviewedAnswersResponseFilterSensitiveLog");
|
|
4306
4312
|
|
|
4307
4313
|
// src/protocols/Aws_restJson1.ts
|
|
4314
|
+
var import_core2 = require("@aws-sdk/core");
|
|
4315
|
+
|
|
4316
|
+
|
|
4308
4317
|
var se_BatchCreateTopicReviewedAnswerCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4309
4318
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
4310
4319
|
const headers = {
|
|
@@ -6252,6 +6261,8 @@ var se_StartAssetBundleExportJobCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
6252
6261
|
CloudFormationOverridePropertyConfiguration: (_) => (0, import_smithy_client._json)(_),
|
|
6253
6262
|
ExportFormat: [],
|
|
6254
6263
|
IncludeAllDependencies: [],
|
|
6264
|
+
IncludeFolderMembers: [],
|
|
6265
|
+
IncludeFolderMemberships: [],
|
|
6255
6266
|
IncludePermissions: [],
|
|
6256
6267
|
IncludeTags: [],
|
|
6257
6268
|
ResourceArns: (_) => (0, import_smithy_client._json)(_),
|
|
@@ -8081,6 +8092,8 @@ var de_DescribeAssetBundleExportJobCommand = /* @__PURE__ */ __name(async (outpu
|
|
|
8081
8092
|
Errors: import_smithy_client._json,
|
|
8082
8093
|
ExportFormat: import_smithy_client.expectString,
|
|
8083
8094
|
IncludeAllDependencies: import_smithy_client.expectBoolean,
|
|
8095
|
+
IncludeFolderMembers: import_smithy_client.expectString,
|
|
8096
|
+
IncludeFolderMemberships: import_smithy_client.expectBoolean,
|
|
8084
8097
|
IncludePermissions: import_smithy_client.expectBoolean,
|
|
8085
8098
|
IncludeTags: import_smithy_client.expectBoolean,
|
|
8086
8099
|
JobStatus: import_smithy_client.expectString,
|
|
@@ -10845,6 +10858,7 @@ var se_AssetBundleImportJobOverrideParameters = /* @__PURE__ */ __name((input, c
|
|
|
10845
10858
|
Dashboards: import_smithy_client._json,
|
|
10846
10859
|
DataSets: import_smithy_client._json,
|
|
10847
10860
|
DataSources: import_smithy_client._json,
|
|
10861
|
+
Folders: import_smithy_client._json,
|
|
10848
10862
|
RefreshSchedules: (_) => se_AssetBundleImportJobRefreshScheduleOverrideParametersList(_, context),
|
|
10849
10863
|
ResourceIdOverrideConfiguration: import_smithy_client._json,
|
|
10850
10864
|
Themes: import_smithy_client._json,
|
|
@@ -13258,6 +13272,7 @@ var de_AssetBundleImportJobOverrideParameters = /* @__PURE__ */ __name((output,
|
|
|
13258
13272
|
Dashboards: import_smithy_client._json,
|
|
13259
13273
|
DataSets: import_smithy_client._json,
|
|
13260
13274
|
DataSources: import_smithy_client._json,
|
|
13275
|
+
Folders: import_smithy_client._json,
|
|
13261
13276
|
RefreshSchedules: (_) => de_AssetBundleImportJobRefreshScheduleOverrideParametersList(_, context),
|
|
13262
13277
|
ResourceIdOverrideConfiguration: import_smithy_client._json,
|
|
13263
13278
|
Themes: import_smithy_client._json,
|
|
@@ -19459,6 +19474,7 @@ var paginateSearchGroups = (0, import_core.createPaginator)(QuickSightClient, Se
|
|
|
19459
19474
|
AssetBundleExportJobDashboardPropertyToOverride,
|
|
19460
19475
|
AssetBundleExportJobDataSetPropertyToOverride,
|
|
19461
19476
|
AssetBundleExportJobDataSourcePropertyToOverride,
|
|
19477
|
+
AssetBundleExportJobFolderPropertyToOverride,
|
|
19462
19478
|
AssetBundleExportJobRefreshSchedulePropertyToOverride,
|
|
19463
19479
|
AssetBundleExportJobThemePropertyToOverride,
|
|
19464
19480
|
AssetBundleExportJobVPCConnectionPropertyToOverride,
|
|
@@ -19560,9 +19576,6 @@ var paginateSearchGroups = (0, import_core.createPaginator)(QuickSightClient, Se
|
|
|
19560
19576
|
TagColumnOperationFilterSensitiveLog,
|
|
19561
19577
|
TransformOperationFilterSensitiveLog,
|
|
19562
19578
|
LogicalTableFilterSensitiveLog,
|
|
19563
|
-
RowLevelPermissionTagRuleFilterSensitiveLog,
|
|
19564
|
-
RowLevelPermissionTagConfigurationFilterSensitiveLog,
|
|
19565
|
-
CreateDataSetRequestFilterSensitiveLog,
|
|
19566
19579
|
DataSourceType,
|
|
19567
19580
|
CustomerManagedKeyUnavailableException,
|
|
19568
19581
|
FolderType,
|
|
@@ -19592,6 +19605,7 @@ var paginateSearchGroups = (0, import_core.createPaginator)(QuickSightClient, Se
|
|
|
19592
19605
|
LookbackWindowSizeUnit,
|
|
19593
19606
|
DataSourceErrorInfoType,
|
|
19594
19607
|
DataSourceFilterAttribute,
|
|
19608
|
+
IncludeFolderMembers,
|
|
19595
19609
|
SnapshotJobStatus,
|
|
19596
19610
|
InvalidNextTokenException,
|
|
19597
19611
|
IngestionErrorType,
|
|
@@ -19602,8 +19616,9 @@ var paginateSearchGroups = (0, import_core.createPaginator)(QuickSightClient, Se
|
|
|
19602
19616
|
TemplateErrorType,
|
|
19603
19617
|
ThemeType,
|
|
19604
19618
|
ThemeErrorType,
|
|
19605
|
-
|
|
19606
|
-
|
|
19619
|
+
RowLevelPermissionTagRuleFilterSensitiveLog,
|
|
19620
|
+
RowLevelPermissionTagConfigurationFilterSensitiveLog,
|
|
19621
|
+
CreateDataSetRequestFilterSensitiveLog,
|
|
19607
19622
|
DataSourceCredentialsFilterSensitiveLog,
|
|
19608
19623
|
CreateDataSourceRequestFilterSensitiveLog,
|
|
19609
19624
|
TemplateVersionDefinitionFilterSensitiveLog,
|
|
@@ -19636,6 +19651,8 @@ var paginateSearchGroups = (0, import_core.createPaginator)(QuickSightClient, Se
|
|
|
19636
19651
|
DescribeDataSetResponseFilterSensitiveLog,
|
|
19637
19652
|
DescribeTemplateDefinitionResponseFilterSensitiveLog,
|
|
19638
19653
|
DescribeTopicResponseFilterSensitiveLog,
|
|
19654
|
+
TopicRefreshStatus,
|
|
19655
|
+
IdentityType,
|
|
19639
19656
|
UserRole,
|
|
19640
19657
|
NetworkInterfaceStatus,
|
|
19641
19658
|
DomainNotWhitelistedException,
|