@aws-sdk/client-finspace-data 3.299.0 → 3.301.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 +5 -0
  2. package/dist-types/commands/CreateChangesetCommand.d.ts +11 -0
  3. package/dist-types/commands/CreateDataViewCommand.d.ts +19 -0
  4. package/dist-types/commands/CreateDatasetCommand.d.ts +34 -0
  5. package/dist-types/commands/CreatePermissionGroupCommand.d.ts +8 -0
  6. package/dist-types/commands/CreateUserCommand.d.ts +9 -0
  7. package/dist-types/commands/DeleteDatasetCommand.d.ts +4 -0
  8. package/dist-types/commands/DeletePermissionGroupCommand.d.ts +4 -0
  9. package/dist-types/commands/DisableUserCommand.d.ts +4 -0
  10. package/dist-types/commands/DisassociateUserFromPermissionGroupCommand.d.ts +5 -0
  11. package/dist-types/commands/EnableUserCommand.d.ts +4 -0
  12. package/dist-types/commands/GetChangesetCommand.d.ts +4 -0
  13. package/dist-types/commands/GetDataViewCommand.d.ts +4 -0
  14. package/dist-types/commands/GetDatasetCommand.d.ts +3 -0
  15. package/dist-types/commands/GetExternalDataViewAccessDetailsCommand.d.ts +4 -0
  16. package/dist-types/commands/GetPermissionGroupCommand.d.ts +3 -0
  17. package/dist-types/commands/GetProgrammaticAccessCredentialsCommand.d.ts +4 -0
  18. package/dist-types/commands/GetUserCommand.d.ts +3 -0
  19. package/dist-types/commands/GetWorkingLocationCommand.d.ts +3 -0
  20. package/dist-types/commands/ListChangesetsCommand.d.ts +5 -0
  21. package/dist-types/commands/ListDataViewsCommand.d.ts +5 -0
  22. package/dist-types/commands/ListDatasetsCommand.d.ts +4 -0
  23. package/dist-types/commands/ListPermissionGroupsByUserCommand.d.ts +5 -0
  24. package/dist-types/commands/ListPermissionGroupsCommand.d.ts +4 -0
  25. package/dist-types/commands/ListUsersByPermissionGroupCommand.d.ts +5 -0
  26. package/dist-types/commands/ListUsersCommand.d.ts +4 -0
  27. package/dist-types/commands/ResetUserPasswordCommand.d.ts +4 -0
  28. package/dist-types/commands/UpdateChangesetCommand.d.ts +11 -0
  29. package/dist-types/commands/UpdateDatasetCommand.d.ts +22 -0
  30. package/dist-types/commands/UpdatePermissionGroupCommand.d.ts +9 -0
  31. package/dist-types/commands/UpdateUserCommand.d.ts +9 -0
  32. package/package.json +8 -8
