@aws-sdk/client-quicksight 3.958.0 → 3.962.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/README.md +28 -0
- package/dist-cjs/index.js +215 -10
- package/dist-es/QuickSight.js +8 -0
- package/dist-es/commands/DescribeSelfUpgradeConfigurationCommand.js +16 -0
- package/dist-es/commands/ListSelfUpgradesCommand.js +16 -0
- package/dist-es/commands/UpdateSelfUpgradeCommand.js +16 -0
- package/dist-es/commands/UpdateSelfUpgradeConfigurationCommand.js +16 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/enums.js +16 -0
- package/dist-es/models/errors.js +16 -0
- package/dist-es/schemas/schemas_0.js +109 -11
- package/dist-types/QuickSight.d.ts +28 -0
- package/dist-types/QuickSightClient.d.ts +6 -2
- package/dist-types/commands/CreateCustomPermissionsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeCustomPermissionsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeSelfUpgradeConfigurationCommand.d.ts +106 -0
- package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +2 -1
- package/dist-types/commands/DescribeTemplatePermissionsCommand.d.ts +1 -1
- package/dist-types/commands/ListCustomPermissionsCommand.d.ts +1 -0
- package/dist-types/commands/ListSelfUpgradesCommand.d.ts +122 -0
- package/dist-types/commands/StartDashboardSnapshotJobCommand.d.ts +2 -2
- package/dist-types/commands/UpdateCustomPermissionsCommand.d.ts +1 -0
- package/dist-types/commands/UpdateSelfUpgradeCommand.d.ts +119 -0
- package/dist-types/commands/UpdateSelfUpgradeConfigurationCommand.d.ts +104 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/enums.d.ts +40 -0
- package/dist-types/models/errors.d.ts +18 -0
- package/dist-types/models/models_2.d.ts +5 -0
- package/dist-types/models/models_3.d.ts +57 -129
- package/dist-types/models/models_4.d.ts +312 -3
- package/dist-types/schemas/schemas_0.d.ts +15 -0
- package/dist-types/ts3.4/QuickSight.d.ts +68 -0
- package/dist-types/ts3.4/QuickSightClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/DescribeSelfUpgradeConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeTemplateDefinitionCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeTemplatePermissionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSelfUpgradesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateSelfUpgradeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateSelfUpgradeConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/enums.d.ts +22 -0
- package/dist-types/ts3.4/models/errors.d.ts +9 -0
- package/dist-types/ts3.4/models/models_2.d.ts +1 -0
- package/dist-types/ts3.4/models/models_3.d.ts +13 -21
- package/dist-types/ts3.4/models/models_4.d.ts +68 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +15 -0
- package/package.json +2 -2
|
@@ -100,6 +100,7 @@ export * from "./DescribeQPersonalizationConfigurationCommand";
|
|
|
100
100
|
export * from "./DescribeQuickSightQSearchConfigurationCommand";
|
|
101
101
|
export * from "./DescribeRefreshScheduleCommand";
|
|
102
102
|
export * from "./DescribeRoleCustomPermissionCommand";
|
|
103
|
+
export * from "./DescribeSelfUpgradeConfigurationCommand";
|
|
103
104
|
export * from "./DescribeTemplateAliasCommand";
|
|
104
105
|
export * from "./DescribeTemplateCommand";
|
|
105
106
|
export * from "./DescribeTemplateDefinitionCommand";
|
|
@@ -144,6 +145,7 @@ export * from "./ListIngestionsCommand";
|
|
|
144
145
|
export * from "./ListNamespacesCommand";
|
|
145
146
|
export * from "./ListRefreshSchedulesCommand";
|
|
146
147
|
export * from "./ListRoleMembershipsCommand";
|
|
148
|
+
export * from "./ListSelfUpgradesCommand";
|
|
147
149
|
export * from "./ListTagsForResourceCommand";
|
|
148
150
|
export * from "./ListTemplateAliasesCommand";
|
|
149
151
|
export * from "./ListTemplateVersionsCommand";
|
|
@@ -212,6 +214,8 @@ export * from "./UpdateQuickSightQSearchConfigurationCommand";
|
|
|
212
214
|
export * from "./UpdateRefreshScheduleCommand";
|
|
213
215
|
export * from "./UpdateRoleCustomPermissionCommand";
|
|
214
216
|
export * from "./UpdateSPICECapacityConfigurationCommand";
|
|
217
|
+
export * from "./UpdateSelfUpgradeCommand";
|
|
218
|
+
export * from "./UpdateSelfUpgradeConfigurationCommand";
|
|
215
219
|
export * from "./UpdateTemplateAliasCommand";
|
|
216
220
|
export * from "./UpdateTemplateCommand";
|
|
217
221
|
export * from "./UpdateTemplatePermissionsCommand";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -1539,6 +1539,10 @@ export const QSearchStatus = {
|
|
|
1539
1539
|
DISABLED: "DISABLED",
|
|
1540
1540
|
ENABLED: "ENABLED",
|
|
1541
1541
|
};
|
|
1542
|
+
export const SelfUpgradeStatus = {
|
|
1543
|
+
ADMIN_APPROVAL: "ADMIN_APPROVAL",
|
|
1544
|
+
AUTO_APPROVAL: "AUTO_APPROVAL",
|
|
1545
|
+
};
|
|
1542
1546
|
export const TemplateErrorType = {
|
|
1543
1547
|
ACCESS_DENIED: "ACCESS_DENIED",
|
|
1544
1548
|
DATA_SET_NOT_FOUND: "DATA_SET_NOT_FOUND",
|
|
@@ -1632,6 +1636,13 @@ export const IncludeQuickSightQIndex = {
|
|
|
1632
1636
|
EXCLUDE: "EXCLUDE",
|
|
1633
1637
|
INCLUDE: "INCLUDE",
|
|
1634
1638
|
};
|
|
1639
|
+
export const SelfUpgradeRequestStatus = {
|
|
1640
|
+
APPROVED: "APPROVED",
|
|
1641
|
+
DENIED: "DENIED",
|
|
1642
|
+
PENDING: "PENDING",
|
|
1643
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
1644
|
+
VERIFY_FAILED: "VERIFY_FAILED",
|
|
1645
|
+
};
|
|
1635
1646
|
export const QAResultType = {
|
|
1636
1647
|
DASHBOARD_VISUAL: "DASHBOARD_VISUAL",
|
|
1637
1648
|
GENERATED_ANSWER: "GENERATED_ANSWER",
|
|
@@ -1658,3 +1669,8 @@ export const TopicFilterOperator = {
|
|
|
1658
1669
|
StringEquals: "StringEquals",
|
|
1659
1670
|
StringLike: "StringLike",
|
|
1660
1671
|
};
|
|
1672
|
+
export const SelfUpgradeAdminAction = {
|
|
1673
|
+
APPROVE: "APPROVE",
|
|
1674
|
+
DENY: "DENY",
|
|
1675
|
+
VERIFY: "VERIFY",
|
|
1676
|
+
};
|
package/dist-es/models/errors.js
CHANGED
|
@@ -277,6 +277,22 @@ export class InvalidNextTokenException extends __BaseException {
|
|
|
277
277
|
this.RequestId = opts.RequestId;
|
|
278
278
|
}
|
|
279
279
|
}
|
|
280
|
+
export class InvalidParameterException extends __BaseException {
|
|
281
|
+
name = "InvalidParameterException";
|
|
282
|
+
$fault = "client";
|
|
283
|
+
Message;
|
|
284
|
+
RequestId;
|
|
285
|
+
constructor(opts) {
|
|
286
|
+
super({
|
|
287
|
+
name: "InvalidParameterException",
|
|
288
|
+
$fault: "client",
|
|
289
|
+
...opts,
|
|
290
|
+
});
|
|
291
|
+
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
292
|
+
this.Message = opts.Message;
|
|
293
|
+
this.RequestId = opts.RequestId;
|
|
294
|
+
}
|
|
295
|
+
}
|
|
280
296
|
export class DomainNotWhitelistedException extends __BaseException {
|
|
281
297
|
name = "DomainNotWhitelistedException";
|
|
282
298
|
$fault = "client";
|
|
@@ -658,9 +658,10 @@ const _CTol = "ColumnTag";
|
|
|
658
658
|
const _CTolu = "ColumnType";
|
|
659
659
|
const _CTon = "ConnectionType";
|
|
660
660
|
const _CTont = "ContentType";
|
|
661
|
-
const _CTr = "
|
|
662
|
-
const _CTre = "
|
|
663
|
-
const _CTrea = "
|
|
661
|
+
const _CTr = "CreationTime";
|
|
662
|
+
const _CTre = "CreateTemplate";
|
|
663
|
+
const _CTrea = "CreateTheme";
|
|
664
|
+
const _CTreat = "CreateTopic";
|
|
664
665
|
const _CU = "ConfluenceUrl";
|
|
665
666
|
const _CUE = "ConcurrentUpdatingException";
|
|
666
667
|
const _CUo = "ContentUrl";
|
|
@@ -1099,6 +1100,9 @@ const _DSSatao = "DataSourceSummaries";
|
|
|
1099
1100
|
const _DST = "DashboardSourceTemplate";
|
|
1100
1101
|
const _DSTe = "DecalStyleType";
|
|
1101
1102
|
const _DSUC = "DataSetUsageConfiguration";
|
|
1103
|
+
const _DSUCR = "DescribeSelfUpgradeConfigurationRequest";
|
|
1104
|
+
const _DSUCRe = "DescribeSelfUpgradeConfigurationResponse";
|
|
1105
|
+
const _DSUCe = "DescribeSelfUpgradeConfiguration";
|
|
1102
1106
|
const _DSV = "DecimalStaticValues";
|
|
1103
1107
|
const _DSa = "DataSources";
|
|
1104
1108
|
const _DSas = "DashboardSummary";
|
|
@@ -1677,6 +1681,7 @@ const _INV = "IncludeNullValue";
|
|
|
1677
1681
|
const _IO = "IconOptions";
|
|
1678
1682
|
const _IP = "IncludePermissions";
|
|
1679
1683
|
const _IPD = "IntegerParameterDeclaration";
|
|
1684
|
+
const _IPE = "InvalidParameterException";
|
|
1680
1685
|
const _IPL = "IntegerParameterList";
|
|
1681
1686
|
const _IPRU = "IdentityProviderResourceUri";
|
|
1682
1687
|
const _IPVCP = "IdentityProviderVpcConnectionProperties";
|
|
@@ -1888,6 +1893,9 @@ const _LSC = "LinkSharingConfiguration";
|
|
|
1888
1893
|
const _LSCo = "LogoSetConfiguration";
|
|
1889
1894
|
const _LSS = "LineStyleSettings";
|
|
1890
1895
|
const _LSSi = "LineSymbolStyle";
|
|
1896
|
+
const _LSU = "ListSelfUpgrades";
|
|
1897
|
+
const _LSUR = "ListSelfUpgradesRequest";
|
|
1898
|
+
const _LSURi = "ListSelfUpgradesResponse";
|
|
1891
1899
|
const _LSo = "LogoSet";
|
|
1892
1900
|
const _LT = "LayerType";
|
|
1893
1901
|
const _LTA = "ListTemplateAliases";
|
|
@@ -2106,6 +2114,7 @@ const _OL = "OperandList";
|
|
|
2106
2114
|
const _OP = "OverrideParameters";
|
|
2107
2115
|
const _OPr = "OracleParameters";
|
|
2108
2116
|
const _OPv = "OverridePermissions";
|
|
2117
|
+
const _OR = "OriginalRole";
|
|
2109
2118
|
const _OT = "OverrideTags";
|
|
2110
2119
|
const _OV = "OutlierVisibility";
|
|
2111
2120
|
const _OVPW = "OptimizedViewPortWidth";
|
|
@@ -2430,6 +2439,7 @@ const _RM = "RangeMinimum";
|
|
|
2430
2439
|
const _RMV = "RangeMinimumValue";
|
|
2431
2440
|
const _RMVa = "RangeMaximumValue";
|
|
2432
2441
|
const _RMa = "RangeMaximum";
|
|
2442
|
+
const _RN = "RequestNote";
|
|
2433
2443
|
const _RNCM = "ReadNoneConnectionMetadata";
|
|
2434
2444
|
const _RNFE = "ResourceNotFoundException";
|
|
2435
2445
|
const _RO = "ResizeOption";
|
|
@@ -2445,6 +2455,7 @@ const _RPes = "ResourcePermission";
|
|
|
2445
2455
|
const _RPev = "RevokePermissions";
|
|
2446
2456
|
const _RR = "ReserveRange";
|
|
2447
2457
|
const _RRe = "RenderingRules";
|
|
2458
|
+
const _RReq = "RequestedRole";
|
|
2448
2459
|
const _RS = "RefreshSchedules";
|
|
2449
2460
|
const _RSC = "RecentSnapshotsConfigurations";
|
|
2450
2461
|
const _RSF = "RenameSharedFolders";
|
|
@@ -2454,6 +2465,7 @@ const _RSe = "RefreshSchedule";
|
|
|
2454
2465
|
const _RSec = "RecentSnapshots";
|
|
2455
2466
|
const _RSef = "RefreshStatus";
|
|
2456
2467
|
const _RSeq = "RequestSource";
|
|
2468
|
+
const _RSequ = "RequestStatus";
|
|
2457
2469
|
const _RSes = "ResourceStatus";
|
|
2458
2470
|
const _RSesu = "ResultSize";
|
|
2459
2471
|
const _RSo = "RowSpan";
|
|
@@ -2803,8 +2815,14 @@ const _STou = "SourceTable";
|
|
|
2803
2815
|
const _STt = "StyleTargets";
|
|
2804
2816
|
const _STu = "SubType";
|
|
2805
2817
|
const _SU = "S3Uri";
|
|
2806
|
-
const _SUC = "
|
|
2818
|
+
const _SUC = "SelfUpgradeConfiguration";
|
|
2807
2819
|
const _SUCR = "SnapshotUserConfigurationRedacted";
|
|
2820
|
+
const _SUCn = "SnapshotUserConfiguration";
|
|
2821
|
+
const _SURD = "SelfUpgradeRequestDetails";
|
|
2822
|
+
const _SURDL = "SelfUpgradeRequestDetailList";
|
|
2823
|
+
const _SURDe = "SelfUpgradeRequestDetail";
|
|
2824
|
+
const _SUS = "SelfUpgradeStatus";
|
|
2825
|
+
const _SUUR = "SelfUpgradeUserRole";
|
|
2808
2826
|
const _SUi = "SizeUnit";
|
|
2809
2827
|
const _SV = "SharedView";
|
|
2810
2828
|
const _SVC = "SharedViewConfigurations";
|
|
@@ -3256,6 +3274,7 @@ const _URCP = "UpdateRoleCustomPermission";
|
|
|
3256
3274
|
const _URCPR = "UpdateRoleCustomPermissionRequest";
|
|
3257
3275
|
const _URCPRp = "UpdateRoleCustomPermissionResponse";
|
|
3258
3276
|
const _URD = "UndoRedoDisabled";
|
|
3277
|
+
const _URI = "UpgradeRequestId";
|
|
3259
3278
|
const _URLO = "URLOperation";
|
|
3260
3279
|
const _URLS = "URLStyling";
|
|
3261
3280
|
const _URLT = "URLTemplate";
|
|
@@ -3272,6 +3291,12 @@ const _USN = "UseServiceName";
|
|
|
3272
3291
|
const _USPICECC = "UpdateSPICECapacityConfiguration";
|
|
3273
3292
|
const _USPICECCR = "UpdateSPICECapacityConfigurationRequest";
|
|
3274
3293
|
const _USPICECCRp = "UpdateSPICECapacityConfigurationResponse";
|
|
3294
|
+
const _USU = "UpdateSelfUpgrade";
|
|
3295
|
+
const _USUC = "UpdateSelfUpgradeConfiguration";
|
|
3296
|
+
const _USUCR = "UpdateSelfUpgradeConfigurationRequest";
|
|
3297
|
+
const _USUCRp = "UpdateSelfUpgradeConfigurationResponse";
|
|
3298
|
+
const _USUR = "UpdateSelfUpgradeRequest";
|
|
3299
|
+
const _USURp = "UpdateSelfUpgradeResponse";
|
|
3275
3300
|
const _USn = "UnpivotStep";
|
|
3276
3301
|
const _USp = "UploadSettings";
|
|
3277
3302
|
const _USpd = "UpdateStatus";
|
|
@@ -3458,6 +3483,8 @@ const _hE = "httpError";
|
|
|
3458
3483
|
const _hO = "highlightOperation";
|
|
3459
3484
|
const _hQ = "httpQuery";
|
|
3460
3485
|
const _k = "keys";
|
|
3486
|
+
const _lUAT = "lastUpdateAttemptTime";
|
|
3487
|
+
const _lUFR = "lastUpdateFailureReason";
|
|
3461
3488
|
const _mr = "max-results";
|
|
3462
3489
|
const _mr_ = "max-result";
|
|
3463
3490
|
const _n = "namespace";
|
|
@@ -3478,7 +3505,7 @@ const _vI = "versionId";
|
|
|
3478
3505
|
const _vn = "version-number";
|
|
3479
3506
|
const n0 = "com.amazonaws.quicksight";
|
|
3480
3507
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
3481
|
-
import { AccessDeniedException, ConcurrentUpdatingException, ConflictException, CustomerManagedKeyUnavailableException, DomainNotWhitelistedException, IdentityTypeNotSupportedException, InternalFailureException, InternalServerException, InvalidDataSetParameterValueException, InvalidNextTokenException, InvalidParameterValueException, InvalidRequestException, LimitExceededException, PreconditionNotMetException, QuickSightUserNotFoundException, ResourceExistsException, ResourceNotFoundException, ResourceUnavailableException, SessionLifetimeInMinutesInvalidException, ThrottlingException, UnsupportedPricingPlanException, UnsupportedUserEditionException, } from "../models/errors";
|
|
3508
|
+
import { AccessDeniedException, ConcurrentUpdatingException, ConflictException, CustomerManagedKeyUnavailableException, DomainNotWhitelistedException, IdentityTypeNotSupportedException, InternalFailureException, InternalServerException, InvalidDataSetParameterValueException, InvalidNextTokenException, InvalidParameterException, InvalidParameterValueException, InvalidRequestException, LimitExceededException, PreconditionNotMetException, QuickSightUserNotFoundException, ResourceExistsException, ResourceNotFoundException, ResourceUnavailableException, SessionLifetimeInMinutesInvalidException, ThrottlingException, UnsupportedPricingPlanException, UnsupportedUserEditionException, } from "../models/errors";
|
|
3482
3509
|
import { QuickSightServiceException } from "../models/QuickSightServiceException";
|
|
3483
3510
|
var ActionConnectorDescription = [0, n0, _ACD, 8, 0];
|
|
3484
3511
|
var ActionConnectorName = [0, n0, _ACN, 8, 0];
|
|
@@ -4311,8 +4338,8 @@ export var CancelIngestionResponse$ = [3, n0, _CIRa,
|
|
|
4311
4338
|
];
|
|
4312
4339
|
export var Capabilities$ = [3, n0, _Cap,
|
|
4313
4340
|
0,
|
|
4314
|
-
[_ETC, _ETE, _ETP, _PR, _CAUT, _AORADFA, _SAh, _CAUD, _SDh, _SDER, _CAUDER, _SDha, _CAUTA, _RSF, _CSF, _CAUDS, _SDS, _VASPICEC, _CSPICED, _ETPISR, _ETCISR, _ETEISR, _ICISRE, _Da, _An, _Au, _Fl, _PWA, _UBM, _PFUT, _UAWS, _KB, _Act, _Sp, _CAh, _CCA, _Re],
|
|
4315
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
|
|
4341
|
+
[_ETC, _ETE, _ETP, _PR, _CAUT, _AORADFA, _SAh, _CAUD, _SDh, _SDER, _CAUDER, _SDha, _CAUTA, _RSF, _CSF, _CAUDS, _SDS, _VASPICEC, _CSPICED, _ETPISR, _ETCISR, _ETEISR, _ICISRE, _Da, _An, _Au, _Fl, _PWA, _UBM, _PFUT, _UAWS, _KB, _Act, _Sp, _CAh, _CCA, _Re, _SUUR],
|
|
4342
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
|
|
4316
4343
|
];
|
|
4317
4344
|
export var CascadingControlConfiguration$ = [3, n0, _CCC,
|
|
4318
4345
|
0,
|
|
@@ -6257,6 +6284,16 @@ export var DescribeRoleCustomPermissionResponse$ = [3, n0, _DRCPResc,
|
|
|
6257
6284
|
[_CPN, _RI, _St],
|
|
6258
6285
|
[0, 0, 1]
|
|
6259
6286
|
];
|
|
6287
|
+
export var DescribeSelfUpgradeConfigurationRequest$ = [3, n0, _DSUCR,
|
|
6288
|
+
0,
|
|
6289
|
+
[_AAI, _Na],
|
|
6290
|
+
[[0, 1], [0, 1]]
|
|
6291
|
+
];
|
|
6292
|
+
export var DescribeSelfUpgradeConfigurationResponse$ = [3, n0, _DSUCRe,
|
|
6293
|
+
0,
|
|
6294
|
+
[_SUC, _RI, _St],
|
|
6295
|
+
[() => SelfUpgradeConfiguration$, 0, [1, 32]]
|
|
6296
|
+
];
|
|
6260
6297
|
export var DescribeTemplateAliasRequest$ = [3, n0, _DTARes,
|
|
6261
6298
|
0,
|
|
6262
6299
|
[_AAI, _TIe, _ANl],
|
|
@@ -7458,6 +7495,12 @@ export var InvalidNextTokenException$ = [-3, n0, _INTE,
|
|
|
7458
7495
|
[0, 0]
|
|
7459
7496
|
];
|
|
7460
7497
|
TypeRegistry.for(n0).registerError(InvalidNextTokenException$, InvalidNextTokenException);
|
|
7498
|
+
export var InvalidParameterException$ = [-3, n0, _IPE,
|
|
7499
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
7500
|
+
[_M, _RI],
|
|
7501
|
+
[0, 0]
|
|
7502
|
+
];
|
|
7503
|
+
TypeRegistry.for(n0).registerError(InvalidParameterException$, InvalidParameterException);
|
|
7461
7504
|
export var InvalidParameterValueException$ = [-3, n0, _IPVE,
|
|
7462
7505
|
{ [_e]: _c, [_hE]: 400 },
|
|
7463
7506
|
[_M, _RI],
|
|
@@ -7921,6 +7964,16 @@ export var ListRoleMembershipsResponse$ = [3, n0, _LRMRi,
|
|
|
7921
7964
|
[_MLe, _NT, _RI, _St],
|
|
7922
7965
|
[64 | 0, 0, 0, [1, 32]]
|
|
7923
7966
|
];
|
|
7967
|
+
export var ListSelfUpgradesRequest$ = [3, n0, _LSUR,
|
|
7968
|
+
0,
|
|
7969
|
+
[_AAI, _Na, _NT, _MR],
|
|
7970
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _nt }], [1, { [_hQ]: _mr }]]
|
|
7971
|
+
];
|
|
7972
|
+
export var ListSelfUpgradesResponse$ = [3, n0, _LSURi,
|
|
7973
|
+
0,
|
|
7974
|
+
[_SURD, _NT, _RI, _St],
|
|
7975
|
+
[() => SelfUpgradeRequestDetailList, 0, 0, [1, 32]]
|
|
7976
|
+
];
|
|
7924
7977
|
export var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
7925
7978
|
0,
|
|
7926
7979
|
[_RAeso],
|
|
@@ -9271,6 +9324,16 @@ export var SelectedSheetsFilterScopeConfiguration$ = [3, n0, _SSFSC,
|
|
|
9271
9324
|
[_SVSC],
|
|
9272
9325
|
[() => SheetVisualScopingConfigurations]
|
|
9273
9326
|
];
|
|
9327
|
+
export var SelfUpgradeConfiguration$ = [3, n0, _SUC,
|
|
9328
|
+
0,
|
|
9329
|
+
[_SUS],
|
|
9330
|
+
[0]
|
|
9331
|
+
];
|
|
9332
|
+
export var SelfUpgradeRequestDetail$ = [3, n0, _SURDe,
|
|
9333
|
+
0,
|
|
9334
|
+
[_URI, _UN, _OR, _RReq, _RN, _CTr, _RSequ, _lUAT, _lUFR],
|
|
9335
|
+
[0, 0, 0, 0, 0, 1, 0, 1, 0]
|
|
9336
|
+
];
|
|
9274
9337
|
export var SemanticEntityType$ = [3, n0, _SET,
|
|
9275
9338
|
0,
|
|
9276
9339
|
[_TNy, _STN, _TPy],
|
|
@@ -9527,7 +9590,7 @@ export var SnapshotS3DestinationConfiguration$ = [3, n0, _SSDC,
|
|
|
9527
9590
|
[_BCu],
|
|
9528
9591
|
[() => S3BucketConfiguration$]
|
|
9529
9592
|
];
|
|
9530
|
-
export var SnapshotUserConfiguration$ = [3, n0,
|
|
9593
|
+
export var SnapshotUserConfiguration$ = [3, n0, _SUCn,
|
|
9531
9594
|
0,
|
|
9532
9595
|
[_AU],
|
|
9533
9596
|
[[() => SnapshotAnonymousUserList, 0]]
|
|
@@ -10685,6 +10748,26 @@ export var UpdateRoleCustomPermissionResponse$ = [3, n0, _URCPRp,
|
|
|
10685
10748
|
[_RI, _St],
|
|
10686
10749
|
[0, 1]
|
|
10687
10750
|
];
|
|
10751
|
+
export var UpdateSelfUpgradeConfigurationRequest$ = [3, n0, _USUCR,
|
|
10752
|
+
0,
|
|
10753
|
+
[_AAI, _Na, _SUS],
|
|
10754
|
+
[[0, 1], [0, 1], 0]
|
|
10755
|
+
];
|
|
10756
|
+
export var UpdateSelfUpgradeConfigurationResponse$ = [3, n0, _USUCRp,
|
|
10757
|
+
0,
|
|
10758
|
+
[_RI, _St],
|
|
10759
|
+
[0, [1, 32]]
|
|
10760
|
+
];
|
|
10761
|
+
export var UpdateSelfUpgradeRequest$ = [3, n0, _USUR,
|
|
10762
|
+
0,
|
|
10763
|
+
[_AAI, _Na, _URI, _Act],
|
|
10764
|
+
[[0, 1], [0, 1], 0, 0]
|
|
10765
|
+
];
|
|
10766
|
+
export var UpdateSelfUpgradeResponse$ = [3, n0, _USURp,
|
|
10767
|
+
0,
|
|
10768
|
+
[_SURDe, _RI, _St],
|
|
10769
|
+
[() => SelfUpgradeRequestDetail$, 0, [1, 32]]
|
|
10770
|
+
];
|
|
10688
10771
|
export var UpdateSPICECapacityConfigurationRequest$ = [3, n0, _USPICECCR,
|
|
10689
10772
|
0,
|
|
10690
10773
|
[_AAI, _PMu],
|
|
@@ -11698,6 +11781,9 @@ var SearchFlowsFilterList = [1, n0, _SFFL,
|
|
|
11698
11781
|
];
|
|
11699
11782
|
var SecurityGroupIdList = 64 | 0;
|
|
11700
11783
|
var SelectedFieldList = 64 | 0;
|
|
11784
|
+
var SelfUpgradeRequestDetailList = [1, n0, _SURDL,
|
|
11785
|
+
0, () => SelfUpgradeRequestDetail$
|
|
11786
|
+
];
|
|
11701
11787
|
var SensitiveDoubleList = [1, n0, _SDL,
|
|
11702
11788
|
0, [() => SensitiveDouble,
|
|
11703
11789
|
0]
|
|
@@ -12128,19 +12214,19 @@ export var CreateRefreshSchedule$ = [9, n0, _CRS,
|
|
|
12128
12214
|
export var CreateRoleMembership$ = [9, n0, _CRM,
|
|
12129
12215
|
{ [_h]: ["POST", "/accounts/{AwsAccountId}/namespaces/{Namespace}/roles/{Role}/members/{MemberName}", 200] }, () => CreateRoleMembershipRequest$, () => CreateRoleMembershipResponse$
|
|
12130
12216
|
];
|
|
12131
|
-
export var CreateTemplate$ = [9, n0,
|
|
12217
|
+
export var CreateTemplate$ = [9, n0, _CTre,
|
|
12132
12218
|
{ [_h]: ["POST", "/accounts/{AwsAccountId}/templates/{TemplateId}", 200] }, () => CreateTemplateRequest$, () => CreateTemplateResponse$
|
|
12133
12219
|
];
|
|
12134
12220
|
export var CreateTemplateAlias$ = [9, n0, _CTA,
|
|
12135
12221
|
{ [_h]: ["POST", "/accounts/{AwsAccountId}/templates/{TemplateId}/aliases/{AliasName}", 200] }, () => CreateTemplateAliasRequest$, () => CreateTemplateAliasResponse$
|
|
12136
12222
|
];
|
|
12137
|
-
export var CreateTheme$ = [9, n0,
|
|
12223
|
+
export var CreateTheme$ = [9, n0, _CTrea,
|
|
12138
12224
|
{ [_h]: ["POST", "/accounts/{AwsAccountId}/themes/{ThemeId}", 200] }, () => CreateThemeRequest$, () => CreateThemeResponse$
|
|
12139
12225
|
];
|
|
12140
12226
|
export var CreateThemeAlias$ = [9, n0, _CTAr,
|
|
12141
12227
|
{ [_h]: ["POST", "/accounts/{AwsAccountId}/themes/{ThemeId}/aliases/{AliasName}", 200] }, () => CreateThemeAliasRequest$, () => CreateThemeAliasResponse$
|
|
12142
12228
|
];
|
|
12143
|
-
export var CreateTopic$ = [9, n0,
|
|
12229
|
+
export var CreateTopic$ = [9, n0, _CTreat,
|
|
12144
12230
|
{ [_h]: ["POST", "/accounts/{AwsAccountId}/topics", 200] }, () => CreateTopicRequest$, () => CreateTopicResponse$
|
|
12145
12231
|
];
|
|
12146
12232
|
export var CreateTopicRefreshSchedule$ = [9, n0, _CTRS,
|
|
@@ -12371,6 +12457,9 @@ export var DescribeRefreshSchedule$ = [9, n0, _DRSe,
|
|
|
12371
12457
|
export var DescribeRoleCustomPermission$ = [9, n0, _DRCPe,
|
|
12372
12458
|
{ [_h]: ["GET", "/accounts/{AwsAccountId}/namespaces/{Namespace}/roles/{Role}/custom-permission", 200] }, () => DescribeRoleCustomPermissionRequest$, () => DescribeRoleCustomPermissionResponse$
|
|
12373
12459
|
];
|
|
12460
|
+
export var DescribeSelfUpgradeConfiguration$ = [9, n0, _DSUCe,
|
|
12461
|
+
{ [_h]: ["GET", "/accounts/{AwsAccountId}/namespaces/{Namespace}/self-upgrade-configuration", 200] }, () => DescribeSelfUpgradeConfigurationRequest$, () => DescribeSelfUpgradeConfigurationResponse$
|
|
12462
|
+
];
|
|
12374
12463
|
export var DescribeTemplate$ = [9, n0, _DTesc,
|
|
12375
12464
|
{ [_h]: ["GET", "/accounts/{AwsAccountId}/templates/{TemplateId}", 200] }, () => DescribeTemplateRequest$, () => DescribeTemplateResponse$
|
|
12376
12465
|
];
|
|
@@ -12503,6 +12592,9 @@ export var ListRefreshSchedules$ = [9, n0, _LRS,
|
|
|
12503
12592
|
export var ListRoleMemberships$ = [9, n0, _LRM,
|
|
12504
12593
|
{ [_h]: ["GET", "/accounts/{AwsAccountId}/namespaces/{Namespace}/roles/{Role}/members", 200] }, () => ListRoleMembershipsRequest$, () => ListRoleMembershipsResponse$
|
|
12505
12594
|
];
|
|
12595
|
+
export var ListSelfUpgrades$ = [9, n0, _LSU,
|
|
12596
|
+
{ [_h]: ["GET", "/accounts/{AwsAccountId}/namespaces/{Namespace}/self-upgrade-requests", 200] }, () => ListSelfUpgradesRequest$, () => ListSelfUpgradesResponse$
|
|
12597
|
+
];
|
|
12506
12598
|
export var ListTagsForResource$ = [9, n0, _LTFR,
|
|
12507
12599
|
{ [_h]: ["GET", "/resources/{ResourceArn}/tags", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
12508
12600
|
];
|
|
@@ -12704,6 +12796,12 @@ export var UpdateRefreshSchedule$ = [9, n0, _URS,
|
|
|
12704
12796
|
export var UpdateRoleCustomPermission$ = [9, n0, _URCP,
|
|
12705
12797
|
{ [_h]: ["PUT", "/accounts/{AwsAccountId}/namespaces/{Namespace}/roles/{Role}/custom-permission", 200] }, () => UpdateRoleCustomPermissionRequest$, () => UpdateRoleCustomPermissionResponse$
|
|
12706
12798
|
];
|
|
12799
|
+
export var UpdateSelfUpgrade$ = [9, n0, _USU,
|
|
12800
|
+
{ [_h]: ["POST", "/accounts/{AwsAccountId}/namespaces/{Namespace}/update-self-upgrade-request", 200] }, () => UpdateSelfUpgradeRequest$, () => UpdateSelfUpgradeResponse$
|
|
12801
|
+
];
|
|
12802
|
+
export var UpdateSelfUpgradeConfiguration$ = [9, n0, _USUC,
|
|
12803
|
+
{ [_h]: ["PUT", "/accounts/{AwsAccountId}/namespaces/{Namespace}/self-upgrade-configuration", 200] }, () => UpdateSelfUpgradeConfigurationRequest$, () => UpdateSelfUpgradeConfigurationResponse$
|
|
12804
|
+
];
|
|
12707
12805
|
export var UpdateSPICECapacityConfiguration$ = [9, n0, _USPICECC,
|
|
12708
12806
|
{ [_h]: ["POST", "/accounts/{AwsAccountId}/spice-capacity-configuration", 200] }, () => UpdateSPICECapacityConfigurationRequest$, () => UpdateSPICECapacityConfigurationResponse$
|
|
12709
12807
|
];
|
|
@@ -101,6 +101,7 @@ import { DescribeQPersonalizationConfigurationCommandInput, DescribeQPersonaliza
|
|
|
101
101
|
import { DescribeQuickSightQSearchConfigurationCommandInput, DescribeQuickSightQSearchConfigurationCommandOutput } from "./commands/DescribeQuickSightQSearchConfigurationCommand";
|
|
102
102
|
import { DescribeRefreshScheduleCommandInput, DescribeRefreshScheduleCommandOutput } from "./commands/DescribeRefreshScheduleCommand";
|
|
103
103
|
import { DescribeRoleCustomPermissionCommandInput, DescribeRoleCustomPermissionCommandOutput } from "./commands/DescribeRoleCustomPermissionCommand";
|
|
104
|
+
import { DescribeSelfUpgradeConfigurationCommandInput, DescribeSelfUpgradeConfigurationCommandOutput } from "./commands/DescribeSelfUpgradeConfigurationCommand";
|
|
104
105
|
import { DescribeTemplateAliasCommandInput, DescribeTemplateAliasCommandOutput } from "./commands/DescribeTemplateAliasCommand";
|
|
105
106
|
import { DescribeTemplateCommandInput, DescribeTemplateCommandOutput } from "./commands/DescribeTemplateCommand";
|
|
106
107
|
import { DescribeTemplateDefinitionCommandInput, DescribeTemplateDefinitionCommandOutput } from "./commands/DescribeTemplateDefinitionCommand";
|
|
@@ -145,6 +146,7 @@ import { ListIngestionsCommandInput, ListIngestionsCommandOutput } from "./comma
|
|
|
145
146
|
import { ListNamespacesCommandInput, ListNamespacesCommandOutput } from "./commands/ListNamespacesCommand";
|
|
146
147
|
import { ListRefreshSchedulesCommandInput, ListRefreshSchedulesCommandOutput } from "./commands/ListRefreshSchedulesCommand";
|
|
147
148
|
import { ListRoleMembershipsCommandInput, ListRoleMembershipsCommandOutput } from "./commands/ListRoleMembershipsCommand";
|
|
149
|
+
import { ListSelfUpgradesCommandInput, ListSelfUpgradesCommandOutput } from "./commands/ListSelfUpgradesCommand";
|
|
148
150
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
149
151
|
import { ListTemplateAliasesCommandInput, ListTemplateAliasesCommandOutput } from "./commands/ListTemplateAliasesCommand";
|
|
150
152
|
import { ListTemplatesCommandInput, ListTemplatesCommandOutput } from "./commands/ListTemplatesCommand";
|
|
@@ -212,6 +214,8 @@ import { UpdateQPersonalizationConfigurationCommandInput, UpdateQPersonalization
|
|
|
212
214
|
import { UpdateQuickSightQSearchConfigurationCommandInput, UpdateQuickSightQSearchConfigurationCommandOutput } from "./commands/UpdateQuickSightQSearchConfigurationCommand";
|
|
213
215
|
import { UpdateRefreshScheduleCommandInput, UpdateRefreshScheduleCommandOutput } from "./commands/UpdateRefreshScheduleCommand";
|
|
214
216
|
import { UpdateRoleCustomPermissionCommandInput, UpdateRoleCustomPermissionCommandOutput } from "./commands/UpdateRoleCustomPermissionCommand";
|
|
217
|
+
import { UpdateSelfUpgradeCommandInput, UpdateSelfUpgradeCommandOutput } from "./commands/UpdateSelfUpgradeCommand";
|
|
218
|
+
import { UpdateSelfUpgradeConfigurationCommandInput, UpdateSelfUpgradeConfigurationCommandOutput } from "./commands/UpdateSelfUpgradeConfigurationCommand";
|
|
215
219
|
import { UpdateSPICECapacityConfigurationCommandInput, UpdateSPICECapacityConfigurationCommandOutput } from "./commands/UpdateSPICECapacityConfigurationCommand";
|
|
216
220
|
import { UpdateTemplateAliasCommandInput, UpdateTemplateAliasCommandOutput } from "./commands/UpdateTemplateAliasCommand";
|
|
217
221
|
import { UpdateTemplateCommandInput, UpdateTemplateCommandOutput } from "./commands/UpdateTemplateCommand";
|
|
@@ -839,6 +843,12 @@ export interface QuickSight {
|
|
|
839
843
|
describeRoleCustomPermission(args: DescribeRoleCustomPermissionCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRoleCustomPermissionCommandOutput>;
|
|
840
844
|
describeRoleCustomPermission(args: DescribeRoleCustomPermissionCommandInput, cb: (err: any, data?: DescribeRoleCustomPermissionCommandOutput) => void): void;
|
|
841
845
|
describeRoleCustomPermission(args: DescribeRoleCustomPermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRoleCustomPermissionCommandOutput) => void): void;
|
|
846
|
+
/**
|
|
847
|
+
* @see {@link DescribeSelfUpgradeConfigurationCommand}
|
|
848
|
+
*/
|
|
849
|
+
describeSelfUpgradeConfiguration(args: DescribeSelfUpgradeConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSelfUpgradeConfigurationCommandOutput>;
|
|
850
|
+
describeSelfUpgradeConfiguration(args: DescribeSelfUpgradeConfigurationCommandInput, cb: (err: any, data?: DescribeSelfUpgradeConfigurationCommandOutput) => void): void;
|
|
851
|
+
describeSelfUpgradeConfiguration(args: DescribeSelfUpgradeConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSelfUpgradeConfigurationCommandOutput) => void): void;
|
|
842
852
|
/**
|
|
843
853
|
* @see {@link DescribeTemplateCommand}
|
|
844
854
|
*/
|
|
@@ -1103,6 +1113,12 @@ export interface QuickSight {
|
|
|
1103
1113
|
listRoleMemberships(args: ListRoleMembershipsCommandInput, options?: __HttpHandlerOptions): Promise<ListRoleMembershipsCommandOutput>;
|
|
1104
1114
|
listRoleMemberships(args: ListRoleMembershipsCommandInput, cb: (err: any, data?: ListRoleMembershipsCommandOutput) => void): void;
|
|
1105
1115
|
listRoleMemberships(args: ListRoleMembershipsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRoleMembershipsCommandOutput) => void): void;
|
|
1116
|
+
/**
|
|
1117
|
+
* @see {@link ListSelfUpgradesCommand}
|
|
1118
|
+
*/
|
|
1119
|
+
listSelfUpgrades(args: ListSelfUpgradesCommandInput, options?: __HttpHandlerOptions): Promise<ListSelfUpgradesCommandOutput>;
|
|
1120
|
+
listSelfUpgrades(args: ListSelfUpgradesCommandInput, cb: (err: any, data?: ListSelfUpgradesCommandOutput) => void): void;
|
|
1121
|
+
listSelfUpgrades(args: ListSelfUpgradesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSelfUpgradesCommandOutput) => void): void;
|
|
1106
1122
|
/**
|
|
1107
1123
|
* @see {@link ListTagsForResourceCommand}
|
|
1108
1124
|
*/
|
|
@@ -1505,6 +1521,18 @@ export interface QuickSight {
|
|
|
1505
1521
|
updateRoleCustomPermission(args: UpdateRoleCustomPermissionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRoleCustomPermissionCommandOutput>;
|
|
1506
1522
|
updateRoleCustomPermission(args: UpdateRoleCustomPermissionCommandInput, cb: (err: any, data?: UpdateRoleCustomPermissionCommandOutput) => void): void;
|
|
1507
1523
|
updateRoleCustomPermission(args: UpdateRoleCustomPermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRoleCustomPermissionCommandOutput) => void): void;
|
|
1524
|
+
/**
|
|
1525
|
+
* @see {@link UpdateSelfUpgradeCommand}
|
|
1526
|
+
*/
|
|
1527
|
+
updateSelfUpgrade(args: UpdateSelfUpgradeCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSelfUpgradeCommandOutput>;
|
|
1528
|
+
updateSelfUpgrade(args: UpdateSelfUpgradeCommandInput, cb: (err: any, data?: UpdateSelfUpgradeCommandOutput) => void): void;
|
|
1529
|
+
updateSelfUpgrade(args: UpdateSelfUpgradeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSelfUpgradeCommandOutput) => void): void;
|
|
1530
|
+
/**
|
|
1531
|
+
* @see {@link UpdateSelfUpgradeConfigurationCommand}
|
|
1532
|
+
*/
|
|
1533
|
+
updateSelfUpgradeConfiguration(args: UpdateSelfUpgradeConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSelfUpgradeConfigurationCommandOutput>;
|
|
1534
|
+
updateSelfUpgradeConfiguration(args: UpdateSelfUpgradeConfigurationCommandInput, cb: (err: any, data?: UpdateSelfUpgradeConfigurationCommandOutput) => void): void;
|
|
1535
|
+
updateSelfUpgradeConfiguration(args: UpdateSelfUpgradeConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSelfUpgradeConfigurationCommandOutput) => void): void;
|
|
1508
1536
|
/**
|
|
1509
1537
|
* @see {@link UpdateSPICECapacityConfigurationCommand}
|
|
1510
1538
|
*/
|
|
@@ -109,6 +109,7 @@ import { DescribeQPersonalizationConfigurationCommandInput, DescribeQPersonaliza
|
|
|
109
109
|
import { DescribeQuickSightQSearchConfigurationCommandInput, DescribeQuickSightQSearchConfigurationCommandOutput } from "./commands/DescribeQuickSightQSearchConfigurationCommand";
|
|
110
110
|
import { DescribeRefreshScheduleCommandInput, DescribeRefreshScheduleCommandOutput } from "./commands/DescribeRefreshScheduleCommand";
|
|
111
111
|
import { DescribeRoleCustomPermissionCommandInput, DescribeRoleCustomPermissionCommandOutput } from "./commands/DescribeRoleCustomPermissionCommand";
|
|
112
|
+
import { DescribeSelfUpgradeConfigurationCommandInput, DescribeSelfUpgradeConfigurationCommandOutput } from "./commands/DescribeSelfUpgradeConfigurationCommand";
|
|
112
113
|
import { DescribeTemplateAliasCommandInput, DescribeTemplateAliasCommandOutput } from "./commands/DescribeTemplateAliasCommand";
|
|
113
114
|
import { DescribeTemplateCommandInput, DescribeTemplateCommandOutput } from "./commands/DescribeTemplateCommand";
|
|
114
115
|
import { DescribeTemplateDefinitionCommandInput, DescribeTemplateDefinitionCommandOutput } from "./commands/DescribeTemplateDefinitionCommand";
|
|
@@ -153,6 +154,7 @@ import { ListIngestionsCommandInput, ListIngestionsCommandOutput } from "./comma
|
|
|
153
154
|
import { ListNamespacesCommandInput, ListNamespacesCommandOutput } from "./commands/ListNamespacesCommand";
|
|
154
155
|
import { ListRefreshSchedulesCommandInput, ListRefreshSchedulesCommandOutput } from "./commands/ListRefreshSchedulesCommand";
|
|
155
156
|
import { ListRoleMembershipsCommandInput, ListRoleMembershipsCommandOutput } from "./commands/ListRoleMembershipsCommand";
|
|
157
|
+
import { ListSelfUpgradesCommandInput, ListSelfUpgradesCommandOutput } from "./commands/ListSelfUpgradesCommand";
|
|
156
158
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
157
159
|
import { ListTemplateAliasesCommandInput, ListTemplateAliasesCommandOutput } from "./commands/ListTemplateAliasesCommand";
|
|
158
160
|
import { ListTemplatesCommandInput, ListTemplatesCommandOutput } from "./commands/ListTemplatesCommand";
|
|
@@ -220,6 +222,8 @@ import { UpdateQPersonalizationConfigurationCommandInput, UpdateQPersonalization
|
|
|
220
222
|
import { UpdateQuickSightQSearchConfigurationCommandInput, UpdateQuickSightQSearchConfigurationCommandOutput } from "./commands/UpdateQuickSightQSearchConfigurationCommand";
|
|
221
223
|
import { UpdateRefreshScheduleCommandInput, UpdateRefreshScheduleCommandOutput } from "./commands/UpdateRefreshScheduleCommand";
|
|
222
224
|
import { UpdateRoleCustomPermissionCommandInput, UpdateRoleCustomPermissionCommandOutput } from "./commands/UpdateRoleCustomPermissionCommand";
|
|
225
|
+
import { UpdateSelfUpgradeCommandInput, UpdateSelfUpgradeCommandOutput } from "./commands/UpdateSelfUpgradeCommand";
|
|
226
|
+
import { UpdateSelfUpgradeConfigurationCommandInput, UpdateSelfUpgradeConfigurationCommandOutput } from "./commands/UpdateSelfUpgradeConfigurationCommand";
|
|
223
227
|
import { UpdateSPICECapacityConfigurationCommandInput, UpdateSPICECapacityConfigurationCommandOutput } from "./commands/UpdateSPICECapacityConfigurationCommand";
|
|
224
228
|
import { UpdateTemplateAliasCommandInput, UpdateTemplateAliasCommandOutput } from "./commands/UpdateTemplateAliasCommand";
|
|
225
229
|
import { UpdateTemplateCommandInput, UpdateTemplateCommandOutput } from "./commands/UpdateTemplateCommand";
|
|
@@ -239,11 +243,11 @@ export { __Client };
|
|
|
239
243
|
/**
|
|
240
244
|
* @public
|
|
241
245
|
*/
|
|
242
|
-
export type ServiceInputTypes = BatchCreateTopicReviewedAnswerCommandInput | BatchDeleteTopicReviewedAnswerCommandInput | CancelIngestionCommandInput | CreateAccountCustomizationCommandInput | CreateAccountSubscriptionCommandInput | CreateActionConnectorCommandInput | CreateAnalysisCommandInput | CreateBrandCommandInput | CreateCustomPermissionsCommandInput | CreateDashboardCommandInput | CreateDataSetCommandInput | CreateDataSourceCommandInput | CreateFolderCommandInput | CreateFolderMembershipCommandInput | CreateGroupCommandInput | CreateGroupMembershipCommandInput | CreateIAMPolicyAssignmentCommandInput | CreateIngestionCommandInput | CreateNamespaceCommandInput | CreateRefreshScheduleCommandInput | CreateRoleMembershipCommandInput | CreateTemplateAliasCommandInput | CreateTemplateCommandInput | CreateThemeAliasCommandInput | CreateThemeCommandInput | CreateTopicCommandInput | CreateTopicRefreshScheduleCommandInput | CreateVPCConnectionCommandInput | DeleteAccountCustomPermissionCommandInput | DeleteAccountCustomizationCommandInput | DeleteAccountSubscriptionCommandInput | DeleteActionConnectorCommandInput | DeleteAnalysisCommandInput | DeleteBrandAssignmentCommandInput | DeleteBrandCommandInput | DeleteCustomPermissionsCommandInput | DeleteDashboardCommandInput | DeleteDataSetCommandInput | DeleteDataSetRefreshPropertiesCommandInput | DeleteDataSourceCommandInput | DeleteDefaultQBusinessApplicationCommandInput | DeleteFolderCommandInput | DeleteFolderMembershipCommandInput | DeleteGroupCommandInput | DeleteGroupMembershipCommandInput | DeleteIAMPolicyAssignmentCommandInput | DeleteIdentityPropagationConfigCommandInput | DeleteNamespaceCommandInput | DeleteRefreshScheduleCommandInput | DeleteRoleCustomPermissionCommandInput | DeleteRoleMembershipCommandInput | DeleteTemplateAliasCommandInput | DeleteTemplateCommandInput | DeleteThemeAliasCommandInput | DeleteThemeCommandInput | DeleteTopicCommandInput | DeleteTopicRefreshScheduleCommandInput | DeleteUserByPrincipalIdCommandInput | DeleteUserCommandInput | DeleteUserCustomPermissionCommandInput | DeleteVPCConnectionCommandInput | DescribeAccountCustomPermissionCommandInput | DescribeAccountCustomizationCommandInput | DescribeAccountSettingsCommandInput | DescribeAccountSubscriptionCommandInput | DescribeActionConnectorCommandInput | DescribeActionConnectorPermissionsCommandInput | DescribeAnalysisCommandInput | DescribeAnalysisDefinitionCommandInput | DescribeAnalysisPermissionsCommandInput | DescribeAssetBundleExportJobCommandInput | DescribeAssetBundleImportJobCommandInput | DescribeBrandAssignmentCommandInput | DescribeBrandCommandInput | DescribeBrandPublishedVersionCommandInput | DescribeCustomPermissionsCommandInput | DescribeDashboardCommandInput | DescribeDashboardDefinitionCommandInput | DescribeDashboardPermissionsCommandInput | DescribeDashboardSnapshotJobCommandInput | DescribeDashboardSnapshotJobResultCommandInput | DescribeDashboardsQAConfigurationCommandInput | DescribeDataSetCommandInput | DescribeDataSetPermissionsCommandInput | DescribeDataSetRefreshPropertiesCommandInput | DescribeDataSourceCommandInput | DescribeDataSourcePermissionsCommandInput | DescribeDefaultQBusinessApplicationCommandInput | DescribeFolderCommandInput | DescribeFolderPermissionsCommandInput | DescribeFolderResolvedPermissionsCommandInput | DescribeGroupCommandInput | DescribeGroupMembershipCommandInput | DescribeIAMPolicyAssignmentCommandInput | DescribeIngestionCommandInput | DescribeIpRestrictionCommandInput | DescribeKeyRegistrationCommandInput | DescribeNamespaceCommandInput | DescribeQPersonalizationConfigurationCommandInput | DescribeQuickSightQSearchConfigurationCommandInput | DescribeRefreshScheduleCommandInput | DescribeRoleCustomPermissionCommandInput | DescribeTemplateAliasCommandInput | DescribeTemplateCommandInput | DescribeTemplateDefinitionCommandInput | DescribeTemplatePermissionsCommandInput | DescribeThemeAliasCommandInput | DescribeThemeCommandInput | DescribeThemePermissionsCommandInput | DescribeTopicCommandInput | DescribeTopicPermissionsCommandInput | DescribeTopicRefreshCommandInput | DescribeTopicRefreshScheduleCommandInput | DescribeUserCommandInput | DescribeVPCConnectionCommandInput | GenerateEmbedUrlForAnonymousUserCommandInput | GenerateEmbedUrlForRegisteredUserCommandInput | GenerateEmbedUrlForRegisteredUserWithIdentityCommandInput | GetDashboardEmbedUrlCommandInput | GetFlowMetadataCommandInput | GetFlowPermissionsCommandInput | GetIdentityContextCommandInput | GetSessionEmbedUrlCommandInput | ListActionConnectorsCommandInput | ListAnalysesCommandInput | ListAssetBundleExportJobsCommandInput | ListAssetBundleImportJobsCommandInput | ListBrandsCommandInput | ListCustomPermissionsCommandInput | ListDashboardVersionsCommandInput | ListDashboardsCommandInput | ListDataSetsCommandInput | ListDataSourcesCommandInput | ListFlowsCommandInput | ListFolderMembersCommandInput | ListFoldersCommandInput | ListFoldersForResourceCommandInput | ListGroupMembershipsCommandInput | ListGroupsCommandInput | ListIAMPolicyAssignmentsCommandInput | ListIAMPolicyAssignmentsForUserCommandInput | ListIdentityPropagationConfigsCommandInput | ListIngestionsCommandInput | ListNamespacesCommandInput | ListRefreshSchedulesCommandInput | ListRoleMembershipsCommandInput | ListTagsForResourceCommandInput | ListTemplateAliasesCommandInput | ListTemplateVersionsCommandInput | ListTemplatesCommandInput | ListThemeAliasesCommandInput | ListThemeVersionsCommandInput | ListThemesCommandInput | ListTopicRefreshSchedulesCommandInput | ListTopicReviewedAnswersCommandInput | ListTopicsCommandInput | ListUserGroupsCommandInput | ListUsersCommandInput | ListVPCConnectionsCommandInput | PredictQAResultsCommandInput | PutDataSetRefreshPropertiesCommandInput | RegisterUserCommandInput | RestoreAnalysisCommandInput | SearchActionConnectorsCommandInput | SearchAnalysesCommandInput | SearchDashboardsCommandInput | SearchDataSetsCommandInput | SearchDataSourcesCommandInput | SearchFlowsCommandInput | SearchFoldersCommandInput | SearchGroupsCommandInput | SearchTopicsCommandInput | StartAssetBundleExportJobCommandInput | StartAssetBundleImportJobCommandInput | StartDashboardSnapshotJobCommandInput | StartDashboardSnapshotJobScheduleCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAccountCustomPermissionCommandInput | UpdateAccountCustomizationCommandInput | UpdateAccountSettingsCommandInput | UpdateActionConnectorCommandInput | UpdateActionConnectorPermissionsCommandInput | UpdateAnalysisCommandInput | UpdateAnalysisPermissionsCommandInput | UpdateApplicationWithTokenExchangeGrantCommandInput | UpdateBrandAssignmentCommandInput | UpdateBrandCommandInput | UpdateBrandPublishedVersionCommandInput | UpdateCustomPermissionsCommandInput | UpdateDashboardCommandInput | UpdateDashboardLinksCommandInput | UpdateDashboardPermissionsCommandInput | UpdateDashboardPublishedVersionCommandInput | UpdateDashboardsQAConfigurationCommandInput | UpdateDataSetCommandInput | UpdateDataSetPermissionsCommandInput | UpdateDataSourceCommandInput | UpdateDataSourcePermissionsCommandInput | UpdateDefaultQBusinessApplicationCommandInput | UpdateFlowPermissionsCommandInput | UpdateFolderCommandInput | UpdateFolderPermissionsCommandInput | UpdateGroupCommandInput | UpdateIAMPolicyAssignmentCommandInput | UpdateIdentityPropagationConfigCommandInput | UpdateIpRestrictionCommandInput | UpdateKeyRegistrationCommandInput | UpdatePublicSharingSettingsCommandInput | UpdateQPersonalizationConfigurationCommandInput | UpdateQuickSightQSearchConfigurationCommandInput | UpdateRefreshScheduleCommandInput | UpdateRoleCustomPermissionCommandInput | UpdateSPICECapacityConfigurationCommandInput | UpdateTemplateAliasCommandInput | UpdateTemplateCommandInput | UpdateTemplatePermissionsCommandInput | UpdateThemeAliasCommandInput | UpdateThemeCommandInput | UpdateThemePermissionsCommandInput | UpdateTopicCommandInput | UpdateTopicPermissionsCommandInput | UpdateTopicRefreshScheduleCommandInput | UpdateUserCommandInput | UpdateUserCustomPermissionCommandInput | UpdateVPCConnectionCommandInput;
|
|
246
|
+
export type ServiceInputTypes = BatchCreateTopicReviewedAnswerCommandInput | BatchDeleteTopicReviewedAnswerCommandInput | CancelIngestionCommandInput | CreateAccountCustomizationCommandInput | CreateAccountSubscriptionCommandInput | CreateActionConnectorCommandInput | CreateAnalysisCommandInput | CreateBrandCommandInput | CreateCustomPermissionsCommandInput | CreateDashboardCommandInput | CreateDataSetCommandInput | CreateDataSourceCommandInput | CreateFolderCommandInput | CreateFolderMembershipCommandInput | CreateGroupCommandInput | CreateGroupMembershipCommandInput | CreateIAMPolicyAssignmentCommandInput | CreateIngestionCommandInput | CreateNamespaceCommandInput | CreateRefreshScheduleCommandInput | CreateRoleMembershipCommandInput | CreateTemplateAliasCommandInput | CreateTemplateCommandInput | CreateThemeAliasCommandInput | CreateThemeCommandInput | CreateTopicCommandInput | CreateTopicRefreshScheduleCommandInput | CreateVPCConnectionCommandInput | DeleteAccountCustomPermissionCommandInput | DeleteAccountCustomizationCommandInput | DeleteAccountSubscriptionCommandInput | DeleteActionConnectorCommandInput | DeleteAnalysisCommandInput | DeleteBrandAssignmentCommandInput | DeleteBrandCommandInput | DeleteCustomPermissionsCommandInput | DeleteDashboardCommandInput | DeleteDataSetCommandInput | DeleteDataSetRefreshPropertiesCommandInput | DeleteDataSourceCommandInput | DeleteDefaultQBusinessApplicationCommandInput | DeleteFolderCommandInput | DeleteFolderMembershipCommandInput | DeleteGroupCommandInput | DeleteGroupMembershipCommandInput | DeleteIAMPolicyAssignmentCommandInput | DeleteIdentityPropagationConfigCommandInput | DeleteNamespaceCommandInput | DeleteRefreshScheduleCommandInput | DeleteRoleCustomPermissionCommandInput | DeleteRoleMembershipCommandInput | DeleteTemplateAliasCommandInput | DeleteTemplateCommandInput | DeleteThemeAliasCommandInput | DeleteThemeCommandInput | DeleteTopicCommandInput | DeleteTopicRefreshScheduleCommandInput | DeleteUserByPrincipalIdCommandInput | DeleteUserCommandInput | DeleteUserCustomPermissionCommandInput | DeleteVPCConnectionCommandInput | DescribeAccountCustomPermissionCommandInput | DescribeAccountCustomizationCommandInput | DescribeAccountSettingsCommandInput | DescribeAccountSubscriptionCommandInput | DescribeActionConnectorCommandInput | DescribeActionConnectorPermissionsCommandInput | DescribeAnalysisCommandInput | DescribeAnalysisDefinitionCommandInput | DescribeAnalysisPermissionsCommandInput | DescribeAssetBundleExportJobCommandInput | DescribeAssetBundleImportJobCommandInput | DescribeBrandAssignmentCommandInput | DescribeBrandCommandInput | DescribeBrandPublishedVersionCommandInput | DescribeCustomPermissionsCommandInput | DescribeDashboardCommandInput | DescribeDashboardDefinitionCommandInput | DescribeDashboardPermissionsCommandInput | DescribeDashboardSnapshotJobCommandInput | DescribeDashboardSnapshotJobResultCommandInput | DescribeDashboardsQAConfigurationCommandInput | DescribeDataSetCommandInput | DescribeDataSetPermissionsCommandInput | DescribeDataSetRefreshPropertiesCommandInput | DescribeDataSourceCommandInput | DescribeDataSourcePermissionsCommandInput | DescribeDefaultQBusinessApplicationCommandInput | DescribeFolderCommandInput | DescribeFolderPermissionsCommandInput | DescribeFolderResolvedPermissionsCommandInput | DescribeGroupCommandInput | DescribeGroupMembershipCommandInput | DescribeIAMPolicyAssignmentCommandInput | DescribeIngestionCommandInput | DescribeIpRestrictionCommandInput | DescribeKeyRegistrationCommandInput | DescribeNamespaceCommandInput | DescribeQPersonalizationConfigurationCommandInput | DescribeQuickSightQSearchConfigurationCommandInput | DescribeRefreshScheduleCommandInput | DescribeRoleCustomPermissionCommandInput | DescribeSelfUpgradeConfigurationCommandInput | DescribeTemplateAliasCommandInput | DescribeTemplateCommandInput | DescribeTemplateDefinitionCommandInput | DescribeTemplatePermissionsCommandInput | DescribeThemeAliasCommandInput | DescribeThemeCommandInput | DescribeThemePermissionsCommandInput | DescribeTopicCommandInput | DescribeTopicPermissionsCommandInput | DescribeTopicRefreshCommandInput | DescribeTopicRefreshScheduleCommandInput | DescribeUserCommandInput | DescribeVPCConnectionCommandInput | GenerateEmbedUrlForAnonymousUserCommandInput | GenerateEmbedUrlForRegisteredUserCommandInput | GenerateEmbedUrlForRegisteredUserWithIdentityCommandInput | GetDashboardEmbedUrlCommandInput | GetFlowMetadataCommandInput | GetFlowPermissionsCommandInput | GetIdentityContextCommandInput | GetSessionEmbedUrlCommandInput | ListActionConnectorsCommandInput | ListAnalysesCommandInput | ListAssetBundleExportJobsCommandInput | ListAssetBundleImportJobsCommandInput | ListBrandsCommandInput | ListCustomPermissionsCommandInput | ListDashboardVersionsCommandInput | ListDashboardsCommandInput | ListDataSetsCommandInput | ListDataSourcesCommandInput | ListFlowsCommandInput | ListFolderMembersCommandInput | ListFoldersCommandInput | ListFoldersForResourceCommandInput | ListGroupMembershipsCommandInput | ListGroupsCommandInput | ListIAMPolicyAssignmentsCommandInput | ListIAMPolicyAssignmentsForUserCommandInput | ListIdentityPropagationConfigsCommandInput | ListIngestionsCommandInput | ListNamespacesCommandInput | ListRefreshSchedulesCommandInput | ListRoleMembershipsCommandInput | ListSelfUpgradesCommandInput | ListTagsForResourceCommandInput | ListTemplateAliasesCommandInput | ListTemplateVersionsCommandInput | ListTemplatesCommandInput | ListThemeAliasesCommandInput | ListThemeVersionsCommandInput | ListThemesCommandInput | ListTopicRefreshSchedulesCommandInput | ListTopicReviewedAnswersCommandInput | ListTopicsCommandInput | ListUserGroupsCommandInput | ListUsersCommandInput | ListVPCConnectionsCommandInput | PredictQAResultsCommandInput | PutDataSetRefreshPropertiesCommandInput | RegisterUserCommandInput | RestoreAnalysisCommandInput | SearchActionConnectorsCommandInput | SearchAnalysesCommandInput | SearchDashboardsCommandInput | SearchDataSetsCommandInput | SearchDataSourcesCommandInput | SearchFlowsCommandInput | SearchFoldersCommandInput | SearchGroupsCommandInput | SearchTopicsCommandInput | StartAssetBundleExportJobCommandInput | StartAssetBundleImportJobCommandInput | StartDashboardSnapshotJobCommandInput | StartDashboardSnapshotJobScheduleCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAccountCustomPermissionCommandInput | UpdateAccountCustomizationCommandInput | UpdateAccountSettingsCommandInput | UpdateActionConnectorCommandInput | UpdateActionConnectorPermissionsCommandInput | UpdateAnalysisCommandInput | UpdateAnalysisPermissionsCommandInput | UpdateApplicationWithTokenExchangeGrantCommandInput | UpdateBrandAssignmentCommandInput | UpdateBrandCommandInput | UpdateBrandPublishedVersionCommandInput | UpdateCustomPermissionsCommandInput | UpdateDashboardCommandInput | UpdateDashboardLinksCommandInput | UpdateDashboardPermissionsCommandInput | UpdateDashboardPublishedVersionCommandInput | UpdateDashboardsQAConfigurationCommandInput | UpdateDataSetCommandInput | UpdateDataSetPermissionsCommandInput | UpdateDataSourceCommandInput | UpdateDataSourcePermissionsCommandInput | UpdateDefaultQBusinessApplicationCommandInput | UpdateFlowPermissionsCommandInput | UpdateFolderCommandInput | UpdateFolderPermissionsCommandInput | UpdateGroupCommandInput | UpdateIAMPolicyAssignmentCommandInput | UpdateIdentityPropagationConfigCommandInput | UpdateIpRestrictionCommandInput | UpdateKeyRegistrationCommandInput | UpdatePublicSharingSettingsCommandInput | UpdateQPersonalizationConfigurationCommandInput | UpdateQuickSightQSearchConfigurationCommandInput | UpdateRefreshScheduleCommandInput | UpdateRoleCustomPermissionCommandInput | UpdateSPICECapacityConfigurationCommandInput | UpdateSelfUpgradeCommandInput | UpdateSelfUpgradeConfigurationCommandInput | UpdateTemplateAliasCommandInput | UpdateTemplateCommandInput | UpdateTemplatePermissionsCommandInput | UpdateThemeAliasCommandInput | UpdateThemeCommandInput | UpdateThemePermissionsCommandInput | UpdateTopicCommandInput | UpdateTopicPermissionsCommandInput | UpdateTopicRefreshScheduleCommandInput | UpdateUserCommandInput | UpdateUserCustomPermissionCommandInput | UpdateVPCConnectionCommandInput;
|
|
243
247
|
/**
|
|
244
248
|
* @public
|
|
245
249
|
*/
|
|
246
|
-
export type ServiceOutputTypes = BatchCreateTopicReviewedAnswerCommandOutput | BatchDeleteTopicReviewedAnswerCommandOutput | CancelIngestionCommandOutput | CreateAccountCustomizationCommandOutput | CreateAccountSubscriptionCommandOutput | CreateActionConnectorCommandOutput | CreateAnalysisCommandOutput | CreateBrandCommandOutput | CreateCustomPermissionsCommandOutput | CreateDashboardCommandOutput | CreateDataSetCommandOutput | CreateDataSourceCommandOutput | CreateFolderCommandOutput | CreateFolderMembershipCommandOutput | CreateGroupCommandOutput | CreateGroupMembershipCommandOutput | CreateIAMPolicyAssignmentCommandOutput | CreateIngestionCommandOutput | CreateNamespaceCommandOutput | CreateRefreshScheduleCommandOutput | CreateRoleMembershipCommandOutput | CreateTemplateAliasCommandOutput | CreateTemplateCommandOutput | CreateThemeAliasCommandOutput | CreateThemeCommandOutput | CreateTopicCommandOutput | CreateTopicRefreshScheduleCommandOutput | CreateVPCConnectionCommandOutput | DeleteAccountCustomPermissionCommandOutput | DeleteAccountCustomizationCommandOutput | DeleteAccountSubscriptionCommandOutput | DeleteActionConnectorCommandOutput | DeleteAnalysisCommandOutput | DeleteBrandAssignmentCommandOutput | DeleteBrandCommandOutput | DeleteCustomPermissionsCommandOutput | DeleteDashboardCommandOutput | DeleteDataSetCommandOutput | DeleteDataSetRefreshPropertiesCommandOutput | DeleteDataSourceCommandOutput | DeleteDefaultQBusinessApplicationCommandOutput | DeleteFolderCommandOutput | DeleteFolderMembershipCommandOutput | DeleteGroupCommandOutput | DeleteGroupMembershipCommandOutput | DeleteIAMPolicyAssignmentCommandOutput | DeleteIdentityPropagationConfigCommandOutput | DeleteNamespaceCommandOutput | DeleteRefreshScheduleCommandOutput | DeleteRoleCustomPermissionCommandOutput | DeleteRoleMembershipCommandOutput | DeleteTemplateAliasCommandOutput | DeleteTemplateCommandOutput | DeleteThemeAliasCommandOutput | DeleteThemeCommandOutput | DeleteTopicCommandOutput | DeleteTopicRefreshScheduleCommandOutput | DeleteUserByPrincipalIdCommandOutput | DeleteUserCommandOutput | DeleteUserCustomPermissionCommandOutput | DeleteVPCConnectionCommandOutput | DescribeAccountCustomPermissionCommandOutput | DescribeAccountCustomizationCommandOutput | DescribeAccountSettingsCommandOutput | DescribeAccountSubscriptionCommandOutput | DescribeActionConnectorCommandOutput | DescribeActionConnectorPermissionsCommandOutput | DescribeAnalysisCommandOutput | DescribeAnalysisDefinitionCommandOutput | DescribeAnalysisPermissionsCommandOutput | DescribeAssetBundleExportJobCommandOutput | DescribeAssetBundleImportJobCommandOutput | DescribeBrandAssignmentCommandOutput | DescribeBrandCommandOutput | DescribeBrandPublishedVersionCommandOutput | DescribeCustomPermissionsCommandOutput | DescribeDashboardCommandOutput | DescribeDashboardDefinitionCommandOutput | DescribeDashboardPermissionsCommandOutput | DescribeDashboardSnapshotJobCommandOutput | DescribeDashboardSnapshotJobResultCommandOutput | DescribeDashboardsQAConfigurationCommandOutput | DescribeDataSetCommandOutput | DescribeDataSetPermissionsCommandOutput | DescribeDataSetRefreshPropertiesCommandOutput | DescribeDataSourceCommandOutput | DescribeDataSourcePermissionsCommandOutput | DescribeDefaultQBusinessApplicationCommandOutput | DescribeFolderCommandOutput | DescribeFolderPermissionsCommandOutput | DescribeFolderResolvedPermissionsCommandOutput | DescribeGroupCommandOutput | DescribeGroupMembershipCommandOutput | DescribeIAMPolicyAssignmentCommandOutput | DescribeIngestionCommandOutput | DescribeIpRestrictionCommandOutput | DescribeKeyRegistrationCommandOutput | DescribeNamespaceCommandOutput | DescribeQPersonalizationConfigurationCommandOutput | DescribeQuickSightQSearchConfigurationCommandOutput | DescribeRefreshScheduleCommandOutput | DescribeRoleCustomPermissionCommandOutput | DescribeTemplateAliasCommandOutput | DescribeTemplateCommandOutput | DescribeTemplateDefinitionCommandOutput | DescribeTemplatePermissionsCommandOutput | DescribeThemeAliasCommandOutput | DescribeThemeCommandOutput | DescribeThemePermissionsCommandOutput | DescribeTopicCommandOutput | DescribeTopicPermissionsCommandOutput | DescribeTopicRefreshCommandOutput | DescribeTopicRefreshScheduleCommandOutput | DescribeUserCommandOutput | DescribeVPCConnectionCommandOutput | GenerateEmbedUrlForAnonymousUserCommandOutput | GenerateEmbedUrlForRegisteredUserCommandOutput | GenerateEmbedUrlForRegisteredUserWithIdentityCommandOutput | GetDashboardEmbedUrlCommandOutput | GetFlowMetadataCommandOutput | GetFlowPermissionsCommandOutput | GetIdentityContextCommandOutput | GetSessionEmbedUrlCommandOutput | ListActionConnectorsCommandOutput | ListAnalysesCommandOutput | ListAssetBundleExportJobsCommandOutput | ListAssetBundleImportJobsCommandOutput | ListBrandsCommandOutput | ListCustomPermissionsCommandOutput | ListDashboardVersionsCommandOutput | ListDashboardsCommandOutput | ListDataSetsCommandOutput | ListDataSourcesCommandOutput | ListFlowsCommandOutput | ListFolderMembersCommandOutput | ListFoldersCommandOutput | ListFoldersForResourceCommandOutput | ListGroupMembershipsCommandOutput | ListGroupsCommandOutput | ListIAMPolicyAssignmentsCommandOutput | ListIAMPolicyAssignmentsForUserCommandOutput | ListIdentityPropagationConfigsCommandOutput | ListIngestionsCommandOutput | ListNamespacesCommandOutput | ListRefreshSchedulesCommandOutput | ListRoleMembershipsCommandOutput | ListTagsForResourceCommandOutput | ListTemplateAliasesCommandOutput | ListTemplateVersionsCommandOutput | ListTemplatesCommandOutput | ListThemeAliasesCommandOutput | ListThemeVersionsCommandOutput | ListThemesCommandOutput | ListTopicRefreshSchedulesCommandOutput | ListTopicReviewedAnswersCommandOutput | ListTopicsCommandOutput | ListUserGroupsCommandOutput | ListUsersCommandOutput | ListVPCConnectionsCommandOutput | PredictQAResultsCommandOutput | PutDataSetRefreshPropertiesCommandOutput | RegisterUserCommandOutput | RestoreAnalysisCommandOutput | SearchActionConnectorsCommandOutput | SearchAnalysesCommandOutput | SearchDashboardsCommandOutput | SearchDataSetsCommandOutput | SearchDataSourcesCommandOutput | SearchFlowsCommandOutput | SearchFoldersCommandOutput | SearchGroupsCommandOutput | SearchTopicsCommandOutput | StartAssetBundleExportJobCommandOutput | StartAssetBundleImportJobCommandOutput | StartDashboardSnapshotJobCommandOutput | StartDashboardSnapshotJobScheduleCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAccountCustomPermissionCommandOutput | UpdateAccountCustomizationCommandOutput | UpdateAccountSettingsCommandOutput | UpdateActionConnectorCommandOutput | UpdateActionConnectorPermissionsCommandOutput | UpdateAnalysisCommandOutput | UpdateAnalysisPermissionsCommandOutput | UpdateApplicationWithTokenExchangeGrantCommandOutput | UpdateBrandAssignmentCommandOutput | UpdateBrandCommandOutput | UpdateBrandPublishedVersionCommandOutput | UpdateCustomPermissionsCommandOutput | UpdateDashboardCommandOutput | UpdateDashboardLinksCommandOutput | UpdateDashboardPermissionsCommandOutput | UpdateDashboardPublishedVersionCommandOutput | UpdateDashboardsQAConfigurationCommandOutput | UpdateDataSetCommandOutput | UpdateDataSetPermissionsCommandOutput | UpdateDataSourceCommandOutput | UpdateDataSourcePermissionsCommandOutput | UpdateDefaultQBusinessApplicationCommandOutput | UpdateFlowPermissionsCommandOutput | UpdateFolderCommandOutput | UpdateFolderPermissionsCommandOutput | UpdateGroupCommandOutput | UpdateIAMPolicyAssignmentCommandOutput | UpdateIdentityPropagationConfigCommandOutput | UpdateIpRestrictionCommandOutput | UpdateKeyRegistrationCommandOutput | UpdatePublicSharingSettingsCommandOutput | UpdateQPersonalizationConfigurationCommandOutput | UpdateQuickSightQSearchConfigurationCommandOutput | UpdateRefreshScheduleCommandOutput | UpdateRoleCustomPermissionCommandOutput | UpdateSPICECapacityConfigurationCommandOutput | UpdateTemplateAliasCommandOutput | UpdateTemplateCommandOutput | UpdateTemplatePermissionsCommandOutput | UpdateThemeAliasCommandOutput | UpdateThemeCommandOutput | UpdateThemePermissionsCommandOutput | UpdateTopicCommandOutput | UpdateTopicPermissionsCommandOutput | UpdateTopicRefreshScheduleCommandOutput | UpdateUserCommandOutput | UpdateUserCustomPermissionCommandOutput | UpdateVPCConnectionCommandOutput;
|
|
250
|
+
export type ServiceOutputTypes = BatchCreateTopicReviewedAnswerCommandOutput | BatchDeleteTopicReviewedAnswerCommandOutput | CancelIngestionCommandOutput | CreateAccountCustomizationCommandOutput | CreateAccountSubscriptionCommandOutput | CreateActionConnectorCommandOutput | CreateAnalysisCommandOutput | CreateBrandCommandOutput | CreateCustomPermissionsCommandOutput | CreateDashboardCommandOutput | CreateDataSetCommandOutput | CreateDataSourceCommandOutput | CreateFolderCommandOutput | CreateFolderMembershipCommandOutput | CreateGroupCommandOutput | CreateGroupMembershipCommandOutput | CreateIAMPolicyAssignmentCommandOutput | CreateIngestionCommandOutput | CreateNamespaceCommandOutput | CreateRefreshScheduleCommandOutput | CreateRoleMembershipCommandOutput | CreateTemplateAliasCommandOutput | CreateTemplateCommandOutput | CreateThemeAliasCommandOutput | CreateThemeCommandOutput | CreateTopicCommandOutput | CreateTopicRefreshScheduleCommandOutput | CreateVPCConnectionCommandOutput | DeleteAccountCustomPermissionCommandOutput | DeleteAccountCustomizationCommandOutput | DeleteAccountSubscriptionCommandOutput | DeleteActionConnectorCommandOutput | DeleteAnalysisCommandOutput | DeleteBrandAssignmentCommandOutput | DeleteBrandCommandOutput | DeleteCustomPermissionsCommandOutput | DeleteDashboardCommandOutput | DeleteDataSetCommandOutput | DeleteDataSetRefreshPropertiesCommandOutput | DeleteDataSourceCommandOutput | DeleteDefaultQBusinessApplicationCommandOutput | DeleteFolderCommandOutput | DeleteFolderMembershipCommandOutput | DeleteGroupCommandOutput | DeleteGroupMembershipCommandOutput | DeleteIAMPolicyAssignmentCommandOutput | DeleteIdentityPropagationConfigCommandOutput | DeleteNamespaceCommandOutput | DeleteRefreshScheduleCommandOutput | DeleteRoleCustomPermissionCommandOutput | DeleteRoleMembershipCommandOutput | DeleteTemplateAliasCommandOutput | DeleteTemplateCommandOutput | DeleteThemeAliasCommandOutput | DeleteThemeCommandOutput | DeleteTopicCommandOutput | DeleteTopicRefreshScheduleCommandOutput | DeleteUserByPrincipalIdCommandOutput | DeleteUserCommandOutput | DeleteUserCustomPermissionCommandOutput | DeleteVPCConnectionCommandOutput | DescribeAccountCustomPermissionCommandOutput | DescribeAccountCustomizationCommandOutput | DescribeAccountSettingsCommandOutput | DescribeAccountSubscriptionCommandOutput | DescribeActionConnectorCommandOutput | DescribeActionConnectorPermissionsCommandOutput | DescribeAnalysisCommandOutput | DescribeAnalysisDefinitionCommandOutput | DescribeAnalysisPermissionsCommandOutput | DescribeAssetBundleExportJobCommandOutput | DescribeAssetBundleImportJobCommandOutput | DescribeBrandAssignmentCommandOutput | DescribeBrandCommandOutput | DescribeBrandPublishedVersionCommandOutput | DescribeCustomPermissionsCommandOutput | DescribeDashboardCommandOutput | DescribeDashboardDefinitionCommandOutput | DescribeDashboardPermissionsCommandOutput | DescribeDashboardSnapshotJobCommandOutput | DescribeDashboardSnapshotJobResultCommandOutput | DescribeDashboardsQAConfigurationCommandOutput | DescribeDataSetCommandOutput | DescribeDataSetPermissionsCommandOutput | DescribeDataSetRefreshPropertiesCommandOutput | DescribeDataSourceCommandOutput | DescribeDataSourcePermissionsCommandOutput | DescribeDefaultQBusinessApplicationCommandOutput | DescribeFolderCommandOutput | DescribeFolderPermissionsCommandOutput | DescribeFolderResolvedPermissionsCommandOutput | DescribeGroupCommandOutput | DescribeGroupMembershipCommandOutput | DescribeIAMPolicyAssignmentCommandOutput | DescribeIngestionCommandOutput | DescribeIpRestrictionCommandOutput | DescribeKeyRegistrationCommandOutput | DescribeNamespaceCommandOutput | DescribeQPersonalizationConfigurationCommandOutput | DescribeQuickSightQSearchConfigurationCommandOutput | DescribeRefreshScheduleCommandOutput | DescribeRoleCustomPermissionCommandOutput | DescribeSelfUpgradeConfigurationCommandOutput | DescribeTemplateAliasCommandOutput | DescribeTemplateCommandOutput | DescribeTemplateDefinitionCommandOutput | DescribeTemplatePermissionsCommandOutput | DescribeThemeAliasCommandOutput | DescribeThemeCommandOutput | DescribeThemePermissionsCommandOutput | DescribeTopicCommandOutput | DescribeTopicPermissionsCommandOutput | DescribeTopicRefreshCommandOutput | DescribeTopicRefreshScheduleCommandOutput | DescribeUserCommandOutput | DescribeVPCConnectionCommandOutput | GenerateEmbedUrlForAnonymousUserCommandOutput | GenerateEmbedUrlForRegisteredUserCommandOutput | GenerateEmbedUrlForRegisteredUserWithIdentityCommandOutput | GetDashboardEmbedUrlCommandOutput | GetFlowMetadataCommandOutput | GetFlowPermissionsCommandOutput | GetIdentityContextCommandOutput | GetSessionEmbedUrlCommandOutput | ListActionConnectorsCommandOutput | ListAnalysesCommandOutput | ListAssetBundleExportJobsCommandOutput | ListAssetBundleImportJobsCommandOutput | ListBrandsCommandOutput | ListCustomPermissionsCommandOutput | ListDashboardVersionsCommandOutput | ListDashboardsCommandOutput | ListDataSetsCommandOutput | ListDataSourcesCommandOutput | ListFlowsCommandOutput | ListFolderMembersCommandOutput | ListFoldersCommandOutput | ListFoldersForResourceCommandOutput | ListGroupMembershipsCommandOutput | ListGroupsCommandOutput | ListIAMPolicyAssignmentsCommandOutput | ListIAMPolicyAssignmentsForUserCommandOutput | ListIdentityPropagationConfigsCommandOutput | ListIngestionsCommandOutput | ListNamespacesCommandOutput | ListRefreshSchedulesCommandOutput | ListRoleMembershipsCommandOutput | ListSelfUpgradesCommandOutput | ListTagsForResourceCommandOutput | ListTemplateAliasesCommandOutput | ListTemplateVersionsCommandOutput | ListTemplatesCommandOutput | ListThemeAliasesCommandOutput | ListThemeVersionsCommandOutput | ListThemesCommandOutput | ListTopicRefreshSchedulesCommandOutput | ListTopicReviewedAnswersCommandOutput | ListTopicsCommandOutput | ListUserGroupsCommandOutput | ListUsersCommandOutput | ListVPCConnectionsCommandOutput | PredictQAResultsCommandOutput | PutDataSetRefreshPropertiesCommandOutput | RegisterUserCommandOutput | RestoreAnalysisCommandOutput | SearchActionConnectorsCommandOutput | SearchAnalysesCommandOutput | SearchDashboardsCommandOutput | SearchDataSetsCommandOutput | SearchDataSourcesCommandOutput | SearchFlowsCommandOutput | SearchFoldersCommandOutput | SearchGroupsCommandOutput | SearchTopicsCommandOutput | StartAssetBundleExportJobCommandOutput | StartAssetBundleImportJobCommandOutput | StartDashboardSnapshotJobCommandOutput | StartDashboardSnapshotJobScheduleCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAccountCustomPermissionCommandOutput | UpdateAccountCustomizationCommandOutput | UpdateAccountSettingsCommandOutput | UpdateActionConnectorCommandOutput | UpdateActionConnectorPermissionsCommandOutput | UpdateAnalysisCommandOutput | UpdateAnalysisPermissionsCommandOutput | UpdateApplicationWithTokenExchangeGrantCommandOutput | UpdateBrandAssignmentCommandOutput | UpdateBrandCommandOutput | UpdateBrandPublishedVersionCommandOutput | UpdateCustomPermissionsCommandOutput | UpdateDashboardCommandOutput | UpdateDashboardLinksCommandOutput | UpdateDashboardPermissionsCommandOutput | UpdateDashboardPublishedVersionCommandOutput | UpdateDashboardsQAConfigurationCommandOutput | UpdateDataSetCommandOutput | UpdateDataSetPermissionsCommandOutput | UpdateDataSourceCommandOutput | UpdateDataSourcePermissionsCommandOutput | UpdateDefaultQBusinessApplicationCommandOutput | UpdateFlowPermissionsCommandOutput | UpdateFolderCommandOutput | UpdateFolderPermissionsCommandOutput | UpdateGroupCommandOutput | UpdateIAMPolicyAssignmentCommandOutput | UpdateIdentityPropagationConfigCommandOutput | UpdateIpRestrictionCommandOutput | UpdateKeyRegistrationCommandOutput | UpdatePublicSharingSettingsCommandOutput | UpdateQPersonalizationConfigurationCommandOutput | UpdateQuickSightQSearchConfigurationCommandOutput | UpdateRefreshScheduleCommandOutput | UpdateRoleCustomPermissionCommandOutput | UpdateSPICECapacityConfigurationCommandOutput | UpdateSelfUpgradeCommandOutput | UpdateSelfUpgradeConfigurationCommandOutput | UpdateTemplateAliasCommandOutput | UpdateTemplateCommandOutput | UpdateTemplatePermissionsCommandOutput | UpdateThemeAliasCommandOutput | UpdateThemeCommandOutput | UpdateThemePermissionsCommandOutput | UpdateTopicCommandOutput | UpdateTopicPermissionsCommandOutput | UpdateTopicRefreshScheduleCommandOutput | UpdateUserCommandOutput | UpdateUserCustomPermissionCommandOutput | UpdateVPCConnectionCommandOutput;
|
|
247
251
|
/**
|
|
248
252
|
* @public
|
|
249
253
|
*/
|