@aws-sdk/client-finspace-data 3.296.0 → 3.297.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 (42) hide show
  1. package/dist-types/FinspaceData.d.ts +32 -0
  2. package/dist-types/FinspaceDataClient.d.ts +24 -4
  3. package/dist-types/commands/AssociateUserToPermissionGroupCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateChangesetCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateDataViewCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateDatasetCommand.d.ts +16 -0
  7. package/dist-types/commands/CreatePermissionGroupCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateUserCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteDatasetCommand.d.ts +16 -0
  10. package/dist-types/commands/DeletePermissionGroupCommand.d.ts +16 -0
  11. package/dist-types/commands/DisableUserCommand.d.ts +16 -0
  12. package/dist-types/commands/DisassociateUserFromPermissionGroupCommand.d.ts +16 -0
  13. package/dist-types/commands/EnableUserCommand.d.ts +16 -0
  14. package/dist-types/commands/GetChangesetCommand.d.ts +16 -0
  15. package/dist-types/commands/GetDataViewCommand.d.ts +16 -0
  16. package/dist-types/commands/GetDatasetCommand.d.ts +16 -0
  17. package/dist-types/commands/GetExternalDataViewAccessDetailsCommand.d.ts +16 -0
  18. package/dist-types/commands/GetPermissionGroupCommand.d.ts +16 -0
  19. package/dist-types/commands/GetProgrammaticAccessCredentialsCommand.d.ts +16 -0
  20. package/dist-types/commands/GetUserCommand.d.ts +16 -0
  21. package/dist-types/commands/GetWorkingLocationCommand.d.ts +16 -0
  22. package/dist-types/commands/ListChangesetsCommand.d.ts +16 -0
  23. package/dist-types/commands/ListDataViewsCommand.d.ts +16 -0
  24. package/dist-types/commands/ListDatasetsCommand.d.ts +16 -0
  25. package/dist-types/commands/ListPermissionGroupsByUserCommand.d.ts +16 -0
  26. package/dist-types/commands/ListPermissionGroupsCommand.d.ts +16 -0
  27. package/dist-types/commands/ListUsersByPermissionGroupCommand.d.ts +16 -0
  28. package/dist-types/commands/ListUsersCommand.d.ts +16 -0
  29. package/dist-types/commands/ResetUserPasswordCommand.d.ts +16 -0
  30. package/dist-types/commands/UpdateChangesetCommand.d.ts +16 -0
  31. package/dist-types/commands/UpdateDatasetCommand.d.ts +16 -0
  32. package/dist-types/commands/UpdatePermissionGroupCommand.d.ts +16 -0
  33. package/dist-types/commands/UpdateUserCommand.d.ts +16 -0
  34. package/dist-types/models/FinspaceDataServiceException.d.ts +2 -0
  35. package/dist-types/models/models_0.d.ts +224 -20
  36. package/dist-types/pagination/Interfaces.d.ts +3 -0
  37. package/dist-types/pagination/ListChangesetsPaginator.d.ts +3 -0
  38. package/dist-types/pagination/ListDataViewsPaginator.d.ts +3 -0
  39. package/dist-types/pagination/ListDatasetsPaginator.d.ts +3 -0
  40. package/dist-types/pagination/ListPermissionGroupsPaginator.d.ts +3 -0
  41. package/dist-types/pagination/ListUsersPaginator.d.ts +3 -0
  42. package/package.json +3 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
5
5
  import { ListDataViewsRequest, ListDataViewsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListDataViewsCommand}.
8
10
  */
9
11
  export interface ListDataViewsCommandInput extends ListDataViewsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListDataViewsCommand}.
13
17
  */
14
18
  export interface ListDataViewsCommandOutput extends ListDataViewsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists all available Dataviews for a Dataset.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListDataViewsCommandOutput extends ListDataViewsResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListDataViewsCommandInput - {@link ListDataViewsCommandInput}
34
+ * @returns {@link ListDataViewsCommandOutput}
28
35
  * @see {@link ListDataViewsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListDataViewsCommandOutput} for command's `response` shape.