@@ -26,6 +26,11 @@ export interface AssociateUserToPermissionGroupCommandOutput extends AssociateUs
26
26
  * import { FinspaceDataClient, AssociateUserToPermissionGroupCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
27
27
  * // const { FinspaceDataClient, AssociateUserToPermissionGroupCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
28
28
  * const client = new FinspaceDataClient(config);
29
+ * const input = { // AssociateUserToPermissionGroupRequest
30
+ * permissionGroupId: "STRING_VALUE", // required
31
+ * userId: "STRING_VALUE", // required
32
+ * clientToken: "STRING_VALUE",
33
+ * };
29
34
  * const command = new AssociateUserToPermissionGroupCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,17 @@ export interface CreateChangesetCommandOutput extends CreateChangesetResponse, _
26
26
  * import { FinspaceDataClient, CreateChangesetCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
27
27
  * // const { FinspaceDataClient, CreateChangesetCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
28
28
  * const client = new FinspaceDataClient(config);
29
+ * const input = { // CreateChangesetRequest
30
+ * clientToken: "STRING_VALUE",
31
+ * datasetId: "STRING_VALUE", // required
32
+ * changeType: "STRING_VALUE", // required
33
+ * sourceParams: { // SourceParams // required
34
+ * "<keys>": "STRING_VALUE",
35
+ * },
36
+ * formatParams: { // FormatParams // required
37
+ * "<keys>": "STRING_VALUE",
38
+ * },
39
+ * };
29
40
  * const command = new CreateChangesetCommand(input);
30
41
  * const response = await client.send(command);
31
42
  * ```
@@ -26,6 +26,25 @@ export interface CreateDataViewCommandOutput extends CreateDataViewResponse, __M
26
26
  * import { FinspaceDataClient, CreateDataViewCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
27
27
  * // const { FinspaceDataClient, CreateDataViewCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
28
28
  * const client = new FinspaceDataClient(config);
29
+ * const input = { // CreateDataViewRequest
30
+ * clientToken: "STRING_VALUE",
31
+ * datasetId: "STRING_VALUE", // required
32
+ * autoUpdate: true || false,
33
+ * sortColumns: [ // SortColumnList
34
+ * "STRING_VALUE",
35
+ * ],
36
+ * partitionColumns: [ // PartitionColumnList
37
+ * "STRING_VALUE",
38
+ * ],
39
+ * asOfTimestamp: Number("long"),
40
+ * destinationTypeParams: { // DataViewDestinationTypeParams
41
+ * destinationType: "STRING_VALUE", // required
42
+ * s3DestinationExportFileFormat: "STRING_VALUE",
43
+ * s3DestinationExportFileFormatOptions: { // S3DestinationFormatOptions
44
+ * "<keys>": "STRING_VALUE",
45
+ * },
46
+ * },
47
+ * };
29
48
  * const command = new CreateDataViewCommand(input);
30
49
  * const response = await client.send(command);
31
50
  * ```
@@ -26,6 +26,40 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met
26
26
  * import { FinspaceDataClient, CreateDatasetCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
27
27
  * // const { FinspaceDataClient, CreateDatasetCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
28
28
  * const client = new FinspaceDataClient(config);
29
+ * const input = { // CreateDatasetRequest
30
+ * clientToken: "STRING_VALUE",
31
+ * datasetTitle: "STRING_VALUE", // required
32
+ * kind: "STRING_VALUE", // required
33
+ * datasetDescription: "STRING_VALUE",
34
+ * ownerInfo: { // DatasetOwnerInfo
35
+ * name: "STRING_VALUE",
36
+ * phoneNumber: "STRING_VALUE",
37
+ * email: "STRING_VALUE",
38
+ * },
39
+ * permissionGroupParams: { // PermissionGroupParams
40
+ * permissionGroupId: "STRING_VALUE",
41
+ * datasetPermissions: [ // ResourcePermissionsList
42
+ * { // ResourcePermission
43
+ * permission: "STRING_VALUE",
44
+ * },
45
+ * ],
46
+ * },
47
+ * alias: "STRING_VALUE",
48
+ * schemaDefinition: { // SchemaUnion
49
+ * tabularSchemaConfig: { // SchemaDefinition
50
+ * columns: [ // ColumnList
51
+ * { // ColumnDefinition
52
+ * dataType: "STRING_VALUE",
53
+ * columnName: "STRING_VALUE",
54
+ * columnDescription: "STRING_VALUE",
55
+ * },
56
+ * ],
57
+ * primaryKeyColumns: [ // ColumnNameList
58
+ * "STRING_VALUE",
59
+ * ],
60
+ * },
61
+ * },
62
+ * };
29
63
  * const command = new CreateDatasetCommand(input);
30
64
  * const response = await client.send(command);
31
65
  * ```
@@ -26,6 +26,14 @@ export interface CreatePermissionGroupCommandOutput extends CreatePermissionGrou
26
26
  * import { FinspaceDataClient, CreatePermissionGroupCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
27
27
  * // const { FinspaceDataClient, CreatePermissionGroupCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
28
28
  * const client = new FinspaceDataClient(config);
29
+ * const input = { // CreatePermissionGroupRequest
30
+ * name: "STRING_VALUE", // required
31
+ * description: "STRING_VALUE",
32
+ * applicationPermissions: [ // ApplicationPermissionList // required
33
+ * "STRING_VALUE",
34
+ * ],
35
+ * clientToken: "STRING_VALUE",
36
+ * };
29
37
  * const command = new CreatePermissionGroupCommand(input);
30
38
  * const response = await client.send(command);
31
39
  * ```
@@ -26,6 +26,15 @@ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataB
26
26
  * import { FinspaceDataClient, CreateUserCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
27
27
  * // const { FinspaceDataClient, CreateUserCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
28
28
  * const client = new FinspaceDataClient(config);
29
+ * const input = { // CreateUserRequest
30
+ * emailAddress: "STRING_VALUE", // required
31
+ * type: "STRING_VALUE", // required
32
+ * firstName: "STRING_VALUE",
33
+ * lastName: "STRING_VALUE",
34
+ * ApiAccess: "STRING_VALUE",
35
+ * apiAccessPrincipalArn: "STRING_VALUE",
36
+ * clientToken: "STRING_VALUE",
37
+ * };
29
38
  * const command = new CreateUserCommand(input);
30
39
  * const response = await client.send(command);
31
40
  * ```
@@ -26,6 +26,10 @@ export interface DeleteDatasetCommandOutput extends DeleteDatasetResponse, __Met
26
26
  * import { FinspaceDataClient, DeleteDatasetCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
27
27
  * // const { FinspaceDataClient, DeleteDatasetCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
28
28
  * const client = new FinspaceDataClient(config);
29
+ * const input = { // DeleteDatasetRequest
30
+ * clientToken: "STRING_VALUE",
31
+ * datasetId: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DeleteDatasetCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,10 @@ export interface DeletePermissionGroupCommandOutput extends DeletePermissionGrou
26
26
  * import { FinspaceDataClient, DeletePermissionGroupCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
27
27
  * // const { FinspaceDataClient, DeletePermissionGroupCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
28
28
  * const client = new FinspaceDataClient(config);
29
+ * const input = { // DeletePermissionGroupRequest
30
+ * permissionGroupId: "STRING_VALUE", // required
31
+ * clientToken: "STRING_VALUE",
32
+ * };
29
33
  * const command = new DeletePermissionGroupCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,10 @@ export interface DisableUserCommandOutput extends DisableUserResponse, __Metadat
26
26
  * import { FinspaceDataClient, DisableUserCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
27
27
  * // const { FinspaceDataClient, DisableUserCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
28
28
  * const client = new FinspaceDataClient(config);
29
+ * const input = { // DisableUserRequest
30
+ * userId: "STRING_VALUE", // required
31
+ * clientToken: "STRING_VALUE",
32
+ * };
29
33
  * const command = new DisableUserCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,11 @@ export interface DisassociateUserFromPermissionGroupCommandOutput extends Disass
26
26
  * import { FinspaceDataClient, DisassociateUserFromPermissionGroupCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
27
27
  * // const { FinspaceDataClient, DisassociateUserFromPermissionGroupCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
28
28
  * const client = new FinspaceDataClient(config);
29
+ * const input = { // DisassociateUserFromPermissionGroupRequest
30
+ * permissionGroupId: "STRING_VALUE", // required
31
+ * userId: "STRING_VALUE", // required
32
+ * clientToken: "STRING_VALUE",
33
+ * };
29
34
  * const command = new DisassociateUserFromPermissionGroupCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,10 @@ export interface EnableUserCommandOutput extends EnableUserResponse, __MetadataB
26
26
  * import { FinspaceDataClient, EnableUserCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
27
27
  * // const { FinspaceDataClient, EnableUserCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
28
28
  * const client = new FinspaceDataClient(config);
29
+ * const input = { // EnableUserRequest
30
+ * userId: "STRING_VALUE", // required
31
+ * clientToken: "STRING_VALUE",
32
+ * };
29
33
  * const command = new EnableUserCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,10 @@ export interface GetChangesetCommandOutput extends GetChangesetResponse, __Metad
26
26
  * import { FinspaceDataClient, GetChangesetCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
27
27
  * // const { FinspaceDataClient, GetChangesetCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
28
28
  * const client = new FinspaceDataClient(config);
29
+ * const input = { // GetChangesetRequest
30
+ * datasetId: "STRING_VALUE", // required
31
+ * changesetId: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new GetChangesetCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,10 @@ export interface GetDataViewCommandOutput extends GetDataViewResponse, __Metadat
26
26
  * import { FinspaceDataClient, GetDataViewCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
27
27
  * // const { FinspaceDataClient, GetDataViewCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
28
28
  * const client = new FinspaceDataClient(config);
29
+ * const input = { // GetDataViewRequest
30
+ * dataViewId: "STRING_VALUE", // required
31
+ * datasetId: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new GetDataViewCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,9 @@ export interface GetDatasetCommandOutput extends GetDatasetResponse, __MetadataB
26
26
  * import { FinspaceDataClient, GetDatasetCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
27
27
  * // const { FinspaceDataClient, GetDatasetCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
28
28
  * const client = new FinspaceDataClient(config);
29
+ * const input = { // GetDatasetRequest
30
+ * datasetId: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetDatasetCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -34,6 +34,10 @@ export interface GetExternalDataViewAccessDetailsCommandOutput extends GetExtern
34
34
  * import { FinspaceDataClient, GetExternalDataViewAccessDetailsCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
35
35
  * // const { FinspaceDataClient, GetExternalDataViewAccessDetailsCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
36
36
  * const client = new FinspaceDataClient(config);
37
+ * const input = { // GetExternalDataViewAccessDetailsRequest
38
+ * dataViewId: "STRING_VALUE", // required
39
+ * datasetId: "STRING_VALUE", // required
40
+ * };
37
41
  * const command = new GetExternalDataViewAccessDetailsCommand(input);
38
42
  * const response = await client.send(command);
39
43
  * ```
@@ -26,6 +26,9 @@ export interface GetPermissionGroupCommandOutput extends GetPermissionGroupRespo
26
26
  * import { FinspaceDataClient, GetPermissionGroupCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
27
27
  * // const { FinspaceDataClient, GetPermissionGroupCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
28
28
  * const client = new FinspaceDataClient(config);
29
+ * const input = { // GetPermissionGroupRequest
30
+ * permissionGroupId: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetPermissionGroupCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,10 @@ export interface GetProgrammaticAccessCredentialsCommandOutput extends GetProgra
26
26
  * import { FinspaceDataClient, GetProgrammaticAccessCredentialsCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
27
27
  * // const { FinspaceDataClient, GetProgrammaticAccessCredentialsCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
28
28
  * const client = new FinspaceDataClient(config);
29
+ * const input = { // GetProgrammaticAccessCredentialsRequest
30
+ * durationInMinutes: Number("long"),
31
+ * environmentId: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new GetProgrammaticAccessCredentialsCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,9 @@ export interface GetUserCommandOutput extends GetUserResponse, __MetadataBearer
26
26
  * import { FinspaceDataClient, GetUserCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
27
27
  * // const { FinspaceDataClient, GetUserCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
28
28
  * const client = new FinspaceDataClient(config);
29
+ * const input = { // GetUserRequest
30
+ * userId: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetUserCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -27,6 +27,9 @@ export interface GetWorkingLocationCommandOutput extends GetWorkingLocationRespo
27
27
  * import { FinspaceDataClient, GetWorkingLocationCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
28
28
  * // const { FinspaceDataClient, GetWorkingLocationCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
29
29
  * const client = new FinspaceDataClient(config);
30
+ * const input = { // GetWorkingLocationRequest
31
+ * locationType: "STRING_VALUE",
32
+ * };
30
33
  * const command = new GetWorkingLocationCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -26,6 +26,11 @@ export interface ListChangesetsCommandOutput extends ListChangesetsResponse, __M
26
26
  * import { FinspaceDataClient, ListChangesetsCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
27
27
  * // const { FinspaceDataClient, ListChangesetsCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
28
28
  * const client = new FinspaceDataClient(config);
29
+ * const input = { // ListChangesetsRequest
30
+ * datasetId: "STRING_VALUE", // required
31
+ * maxResults: Number("int"),
32
+ * nextToken: "STRING_VALUE",
33
+ * };
29
34
  * const command = new ListChangesetsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,11 @@ export interface ListDataViewsCommandOutput extends ListDataViewsResponse, __Met
26
26
  * import { FinspaceDataClient, ListDataViewsCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
27
27
  * // const { FinspaceDataClient, ListDataViewsCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
28
28
  * const client = new FinspaceDataClient(config);
29
+ * const input = { // ListDataViewsRequest
30
+ * datasetId: "STRING_VALUE", // required
31
+ * nextToken: "STRING_VALUE",
32
+ * maxResults: Number("int"),
33
+ * };
29
34
  * const command = new ListDataViewsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,10 @@ export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __Metad
26
26
  * import { FinspaceDataClient, ListDatasetsCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
27
27
  * // const { FinspaceDataClient, ListDatasetsCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
28
28
  * const client = new FinspaceDataClient(config);
29
+ * const input = { // ListDatasetsRequest
30
+ * nextToken: "STRING_VALUE",
31
+ * maxResults: Number("int"),
32
+ * };
29
33
  * const command = new ListDatasetsCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,11 @@ export interface ListPermissionGroupsByUserCommandOutput extends ListPermissionG
26
26
  * import { FinspaceDataClient, ListPermissionGroupsByUserCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
27
27
  * // const { FinspaceDataClient, ListPermissionGroupsByUserCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
28
28
  * const client = new FinspaceDataClient(config);
29
+ * const input = { // ListPermissionGroupsByUserRequest
30
+ * userId: "STRING_VALUE", // required
31
+ * nextToken: "STRING_VALUE",
32
+ * maxResults: Number("int"), // required
33
+ * };
29
34
  * const command = new ListPermissionGroupsByUserCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,10 @@ export interface ListPermissionGroupsCommandOutput extends ListPermissionGroupsR
26
26
  * import { FinspaceDataClient, ListPermissionGroupsCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
27
27
  * // const { FinspaceDataClient, ListPermissionGroupsCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
28
28
  * const client = new FinspaceDataClient(config);
29
+ * const input = { // ListPermissionGroupsRequest
30
+ * nextToken: "STRING_VALUE",
31
+ * maxResults: Number("int"), // required
32
+ * };
29
33
  * const command = new ListPermissionGroupsCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,11 @@ export interface ListUsersByPermissionGroupCommandOutput extends ListUsersByPerm
26
26
  * import { FinspaceDataClient, ListUsersByPermissionGroupCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
27
27
  * // const { FinspaceDataClient, ListUsersByPermissionGroupCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
28
28
  * const client = new FinspaceDataClient(config);
29
+ * const input = { // ListUsersByPermissionGroupRequest
30
+ * permissionGroupId: "STRING_VALUE", // required
31
+ * nextToken: "STRING_VALUE",
32
+ * maxResults: Number("int"), // required
33
+ * };
29
34
  * const command = new ListUsersByPermissionGroupCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,10 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea
26
26
  * import { FinspaceDataClient, ListUsersCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
27
27
  * // const { FinspaceDataClient, ListUsersCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
28
28
  * const client = new FinspaceDataClient(config);
29
+ * const input = { // ListUsersRequest
30
+ * nextToken: "STRING_VALUE",
31
+ * maxResults: Number("int"), // required
32
+ * };
29
33
  * const command = new ListUsersCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,10 @@ export interface ResetUserPasswordCommandOutput extends ResetUserPasswordRespons
26
26
  * import { FinspaceDataClient, ResetUserPasswordCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
27
27
  * // const { FinspaceDataClient, ResetUserPasswordCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
28
28
  * const client = new FinspaceDataClient(config);
29
+ * const input = { // ResetUserPasswordRequest
30
+ * userId: "STRING_VALUE", // required
31
+ * clientToken: "STRING_VALUE",
32
+ * };
29
33
  * const command = new ResetUserPasswordCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,17 @@ export interface UpdateChangesetCommandOutput extends UpdateChangesetResponse, _
26
26
  * import { FinspaceDataClient, UpdateChangesetCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
27
27
  * // const { FinspaceDataClient, UpdateChangesetCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
28
28
  * const client = new FinspaceDataClient(config);
29
+ * const input = { // UpdateChangesetRequest
30
+ * clientToken: "STRING_VALUE",
31
+ * datasetId: "STRING_VALUE", // required
32
+ * changesetId: "STRING_VALUE", // required
33
+ * sourceParams: { // SourceParams // required
34
+ * "<keys>": "STRING_VALUE",
35
+ * },
36
+ * formatParams: { // FormatParams // required
37
+ * "<keys>": "STRING_VALUE",
38
+ * },
39
+ * };
29
40
  * const command = new UpdateChangesetCommand(input);
30
41
  * const response = await client.send(command);
31
42
  * ```
@@ -26,6 +26,28 @@ export interface UpdateDatasetCommandOutput extends UpdateDatasetResponse, __Met
26
26
  * import { FinspaceDataClient, UpdateDatasetCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
27
27
  * // const { FinspaceDataClient, UpdateDatasetCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
28
28
  * const client = new FinspaceDataClient(config);
29
+ * const input = { // UpdateDatasetRequest
30
+ * clientToken: "STRING_VALUE",
31
+ * datasetId: "STRING_VALUE", // required
32
+ * datasetTitle: "STRING_VALUE", // required
33
+ * kind: "STRING_VALUE", // required
34
+ * datasetDescription: "STRING_VALUE",
35
+ * alias: "STRING_VALUE",
36
+ * schemaDefinition: { // SchemaUnion
37
+ * tabularSchemaConfig: { // SchemaDefinition
38
+ * columns: [ // ColumnList
39
+ * { // ColumnDefinition
40
+ * dataType: "STRING_VALUE",
41
+ * columnName: "STRING_VALUE",
42
+ * columnDescription: "STRING_VALUE",
43
+ * },
44
+ * ],
45
+ * primaryKeyColumns: [ // ColumnNameList
46
+ * "STRING_VALUE",
47
+ * ],
48
+ * },
49
+ * },
50
+ * };
29
51
  * const command = new UpdateDatasetCommand(input);
30
52
  * const response = await client.send(command);
31
53
  * ```
@@ -26,6 +26,15 @@ export interface UpdatePermissionGroupCommandOutput extends UpdatePermissionGrou
26
26
  * import { FinspaceDataClient, UpdatePermissionGroupCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
27
27
  * // const { FinspaceDataClient, UpdatePermissionGroupCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
28
28
  * const client = new FinspaceDataClient(config);
29
+ * const input = { // UpdatePermissionGroupRequest
30
+ * permissionGroupId: "STRING_VALUE", // required
31
+ * name: "STRING_VALUE",
32
+ * description: "STRING_VALUE",
33
+ * applicationPermissions: [ // ApplicationPermissionList
34
+ * "STRING_VALUE",
35
+ * ],
36
+ * clientToken: "STRING_VALUE",
37
+ * };
29
38
  * const command = new UpdatePermissionGroupCommand(input);
30
39
  * const response = await client.send(command);
31
40
  * ```
@@ -26,6 +26,15 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB
26
26
  * import { FinspaceDataClient, UpdateUserCommand } from "@aws-sdk/client-finspace-data"; // ES Modules import
27
27
  * // const { FinspaceDataClient, UpdateUserCommand } = require("@aws-sdk/client-finspace-data"); // CommonJS import
28
28
  * const client = new FinspaceDataClient(config);
29
+ * const input = { // UpdateUserRequest
30
+ * userId: "STRING_VALUE", // required
31
+ * type: "STRING_VALUE",
32
+ * firstName: "STRING_VALUE",
33
+ * lastName: "STRING_VALUE",
34
+ * apiAccess: "STRING_VALUE",
35
+ * apiAccessPrincipalArn: "STRING_VALUE",
36
+ * clientToken: "STRING_VALUE",
37
+ * };
29
38
  * const command = new UpdateUserCommand(input);
30
39
  * const response = await client.send(command);
31
40
  * ```
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.299.0",
4
+ "version": "3.301.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.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",
@@ -32,12 +32,12 @@
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
37
  "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.299.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0",
57
57
  "uuid": "^8.3.2"