@aws-sdk/client-finspace-data 3.169.0 → 3.170.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/FinspaceData.d.ts +568 -160
- package/dist-types/ts3.4/FinspaceDataClient.d.ts +316 -104
- package/dist-types/ts3.4/commands/AssociateUserToPermissionGroupCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateChangesetCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateDataViewCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateDatasetCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreatePermissionGroupCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteDatasetCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeletePermissionGroupCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DisableUserCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DisassociateUserFromPermissionGroupCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/EnableUserCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetChangesetCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetDataViewCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetDatasetCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetExternalDataViewAccessDetailsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetPermissionGroupCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetProgrammaticAccessCredentialsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetUserCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetWorkingLocationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListChangesetsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListDataViewsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListDatasetsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListPermissionGroupsByUserCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListPermissionGroupsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListUsersByPermissionGroupCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ResetUserPasswordCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UpdateChangesetCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateDatasetCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdatePermissionGroupCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +31 -31
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/FinspaceDataServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1168 -1085
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListChangesetsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListDataViewsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListDatasetsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListPermissionGroupsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListUsersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +6 -6
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +377 -95
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { FinspaceData } from "../FinspaceData";
|
|
3
|
-
import { FinspaceDataClient } from "../FinspaceDataClient";
|
|
4
|
-
export interface FinspaceDataPaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { FinspaceData } from "../FinspaceData";
|
|
3
|
+
import { FinspaceDataClient } from "../FinspaceDataClient";
|
|
4
|
+
export interface FinspaceDataPaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: FinspaceData | FinspaceDataClient;
|
|
7
|
+
}
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListChangesetsCommandInput,
|
|
4
|
+
ListChangesetsCommandOutput,
|
|
5
|
+
} from "../commands/ListChangesetsCommand";
|
|
6
|
+
import { FinspaceDataPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListChangesets(
|
|
8
|
+
config: FinspaceDataPaginationConfiguration,
|
|
9
|
+
input: ListChangesetsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListChangesetsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListDataViewsCommandInput,
|
|
4
|
+
ListDataViewsCommandOutput,
|
|
5
|
+
} from "../commands/ListDataViewsCommand";
|
|
6
|
+
import { FinspaceDataPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListDataViews(
|
|
8
|
+
config: FinspaceDataPaginationConfiguration,
|
|
9
|
+
input: ListDataViewsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListDataViewsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListDatasetsCommandInput,
|
|
4
|
+
ListDatasetsCommandOutput,
|
|
5
|
+
} from "../commands/ListDatasetsCommand";
|
|
6
|
+
import { FinspaceDataPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListDatasets(
|
|
8
|
+
config: FinspaceDataPaginationConfiguration,
|
|
9
|
+
input: ListDatasetsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListDatasetsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListPermissionGroupsCommandInput,
|
|
4
|
+
ListPermissionGroupsCommandOutput,
|
|
5
|
+
} from "../commands/ListPermissionGroupsCommand";
|
|
6
|
+
import { FinspaceDataPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListPermissionGroups(
|
|
8
|
+
config: FinspaceDataPaginationConfiguration,
|
|
9
|
+
input: ListPermissionGroupsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListPermissionGroupsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListUsersCommandInput,
|
|
4
|
+
ListUsersCommandOutput,
|
|
5
|
+
} from "../commands/ListUsersCommand";
|
|
6
|
+
import { FinspaceDataPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListUsers(
|
|
8
|
+
config: FinspaceDataPaginationConfiguration,
|
|
9
|
+
input: ListUsersCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListUsersCommandOutput>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./Interfaces";
|
|
2
|
-
export * from "./ListChangesetsPaginator";
|
|
3
|
-
export * from "./ListDataViewsPaginator";
|
|
4
|
-
export * from "./ListDatasetsPaginator";
|
|
5
|
-
export * from "./ListPermissionGroupsPaginator";
|
|
6
|
-
export * from "./ListUsersPaginator";
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListChangesetsPaginator";
|
|
3
|
+
export * from "./ListDataViewsPaginator";
|
|
4
|
+
export * from "./ListDatasetsPaginator";
|
|
5
|
+
export * from "./ListPermissionGroupsPaginator";
|
|
6
|
+
export * from "./ListUsersPaginator";
|
|
@@ -1,95 +1,377 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
import {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
import {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
import {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@aws-sdk/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
AssociateUserToPermissionGroupCommandInput,
|
|
8
|
+
AssociateUserToPermissionGroupCommandOutput,
|
|
9
|
+
} from "../commands/AssociateUserToPermissionGroupCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateChangesetCommandInput,
|
|
12
|
+
CreateChangesetCommandOutput,
|
|
13
|
+
} from "../commands/CreateChangesetCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateDatasetCommandInput,
|
|
16
|
+
CreateDatasetCommandOutput,
|
|
17
|
+
} from "../commands/CreateDatasetCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateDataViewCommandInput,
|
|
20
|
+
CreateDataViewCommandOutput,
|
|
21
|
+
} from "../commands/CreateDataViewCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreatePermissionGroupCommandInput,
|
|
24
|
+
CreatePermissionGroupCommandOutput,
|
|
25
|
+
} from "../commands/CreatePermissionGroupCommand";
|
|
26
|
+
import {
|
|
27
|
+
CreateUserCommandInput,
|
|
28
|
+
CreateUserCommandOutput,
|
|
29
|
+
} from "../commands/CreateUserCommand";
|
|
30
|
+
import {
|
|
31
|
+
DeleteDatasetCommandInput,
|
|
32
|
+
DeleteDatasetCommandOutput,
|
|
33
|
+
} from "../commands/DeleteDatasetCommand";
|
|
34
|
+
import {
|
|
35
|
+
DeletePermissionGroupCommandInput,
|
|
36
|
+
DeletePermissionGroupCommandOutput,
|
|
37
|
+
} from "../commands/DeletePermissionGroupCommand";
|
|
38
|
+
import {
|
|
39
|
+
DisableUserCommandInput,
|
|
40
|
+
DisableUserCommandOutput,
|
|
41
|
+
} from "../commands/DisableUserCommand";
|
|
42
|
+
import {
|
|
43
|
+
DisassociateUserFromPermissionGroupCommandInput,
|
|
44
|
+
DisassociateUserFromPermissionGroupCommandOutput,
|
|
45
|
+
} from "../commands/DisassociateUserFromPermissionGroupCommand";
|
|
46
|
+
import {
|
|
47
|
+
EnableUserCommandInput,
|
|
48
|
+
EnableUserCommandOutput,
|
|
49
|
+
} from "../commands/EnableUserCommand";
|
|
50
|
+
import {
|
|
51
|
+
GetChangesetCommandInput,
|
|
52
|
+
GetChangesetCommandOutput,
|
|
53
|
+
} from "../commands/GetChangesetCommand";
|
|
54
|
+
import {
|
|
55
|
+
GetDatasetCommandInput,
|
|
56
|
+
GetDatasetCommandOutput,
|
|
57
|
+
} from "../commands/GetDatasetCommand";
|
|
58
|
+
import {
|
|
59
|
+
GetDataViewCommandInput,
|
|
60
|
+
GetDataViewCommandOutput,
|
|
61
|
+
} from "../commands/GetDataViewCommand";
|
|
62
|
+
import {
|
|
63
|
+
GetExternalDataViewAccessDetailsCommandInput,
|
|
64
|
+
GetExternalDataViewAccessDetailsCommandOutput,
|
|
65
|
+
} from "../commands/GetExternalDataViewAccessDetailsCommand";
|
|
66
|
+
import {
|
|
67
|
+
GetPermissionGroupCommandInput,
|
|
68
|
+
GetPermissionGroupCommandOutput,
|
|
69
|
+
} from "../commands/GetPermissionGroupCommand";
|
|
70
|
+
import {
|
|
71
|
+
GetProgrammaticAccessCredentialsCommandInput,
|
|
72
|
+
GetProgrammaticAccessCredentialsCommandOutput,
|
|
73
|
+
} from "../commands/GetProgrammaticAccessCredentialsCommand";
|
|
74
|
+
import {
|
|
75
|
+
GetUserCommandInput,
|
|
76
|
+
GetUserCommandOutput,
|
|
77
|
+
} from "../commands/GetUserCommand";
|
|
78
|
+
import {
|
|
79
|
+
GetWorkingLocationCommandInput,
|
|
80
|
+
GetWorkingLocationCommandOutput,
|
|
81
|
+
} from "../commands/GetWorkingLocationCommand";
|
|
82
|
+
import {
|
|
83
|
+
ListChangesetsCommandInput,
|
|
84
|
+
ListChangesetsCommandOutput,
|
|
85
|
+
} from "../commands/ListChangesetsCommand";
|
|
86
|
+
import {
|
|
87
|
+
ListDatasetsCommandInput,
|
|
88
|
+
ListDatasetsCommandOutput,
|
|
89
|
+
} from "../commands/ListDatasetsCommand";
|
|
90
|
+
import {
|
|
91
|
+
ListDataViewsCommandInput,
|
|
92
|
+
ListDataViewsCommandOutput,
|
|
93
|
+
} from "../commands/ListDataViewsCommand";
|
|
94
|
+
import {
|
|
95
|
+
ListPermissionGroupsByUserCommandInput,
|
|
96
|
+
ListPermissionGroupsByUserCommandOutput,
|
|
97
|
+
} from "../commands/ListPermissionGroupsByUserCommand";
|
|
98
|
+
import {
|
|
99
|
+
ListPermissionGroupsCommandInput,
|
|
100
|
+
ListPermissionGroupsCommandOutput,
|
|
101
|
+
} from "../commands/ListPermissionGroupsCommand";
|
|
102
|
+
import {
|
|
103
|
+
ListUsersByPermissionGroupCommandInput,
|
|
104
|
+
ListUsersByPermissionGroupCommandOutput,
|
|
105
|
+
} from "../commands/ListUsersByPermissionGroupCommand";
|
|
106
|
+
import {
|
|
107
|
+
ListUsersCommandInput,
|
|
108
|
+
ListUsersCommandOutput,
|
|
109
|
+
} from "../commands/ListUsersCommand";
|
|
110
|
+
import {
|
|
111
|
+
ResetUserPasswordCommandInput,
|
|
112
|
+
ResetUserPasswordCommandOutput,
|
|
113
|
+
} from "../commands/ResetUserPasswordCommand";
|
|
114
|
+
import {
|
|
115
|
+
UpdateChangesetCommandInput,
|
|
116
|
+
UpdateChangesetCommandOutput,
|
|
117
|
+
} from "../commands/UpdateChangesetCommand";
|
|
118
|
+
import {
|
|
119
|
+
UpdateDatasetCommandInput,
|
|
120
|
+
UpdateDatasetCommandOutput,
|
|
121
|
+
} from "../commands/UpdateDatasetCommand";
|
|
122
|
+
import {
|
|
123
|
+
UpdatePermissionGroupCommandInput,
|
|
124
|
+
UpdatePermissionGroupCommandOutput,
|
|
125
|
+
} from "../commands/UpdatePermissionGroupCommand";
|
|
126
|
+
import {
|
|
127
|
+
UpdateUserCommandInput,
|
|
128
|
+
UpdateUserCommandOutput,
|
|
129
|
+
} from "../commands/UpdateUserCommand";
|
|
130
|
+
export declare const serializeAws_restJson1AssociateUserToPermissionGroupCommand: (
|
|
131
|
+
input: AssociateUserToPermissionGroupCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const serializeAws_restJson1CreateChangesetCommand: (
|
|
135
|
+
input: CreateChangesetCommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
138
|
+
export declare const serializeAws_restJson1CreateDatasetCommand: (
|
|
139
|
+
input: CreateDatasetCommandInput,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<__HttpRequest>;
|
|
142
|
+
export declare const serializeAws_restJson1CreateDataViewCommand: (
|
|
143
|
+
input: CreateDataViewCommandInput,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<__HttpRequest>;
|
|
146
|
+
export declare const serializeAws_restJson1CreatePermissionGroupCommand: (
|
|
147
|
+
input: CreatePermissionGroupCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const serializeAws_restJson1CreateUserCommand: (
|
|
151
|
+
input: CreateUserCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const serializeAws_restJson1DeleteDatasetCommand: (
|
|
155
|
+
input: DeleteDatasetCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const serializeAws_restJson1DeletePermissionGroupCommand: (
|
|
159
|
+
input: DeletePermissionGroupCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
162
|
+
export declare const serializeAws_restJson1DisableUserCommand: (
|
|
163
|
+
input: DisableUserCommandInput,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<__HttpRequest>;
|
|
166
|
+
export declare const serializeAws_restJson1DisassociateUserFromPermissionGroupCommand: (
|
|
167
|
+
input: DisassociateUserFromPermissionGroupCommandInput,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const serializeAws_restJson1EnableUserCommand: (
|
|
171
|
+
input: EnableUserCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const serializeAws_restJson1GetChangesetCommand: (
|
|
175
|
+
input: GetChangesetCommandInput,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<__HttpRequest>;
|
|
178
|
+
export declare const serializeAws_restJson1GetDatasetCommand: (
|
|
179
|
+
input: GetDatasetCommandInput,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<__HttpRequest>;
|
|
182
|
+
export declare const serializeAws_restJson1GetDataViewCommand: (
|
|
183
|
+
input: GetDataViewCommandInput,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<__HttpRequest>;
|
|
186
|
+
export declare const serializeAws_restJson1GetExternalDataViewAccessDetailsCommand: (
|
|
187
|
+
input: GetExternalDataViewAccessDetailsCommandInput,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<__HttpRequest>;
|
|
190
|
+
export declare const serializeAws_restJson1GetPermissionGroupCommand: (
|
|
191
|
+
input: GetPermissionGroupCommandInput,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<__HttpRequest>;
|
|
194
|
+
export declare const serializeAws_restJson1GetProgrammaticAccessCredentialsCommand: (
|
|
195
|
+
input: GetProgrammaticAccessCredentialsCommandInput,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<__HttpRequest>;
|
|
198
|
+
export declare const serializeAws_restJson1GetUserCommand: (
|
|
199
|
+
input: GetUserCommandInput,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<__HttpRequest>;
|
|
202
|
+
export declare const serializeAws_restJson1GetWorkingLocationCommand: (
|
|
203
|
+
input: GetWorkingLocationCommandInput,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<__HttpRequest>;
|
|
206
|
+
export declare const serializeAws_restJson1ListChangesetsCommand: (
|
|
207
|
+
input: ListChangesetsCommandInput,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<__HttpRequest>;
|
|
210
|
+
export declare const serializeAws_restJson1ListDatasetsCommand: (
|
|
211
|
+
input: ListDatasetsCommandInput,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<__HttpRequest>;
|
|
214
|
+
export declare const serializeAws_restJson1ListDataViewsCommand: (
|
|
215
|
+
input: ListDataViewsCommandInput,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<__HttpRequest>;
|
|
218
|
+
export declare const serializeAws_restJson1ListPermissionGroupsCommand: (
|
|
219
|
+
input: ListPermissionGroupsCommandInput,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<__HttpRequest>;
|
|
222
|
+
export declare const serializeAws_restJson1ListPermissionGroupsByUserCommand: (
|
|
223
|
+
input: ListPermissionGroupsByUserCommandInput,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<__HttpRequest>;
|
|
226
|
+
export declare const serializeAws_restJson1ListUsersCommand: (
|
|
227
|
+
input: ListUsersCommandInput,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<__HttpRequest>;
|
|
230
|
+
export declare const serializeAws_restJson1ListUsersByPermissionGroupCommand: (
|
|
231
|
+
input: ListUsersByPermissionGroupCommandInput,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<__HttpRequest>;
|
|
234
|
+
export declare const serializeAws_restJson1ResetUserPasswordCommand: (
|
|
235
|
+
input: ResetUserPasswordCommandInput,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<__HttpRequest>;
|
|
238
|
+
export declare const serializeAws_restJson1UpdateChangesetCommand: (
|
|
239
|
+
input: UpdateChangesetCommandInput,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<__HttpRequest>;
|
|
242
|
+
export declare const serializeAws_restJson1UpdateDatasetCommand: (
|
|
243
|
+
input: UpdateDatasetCommandInput,
|
|
244
|
+
context: __SerdeContext
|
|
245
|
+
) => Promise<__HttpRequest>;
|
|
246
|
+
export declare const serializeAws_restJson1UpdatePermissionGroupCommand: (
|
|
247
|
+
input: UpdatePermissionGroupCommandInput,
|
|
248
|
+
context: __SerdeContext
|
|
249
|
+
) => Promise<__HttpRequest>;
|
|
250
|
+
export declare const serializeAws_restJson1UpdateUserCommand: (
|
|
251
|
+
input: UpdateUserCommandInput,
|
|
252
|
+
context: __SerdeContext
|
|
253
|
+
) => Promise<__HttpRequest>;
|
|
254
|
+
export declare const deserializeAws_restJson1AssociateUserToPermissionGroupCommand: (
|
|
255
|
+
output: __HttpResponse,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<AssociateUserToPermissionGroupCommandOutput>;
|
|
258
|
+
export declare const deserializeAws_restJson1CreateChangesetCommand: (
|
|
259
|
+
output: __HttpResponse,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<CreateChangesetCommandOutput>;
|
|
262
|
+
export declare const deserializeAws_restJson1CreateDatasetCommand: (
|
|
263
|
+
output: __HttpResponse,
|
|
264
|
+
context: __SerdeContext
|
|
265
|
+
) => Promise<CreateDatasetCommandOutput>;
|
|
266
|
+
export declare const deserializeAws_restJson1CreateDataViewCommand: (
|
|
267
|
+
output: __HttpResponse,
|
|
268
|
+
context: __SerdeContext
|
|
269
|
+
) => Promise<CreateDataViewCommandOutput>;
|
|
270
|
+
export declare const deserializeAws_restJson1CreatePermissionGroupCommand: (
|
|
271
|
+
output: __HttpResponse,
|
|
272
|
+
context: __SerdeContext
|
|
273
|
+
) => Promise<CreatePermissionGroupCommandOutput>;
|
|
274
|
+
export declare const deserializeAws_restJson1CreateUserCommand: (
|
|
275
|
+
output: __HttpResponse,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<CreateUserCommandOutput>;
|
|
278
|
+
export declare const deserializeAws_restJson1DeleteDatasetCommand: (
|
|
279
|
+
output: __HttpResponse,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<DeleteDatasetCommandOutput>;
|
|
282
|
+
export declare const deserializeAws_restJson1DeletePermissionGroupCommand: (
|
|
283
|
+
output: __HttpResponse,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<DeletePermissionGroupCommandOutput>;
|
|
286
|
+
export declare const deserializeAws_restJson1DisableUserCommand: (
|
|
287
|
+
output: __HttpResponse,
|
|
288
|
+
context: __SerdeContext
|
|
289
|
+
) => Promise<DisableUserCommandOutput>;
|
|
290
|
+
export declare const deserializeAws_restJson1DisassociateUserFromPermissionGroupCommand: (
|
|
291
|
+
output: __HttpResponse,
|
|
292
|
+
context: __SerdeContext
|
|
293
|
+
) => Promise<DisassociateUserFromPermissionGroupCommandOutput>;
|
|
294
|
+
export declare const deserializeAws_restJson1EnableUserCommand: (
|
|
295
|
+
output: __HttpResponse,
|
|
296
|
+
context: __SerdeContext
|
|
297
|
+
) => Promise<EnableUserCommandOutput>;
|
|
298
|
+
export declare const deserializeAws_restJson1GetChangesetCommand: (
|
|
299
|
+
output: __HttpResponse,
|
|
300
|
+
context: __SerdeContext
|
|
301
|
+
) => Promise<GetChangesetCommandOutput>;
|
|
302
|
+
export declare const deserializeAws_restJson1GetDatasetCommand: (
|
|
303
|
+
output: __HttpResponse,
|
|
304
|
+
context: __SerdeContext
|
|
305
|
+
) => Promise<GetDatasetCommandOutput>;
|
|
306
|
+
export declare const deserializeAws_restJson1GetDataViewCommand: (
|
|
307
|
+
output: __HttpResponse,
|
|
308
|
+
context: __SerdeContext
|
|
309
|
+
) => Promise<GetDataViewCommandOutput>;
|
|
310
|
+
export declare const deserializeAws_restJson1GetExternalDataViewAccessDetailsCommand: (
|
|
311
|
+
output: __HttpResponse,
|
|
312
|
+
context: __SerdeContext
|
|
313
|
+
) => Promise<GetExternalDataViewAccessDetailsCommandOutput>;
|
|
314
|
+
export declare const deserializeAws_restJson1GetPermissionGroupCommand: (
|
|
315
|
+
output: __HttpResponse,
|
|
316
|
+
context: __SerdeContext
|
|
317
|
+
) => Promise<GetPermissionGroupCommandOutput>;
|
|
318
|
+
export declare const deserializeAws_restJson1GetProgrammaticAccessCredentialsCommand: (
|
|
319
|
+
output: __HttpResponse,
|
|
320
|
+
context: __SerdeContext
|
|
321
|
+
) => Promise<GetProgrammaticAccessCredentialsCommandOutput>;
|
|
322
|
+
export declare const deserializeAws_restJson1GetUserCommand: (
|
|
323
|
+
output: __HttpResponse,
|
|
324
|
+
context: __SerdeContext
|
|
325
|
+
) => Promise<GetUserCommandOutput>;
|
|
326
|
+
export declare const deserializeAws_restJson1GetWorkingLocationCommand: (
|
|
327
|
+
output: __HttpResponse,
|
|
328
|
+
context: __SerdeContext
|
|
329
|
+
) => Promise<GetWorkingLocationCommandOutput>;
|
|
330
|
+
export declare const deserializeAws_restJson1ListChangesetsCommand: (
|
|
331
|
+
output: __HttpResponse,
|
|
332
|
+
context: __SerdeContext
|
|
333
|
+
) => Promise<ListChangesetsCommandOutput>;
|
|
334
|
+
export declare const deserializeAws_restJson1ListDatasetsCommand: (
|
|
335
|
+
output: __HttpResponse,
|
|
336
|
+
context: __SerdeContext
|
|
337
|
+
) => Promise<ListDatasetsCommandOutput>;
|
|
338
|
+
export declare const deserializeAws_restJson1ListDataViewsCommand: (
|
|
339
|
+
output: __HttpResponse,
|
|
340
|
+
context: __SerdeContext
|
|
341
|
+
) => Promise<ListDataViewsCommandOutput>;
|
|
342
|
+
export declare const deserializeAws_restJson1ListPermissionGroupsCommand: (
|
|
343
|
+
output: __HttpResponse,
|
|
344
|
+
context: __SerdeContext
|
|
345
|
+
) => Promise<ListPermissionGroupsCommandOutput>;
|
|
346
|
+
export declare const deserializeAws_restJson1ListPermissionGroupsByUserCommand: (
|
|
347
|
+
output: __HttpResponse,
|
|
348
|
+
context: __SerdeContext
|
|
349
|
+
) => Promise<ListPermissionGroupsByUserCommandOutput>;
|
|
350
|
+
export declare const deserializeAws_restJson1ListUsersCommand: (
|
|
351
|
+
output: __HttpResponse,
|
|
352
|
+
context: __SerdeContext
|
|
353
|
+
) => Promise<ListUsersCommandOutput>;
|
|
354
|
+
export declare const deserializeAws_restJson1ListUsersByPermissionGroupCommand: (
|
|
355
|
+
output: __HttpResponse,
|
|
356
|
+
context: __SerdeContext
|
|
357
|
+
) => Promise<ListUsersByPermissionGroupCommandOutput>;
|
|
358
|
+
export declare const deserializeAws_restJson1ResetUserPasswordCommand: (
|
|
359
|
+
output: __HttpResponse,
|
|
360
|
+
context: __SerdeContext
|
|
361
|
+
) => Promise<ResetUserPasswordCommandOutput>;
|
|
362
|
+
export declare const deserializeAws_restJson1UpdateChangesetCommand: (
|
|
363
|
+
output: __HttpResponse,
|
|
364
|
+
context: __SerdeContext
|
|
365
|
+
) => Promise<UpdateChangesetCommandOutput>;
|
|
366
|
+
export declare const deserializeAws_restJson1UpdateDatasetCommand: (
|
|
367
|
+
output: __HttpResponse,
|
|
368
|
+
context: __SerdeContext
|
|
369
|
+
) => Promise<UpdateDatasetCommandOutput>;
|
|
370
|
+
export declare const deserializeAws_restJson1UpdatePermissionGroupCommand: (
|
|
371
|
+
output: __HttpResponse,
|
|
372
|
+
context: __SerdeContext
|
|
373
|
+
) => Promise<UpdatePermissionGroupCommandOutput>;
|
|
374
|
+
export declare const deserializeAws_restJson1UpdateUserCommand: (
|
|
375
|
+
output: __HttpResponse,
|
|
376
|
+
context: __SerdeContext
|
|
377
|
+
) => Promise<UpdateUserCommandOutput>;
|