30
37
  * @see {@link FinspaceDataClientResolvedConfig | config} for FinspaceDataClient's `config` shape.
@@ -50,11 +57,20 @@ export interface ListDataViewsCommandOutput extends ListDataViewsResponse, __Met
50
57
  export declare class ListDataViewsCommand extends $Command<ListDataViewsCommandInput, ListDataViewsCommandOutput, FinspaceDataClientResolvedConfig> {
51
58
  readonly input: ListDataViewsCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: ListDataViewsCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDataViewsCommandInput, ListDataViewsCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
5
5
  import { ListDatasetsRequest, ListDatasetsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListDatasetsCommand}.
8
10
  */
9
11
  export interface ListDatasetsCommandInput extends ListDatasetsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListDatasetsCommand}.
13
17
  */
14
18
  export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists all of the active Datasets that a user has access to.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListDatasetsCommandInput - {@link ListDatasetsCommandInput}
34
+ * @returns {@link ListDatasetsCommandOutput}
28
35
  * @see {@link ListDatasetsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListDatasetsCommandOutput} for command's `response` shape.
30
37
  * @see {@link FinspaceDataClientResolvedConfig | config} for FinspaceDataClient's `config` shape.
@@ -50,11 +57,20 @@ export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __Metad
50
57
  export declare class ListDatasetsCommand extends $Command<ListDatasetsCommandInput, ListDatasetsCommandOutput, FinspaceDataClientResolvedConfig> {
51
58
  readonly input: ListDatasetsCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: ListDatasetsCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDatasetsCommandInput, ListDatasetsCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
5
5
  import { ListPermissionGroupsByUserRequest, ListPermissionGroupsByUserResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListPermissionGroupsByUserCommand}.
8
10
  */
9
11
  export interface ListPermissionGroupsByUserCommandInput extends ListPermissionGroupsByUserRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListPermissionGroupsByUserCommand}.
13
17
  */
14
18
  export interface ListPermissionGroupsByUserCommandOutput extends ListPermissionGroupsByUserResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists all the permission groups that are associated with a specific user account.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListPermissionGroupsByUserCommandOutput extends ListPermissionG
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListPermissionGroupsByUserCommandInput - {@link ListPermissionGroupsByUserCommandInput}
34
+ * @returns {@link ListPermissionGroupsByUserCommandOutput}
28
35
  * @see {@link ListPermissionGroupsByUserCommandInput} for command's `input` shape.
29
36
  * @see {@link ListPermissionGroupsByUserCommandOutput} for command's `response` shape.
30
37
  * @see {@link FinspaceDataClientResolvedConfig | config} for FinspaceDataClient's `config` shape.
@@ -50,11 +57,20 @@ export interface ListPermissionGroupsByUserCommandOutput extends ListPermissionG
50
57
  export declare class ListPermissionGroupsByUserCommand extends $Command<ListPermissionGroupsByUserCommandInput, ListPermissionGroupsByUserCommandOutput, FinspaceDataClientResolvedConfig> {
51
58
  readonly input: ListPermissionGroupsByUserCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: ListPermissionGroupsByUserCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPermissionGroupsByUserCommandInput, ListPermissionGroupsByUserCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
5
5
  import { ListPermissionGroupsRequest, ListPermissionGroupsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListPermissionGroupsCommand}.
8
10
  */
9
11
  export interface ListPermissionGroupsCommandInput extends ListPermissionGroupsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListPermissionGroupsCommand}.
13
17
  */
14
18
  export interface ListPermissionGroupsCommandOutput extends ListPermissionGroupsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists all available permission groups in FinSpace.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListPermissionGroupsCommandOutput extends ListPermissionGroupsR
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListPermissionGroupsCommandInput - {@link ListPermissionGroupsCommandInput}
34
+ * @returns {@link ListPermissionGroupsCommandOutput}
28
35
  * @see {@link ListPermissionGroupsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListPermissionGroupsCommandOutput} for command's `response` shape.
