@aws-sdk/client-finspace-data 3.300.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.
- package/dist-types/commands/AssociateUserToPermissionGroupCommand.d.ts +1 -1
- package/dist-types/commands/CreateChangesetCommand.d.ts +3 -3
- package/dist-types/commands/CreateDataViewCommand.d.ts +5 -5
- package/dist-types/commands/CreateDatasetCommand.d.ts +10 -10
- package/dist-types/commands/CreatePermissionGroupCommand.d.ts +2 -2
- package/dist-types/commands/CreateUserCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDatasetCommand.d.ts +1 -1
- package/dist-types/commands/DeletePermissionGroupCommand.d.ts +1 -1
- package/dist-types/commands/DisableUserCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateUserFromPermissionGroupCommand.d.ts +1 -1
- package/dist-types/commands/EnableUserCommand.d.ts +1 -1
- package/dist-types/commands/GetChangesetCommand.d.ts +1 -1
- package/dist-types/commands/GetDataViewCommand.d.ts +1 -1
- package/dist-types/commands/GetDatasetCommand.d.ts +1 -1
- package/dist-types/commands/GetExternalDataViewAccessDetailsCommand.d.ts +1 -1
- package/dist-types/commands/GetPermissionGroupCommand.d.ts +1 -1
- package/dist-types/commands/GetProgrammaticAccessCredentialsCommand.d.ts +1 -1
- package/dist-types/commands/GetUserCommand.d.ts +1 -1
- package/dist-types/commands/GetWorkingLocationCommand.d.ts +1 -1
- package/dist-types/commands/ListChangesetsCommand.d.ts +1 -1
- package/dist-types/commands/ListDataViewsCommand.d.ts +1 -1
- package/dist-types/commands/ListDatasetsCommand.d.ts +1 -1
- package/dist-types/commands/ListPermissionGroupsByUserCommand.d.ts +1 -1
- package/dist-types/commands/ListPermissionGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListUsersByPermissionGroupCommand.d.ts +1 -1
- package/dist-types/commands/ListUsersCommand.d.ts +1 -1
- package/dist-types/commands/ResetUserPasswordCommand.d.ts +1 -1
- package/dist-types/commands/UpdateChangesetCommand.d.ts +3 -3
- package/dist-types/commands/UpdateDatasetCommand.d.ts +6 -6
- package/dist-types/commands/UpdatePermissionGroupCommand.d.ts +2 -2
- package/dist-types/commands/UpdateUserCommand.d.ts +1 -1
- package/package.json +3 -3
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // AssociateUserToPermissionGroupRequest
|
|
30
30
|
* permissionGroupId: "STRING_VALUE", // required
|
|
31
31
|
* userId: "STRING_VALUE", // required
|
|
32
32
|
* clientToken: "STRING_VALUE",
|
|
@@ -26,14 +26,14 @@ 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 = {
|
|
29
|
+
* const input = { // CreateChangesetRequest
|
|
30
30
|
* clientToken: "STRING_VALUE",
|
|
31
31
|
* datasetId: "STRING_VALUE", // required
|
|
32
32
|
* changeType: "STRING_VALUE", // required
|
|
33
|
-
* sourceParams: { // required
|
|
33
|
+
* sourceParams: { // SourceParams // required
|
|
34
34
|
* "<keys>": "STRING_VALUE",
|
|
35
35
|
* },
|
|
36
|
-
* formatParams: { // required
|
|
36
|
+
* formatParams: { // FormatParams // required
|
|
37
37
|
* "<keys>": "STRING_VALUE",
|
|
38
38
|
* },
|
|
39
39
|
* };
|
|
@@ -26,21 +26,21 @@ 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 = {
|
|
29
|
+
* const input = { // CreateDataViewRequest
|
|
30
30
|
* clientToken: "STRING_VALUE",
|
|
31
31
|
* datasetId: "STRING_VALUE", // required
|
|
32
32
|
* autoUpdate: true || false,
|
|
33
|
-
* sortColumns: [
|
|
33
|
+
* sortColumns: [ // SortColumnList
|
|
34
34
|
* "STRING_VALUE",
|
|
35
35
|
* ],
|
|
36
|
-
* partitionColumns: [
|
|
36
|
+
* partitionColumns: [ // PartitionColumnList
|
|
37
37
|
* "STRING_VALUE",
|
|
38
38
|
* ],
|
|
39
39
|
* asOfTimestamp: Number("long"),
|
|
40
|
-
* destinationTypeParams: {
|
|
40
|
+
* destinationTypeParams: { // DataViewDestinationTypeParams
|
|
41
41
|
* destinationType: "STRING_VALUE", // required
|
|
42
42
|
* s3DestinationExportFileFormat: "STRING_VALUE",
|
|
43
|
-
* s3DestinationExportFileFormatOptions: {
|
|
43
|
+
* s3DestinationExportFileFormatOptions: { // S3DestinationFormatOptions
|
|
44
44
|
* "<keys>": "STRING_VALUE",
|
|
45
45
|
* },
|
|
46
46
|
* },
|
|
@@ -26,35 +26,35 @@ 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 = {
|
|
29
|
+
* const input = { // CreateDatasetRequest
|
|
30
30
|
* clientToken: "STRING_VALUE",
|
|
31
31
|
* datasetTitle: "STRING_VALUE", // required
|
|
32
32
|
* kind: "STRING_VALUE", // required
|
|
33
33
|
* datasetDescription: "STRING_VALUE",
|
|
34
|
-
* ownerInfo: {
|
|
34
|
+
* ownerInfo: { // DatasetOwnerInfo
|
|
35
35
|
* name: "STRING_VALUE",
|
|
36
36
|
* phoneNumber: "STRING_VALUE",
|
|
37
37
|
* email: "STRING_VALUE",
|
|
38
38
|
* },
|
|
39
|
-
* permissionGroupParams: {
|
|
39
|
+
* permissionGroupParams: { // PermissionGroupParams
|
|
40
40
|
* permissionGroupId: "STRING_VALUE",
|
|
41
|
-
* datasetPermissions: [
|
|
42
|
-
* {
|
|
41
|
+
* datasetPermissions: [ // ResourcePermissionsList
|
|
42
|
+
* { // ResourcePermission
|
|
43
43
|
* permission: "STRING_VALUE",
|
|
44
44
|
* },
|
|
45
45
|
* ],
|
|
46
46
|
* },
|
|
47
47
|
* alias: "STRING_VALUE",
|
|
48
|
-
* schemaDefinition: {
|
|
49
|
-
* tabularSchemaConfig: {
|
|
50
|
-
* columns: [
|
|
51
|
-
* {
|
|
48
|
+
* schemaDefinition: { // SchemaUnion
|
|
49
|
+
* tabularSchemaConfig: { // SchemaDefinition
|
|
50
|
+
* columns: [ // ColumnList
|
|
51
|
+
* { // ColumnDefinition
|
|
52
52
|
* dataType: "STRING_VALUE",
|
|
53
53
|
* columnName: "STRING_VALUE",
|
|
54
54
|
* columnDescription: "STRING_VALUE",
|
|
55
55
|
* },
|
|
56
56
|
* ],
|
|
57
|
-
* primaryKeyColumns: [
|
|
57
|
+
* primaryKeyColumns: [ // ColumnNameList
|
|
58
58
|
* "STRING_VALUE",
|
|
59
59
|
* ],
|
|
60
60
|
* },
|
|
@@ -26,10 +26,10 @@ 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 = {
|
|
29
|
+
* const input = { // CreatePermissionGroupRequest
|
|
30
30
|
* name: "STRING_VALUE", // required
|
|
31
31
|
* description: "STRING_VALUE",
|
|
32
|
-
* applicationPermissions: [ // required
|
|
32
|
+
* applicationPermissions: [ // ApplicationPermissionList // required
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* clientToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // CreateUserRequest
|
|
30
30
|
* emailAddress: "STRING_VALUE", // required
|
|
31
31
|
* type: "STRING_VALUE", // required
|
|
32
32
|
* firstName: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteDatasetRequest
|
|
30
30
|
* clientToken: "STRING_VALUE",
|
|
31
31
|
* datasetId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeletePermissionGroupRequest
|
|
30
30
|
* permissionGroupId: "STRING_VALUE", // required
|
|
31
31
|
* clientToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DisableUserRequest
|
|
30
30
|
* userId: "STRING_VALUE", // required
|
|
31
31
|
* clientToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DisassociateUserFromPermissionGroupRequest
|
|
30
30
|
* permissionGroupId: "STRING_VALUE", // required
|
|
31
31
|
* userId: "STRING_VALUE", // required
|
|
32
32
|
* clientToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // EnableUserRequest
|
|
30
30
|
* userId: "STRING_VALUE", // required
|
|
31
31
|
* clientToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetChangesetRequest
|
|
30
30
|
* datasetId: "STRING_VALUE", // required
|
|
31
31
|
* changesetId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetDataViewRequest
|
|
30
30
|
* dataViewId: "STRING_VALUE", // required
|
|
31
31
|
* datasetId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetDatasetRequest
|
|
30
30
|
* datasetId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetDatasetCommand(input);
|
|
@@ -34,7 +34,7 @@ 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 = {
|
|
37
|
+
* const input = { // GetExternalDataViewAccessDetailsRequest
|
|
38
38
|
* dataViewId: "STRING_VALUE", // required
|
|
39
39
|
* datasetId: "STRING_VALUE", // required
|
|
40
40
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetPermissionGroupRequest
|
|
30
30
|
* permissionGroupId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetPermissionGroupCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetProgrammaticAccessCredentialsRequest
|
|
30
30
|
* durationInMinutes: Number("long"),
|
|
31
31
|
* environmentId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetUserRequest
|
|
30
30
|
* userId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetUserCommand(input);
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // GetWorkingLocationRequest
|
|
31
31
|
* locationType: "STRING_VALUE",
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetWorkingLocationCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListChangesetsRequest
|
|
30
30
|
* datasetId: "STRING_VALUE", // required
|
|
31
31
|
* maxResults: Number("int"),
|
|
32
32
|
* nextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListDataViewsRequest
|
|
30
30
|
* datasetId: "STRING_VALUE", // required
|
|
31
31
|
* nextToken: "STRING_VALUE",
|
|
32
32
|
* maxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListDatasetsRequest
|
|
30
30
|
* nextToken: "STRING_VALUE",
|
|
31
31
|
* maxResults: Number("int"),
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListPermissionGroupsByUserRequest
|
|
30
30
|
* userId: "STRING_VALUE", // required
|
|
31
31
|
* nextToken: "STRING_VALUE",
|
|
32
32
|
* maxResults: Number("int"), // required
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListPermissionGroupsRequest
|
|
30
30
|
* nextToken: "STRING_VALUE",
|
|
31
31
|
* maxResults: Number("int"), // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListUsersByPermissionGroupRequest
|
|
30
30
|
* permissionGroupId: "STRING_VALUE", // required
|
|
31
31
|
* nextToken: "STRING_VALUE",
|
|
32
32
|
* maxResults: Number("int"), // required
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListUsersRequest
|
|
30
30
|
* nextToken: "STRING_VALUE",
|
|
31
31
|
* maxResults: Number("int"), // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ResetUserPasswordRequest
|
|
30
30
|
* userId: "STRING_VALUE", // required
|
|
31
31
|
* clientToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,14 +26,14 @@ 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 = {
|
|
29
|
+
* const input = { // UpdateChangesetRequest
|
|
30
30
|
* clientToken: "STRING_VALUE",
|
|
31
31
|
* datasetId: "STRING_VALUE", // required
|
|
32
32
|
* changesetId: "STRING_VALUE", // required
|
|
33
|
-
* sourceParams: { // required
|
|
33
|
+
* sourceParams: { // SourceParams // required
|
|
34
34
|
* "<keys>": "STRING_VALUE",
|
|
35
35
|
* },
|
|
36
|
-
* formatParams: { // required
|
|
36
|
+
* formatParams: { // FormatParams // required
|
|
37
37
|
* "<keys>": "STRING_VALUE",
|
|
38
38
|
* },
|
|
39
39
|
* };
|
|
@@ -26,23 +26,23 @@ 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 = {
|
|
29
|
+
* const input = { // UpdateDatasetRequest
|
|
30
30
|
* clientToken: "STRING_VALUE",
|
|
31
31
|
* datasetId: "STRING_VALUE", // required
|
|
32
32
|
* datasetTitle: "STRING_VALUE", // required
|
|
33
33
|
* kind: "STRING_VALUE", // required
|
|
34
34
|
* datasetDescription: "STRING_VALUE",
|
|
35
35
|
* alias: "STRING_VALUE",
|
|
36
|
-
* schemaDefinition: {
|
|
37
|
-
* tabularSchemaConfig: {
|
|
38
|
-
* columns: [
|
|
39
|
-
* {
|
|
36
|
+
* schemaDefinition: { // SchemaUnion
|
|
37
|
+
* tabularSchemaConfig: { // SchemaDefinition
|
|
38
|
+
* columns: [ // ColumnList
|
|
39
|
+
* { // ColumnDefinition
|
|
40
40
|
* dataType: "STRING_VALUE",
|
|
41
41
|
* columnName: "STRING_VALUE",
|
|
42
42
|
* columnDescription: "STRING_VALUE",
|
|
43
43
|
* },
|
|
44
44
|
* ],
|
|
45
|
-
* primaryKeyColumns: [
|
|
45
|
+
* primaryKeyColumns: [ // ColumnNameList
|
|
46
46
|
* "STRING_VALUE",
|
|
47
47
|
* ],
|
|
48
48
|
* },
|
|
@@ -26,11 +26,11 @@ 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 = {
|
|
29
|
+
* const input = { // UpdatePermissionGroupRequest
|
|
30
30
|
* permissionGroupId: "STRING_VALUE", // required
|
|
31
31
|
* name: "STRING_VALUE",
|
|
32
32
|
* description: "STRING_VALUE",
|
|
33
|
-
* applicationPermissions: [
|
|
33
|
+
* applicationPermissions: [ // ApplicationPermissionList
|
|
34
34
|
* "STRING_VALUE",
|
|
35
35
|
* ],
|
|
36
36
|
* clientToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // UpdateUserRequest
|
|
30
30
|
* userId: "STRING_VALUE", // required
|
|
31
31
|
* type: "STRING_VALUE",
|
|
32
32
|
* firstName: "STRING_VALUE",
|
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.
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
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",
|