@aws-sdk/client-finspace-data 3.325.0 → 3.326.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/dist-types/commands/AssociateUserToPermissionGroupCommand.d.ts +6 -0
  2. package/dist-types/commands/CreateChangesetCommand.d.ts +7 -0
  3. package/dist-types/commands/CreateDataViewCommand.d.ts +7 -0
  4. package/dist-types/commands/CreateDatasetCommand.d.ts +6 -0
  5. package/dist-types/commands/CreatePermissionGroupCommand.d.ts +6 -0
  6. package/dist-types/commands/CreateUserCommand.d.ts +6 -0
  7. package/dist-types/commands/DeleteDatasetCommand.d.ts +6 -0
  8. package/dist-types/commands/DeletePermissionGroupCommand.d.ts +6 -0
  9. package/dist-types/commands/DisableUserCommand.d.ts +6 -0
  10. package/dist-types/commands/DisassociateUserFromPermissionGroupCommand.d.ts +6 -0
  11. package/dist-types/commands/EnableUserCommand.d.ts +6 -0
  12. package/dist-types/commands/GetChangesetCommand.d.ts +25 -0
  13. package/dist-types/commands/GetDataViewCommand.d.ts +30 -0
  14. package/dist-types/commands/GetDatasetCommand.d.ts +28 -0
  15. package/dist-types/commands/GetExternalDataViewAccessDetailsCommand.d.ts +15 -0
  16. package/dist-types/commands/GetPermissionGroupCommand.d.ts +16 -0
  17. package/dist-types/commands/GetProgrammaticAccessCredentialsCommand.d.ts +11 -0
  18. package/dist-types/commands/GetUserCommand.d.ts +18 -0
  19. package/dist-types/commands/GetWorkingLocationCommand.d.ts +8 -0
  20. package/dist-types/commands/ListChangesetsCommand.d.ts +30 -0
  21. package/dist-types/commands/ListDataViewsCommand.d.ts +35 -0
  22. package/dist-types/commands/ListDatasetsCommand.d.ts +37 -0
  23. package/dist-types/commands/ListPermissionGroupsByUserCommand.d.ts +13 -0
  24. package/dist-types/commands/ListPermissionGroupsCommand.d.ts +19 -0
  25. package/dist-types/commands/ListUsersByPermissionGroupCommand.d.ts +19 -0
  26. package/dist-types/commands/ListUsersCommand.d.ts +23 -0
  27. package/dist-types/commands/ResetUserPasswordCommand.d.ts +7 -0
  28. package/dist-types/commands/UpdateChangesetCommand.d.ts +7 -0
  29. package/dist-types/commands/UpdateDatasetCommand.d.ts +6 -0
  30. package/dist-types/commands/UpdatePermissionGroupCommand.d.ts +6 -0
  31. package/dist-types/commands/UpdateUserCommand.d.ts +6 -0
  32. package/package.json +3 -3
@@ -33,6 +33,10 @@ export interface AssociateUserToPermissionGroupCommandOutput extends AssociateUs
33
33
  * };
34
34
  * const command = new AssociateUserToPermissionGroupCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // AssociateUserToPermissionGroupResponse
37
+ * // statusCode: Number("int"),
38
+ * // };
39
+ *
36
40
  * ```
37
41
  *
38
42
  * @param AssociateUserToPermissionGroupCommandInput - {@link AssociateUserToPermissionGroupCommandInput}
@@ -60,6 +64,8 @@ export interface AssociateUserToPermissionGroupCommandOutput extends AssociateUs
60
64
  * @throws {@link ValidationException} (client fault)
61
65
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
62
66
  *
67
+ * @throws {@link FinspaceDataServiceException}
68
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
63
69
  *
64
70
  */
65
71
  export declare class AssociateUserToPermissionGroupCommand extends $Command<AssociateUserToPermissionGroupCommandInput, AssociateUserToPermissionGroupCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -39,6 +39,11 @@ export interface CreateChangesetCommandOutput extends CreateChangesetResponse, _
39
39
  * };
40
40
  * const command = new CreateChangesetCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // { // CreateChangesetResponse
43
+ * // datasetId: "STRING_VALUE",
44
+ * // changesetId: "STRING_VALUE",
45
+ * // };
46
+ *
42
47
  * ```
43
48
  *
44
49
  * @param CreateChangesetCommandInput - {@link CreateChangesetCommandInput}
@@ -69,6 +74,8 @@ export interface CreateChangesetCommandOutput extends CreateChangesetResponse, _
69
74
  * @throws {@link ValidationException} (client fault)
70
75
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
71
76
  *
77
+ * @throws {@link FinspaceDataServiceException}
78
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
72
79
  *
73
80
  */
74
81
  export declare class CreateChangesetCommand extends $Command<CreateChangesetCommandInput, CreateChangesetCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -47,6 +47,11 @@ export interface CreateDataViewCommandOutput extends CreateDataViewResponse, __M
47
47
  * };
48
48
  * const command = new CreateDataViewCommand(input);
49
49
  * const response = await client.send(command);