30
37
  * @see {@link FinspaceDataClientResolvedConfig | config} for FinspaceDataClient's `config` shape.
@@ -47,11 +54,20 @@ export interface ListPermissionGroupsCommandOutput extends ListPermissionGroupsR
47
54
  export declare class ListPermissionGroupsCommand extends $Command<ListPermissionGroupsCommandInput, ListPermissionGroupsCommandOutput, FinspaceDataClientResolvedConfig> {
48
55
  readonly input: ListPermissionGroupsCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: ListPermissionGroupsCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPermissionGroupsCommandInput, ListPermissionGroupsCommandOutput>;
65
+ /**
66
+ * @internal
67
+ */
55
68
  private serialize;
69
+ /**
70
+ * @internal
71
+ */
56
72
  private deserialize;
57
73
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
5
5
  import { ListUsersByPermissionGroupRequest, ListUsersByPermissionGroupResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListUsersByPermissionGroupCommand}.
8
10
  */
9
11
  export interface ListUsersByPermissionGroupCommandInput extends ListUsersByPermissionGroupRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListUsersByPermissionGroupCommand}.
13
17
  */
14
18
  export interface ListUsersByPermissionGroupCommandOutput extends ListUsersByPermissionGroupResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists details of all the users in a specific permission group.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListUsersByPermissionGroupCommandOutput extends ListUsersByPerm
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListUsersByPermissionGroupCommandInput - {@link ListUsersByPermissionGroupCommandInput}
34
+ * @returns {@link ListUsersByPermissionGroupCommandOutput}
28
35
  * @see {@link ListUsersByPermissionGroupCommandInput} for command's `input` shape.
29
36
  * @see {@link ListUsersByPermissionGroupCommandOutput} for command's `response` shape.
30
37
  * @see {@link FinspaceDataClientResolvedConfig | config} for FinspaceDataClient's `config` shape.
@@ -50,11 +57,20 @@ export interface ListUsersByPermissionGroupCommandOutput extends ListUsersByPerm
50
57
  export declare class ListUsersByPermissionGroupCommand extends $Command<ListUsersByPermissionGroupCommandInput, ListUsersByPermissionGroupCommandOutput, FinspaceDataClientResolvedConfig> {
51
58
  readonly input: ListUsersByPermissionGroupCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: ListUsersByPermissionGroupCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListUsersByPermissionGroupCommandInput, ListUsersByPermissionGroupCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
5
5
  import { ListUsersRequest, ListUsersResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListUsersCommand}.
8
10
  */
9
11
  export interface ListUsersCommandInput extends ListUsersRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListUsersCommand}.
13
17
  */
14
18
  export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists all available user accounts in FinSpace.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListUsersCommandInput - {@link ListUsersCommandInput}
34
+ * @returns {@link ListUsersCommandOutput}
28
35
  * @see {@link ListUsersCommandInput} for command's `input` shape.
29
36
  * @see {@link ListUsersCommandOutput} for command's `response` shape.
30
37
  * @see {@link FinspaceDataClientResolvedConfig | config} for FinspaceDataClient's `config` shape.
@@ -47,11 +54,20 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea
47
54
  export declare class ListUsersCommand extends $Command<ListUsersCommandInput, ListUsersCommandOutput, FinspaceDataClientResolvedConfig> {
48
55
  readonly input: ListUsersCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: ListUsersCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListUsersCommandInput, ListUsersCommandOutput>;
65
+ /**
66
+ * @internal
67
+ */
55
68
  private serialize;
69
+ /**
70
+ * @internal
71
+ */
56
72
  private deserialize;
57
73
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
5
5
  import { ResetUserPasswordRequest, ResetUserPasswordResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ResetUserPasswordCommand}.
8
10
  */
9
11
  export interface ResetUserPasswordCommandInput extends ResetUserPasswordRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ResetUserPasswordCommand}.
13
17
  */
