@aws-sdk/client-finspace-data 3.306.0 → 3.310.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/commands/AssociateUserToPermissionGroupCommand.js +2 -2
- package/dist-cjs/commands/CreateChangesetCommand.js +2 -2
- package/dist-cjs/commands/CreateDataViewCommand.js +2 -2
- package/dist-cjs/commands/CreateDatasetCommand.js +2 -2
- package/dist-cjs/commands/CreatePermissionGroupCommand.js +2 -2
- package/dist-cjs/commands/CreateUserCommand.js +2 -2
- package/dist-cjs/commands/DeleteDatasetCommand.js +2 -2
- package/dist-cjs/commands/DeletePermissionGroupCommand.js +2 -2
- package/dist-cjs/commands/DisableUserCommand.js +2 -2
- package/dist-cjs/commands/DisassociateUserFromPermissionGroupCommand.js +2 -2
- package/dist-cjs/commands/EnableUserCommand.js +2 -2
- package/dist-cjs/commands/GetChangesetCommand.js +2 -2
- package/dist-cjs/commands/GetDataViewCommand.js +2 -2
- package/dist-cjs/commands/GetDatasetCommand.js +2 -2
- package/dist-cjs/commands/GetExternalDataViewAccessDetailsCommand.js +2 -2
- package/dist-cjs/commands/GetPermissionGroupCommand.js +2 -2
- package/dist-cjs/commands/GetProgrammaticAccessCredentialsCommand.js +2 -2
- package/dist-cjs/commands/GetUserCommand.js +2 -2
- package/dist-cjs/commands/GetWorkingLocationCommand.js +2 -2
- package/dist-cjs/commands/ListChangesetsCommand.js +2 -2
- package/dist-cjs/commands/ListDataViewsCommand.js +2 -2
- package/dist-cjs/commands/ListDatasetsCommand.js +2 -2
- package/dist-cjs/commands/ListPermissionGroupsByUserCommand.js +2 -2
- package/dist-cjs/commands/ListPermissionGroupsCommand.js +2 -2
- package/dist-cjs/commands/ListUsersByPermissionGroupCommand.js +2 -2
- package/dist-cjs/commands/ListUsersCommand.js +2 -2
- package/dist-cjs/commands/ResetUserPasswordCommand.js +2 -2
- package/dist-cjs/commands/UpdateChangesetCommand.js +2 -2
- package/dist-cjs/commands/UpdateDatasetCommand.js +2 -2
- package/dist-cjs/commands/UpdatePermissionGroupCommand.js +2 -2
- package/dist-cjs/commands/UpdateUserCommand.js +2 -2
- package/dist-cjs/protocols/Aws_restJson1.js +479 -501
- package/dist-es/commands/AssociateUserToPermissionGroupCommand.js +3 -3
- package/dist-es/commands/CreateChangesetCommand.js +3 -3
- package/dist-es/commands/CreateDataViewCommand.js +3 -3
- package/dist-es/commands/CreateDatasetCommand.js +3 -3
- package/dist-es/commands/CreatePermissionGroupCommand.js +3 -3
- package/dist-es/commands/CreateUserCommand.js +3 -3
- package/dist-es/commands/DeleteDatasetCommand.js +3 -3
- package/dist-es/commands/DeletePermissionGroupCommand.js +3 -3
- package/dist-es/commands/DisableUserCommand.js +3 -3
- package/dist-es/commands/DisassociateUserFromPermissionGroupCommand.js +3 -3
- package/dist-es/commands/EnableUserCommand.js +3 -3
- package/dist-es/commands/GetChangesetCommand.js +3 -3
- package/dist-es/commands/GetDataViewCommand.js +3 -3
- package/dist-es/commands/GetDatasetCommand.js +3 -3
- package/dist-es/commands/GetExternalDataViewAccessDetailsCommand.js +3 -3
- package/dist-es/commands/GetPermissionGroupCommand.js +3 -3
- package/dist-es/commands/GetProgrammaticAccessCredentialsCommand.js +3 -3
- package/dist-es/commands/GetUserCommand.js +3 -3
- package/dist-es/commands/GetWorkingLocationCommand.js +3 -3
- package/dist-es/commands/ListChangesetsCommand.js +3 -3
- package/dist-es/commands/ListDataViewsCommand.js +3 -3
- package/dist-es/commands/ListDatasetsCommand.js +3 -3
- package/dist-es/commands/ListPermissionGroupsByUserCommand.js +3 -3
- package/dist-es/commands/ListPermissionGroupsCommand.js +3 -3
- package/dist-es/commands/ListUsersByPermissionGroupCommand.js +3 -3
- package/dist-es/commands/ListUsersCommand.js +3 -3
- package/dist-es/commands/ResetUserPasswordCommand.js +3 -3
- package/dist-es/commands/UpdateChangesetCommand.js +3 -3
- package/dist-es/commands/UpdateDatasetCommand.js +3 -3
- package/dist-es/commands/UpdatePermissionGroupCommand.js +3 -3
- package/dist-es/commands/UpdateUserCommand.js +3 -3
- package/dist-es/protocols/Aws_restJson1.js +415 -437
- package/dist-types/protocols/Aws_restJson1.d.ts +248 -62
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +62 -62
- package/package.json +35 -35
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_UpdateDatasetCommand, se_UpdateDatasetCommand } from "../protocols/Aws_restJson1";
|
|
5
5
|
export class UpdateDatasetCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -33,9 +33,9 @@ export class UpdateDatasetCommand extends $Command {
|
|
|
33
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
34
34
|
}
|
|
35
35
|
serialize(input, context) {
|
|
36
|
-
return
|
|
36
|
+
return se_UpdateDatasetCommand(input, context);
|
|
37
37
|
}
|
|
38
38
|
deserialize(output, context) {
|
|
39
|
-
return
|
|
39
|
+
return de_UpdateDatasetCommand(output, context);
|
|
40
40
|
}
|
|
41
41
|
}
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { UpdatePermissionGroupRequestFilterSensitiveLog, } from "../models/models_0";
|
|
5
|
-
import {
|
|
5
|
+
import { de_UpdatePermissionGroupCommand, se_UpdatePermissionGroupCommand } from "../protocols/Aws_restJson1";
|
|
6
6
|
export class UpdatePermissionGroupCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
8
8
|
return {
|
|
@@ -34,9 +34,9 @@ export class UpdatePermissionGroupCommand extends $Command {
|
|
|
34
34
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
35
35
|
}
|
|
36
36
|
serialize(input, context) {
|
|
37
|
-
return
|
|
37
|
+
return se_UpdatePermissionGroupCommand(input, context);
|
|
38
38
|
}
|
|
39
39
|
deserialize(output, context) {
|
|
40
|
-
return
|
|
40
|
+
return de_UpdatePermissionGroupCommand(output, context);
|
|
41
41
|
}
|
|
42
42
|
}
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { UpdateUserRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
|
-
import {
|
|
5
|
+
import { de_UpdateUserCommand, se_UpdateUserCommand } from "../protocols/Aws_restJson1";
|
|
6
6
|
export class UpdateUserCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
8
8
|
return {
|
|
@@ -34,9 +34,9 @@ export class UpdateUserCommand extends $Command {
|
|
|
34
34
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
35
35
|
}
|
|
36
36
|
serialize(input, context) {
|
|
37
|
-
return
|
|
37
|
+
return se_UpdateUserCommand(input, context);
|
|
38
38
|
}
|
|
39
39
|
deserialize(output, context) {
|
|
40
|
-
return
|
|
40
|
+
return de_UpdateUserCommand(output, context);
|
|
41
41
|
}
|
|
42
42
|
}
|