50
+ * // { // CreateDataViewResponse
51
+ * // datasetId: "STRING_VALUE",
52
+ * // dataViewId: "STRING_VALUE",
53
+ * // };
54
+ *
50
55
  * ```
51
56
  *
52
57
  * @param CreateDataViewCommandInput - {@link CreateDataViewCommandInput}
@@ -74,6 +79,8 @@ export interface CreateDataViewCommandOutput extends CreateDataViewResponse, __M
74
79
  * @throws {@link ValidationException} (client fault)
75
80
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
76
81
  *
82
+ * @throws {@link FinspaceDataServiceException}
83
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
77
84
  *
78
85
  */
79
86
  export declare class CreateDataViewCommand extends $Command<CreateDataViewCommandInput, CreateDataViewCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -62,6 +62,10 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met
62
62
  * };
63
63
  * const command = new CreateDatasetCommand(input);
64
64
  * const response = await client.send(command);
65
+ * // { // CreateDatasetResponse
66
+ * // datasetId: "STRING_VALUE",
67
+ * // };
68
+ *
65
69
  * ```
66
70
  *
67
71
  * @param CreateDatasetCommandInput - {@link CreateDatasetCommandInput}
@@ -92,6 +96,8 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met
92
96
  * @throws {@link ValidationException} (client fault)
93
97
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
94
98
  *
99
+ * @throws {@link FinspaceDataServiceException}
100
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
95
101
  *
96
102
  */
97
103
  export declare class CreateDatasetCommand extends $Command<CreateDatasetCommandInput, CreateDatasetCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -36,6 +36,10 @@ export interface CreatePermissionGroupCommandOutput extends CreatePermissionGrou
36
36
  * };
37
37
  * const command = new CreatePermissionGroupCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // CreatePermissionGroupResponse
40
+ * // permissionGroupId: "STRING_VALUE",
41
+ * // };
42
+ *
39
43
  * ```
40
44
  *
41
45
  * @param CreatePermissionGroupCommandInput - {@link CreatePermissionGroupCommandInput}
@@ -63,6 +67,8 @@ export interface CreatePermissionGroupCommandOutput extends CreatePermissionGrou
63
67
  * @throws {@link ValidationException} (client fault)
64
68
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
65
69
  *
70
+ * @throws {@link FinspaceDataServiceException}
71
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
66
72
  *
67
73
  */
68
74
  export declare class CreatePermissionGroupCommand extends $Command<CreatePermissionGroupCommandInput, CreatePermissionGroupCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -37,6 +37,10 @@ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataB
37
37
  * };
38
38
  * const command = new CreateUserCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // CreateUserResponse
41
+ * // userId: "STRING_VALUE",
42
+ * // };
43
+ *
40
44
  * ```
41
45
  *
42
46
  * @param CreateUserCommandInput - {@link CreateUserCommandInput}
@@ -64,6 +68,8 @@ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataB
64
68
  * @throws {@link ValidationException} (client fault)
65
69
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
66
70
  *
71
+ * @throws {@link FinspaceDataServiceException}
72
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
67
73
  *
68
74
  */
69
75
  export declare class CreateUserCommand extends $Command<CreateUserCommandInput, CreateUserCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -32,6 +32,10 @@ export interface DeleteDatasetCommandOutput extends DeleteDatasetResponse, __Met
32
32
  * };
33
33
  * const command = new DeleteDatasetCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DeleteDatasetResponse
36
+ * // datasetId: "STRING_VALUE",
37
+ * // };
38
+ *
35
39
  * ```
36
40
  *
37
41
  * @param DeleteDatasetCommandInput - {@link DeleteDatasetCommandInput}
@@ -62,6 +66,8 @@ export interface DeleteDatasetCommandOutput extends DeleteDatasetResponse, __Met
62
66
  * @throws {@link ValidationException} (client fault)
63
67
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
64
68
  *
69
+ * @throws {@link FinspaceDataServiceException}
70
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
65
71
  *
66
72
  */
67
73
  export declare class DeleteDatasetCommand extends $Command<DeleteDatasetCommandInput, DeleteDatasetCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -32,6 +32,10 @@ export interface DeletePermissionGroupCommandOutput extends DeletePermissionGrou
32
32
  * };
33
33
  * const command = new DeletePermissionGroupCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DeletePermissionGroupResponse
36
+ * // permissionGroupId: "STRING_VALUE",
37
+ * // };
38
+ *
35
39
  * ```
36
40
  *
37
41
  * @param DeletePermissionGroupCommandInput - {@link DeletePermissionGroupCommandInput}
@@ -62,6 +66,8 @@ export interface DeletePermissionGroupCommandOutput extends DeletePermissionGrou
62
66
  * @throws {@link ValidationException} (client fault)
63
67
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
64
68
  *
69
+ * @throws {@link FinspaceDataServiceException}
70
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
65
71
  *
66
72
  */
67
73
  export declare class DeletePermissionGroupCommand extends $Command<DeletePermissionGroupCommandInput, DeletePermissionGroupCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -32,6 +32,10 @@ export interface DisableUserCommandOutput extends DisableUserResponse, __Metadat
32
32
  * };
33
33
  * const command = new DisableUserCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DisableUserResponse