14
18
  export interface ResetUserPasswordCommandOutput extends ResetUserPasswordResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Resets the password for a specified user ID and generates a temporary one. Only a superuser can reset password for other users. Resetting the password immediately invalidates the previous password associated with the user.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ResetUserPasswordCommandOutput extends ResetUserPasswordRespons
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ResetUserPasswordCommandInput - {@link ResetUserPasswordCommandInput}
34
+ * @returns {@link ResetUserPasswordCommandOutput}
28
35
  * @see {@link ResetUserPasswordCommandInput} for command's `input` shape.
29
36
  * @see {@link ResetUserPasswordCommandOutput} for command's `response` shape.
30
37
  * @see {@link FinspaceDataClientResolvedConfig | config} for FinspaceDataClient's `config` shape.
@@ -53,11 +60,20 @@ export interface ResetUserPasswordCommandOutput extends ResetUserPasswordRespons
53
60
  export declare class ResetUserPasswordCommand extends $Command<ResetUserPasswordCommandInput, ResetUserPasswordCommandOutput, FinspaceDataClientResolvedConfig> {
54
61
  readonly input: ResetUserPasswordCommandInput;
55
62
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
56
66
  constructor(input: ResetUserPasswordCommandInput);
57
67
  /**
58
68
  * @internal
59
69
  */
60
70
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ResetUserPasswordCommandInput, ResetUserPasswordCommandOutput>;
71
+ /**
72
+ * @internal
73
+ */
61
74
  private serialize;
75
+ /**
76
+ * @internal
77
+ */
62
78
  private deserialize;
63
79
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
5
5
  import { UpdateChangesetRequest, UpdateChangesetResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateChangesetCommand}.
8
10
  */
9
11
  export interface UpdateChangesetCommandInput extends UpdateChangesetRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateChangesetCommand}.
13
17
  */
14
18
  export interface UpdateChangesetCommandOutput extends UpdateChangesetResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates a FinSpace Changeset.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateChangesetCommandOutput extends UpdateChangesetResponse, _
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateChangesetCommandInput - {@link UpdateChangesetCommandInput}
34
+ * @returns {@link UpdateChangesetCommandOutput}
28
35
  * @see {@link UpdateChangesetCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateChangesetCommandOutput} for command's `response` shape.
30
37
  * @see {@link FinspaceDataClientResolvedConfig | config} for FinspaceDataClient's `config` shape.
@@ -53,11 +60,20 @@ export interface UpdateChangesetCommandOutput extends UpdateChangesetResponse, _
53
60
  export declare class UpdateChangesetCommand extends $Command<UpdateChangesetCommandInput, UpdateChangesetCommandOutput, FinspaceDataClientResolvedConfig> {
54
61
  readonly input: UpdateChangesetCommandInput;
55
62
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
56
66
  constructor(input: UpdateChangesetCommandInput);
57
67
  /**
58
68
  * @internal
59
69
  */
60
70
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateChangesetCommandInput, UpdateChangesetCommandOutput>;
71
+ /**
72
+ * @internal
73
+ */
61
74
  private serialize;
75
+ /**
76
+ * @internal
77
+ */
62
78
  private deserialize;
63
79
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
5
5
  import { UpdateDatasetRequest, UpdateDatasetResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateDatasetCommand}.
8
10
  */
9
11
  export interface UpdateDatasetCommandInput extends UpdateDatasetRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateDatasetCommand}.
13
17
  */
14
18
  export interface UpdateDatasetCommandOutput extends UpdateDatasetResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates a FinSpace Dataset.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateDatasetCommandOutput extends UpdateDatasetResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateDatasetCommandInput - {@link UpdateDatasetCommandInput}
34
+ * @returns {@link UpdateDatasetCommandOutput}
28
35
  * @see {@link UpdateDatasetCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateDatasetCommandOutput} for command's `response` shape.
30
37
  * @see {@link FinspaceDataClientResolvedConfig | config} for FinspaceDataClient's `config` shape.