36
+ * // userId: "STRING_VALUE",
37
+ * // };
38
+ *
35
39
  * ```
36
40
  *
37
41
  * @param DisableUserCommandInput - {@link DisableUserCommandInput}
@@ -59,6 +63,8 @@ export interface DisableUserCommandOutput extends DisableUserResponse, __Metadat
59
63
  * @throws {@link ValidationException} (client fault)
60
64
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
61
65
  *
66
+ * @throws {@link FinspaceDataServiceException}
67
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
62
68
  *
63
69
  */
64
70
  export declare class DisableUserCommand extends $Command<DisableUserCommandInput, DisableUserCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -33,6 +33,10 @@ export interface DisassociateUserFromPermissionGroupCommandOutput extends Disass
33
33
  * };
34
34
  * const command = new DisassociateUserFromPermissionGroupCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // DisassociateUserFromPermissionGroupResponse
37
+ * // statusCode: Number("int"),
38
+ * // };
39
+ *
36
40
  * ```
37
41
  *
38
42
  * @param DisassociateUserFromPermissionGroupCommandInput - {@link DisassociateUserFromPermissionGroupCommandInput}
@@ -60,6 +64,8 @@ export interface DisassociateUserFromPermissionGroupCommandOutput extends Disass
60
64
  * @throws {@link ValidationException} (client fault)
61
65
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
62
66
  *
67
+ * @throws {@link FinspaceDataServiceException}
68
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
63
69
  *
64
70
  */
65
71
  export declare class DisassociateUserFromPermissionGroupCommand extends $Command<DisassociateUserFromPermissionGroupCommandInput, DisassociateUserFromPermissionGroupCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -32,6 +32,10 @@ export interface EnableUserCommandOutput extends EnableUserResponse, __MetadataB
32
32
  * };
33
33
  * const command = new EnableUserCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // EnableUserResponse
36
+ * // userId: "STRING_VALUE",
37
+ * // };
38
+ *
35
39
  * ```
36
40
  *
37
41
  * @param EnableUserCommandInput - {@link EnableUserCommandInput}
@@ -62,6 +66,8 @@ export interface EnableUserCommandOutput extends EnableUserResponse, __MetadataB
62
66
  * @throws {@link ValidationException} (client fault)
63
67
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
64
68
  *
69
+ * @throws {@link FinspaceDataServiceException}
70
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
65
71
  *
66
72
  */
67
73
  export declare class EnableUserCommand extends $Command<EnableUserCommandInput, EnableUserCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -32,6 +32,29 @@ export interface GetChangesetCommandOutput extends GetChangesetResponse, __Metad
32
32
  * };
33
33
  * const command = new GetChangesetCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // GetChangesetResponse
36
+ * // changesetId: "STRING_VALUE",
37
+ * // changesetArn: "STRING_VALUE",
38
+ * // datasetId: "STRING_VALUE",
39
+ * // changeType: "STRING_VALUE",
40
+ * // sourceParams: { // SourceParams
41
+ * // "<keys>": "STRING_VALUE",
42
+ * // },
43
+ * // formatParams: { // FormatParams
44
+ * // "<keys>": "STRING_VALUE",
45
+ * // },
46
+ * // createTime: Number("long"),
47
+ * // status: "STRING_VALUE",
48
+ * // errorInfo: { // ChangesetErrorInfo
49
+ * // errorMessage: "STRING_VALUE",
50
+ * // errorCategory: "STRING_VALUE",
51
+ * // },
52
+ * // activeUntilTimestamp: Number("long"),
53
+ * // activeFromTimestamp: Number("long"),
54
+ * // updatesChangesetId: "STRING_VALUE",
55
+ * // updatedByChangesetId: "STRING_VALUE",
56
+ * // };
57
+ *
35
58
  * ```
36
59
  *
37
60
  * @param GetChangesetCommandInput - {@link GetChangesetCommandInput}
@@ -59,6 +82,8 @@ export interface GetChangesetCommandOutput extends GetChangesetResponse, __Metad
59
82
  * @throws {@link ValidationException} (client fault)
60
83
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
61
84
  *
85
+ * @throws {@link FinspaceDataServiceException}
86
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
62
87
  *
63
88
  */
64
89
  export declare class GetChangesetCommand extends $Command<GetChangesetCommandInput, GetChangesetCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -32,6 +32,34 @@ export interface GetDataViewCommandOutput extends GetDataViewResponse, __Metadat
32
32
  * };
33
33
  * const command = new GetDataViewCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // GetDataViewResponse
36
+ * // autoUpdate: true || false,
37
+ * // partitionColumns: [ // PartitionColumnList
38
+ * // "STRING_VALUE",
39
+ * // ],
40
+ * // datasetId: "STRING_VALUE",
41
+ * // asOfTimestamp: Number("long"),
42
+ * // errorInfo: { // DataViewErrorInfo
43
+ * // errorMessage: "STRING_VALUE",
44
+ * // errorCategory: "STRING_VALUE",
45
+ * // },
46
+ * // lastModifiedTime: Number("long"),
47
+ * // createTime: Number("long"),
48
+ * // sortColumns: [ // SortColumnList
49
+ * // "STRING_VALUE",
50
+ * // ],
51
+ * // dataViewId: "STRING_VALUE",
52
+ * // dataViewArn: "STRING_VALUE",
53
+ * // destinationTypeParams: { // DataViewDestinationTypeParams
54
+ * // destinationType: "STRING_VALUE", // required
55
+ * // s3DestinationExportFileFormat: "STRING_VALUE",
56
+ * // s3DestinationExportFileFormatOptions: { // S3DestinationFormatOptions
57
+ * // "<keys>": "STRING_VALUE",
58
+ * // },
59
+ * // },
60
+ * // status: "STRING_VALUE",
61
+ * // };
62
+ *
35
63
  * ```
36
64
  *
37
65
  * @param GetDataViewCommandInput - {@link GetDataViewCommandInput}
@@ -56,6 +84,8 @@ export interface GetDataViewCommandOutput extends GetDataViewResponse, __Metadat
56
84
  * @throws {@link ValidationException} (client fault)
57
85
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
58
86
  *
87
+ * @throws {@link FinspaceDataServiceException}
88
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
59
89
  *
60
90
  */
61
91
  export declare class GetDataViewCommand extends $Command<GetDataViewCommandInput, GetDataViewCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -31,6 +31,32 @@ export interface GetDatasetCommandOutput extends GetDatasetResponse, __MetadataB
31
31
  * };
32
32
  * const command = new GetDatasetCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // GetDatasetResponse
35
+ * // datasetId: "STRING_VALUE",
36
+ * // datasetArn: "STRING_VALUE",
37
+ * // datasetTitle: "STRING_VALUE",
38
+ * // kind: "STRING_VALUE",
39
+ * // datasetDescription: "STRING_VALUE",
40
+ * // createTime: Number("long"),
41
+ * // lastModifiedTime: Number("long"),
42
+ * // schemaDefinition: { // SchemaUnion
43
+ * // tabularSchemaConfig: { // SchemaDefinition
44
+ * // columns: [ // ColumnList
45
+ * // { // ColumnDefinition
46
+ * // dataType: "STRING_VALUE",
47
+ * // columnName: "STRING_VALUE",
48
+ * // columnDescription: "STRING_VALUE",
49
+ * // },
50
+ * // ],
51
+ * // primaryKeyColumns: [ // ColumnNameList
52
+ * // "STRING_VALUE",
53
+ * // ],
54
+ * // },
55
+ * // },
56
+ * // alias: "STRING_VALUE",
57
+ * // status: "STRING_VALUE",
58
+ * // };
59
+ *
34
60
  * ```
35
61
  *
36
62
  * @param GetDatasetCommandInput - {@link GetDatasetCommandInput}
@@ -58,6 +84,8 @@ export interface GetDatasetCommandOutput extends GetDatasetResponse, __MetadataB
58
84
  * @throws {@link ValidationException} (client fault)
59
85
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
60
86
  *
87
+ * @throws {@link FinspaceDataServiceException}
88
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
61
89
  *
62
90
  */
63
91
  export declare class GetDatasetCommand extends $Command<GetDatasetCommandInput, GetDatasetCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -40,6 +40,19 @@ export interface GetExternalDataViewAccessDetailsCommandOutput extends GetExtern
40
40
  * };
41
41
  * const command = new GetExternalDataViewAccessDetailsCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // { // GetExternalDataViewAccessDetailsResponse
44
+ * // credentials: { // AwsCredentials
45
+ * // accessKeyId: "STRING_VALUE",
46
+ * // secretAccessKey: "STRING_VALUE",
47
+ * // sessionToken: "STRING_VALUE",
48
+ * // expiration: Number("long"),
49
+ * // },
50
+ * // s3Location: { // S3Location
51
+ * // bucket: "STRING_VALUE", // required
52
+ * // key: "STRING_VALUE", // required
53
+ * // },
54
+ * // };
55
+ *
43
56
  * ```
44
57
  *
45
58
  * @param GetExternalDataViewAccessDetailsCommandInput - {@link GetExternalDataViewAccessDetailsCommandInput}
@@ -64,6 +77,8 @@ export interface GetExternalDataViewAccessDetailsCommandOutput extends GetExtern
64
77
  * @throws {@link ValidationException} (client fault)
65
78
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
66
79
  *
80
+ * @throws {@link FinspaceDataServiceException}
81
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
67
82
  *
68
83
  */
69
84
  export declare class GetExternalDataViewAccessDetailsCommand extends $Command<GetExternalDataViewAccessDetailsCommandInput, GetExternalDataViewAccessDetailsCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -31,6 +31,20 @@ export interface GetPermissionGroupCommandOutput extends GetPermissionGroupRespo
31
31
  * };
32
32
  * const command = new GetPermissionGroupCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // GetPermissionGroupResponse
35
+ * // permissionGroup: { // PermissionGroup
36
+ * // permissionGroupId: "STRING_VALUE",
37
+ * // name: "STRING_VALUE",
38
+ * // description: "STRING_VALUE",
39
+ * // applicationPermissions: [ // ApplicationPermissionList
40
+ * // "STRING_VALUE",
41
+ * // ],
42
+ * // createTime: Number("long"),
43
+ * // lastModifiedTime: Number("long"),
44
+ * // membershipStatus: "STRING_VALUE",
45
+ * // },
46
+ * // };
47
+ *
34
48
  * ```
35
49
  *
36
50
  * @param GetPermissionGroupCommandInput - {@link GetPermissionGroupCommandInput}
@@ -55,6 +69,8 @@ export interface GetPermissionGroupCommandOutput extends GetPermissionGroupRespo
55
69
  * @throws {@link ValidationException} (client fault)
56
70
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
57
71
  *
72
+ * @throws {@link FinspaceDataServiceException}
73
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
58
74
  *
59
75
  */
60
76
  export declare class GetPermissionGroupCommand extends $Command<GetPermissionGroupCommandInput, GetPermissionGroupCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -32,6 +32,15 @@ export interface GetProgrammaticAccessCredentialsCommandOutput extends GetProgra