@@ -53,11 +60,20 @@ export interface UpdateDatasetCommandOutput extends UpdateDatasetResponse, __Met
53
60
  export declare class UpdateDatasetCommand extends $Command<UpdateDatasetCommandInput, UpdateDatasetCommandOutput, FinspaceDataClientResolvedConfig> {
54
61
  readonly input: UpdateDatasetCommandInput;
55
62
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
56
66
  constructor(input: UpdateDatasetCommandInput);
57
67
  /**
58
68
  * @internal
59
69
  */
60
70
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateDatasetCommandInput, UpdateDatasetCommandOutput>;
71
+ /**
72
+ * @internal
73
+ */
61
74
  private serialize;
75
+ /**
76
+ * @internal
77
+ */
62
78
  private deserialize;
63
79
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
5
5
  import { UpdatePermissionGroupRequest, UpdatePermissionGroupResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdatePermissionGroupCommand}.
8
10
  */
9
11
  export interface UpdatePermissionGroupCommandInput extends UpdatePermissionGroupRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdatePermissionGroupCommand}.
13
17
  */
14
18
  export interface UpdatePermissionGroupCommandOutput extends UpdatePermissionGroupResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Modifies the details of a permission group. You cannot modify a <code>permissionGroupID</code>.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdatePermissionGroupCommandOutput extends UpdatePermissionGrou
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdatePermissionGroupCommandInput - {@link UpdatePermissionGroupCommandInput}
34
+ * @returns {@link UpdatePermissionGroupCommandOutput}
28
35
  * @see {@link UpdatePermissionGroupCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdatePermissionGroupCommandOutput} for command's `response` shape.
30
37
  * @see {@link FinspaceDataClientResolvedConfig | config} for FinspaceDataClient's `config` shape.
@@ -53,11 +60,20 @@ export interface UpdatePermissionGroupCommandOutput extends UpdatePermissionGrou
53
60
  export declare class UpdatePermissionGroupCommand extends $Command<UpdatePermissionGroupCommandInput, UpdatePermissionGroupCommandOutput, FinspaceDataClientResolvedConfig> {
54
61
  readonly input: UpdatePermissionGroupCommandInput;
55
62
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
56
66
  constructor(input: UpdatePermissionGroupCommandInput);
57
67
  /**
58
68
  * @internal
59
69
  */
60
70
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdatePermissionGroupCommandInput, UpdatePermissionGroupCommandOutput>;
71
+ /**
72
+ * @internal
73
+ */
61
74
  private serialize;
75
+ /**
76
+ * @internal
77
+ */
62
78
  private deserialize;
63
79
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
5
5
  import { UpdateUserRequest, UpdateUserResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateUserCommand}.
8
10
  */
9
11
  export interface UpdateUserCommandInput extends UpdateUserRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateUserCommand}.
13
17
  */
14
18
  export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Modifies the details of the specified user account. You cannot update the <code>userId</code> for a user.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateUserCommandInput - {@link UpdateUserCommandInput}
34
+ * @returns {@link UpdateUserCommandOutput}
28
35
  * @see {@link UpdateUserCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateUserCommandOutput} for command's `response` shape.
30
37
  * @see {@link FinspaceDataClientResolvedConfig | config} for FinspaceDataClient's `config` shape.
@@ -53,11 +60,20 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB
53
60
  export declare class UpdateUserCommand extends $Command<UpdateUserCommandInput, UpdateUserCommandOutput, FinspaceDataClientResolvedConfig> {
54
61
  readonly input: UpdateUserCommandInput;
55
62
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
56
66
  constructor(input: UpdateUserCommandInput);
57
67
  /**
58
68
  * @internal
59
69
  */
60
70
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FinspaceDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateUserCommandInput, UpdateUserCommandOutput>;
71
+ /**
72
+ * @internal
73
+ */
61
74
  private serialize;
75
+ /**
76
+ * @internal
77
+ */
62
78
  private deserialize;
63
79
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from FinspaceData service.
4
6
  */
5
7
  export declare class FinspaceDataServiceException extends __ServiceException {