32
32
  * };
33
33
  * const command = new GetProgrammaticAccessCredentialsCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // GetProgrammaticAccessCredentialsResponse
36
+ * // credentials: { // Credentials
37
+ * // accessKeyId: "STRING_VALUE",
38
+ * // secretAccessKey: "STRING_VALUE",
39
+ * // sessionToken: "STRING_VALUE",
40
+ * // },
41
+ * // durationInMinutes: Number("long"),
42
+ * // };
43
+ *
35
44
  * ```
36
45
  *
37
46
  * @param GetProgrammaticAccessCredentialsCommandInput - {@link GetProgrammaticAccessCredentialsCommandInput}
@@ -53,6 +62,8 @@ export interface GetProgrammaticAccessCredentialsCommandOutput extends GetProgra
53
62
  * @throws {@link ValidationException} (client fault)
54
63
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
55
64
  *
65
+ * @throws {@link FinspaceDataServiceException}
66
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
56
67
  *
57
68
  */
58
69
  export declare class GetProgrammaticAccessCredentialsCommand extends $Command<GetProgrammaticAccessCredentialsCommandInput, GetProgrammaticAccessCredentialsCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -31,6 +31,22 @@ export interface GetUserCommandOutput extends GetUserResponse, __MetadataBearer
31
31
  * };
32
32
  * const command = new GetUserCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // GetUserResponse
35
+ * // userId: "STRING_VALUE",
36
+ * // status: "STRING_VALUE",
37
+ * // firstName: "STRING_VALUE",
38
+ * // lastName: "STRING_VALUE",
39
+ * // emailAddress: "STRING_VALUE",
40
+ * // type: "STRING_VALUE",
41
+ * // apiAccess: "STRING_VALUE",
42
+ * // apiAccessPrincipalArn: "STRING_VALUE",
43
+ * // createTime: Number("long"),
44
+ * // lastEnabledTime: Number("long"),
45
+ * // lastDisabledTime: Number("long"),
46
+ * // lastModifiedTime: Number("long"),
47
+ * // lastLoginTime: Number("long"),
48
+ * // };
49
+ *
34
50
  * ```
35
51
  *
36
52
  * @param GetUserCommandInput - {@link GetUserCommandInput}
@@ -55,6 +71,8 @@ export interface GetUserCommandOutput extends GetUserResponse, __MetadataBearer
55
71
  * @throws {@link ValidationException} (client fault)
56
72
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
57
73
  *
74
+ * @throws {@link FinspaceDataServiceException}
75
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
58
76
  *
59
77
  */
60
78
  export declare class GetUserCommand extends $Command<GetUserCommandInput, GetUserCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -32,6 +32,12 @@ export interface GetWorkingLocationCommandOutput extends GetWorkingLocationRespo
32
32
  * };
33
33
  * const command = new GetWorkingLocationCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // GetWorkingLocationResponse
36
+ * // s3Uri: "STRING_VALUE",
37
+ * // s3Path: "STRING_VALUE",
38
+ * // s3Bucket: "STRING_VALUE",
39
+ * // };
40
+ *
35
41
  * ```
36
42
  *
37
43
  * @param GetWorkingLocationCommandInput - {@link GetWorkingLocationCommandInput}
@@ -53,6 +59,8 @@ export interface GetWorkingLocationCommandOutput extends GetWorkingLocationRespo
53
59
  * @throws {@link ValidationException} (client fault)
54
60
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
55
61
  *
62
+ * @throws {@link FinspaceDataServiceException}
63
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
56
64
  *
57
65
  */
58
66
  export declare class GetWorkingLocationCommand extends $Command<GetWorkingLocationCommandInput, GetWorkingLocationCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -33,6 +33,34 @@ export interface ListChangesetsCommandOutput extends ListChangesetsResponse, __M
33
33
  * };
34
34
  * const command = new ListChangesetsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListChangesetsResponse
37
+ * // changesets: [ // ChangesetList
38
+ * // { // ChangesetSummary
39
+ * // changesetId: "STRING_VALUE",
40
+ * // changesetArn: "STRING_VALUE",
41
+ * // datasetId: "STRING_VALUE",
42
+ * // changeType: "STRING_VALUE",
43
+ * // sourceParams: { // SourceParams
44
+ * // "<keys>": "STRING_VALUE",
45
+ * // },
46
+ * // formatParams: { // FormatParams
47
+ * // "<keys>": "STRING_VALUE",
48
+ * // },
49
+ * // createTime: Number("long"),
50
+ * // status: "STRING_VALUE",
51
+ * // errorInfo: { // ChangesetErrorInfo
52
+ * // errorMessage: "STRING_VALUE",
53
+ * // errorCategory: "STRING_VALUE",
54
+ * // },
55
+ * // activeUntilTimestamp: Number("long"),
56
+ * // activeFromTimestamp: Number("long"),
57
+ * // updatesChangesetId: "STRING_VALUE",
58
+ * // updatedByChangesetId: "STRING_VALUE",
59
+ * // },
60
+ * // ],
61
+ * // nextToken: "STRING_VALUE",
62
+ * // };
63
+ *
36
64
  * ```
37
65
  *
38
66
  * @param ListChangesetsCommandInput - {@link ListChangesetsCommandInput}
@@ -60,6 +88,8 @@ export interface ListChangesetsCommandOutput extends ListChangesetsResponse, __M
60
88
  * @throws {@link ValidationException} (client fault)
61
89
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
62
90
  *
91
+ * @throws {@link FinspaceDataServiceException}
92
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
63
93
  *
64
94
  */
65
95
  export declare class ListChangesetsCommand extends $Command<ListChangesetsCommandInput, ListChangesetsCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -33,6 +33,39 @@ export interface ListDataViewsCommandOutput extends ListDataViewsResponse, __Met
33
33
  * };
34
34
  * const command = new ListDataViewsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListDataViewsResponse
37
+ * // nextToken: "STRING_VALUE",
38
+ * // dataViews: [ // DataViewList
39
+ * // { // DataViewSummary
40
+ * // dataViewId: "STRING_VALUE",
41
+ * // dataViewArn: "STRING_VALUE",
42
+ * // datasetId: "STRING_VALUE",
43
+ * // asOfTimestamp: Number("long"),
44
+ * // partitionColumns: [ // PartitionColumnList
45
+ * // "STRING_VALUE",
46
+ * // ],
47
+ * // sortColumns: [ // SortColumnList
48
+ * // "STRING_VALUE",
49
+ * // ],
50
+ * // status: "STRING_VALUE",
51
+ * // errorInfo: { // DataViewErrorInfo
52
+ * // errorMessage: "STRING_VALUE",
53
+ * // errorCategory: "STRING_VALUE",
54
+ * // },
55
+ * // destinationTypeProperties: { // DataViewDestinationTypeParams
56
+ * // destinationType: "STRING_VALUE", // required
57
+ * // s3DestinationExportFileFormat: "STRING_VALUE",
58
+ * // s3DestinationExportFileFormatOptions: { // S3DestinationFormatOptions
59
+ * // "<keys>": "STRING_VALUE",
60
+ * // },
61
+ * // },
62
+ * // autoUpdate: true || false,
63
+ * // createTime: Number("long"),
64
+ * // lastModifiedTime: Number("long"),
65
+ * // },
66
+ * // ],
67
+ * // };
68
+ *
36
69
  * ```
37
70
  *
38
71
  * @param ListDataViewsCommandInput - {@link ListDataViewsCommandInput}
@@ -57,6 +90,8 @@ export interface ListDataViewsCommandOutput extends ListDataViewsResponse, __Met
57
90
  * @throws {@link ValidationException} (client fault)
58
91
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
59
92
  *
93
+ * @throws {@link FinspaceDataServiceException}
94
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
60
95
  *
61
96
  */
62
97
  export declare class ListDataViewsCommand extends $Command<ListDataViewsCommandInput, ListDataViewsCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -32,6 +32,41 @@ export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __Metad
32
32
  * };
33
33
  * const command = new ListDatasetsCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // ListDatasetsResponse
36
+ * // datasets: [ // DatasetList
37
+ * // { // Dataset
38
+ * // datasetId: "STRING_VALUE",
39
+ * // datasetArn: "STRING_VALUE",
40
+ * // datasetTitle: "STRING_VALUE",
41
+ * // kind: "STRING_VALUE",
42
+ * // datasetDescription: "STRING_VALUE",
43
+ * // ownerInfo: { // DatasetOwnerInfo
44
+ * // name: "STRING_VALUE",
45
+ * // phoneNumber: "STRING_VALUE",
46
+ * // email: "STRING_VALUE",
47
+ * // },
48
+ * // createTime: Number("long"),
49
+ * // lastModifiedTime: Number("long"),
50
+ * // schemaDefinition: { // SchemaUnion
51
+ * // tabularSchemaConfig: { // SchemaDefinition
52
+ * // columns: [ // ColumnList
53
+ * // { // ColumnDefinition
54
+ * // dataType: "STRING_VALUE",
55
+ * // columnName: "STRING_VALUE",
56
+ * // columnDescription: "STRING_VALUE",
57
+ * // },
58
+ * // ],
59
+ * // primaryKeyColumns: [ // ColumnNameList
60
+ * // "STRING_VALUE",
61
+ * // ],
62
+ * // },
63
+ * // },
64
+ * // alias: "STRING_VALUE",
65
+ * // },
66
+ * // ],
67
+ * // nextToken: "STRING_VALUE",
68
+ * // };
69
+ *
35
70
  * ```
36
71
  *
37
72
  * @param ListDatasetsCommandInput - {@link ListDatasetsCommandInput}
@@ -56,6 +91,8 @@ export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __Metad
56
91
  * @throws {@link ValidationException} (client fault)
57
92
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
58
93
  *
94
+ * @throws {@link FinspaceDataServiceException}
95
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
59
96
  *
60
97
  */
61
98
  export declare class ListDatasetsCommand extends $Command<ListDatasetsCommandInput, ListDatasetsCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -33,6 +33,17 @@ export interface ListPermissionGroupsByUserCommandOutput extends ListPermissionG
33
33
  * };
34
34
  * const command = new ListPermissionGroupsByUserCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListPermissionGroupsByUserResponse
37
+ * // permissionGroups: [ // PermissionGroupByUserList
38
+ * // { // PermissionGroupByUser
39
+ * // permissionGroupId: "STRING_VALUE",
40
+ * // name: "STRING_VALUE",
41
+ * // membershipStatus: "STRING_VALUE",
42
+ * // },
43
+ * // ],
44
+ * // nextToken: "STRING_VALUE",
45
+ * // };
46
+ *
36
47
  * ```
37
48
  *
38
49
  * @param ListPermissionGroupsByUserCommandInput - {@link ListPermissionGroupsByUserCommandInput}
@@ -57,6 +68,8 @@ export interface ListPermissionGroupsByUserCommandOutput extends ListPermissionG
57
68
  * @throws {@link ValidationException} (client fault)
58
69
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
59
70
  *
71
+ * @throws {@link FinspaceDataServiceException}
72
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
60
73
  *
61
74
  */
62
75
  export declare class ListPermissionGroupsByUserCommand extends $Command<ListPermissionGroupsByUserCommandInput, ListPermissionGroupsByUserCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -32,6 +32,23 @@ export interface ListPermissionGroupsCommandOutput extends ListPermissionGroupsR
32
32
  * };
33
33
  * const command = new ListPermissionGroupsCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // ListPermissionGroupsResponse
36
+ * // permissionGroups: [ // PermissionGroupList
37
+ * // { // PermissionGroup
38
+ * // permissionGroupId: "STRING_VALUE",
39
+ * // name: "STRING_VALUE",
40
+ * // description: "STRING_VALUE",
41
+ * // applicationPermissions: [ // ApplicationPermissionList
42
+ * // "STRING_VALUE",
43
+ * // ],
44
+ * // createTime: Number("long"),
45
+ * // lastModifiedTime: Number("long"),
46
+ * // membershipStatus: "STRING_VALUE",
47
+ * // },
48
+ * // ],
49
+ * // nextToken: "STRING_VALUE",
50
+ * // };
51
+ *
35
52
  * ```
36
53
  *
37
54
  * @param ListPermissionGroupsCommandInput - {@link ListPermissionGroupsCommandInput}
@@ -53,6 +70,8 @@ export interface ListPermissionGroupsCommandOutput extends ListPermissionGroupsR
53
70
  * @throws {@link ValidationException} (client fault)
54
71
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
55
72
  *
73
+ * @throws {@link FinspaceDataServiceException}
74
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
56
75
  *
57
76
  */
58
77
  export declare class ListPermissionGroupsCommand extends $Command<ListPermissionGroupsCommandInput, ListPermissionGroupsCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -33,6 +33,23 @@ export interface ListUsersByPermissionGroupCommandOutput extends ListUsersByPerm
33
33
  * };
34
34
  * const command = new ListUsersByPermissionGroupCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListUsersByPermissionGroupResponse
37
+ * // users: [ // UserByPermissionGroupList
38
+ * // { // UserByPermissionGroup
39
+ * // userId: "STRING_VALUE",
40
+ * // status: "STRING_VALUE",
41
+ * // firstName: "STRING_VALUE",
42
+ * // lastName: "STRING_VALUE",
43
+ * // emailAddress: "STRING_VALUE",
44
+ * // type: "STRING_VALUE",
45
+ * // apiAccess: "STRING_VALUE",
46
+ * // apiAccessPrincipalArn: "STRING_VALUE",
47
+ * // membershipStatus: "STRING_VALUE",
48
+ * // },
49
+ * // ],
50
+ * // nextToken: "STRING_VALUE",
51
+ * // };
52
+ *
36
53
  * ```
37
54
  *
38
55
  * @param ListUsersByPermissionGroupCommandInput - {@link ListUsersByPermissionGroupCommandInput}
@@ -57,6 +74,8 @@ export interface ListUsersByPermissionGroupCommandOutput extends ListUsersByPerm
57
74
  * @throws {@link ValidationException} (client fault)
58
75
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
59
76
  *
77
+ * @throws {@link FinspaceDataServiceException}
78
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
60
79
  *
61
80
  */
62
81
  export declare class ListUsersByPermissionGroupCommand extends $Command<ListUsersByPermissionGroupCommandInput, ListUsersByPermissionGroupCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -32,6 +32,27 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea
32
32
  * };
33
33
  * const command = new ListUsersCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // ListUsersResponse
36
+ * // users: [ // UserList
37
+ * // { // User
38
+ * // userId: "STRING_VALUE",
39
+ * // status: "STRING_VALUE",
40
+ * // firstName: "STRING_VALUE",
41
+ * // lastName: "STRING_VALUE",
42
+ * // emailAddress: "STRING_VALUE",
43
+ * // type: "STRING_VALUE",
44
+ * // apiAccess: "STRING_VALUE",
45
+ * // apiAccessPrincipalArn: "STRING_VALUE",
46
+ * // createTime: Number("long"),
47
+ * // lastEnabledTime: Number("long"),
48
+ * // lastDisabledTime: Number("long"),
49
+ * // lastModifiedTime: Number("long"),
50
+ * // lastLoginTime: Number("long"),
51
+ * // },
52
+ * // ],
53
+ * // nextToken: "STRING_VALUE",
54
+ * // };
55
+ *
35
56
  * ```
36
57
  *
37
58
  * @param ListUsersCommandInput - {@link ListUsersCommandInput}
@@ -53,6 +74,8 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea
53
74
  * @throws {@link ValidationException} (client fault)
54
75
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
55
76
  *
77
+ * @throws {@link FinspaceDataServiceException}
78
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
56
79
  *
57
80
  */
58
81
  export declare class ListUsersCommand extends $Command<ListUsersCommandInput, ListUsersCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -32,6 +32,11 @@ export interface ResetUserPasswordCommandOutput extends ResetUserPasswordRespons
32
32
  * };
33
33
  * const command = new ResetUserPasswordCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // ResetUserPasswordResponse
36
+ * // userId: "STRING_VALUE",
37
+ * // temporaryPassword: "STRING_VALUE",
38
+ * // };
39
+ *
35
40
  * ```
36
41
  *
37
42
  * @param ResetUserPasswordCommandInput - {@link ResetUserPasswordCommandInput}
@@ -59,6 +64,8 @@ export interface ResetUserPasswordCommandOutput extends ResetUserPasswordRespons
59
64
  * @throws {@link ValidationException} (client fault)
60
65
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
61
66
  *
67
+ * @throws {@link FinspaceDataServiceException}
68
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
62
69
  *
63
70
  */
64
71
  export declare class ResetUserPasswordCommand extends $Command<ResetUserPasswordCommandInput, ResetUserPasswordCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -39,6 +39,11 @@ export interface UpdateChangesetCommandOutput extends UpdateChangesetResponse, _
39
39
  * };
40
40
  * const command = new UpdateChangesetCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // { // UpdateChangesetResponse
43
+ * // changesetId: "STRING_VALUE",
44
+ * // datasetId: "STRING_VALUE",
45
+ * // };
46
+ *
42
47
  * ```
43
48
  *
44
49
  * @param UpdateChangesetCommandInput - {@link UpdateChangesetCommandInput}
@@ -66,6 +71,8 @@ export interface UpdateChangesetCommandOutput extends UpdateChangesetResponse, _
66
71
  * @throws {@link ValidationException} (client fault)
67
72
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
68
73
  *
74
+ * @throws {@link FinspaceDataServiceException}
75
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
69
76
  *
70
77
  */
71
78
  export declare class UpdateChangesetCommand extends $Command<UpdateChangesetCommandInput, UpdateChangesetCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -50,6 +50,10 @@ export interface UpdateDatasetCommandOutput extends UpdateDatasetResponse, __Met
50
50
  * };
51
51
  * const command = new UpdateDatasetCommand(input);
52
52
  * const response = await client.send(command);
53
+ * // { // UpdateDatasetResponse
54
+ * // datasetId: "STRING_VALUE",
55
+ * // };
56
+ *
53
57
  * ```
54
58
  *
55
59
  * @param UpdateDatasetCommandInput - {@link UpdateDatasetCommandInput}
@@ -77,6 +81,8 @@ export interface UpdateDatasetCommandOutput extends UpdateDatasetResponse, __Met
77
81
  * @throws {@link ValidationException} (client fault)
78
82
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
79
83
  *
84
+ * @throws {@link FinspaceDataServiceException}
85
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
80
86
  *
81
87
  */
82
88
  export declare class UpdateDatasetCommand extends $Command<UpdateDatasetCommandInput, UpdateDatasetCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -37,6 +37,10 @@ export interface UpdatePermissionGroupCommandOutput extends UpdatePermissionGrou
37
37
  * };
38
38
  * const command = new UpdatePermissionGroupCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // UpdatePermissionGroupResponse
41
+ * // permissionGroupId: "STRING_VALUE",
42
+ * // };
43
+ *
40
44
  * ```
41
45
  *
42
46
  * @param UpdatePermissionGroupCommandInput - {@link UpdatePermissionGroupCommandInput}
@@ -64,6 +68,8 @@ export interface UpdatePermissionGroupCommandOutput extends UpdatePermissionGrou
64
68
  * @throws {@link ValidationException} (client fault)
65
69
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
66
70
  *
71
+ * @throws {@link FinspaceDataServiceException}
72
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
67
73
  *
68
74
  */
69
75
  export declare class UpdatePermissionGroupCommand extends $Command<UpdatePermissionGroupCommandInput, UpdatePermissionGroupCommandOutput, FinspaceDataClientResolvedConfig> {
@@ -37,6 +37,10 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB
37
37
  * };
38
38
  * const command = new UpdateUserCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // UpdateUserResponse
41
+ * // userId: "STRING_VALUE",
42
+ * // };
43
+ *
40
44
  * ```
41
45
  *
42
46
  * @param UpdateUserCommandInput - {@link UpdateUserCommandInput}
@@ -64,6 +68,8 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB
64
68
  * @throws {@link ValidationException} (client fault)
65
69
  * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
66
70
  *
71
+ * @throws {@link FinspaceDataServiceException}
72
+ * <p>Base exception class for all service exceptions from FinspaceData service.</p>
67
73
  *
68
74
  */
69
75
  export declare class UpdateUserCommand extends $Command<UpdateUserCommandInput, UpdateUserCommandOutput, FinspaceDataClientResolvedConfig> {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-finspace-data",
3
3
  "description": "AWS SDK for JavaScript Finspace Data Client for Node.js, Browser and React Native",
4
- "version": "3.325.0",
4
+ "version": "3.326.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.325.0",
24
+ "@aws-sdk/client-sts": "3.326.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.325.0",
26
+ "@aws-sdk/credential-provider-node": "3.326.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.310.0",
28
28
  "@aws-sdk/hash-node": "3.310.0",
29
29
  "@aws-sdk/invalid-dependency": "3.310.0",