@aws-sdk/client-finspace-data 3.1087.0 → 3.1089.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/FinspaceData.d.ts +107 -145
- package/dist-types/ts3.4/FinspaceDataClient.d.ts +14 -48
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/AssociateUserToPermissionGroupCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateChangesetCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateDataViewCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateDatasetCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreatePermissionGroupCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteDatasetCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeletePermissionGroupCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DisableUserCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DisassociateUserFromPermissionGroupCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/EnableUserCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetChangesetCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetDataViewCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetDatasetCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetExternalDataViewAccessDetailsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetPermissionGroupCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetProgrammaticAccessCredentialsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetUserCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/GetWorkingLocationCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListChangesetsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListDataViewsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListDatasetsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListPermissionGroupsByUserCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListPermissionGroupsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListUsersByPermissionGroupCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/ResetUserPasswordCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateChangesetCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateDatasetCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdatePermissionGroupCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +3 -5
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +4 -8
- package/dist-types/ts3.4/models/errors.d.ts +6 -18
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListUsersPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -23,10 +23,7 @@ import {
|
|
|
23
23
|
CreatePermissionGroupCommandInput,
|
|
24
24
|
CreatePermissionGroupCommandOutput,
|
|
25
25
|
} from "./commands/CreatePermissionGroupCommand";
|
|
26
|
-
import {
|
|
27
|
-
CreateUserCommandInput,
|
|
28
|
-
CreateUserCommandOutput,
|
|
29
|
-
} from "./commands/CreateUserCommand";
|
|
26
|
+
import { CreateUserCommandInput, CreateUserCommandOutput } from "./commands/CreateUserCommand";
|
|
30
27
|
import {
|
|
31
28
|
DeleteDatasetCommandInput,
|
|
32
29
|
DeleteDatasetCommandOutput,
|
|
@@ -35,30 +32,18 @@ import {
|
|
|
35
32
|
DeletePermissionGroupCommandInput,
|
|
36
33
|
DeletePermissionGroupCommandOutput,
|
|
37
34
|
} from "./commands/DeletePermissionGroupCommand";
|
|
38
|
-
import {
|
|
39
|
-
DisableUserCommandInput,
|
|
40
|
-
DisableUserCommandOutput,
|
|
41
|
-
} from "./commands/DisableUserCommand";
|
|
35
|
+
import { DisableUserCommandInput, DisableUserCommandOutput } from "./commands/DisableUserCommand";
|
|
42
36
|
import {
|
|
43
37
|
DisassociateUserFromPermissionGroupCommandInput,
|
|
44
38
|
DisassociateUserFromPermissionGroupCommandOutput,
|
|
45
39
|
} from "./commands/DisassociateUserFromPermissionGroupCommand";
|
|
46
|
-
import {
|
|
47
|
-
EnableUserCommandInput,
|
|
48
|
-
EnableUserCommandOutput,
|
|
49
|
-
} from "./commands/EnableUserCommand";
|
|
40
|
+
import { EnableUserCommandInput, EnableUserCommandOutput } from "./commands/EnableUserCommand";
|
|
50
41
|
import {
|
|
51
42
|
GetChangesetCommandInput,
|
|
52
43
|
GetChangesetCommandOutput,
|
|
53
44
|
} from "./commands/GetChangesetCommand";
|
|
54
|
-
import {
|
|
55
|
-
|
|
56
|
-
GetDatasetCommandOutput,
|
|
57
|
-
} from "./commands/GetDatasetCommand";
|
|
58
|
-
import {
|
|
59
|
-
GetDataViewCommandInput,
|
|
60
|
-
GetDataViewCommandOutput,
|
|
61
|
-
} from "./commands/GetDataViewCommand";
|
|
45
|
+
import { GetDatasetCommandInput, GetDatasetCommandOutput } from "./commands/GetDatasetCommand";
|
|
46
|
+
import { GetDataViewCommandInput, GetDataViewCommandOutput } from "./commands/GetDataViewCommand";
|
|
62
47
|
import {
|
|
63
48
|
GetExternalDataViewAccessDetailsCommandInput,
|
|
64
49
|
GetExternalDataViewAccessDetailsCommandOutput,
|
|
@@ -71,10 +56,7 @@ import {
|
|
|
71
56
|
GetProgrammaticAccessCredentialsCommandInput,
|
|
72
57
|
GetProgrammaticAccessCredentialsCommandOutput,
|
|
73
58
|
} from "./commands/GetProgrammaticAccessCredentialsCommand";
|
|
74
|
-
import {
|
|
75
|
-
GetUserCommandInput,
|
|
76
|
-
GetUserCommandOutput,
|
|
77
|
-
} from "./commands/GetUserCommand";
|
|
59
|
+
import { GetUserCommandInput, GetUserCommandOutput } from "./commands/GetUserCommand";
|
|
78
60
|
import {
|
|
79
61
|
GetWorkingLocationCommandInput,
|
|
80
62
|
GetWorkingLocationCommandOutput,
|
|
@@ -103,10 +85,7 @@ import {
|
|
|
103
85
|
ListUsersByPermissionGroupCommandInput,
|
|
104
86
|
ListUsersByPermissionGroupCommandOutput,
|
|
105
87
|
} from "./commands/ListUsersByPermissionGroupCommand";
|
|
106
|
-
import {
|
|
107
|
-
ListUsersCommandInput,
|
|
108
|
-
ListUsersCommandOutput,
|
|
109
|
-
} from "./commands/ListUsersCommand";
|
|
88
|
+
import { ListUsersCommandInput, ListUsersCommandOutput } from "./commands/ListUsersCommand";
|
|
110
89
|
import {
|
|
111
90
|
ResetUserPasswordCommandInput,
|
|
112
91
|
ResetUserPasswordCommandOutput,
|
|
@@ -123,459 +102,442 @@ import {
|
|
|
123
102
|
UpdatePermissionGroupCommandInput,
|
|
124
103
|
UpdatePermissionGroupCommandOutput,
|
|
125
104
|
} from "./commands/UpdatePermissionGroupCommand";
|
|
126
|
-
import {
|
|
127
|
-
UpdateUserCommandInput,
|
|
128
|
-
UpdateUserCommandOutput,
|
|
129
|
-
} from "./commands/UpdateUserCommand";
|
|
105
|
+
import { UpdateUserCommandInput, UpdateUserCommandOutput } from "./commands/UpdateUserCommand";
|
|
130
106
|
import { FinspaceDataClient } from "./FinspaceDataClient";
|
|
131
107
|
export interface FinspaceData {
|
|
132
108
|
associateUserToPermissionGroup(
|
|
133
109
|
args: AssociateUserToPermissionGroupCommandInput,
|
|
134
|
-
options?: __HttpHandlerOptions
|
|
110
|
+
options?: __HttpHandlerOptions,
|
|
135
111
|
): Promise<AssociateUserToPermissionGroupCommandOutput>;
|
|
136
112
|
associateUserToPermissionGroup(
|
|
137
113
|
args: AssociateUserToPermissionGroupCommandInput,
|
|
138
|
-
cb: (err: any, data?: AssociateUserToPermissionGroupCommandOutput) => void
|
|
114
|
+
cb: (err: any, data?: AssociateUserToPermissionGroupCommandOutput) => void,
|
|
139
115
|
): void;
|
|
140
116
|
associateUserToPermissionGroup(
|
|
141
117
|
args: AssociateUserToPermissionGroupCommandInput,
|
|
142
118
|
options: __HttpHandlerOptions,
|
|
143
|
-
cb: (err: any, data?: AssociateUserToPermissionGroupCommandOutput) => void
|
|
119
|
+
cb: (err: any, data?: AssociateUserToPermissionGroupCommandOutput) => void,
|
|
144
120
|
): void;
|
|
145
121
|
createChangeset(
|
|
146
122
|
args: CreateChangesetCommandInput,
|
|
147
|
-
options?: __HttpHandlerOptions
|
|
123
|
+
options?: __HttpHandlerOptions,
|
|
148
124
|
): Promise<CreateChangesetCommandOutput>;
|
|
149
125
|
createChangeset(
|
|
150
126
|
args: CreateChangesetCommandInput,
|
|
151
|
-
cb: (err: any, data?: CreateChangesetCommandOutput) => void
|
|
127
|
+
cb: (err: any, data?: CreateChangesetCommandOutput) => void,
|
|
152
128
|
): void;
|
|
153
129
|
createChangeset(
|
|
154
130
|
args: CreateChangesetCommandInput,
|
|
155
131
|
options: __HttpHandlerOptions,
|
|
156
|
-
cb: (err: any, data?: CreateChangesetCommandOutput) => void
|
|
132
|
+
cb: (err: any, data?: CreateChangesetCommandOutput) => void,
|
|
157
133
|
): void;
|
|
158
134
|
createDataset(
|
|
159
135
|
args: CreateDatasetCommandInput,
|
|
160
|
-
options?: __HttpHandlerOptions
|
|
136
|
+
options?: __HttpHandlerOptions,
|
|
161
137
|
): Promise<CreateDatasetCommandOutput>;
|
|
162
138
|
createDataset(
|
|
163
139
|
args: CreateDatasetCommandInput,
|
|
164
|
-
cb: (err: any, data?: CreateDatasetCommandOutput) => void
|
|
140
|
+
cb: (err: any, data?: CreateDatasetCommandOutput) => void,
|
|
165
141
|
): void;
|
|
166
142
|
createDataset(
|
|
167
143
|
args: CreateDatasetCommandInput,
|
|
168
144
|
options: __HttpHandlerOptions,
|
|
169
|
-
cb: (err: any, data?: CreateDatasetCommandOutput) => void
|
|
145
|
+
cb: (err: any, data?: CreateDatasetCommandOutput) => void,
|
|
170
146
|
): void;
|
|
171
147
|
createDataView(
|
|
172
148
|
args: CreateDataViewCommandInput,
|
|
173
|
-
options?: __HttpHandlerOptions
|
|
149
|
+
options?: __HttpHandlerOptions,
|
|
174
150
|
): Promise<CreateDataViewCommandOutput>;
|
|
175
151
|
createDataView(
|
|
176
152
|
args: CreateDataViewCommandInput,
|
|
177
|
-
cb: (err: any, data?: CreateDataViewCommandOutput) => void
|
|
153
|
+
cb: (err: any, data?: CreateDataViewCommandOutput) => void,
|
|
178
154
|
): void;
|
|
179
155
|
createDataView(
|
|
180
156
|
args: CreateDataViewCommandInput,
|
|
181
157
|
options: __HttpHandlerOptions,
|
|
182
|
-
cb: (err: any, data?: CreateDataViewCommandOutput) => void
|
|
158
|
+
cb: (err: any, data?: CreateDataViewCommandOutput) => void,
|
|
183
159
|
): void;
|
|
184
160
|
createPermissionGroup(
|
|
185
161
|
args: CreatePermissionGroupCommandInput,
|
|
186
|
-
options?: __HttpHandlerOptions
|
|
162
|
+
options?: __HttpHandlerOptions,
|
|
187
163
|
): Promise<CreatePermissionGroupCommandOutput>;
|
|
188
164
|
createPermissionGroup(
|
|
189
165
|
args: CreatePermissionGroupCommandInput,
|
|
190
|
-
cb: (err: any, data?: CreatePermissionGroupCommandOutput) => void
|
|
166
|
+
cb: (err: any, data?: CreatePermissionGroupCommandOutput) => void,
|
|
191
167
|
): void;
|
|
192
168
|
createPermissionGroup(
|
|
193
169
|
args: CreatePermissionGroupCommandInput,
|
|
194
170
|
options: __HttpHandlerOptions,
|
|
195
|
-
cb: (err: any, data?: CreatePermissionGroupCommandOutput) => void
|
|
171
|
+
cb: (err: any, data?: CreatePermissionGroupCommandOutput) => void,
|
|
196
172
|
): void;
|
|
197
173
|
createUser(
|
|
198
174
|
args: CreateUserCommandInput,
|
|
199
|
-
options?: __HttpHandlerOptions
|
|
175
|
+
options?: __HttpHandlerOptions,
|
|
200
176
|
): Promise<CreateUserCommandOutput>;
|
|
201
177
|
createUser(
|
|
202
178
|
args: CreateUserCommandInput,
|
|
203
|
-
cb: (err: any, data?: CreateUserCommandOutput) => void
|
|
179
|
+
cb: (err: any, data?: CreateUserCommandOutput) => void,
|
|
204
180
|
): void;
|
|
205
181
|
createUser(
|
|
206
182
|
args: CreateUserCommandInput,
|
|
207
183
|
options: __HttpHandlerOptions,
|
|
208
|
-
cb: (err: any, data?: CreateUserCommandOutput) => void
|
|
184
|
+
cb: (err: any, data?: CreateUserCommandOutput) => void,
|
|
209
185
|
): void;
|
|
210
186
|
deleteDataset(
|
|
211
187
|
args: DeleteDatasetCommandInput,
|
|
212
|
-
options?: __HttpHandlerOptions
|
|
188
|
+
options?: __HttpHandlerOptions,
|
|
213
189
|
): Promise<DeleteDatasetCommandOutput>;
|
|
214
190
|
deleteDataset(
|
|
215
191
|
args: DeleteDatasetCommandInput,
|
|
216
|
-
cb: (err: any, data?: DeleteDatasetCommandOutput) => void
|
|
192
|
+
cb: (err: any, data?: DeleteDatasetCommandOutput) => void,
|
|
217
193
|
): void;
|
|
218
194
|
deleteDataset(
|
|
219
195
|
args: DeleteDatasetCommandInput,
|
|
220
196
|
options: __HttpHandlerOptions,
|
|
221
|
-
cb: (err: any, data?: DeleteDatasetCommandOutput) => void
|
|
197
|
+
cb: (err: any, data?: DeleteDatasetCommandOutput) => void,
|
|
222
198
|
): void;
|
|
223
199
|
deletePermissionGroup(
|
|
224
200
|
args: DeletePermissionGroupCommandInput,
|
|
225
|
-
options?: __HttpHandlerOptions
|
|
201
|
+
options?: __HttpHandlerOptions,
|
|
226
202
|
): Promise<DeletePermissionGroupCommandOutput>;
|
|
227
203
|
deletePermissionGroup(
|
|
228
204
|
args: DeletePermissionGroupCommandInput,
|
|
229
|
-
cb: (err: any, data?: DeletePermissionGroupCommandOutput) => void
|
|
205
|
+
cb: (err: any, data?: DeletePermissionGroupCommandOutput) => void,
|
|
230
206
|
): void;
|
|
231
207
|
deletePermissionGroup(
|
|
232
208
|
args: DeletePermissionGroupCommandInput,
|
|
233
209
|
options: __HttpHandlerOptions,
|
|
234
|
-
cb: (err: any, data?: DeletePermissionGroupCommandOutput) => void
|
|
210
|
+
cb: (err: any, data?: DeletePermissionGroupCommandOutput) => void,
|
|
235
211
|
): void;
|
|
236
212
|
disableUser(
|
|
237
213
|
args: DisableUserCommandInput,
|
|
238
|
-
options?: __HttpHandlerOptions
|
|
214
|
+
options?: __HttpHandlerOptions,
|
|
239
215
|
): Promise<DisableUserCommandOutput>;
|
|
240
216
|
disableUser(
|
|
241
217
|
args: DisableUserCommandInput,
|
|
242
|
-
cb: (err: any, data?: DisableUserCommandOutput) => void
|
|
218
|
+
cb: (err: any, data?: DisableUserCommandOutput) => void,
|
|
243
219
|
): void;
|
|
244
220
|
disableUser(
|
|
245
221
|
args: DisableUserCommandInput,
|
|
246
222
|
options: __HttpHandlerOptions,
|
|
247
|
-
cb: (err: any, data?: DisableUserCommandOutput) => void
|
|
223
|
+
cb: (err: any, data?: DisableUserCommandOutput) => void,
|
|
248
224
|
): void;
|
|
249
225
|
disassociateUserFromPermissionGroup(
|
|
250
226
|
args: DisassociateUserFromPermissionGroupCommandInput,
|
|
251
|
-
options?: __HttpHandlerOptions
|
|
227
|
+
options?: __HttpHandlerOptions,
|
|
252
228
|
): Promise<DisassociateUserFromPermissionGroupCommandOutput>;
|
|
253
229
|
disassociateUserFromPermissionGroup(
|
|
254
230
|
args: DisassociateUserFromPermissionGroupCommandInput,
|
|
255
|
-
cb: (
|
|
256
|
-
err: any,
|
|
257
|
-
data?: DisassociateUserFromPermissionGroupCommandOutput
|
|
258
|
-
) => void
|
|
231
|
+
cb: (err: any, data?: DisassociateUserFromPermissionGroupCommandOutput) => void,
|
|
259
232
|
): void;
|
|
260
233
|
disassociateUserFromPermissionGroup(
|
|
261
234
|
args: DisassociateUserFromPermissionGroupCommandInput,
|
|
262
235
|
options: __HttpHandlerOptions,
|
|
263
|
-
cb: (
|
|
264
|
-
err: any,
|
|
265
|
-
data?: DisassociateUserFromPermissionGroupCommandOutput
|
|
266
|
-
) => void
|
|
236
|
+
cb: (err: any, data?: DisassociateUserFromPermissionGroupCommandOutput) => void,
|
|
267
237
|
): void;
|
|
268
238
|
enableUser(
|
|
269
239
|
args: EnableUserCommandInput,
|
|
270
|
-
options?: __HttpHandlerOptions
|
|
240
|
+
options?: __HttpHandlerOptions,
|
|
271
241
|
): Promise<EnableUserCommandOutput>;
|
|
272
242
|
enableUser(
|
|
273
243
|
args: EnableUserCommandInput,
|
|
274
|
-
cb: (err: any, data?: EnableUserCommandOutput) => void
|
|
244
|
+
cb: (err: any, data?: EnableUserCommandOutput) => void,
|
|
275
245
|
): void;
|
|
276
246
|
enableUser(
|
|
277
247
|
args: EnableUserCommandInput,
|
|
278
248
|
options: __HttpHandlerOptions,
|
|
279
|
-
cb: (err: any, data?: EnableUserCommandOutput) => void
|
|
249
|
+
cb: (err: any, data?: EnableUserCommandOutput) => void,
|
|
280
250
|
): void;
|
|
281
251
|
getChangeset(
|
|
282
252
|
args: GetChangesetCommandInput,
|
|
283
|
-
options?: __HttpHandlerOptions
|
|
253
|
+
options?: __HttpHandlerOptions,
|
|
284
254
|
): Promise<GetChangesetCommandOutput>;
|
|
285
255
|
getChangeset(
|
|
286
256
|
args: GetChangesetCommandInput,
|
|
287
|
-
cb: (err: any, data?: GetChangesetCommandOutput) => void
|
|
257
|
+
cb: (err: any, data?: GetChangesetCommandOutput) => void,
|
|
288
258
|
): void;
|
|
289
259
|
getChangeset(
|
|
290
260
|
args: GetChangesetCommandInput,
|
|
291
261
|
options: __HttpHandlerOptions,
|
|
292
|
-
cb: (err: any, data?: GetChangesetCommandOutput) => void
|
|
262
|
+
cb: (err: any, data?: GetChangesetCommandOutput) => void,
|
|
293
263
|
): void;
|
|
294
264
|
getDataset(
|
|
295
265
|
args: GetDatasetCommandInput,
|
|
296
|
-
options?: __HttpHandlerOptions
|
|
266
|
+
options?: __HttpHandlerOptions,
|
|
297
267
|
): Promise<GetDatasetCommandOutput>;
|
|
298
268
|
getDataset(
|
|
299
269
|
args: GetDatasetCommandInput,
|
|
300
|
-
cb: (err: any, data?: GetDatasetCommandOutput) => void
|
|
270
|
+
cb: (err: any, data?: GetDatasetCommandOutput) => void,
|
|
301
271
|
): void;
|
|
302
272
|
getDataset(
|
|
303
273
|
args: GetDatasetCommandInput,
|
|
304
274
|
options: __HttpHandlerOptions,
|
|
305
|
-
cb: (err: any, data?: GetDatasetCommandOutput) => void
|
|
275
|
+
cb: (err: any, data?: GetDatasetCommandOutput) => void,
|
|
306
276
|
): void;
|
|
307
277
|
getDataView(
|
|
308
278
|
args: GetDataViewCommandInput,
|
|
309
|
-
options?: __HttpHandlerOptions
|
|
279
|
+
options?: __HttpHandlerOptions,
|
|
310
280
|
): Promise<GetDataViewCommandOutput>;
|
|
311
281
|
getDataView(
|
|
312
282
|
args: GetDataViewCommandInput,
|
|
313
|
-
cb: (err: any, data?: GetDataViewCommandOutput) => void
|
|
283
|
+
cb: (err: any, data?: GetDataViewCommandOutput) => void,
|
|
314
284
|
): void;
|
|
315
285
|
getDataView(
|
|
316
286
|
args: GetDataViewCommandInput,
|
|
317
287
|
options: __HttpHandlerOptions,
|
|
318
|
-
cb: (err: any, data?: GetDataViewCommandOutput) => void
|
|
288
|
+
cb: (err: any, data?: GetDataViewCommandOutput) => void,
|
|
319
289
|
): void;
|
|
320
290
|
getExternalDataViewAccessDetails(
|
|
321
291
|
args: GetExternalDataViewAccessDetailsCommandInput,
|
|
322
|
-
options?: __HttpHandlerOptions
|
|
292
|
+
options?: __HttpHandlerOptions,
|
|
323
293
|
): Promise<GetExternalDataViewAccessDetailsCommandOutput>;
|
|
324
294
|
getExternalDataViewAccessDetails(
|
|
325
295
|
args: GetExternalDataViewAccessDetailsCommandInput,
|
|
326
|
-
cb: (err: any, data?: GetExternalDataViewAccessDetailsCommandOutput) => void
|
|
296
|
+
cb: (err: any, data?: GetExternalDataViewAccessDetailsCommandOutput) => void,
|
|
327
297
|
): void;
|
|
328
298
|
getExternalDataViewAccessDetails(
|
|
329
299
|
args: GetExternalDataViewAccessDetailsCommandInput,
|
|
330
300
|
options: __HttpHandlerOptions,
|
|
331
|
-
cb: (err: any, data?: GetExternalDataViewAccessDetailsCommandOutput) => void
|
|
301
|
+
cb: (err: any, data?: GetExternalDataViewAccessDetailsCommandOutput) => void,
|
|
332
302
|
): void;
|
|
333
303
|
getPermissionGroup(
|
|
334
304
|
args: GetPermissionGroupCommandInput,
|
|
335
|
-
options?: __HttpHandlerOptions
|
|
305
|
+
options?: __HttpHandlerOptions,
|
|
336
306
|
): Promise<GetPermissionGroupCommandOutput>;
|
|
337
307
|
getPermissionGroup(
|
|
338
308
|
args: GetPermissionGroupCommandInput,
|
|
339
|
-
cb: (err: any, data?: GetPermissionGroupCommandOutput) => void
|
|
309
|
+
cb: (err: any, data?: GetPermissionGroupCommandOutput) => void,
|
|
340
310
|
): void;
|
|
341
311
|
getPermissionGroup(
|
|
342
312
|
args: GetPermissionGroupCommandInput,
|
|
343
313
|
options: __HttpHandlerOptions,
|
|
344
|
-
cb: (err: any, data?: GetPermissionGroupCommandOutput) => void
|
|
314
|
+
cb: (err: any, data?: GetPermissionGroupCommandOutput) => void,
|
|
345
315
|
): void;
|
|
346
316
|
getProgrammaticAccessCredentials(
|
|
347
317
|
args: GetProgrammaticAccessCredentialsCommandInput,
|
|
348
|
-
options?: __HttpHandlerOptions
|
|
318
|
+
options?: __HttpHandlerOptions,
|
|
349
319
|
): Promise<GetProgrammaticAccessCredentialsCommandOutput>;
|
|
350
320
|
getProgrammaticAccessCredentials(
|
|
351
321
|
args: GetProgrammaticAccessCredentialsCommandInput,
|
|
352
|
-
cb: (err: any, data?: GetProgrammaticAccessCredentialsCommandOutput) => void
|
|
322
|
+
cb: (err: any, data?: GetProgrammaticAccessCredentialsCommandOutput) => void,
|
|
353
323
|
): void;
|
|
354
324
|
getProgrammaticAccessCredentials(
|
|
355
325
|
args: GetProgrammaticAccessCredentialsCommandInput,
|
|
356
326
|
options: __HttpHandlerOptions,
|
|
357
|
-
cb: (err: any, data?: GetProgrammaticAccessCredentialsCommandOutput) => void
|
|
358
|
-
): void;
|
|
359
|
-
getUser(
|
|
360
|
-
args: GetUserCommandInput,
|
|
361
|
-
options?: __HttpHandlerOptions
|
|
362
|
-
): Promise<GetUserCommandOutput>;
|
|
363
|
-
getUser(
|
|
364
|
-
args: GetUserCommandInput,
|
|
365
|
-
cb: (err: any, data?: GetUserCommandOutput) => void
|
|
327
|
+
cb: (err: any, data?: GetProgrammaticAccessCredentialsCommandOutput) => void,
|
|
366
328
|
): void;
|
|
329
|
+
getUser(args: GetUserCommandInput, options?: __HttpHandlerOptions): Promise<GetUserCommandOutput>;
|
|
330
|
+
getUser(args: GetUserCommandInput, cb: (err: any, data?: GetUserCommandOutput) => void): void;
|
|
367
331
|
getUser(
|
|
368
332
|
args: GetUserCommandInput,
|
|
369
333
|
options: __HttpHandlerOptions,
|
|
370
|
-
cb: (err: any, data?: GetUserCommandOutput) => void
|
|
334
|
+
cb: (err: any, data?: GetUserCommandOutput) => void,
|
|
371
335
|
): void;
|
|
372
336
|
getWorkingLocation(): Promise<GetWorkingLocationCommandOutput>;
|
|
373
337
|
getWorkingLocation(
|
|
374
338
|
args: GetWorkingLocationCommandInput,
|
|
375
|
-
options?: __HttpHandlerOptions
|
|
339
|
+
options?: __HttpHandlerOptions,
|
|
376
340
|
): Promise<GetWorkingLocationCommandOutput>;
|
|
377
341
|
getWorkingLocation(
|
|
378
342
|
args: GetWorkingLocationCommandInput,
|
|
379
|
-
cb: (err: any, data?: GetWorkingLocationCommandOutput) => void
|
|
343
|
+
cb: (err: any, data?: GetWorkingLocationCommandOutput) => void,
|
|
380
344
|
): void;
|
|
381
345
|
getWorkingLocation(
|
|
382
346
|
args: GetWorkingLocationCommandInput,
|
|
383
347
|
options: __HttpHandlerOptions,
|
|
384
|
-
cb: (err: any, data?: GetWorkingLocationCommandOutput) => void
|
|
348
|
+
cb: (err: any, data?: GetWorkingLocationCommandOutput) => void,
|
|
385
349
|
): void;
|
|
386
350
|
listChangesets(
|
|
387
351
|
args: ListChangesetsCommandInput,
|
|
388
|
-
options?: __HttpHandlerOptions
|
|
352
|
+
options?: __HttpHandlerOptions,
|
|
389
353
|
): Promise<ListChangesetsCommandOutput>;
|
|
390
354
|
listChangesets(
|
|
391
355
|
args: ListChangesetsCommandInput,
|
|
392
|
-
cb: (err: any, data?: ListChangesetsCommandOutput) => void
|
|
356
|
+
cb: (err: any, data?: ListChangesetsCommandOutput) => void,
|
|
393
357
|
): void;
|
|
394
358
|
listChangesets(
|
|
395
359
|
args: ListChangesetsCommandInput,
|
|
396
360
|
options: __HttpHandlerOptions,
|
|
397
|
-
cb: (err: any, data?: ListChangesetsCommandOutput) => void
|
|
361
|
+
cb: (err: any, data?: ListChangesetsCommandOutput) => void,
|
|
398
362
|
): void;
|
|
399
363
|
listDatasets(): Promise<ListDatasetsCommandOutput>;
|
|
400
364
|
listDatasets(
|
|
401
365
|
args: ListDatasetsCommandInput,
|
|
402
|
-
options?: __HttpHandlerOptions
|
|
366
|
+
options?: __HttpHandlerOptions,
|
|
403
367
|
): Promise<ListDatasetsCommandOutput>;
|
|
404
368
|
listDatasets(
|
|
405
369
|
args: ListDatasetsCommandInput,
|
|
406
|
-
cb: (err: any, data?: ListDatasetsCommandOutput) => void
|
|
370
|
+
cb: (err: any, data?: ListDatasetsCommandOutput) => void,
|
|
407
371
|
): void;
|
|
408
372
|
listDatasets(
|
|
409
373
|
args: ListDatasetsCommandInput,
|
|
410
374
|
options: __HttpHandlerOptions,
|
|
411
|
-
cb: (err: any, data?: ListDatasetsCommandOutput) => void
|
|
375
|
+
cb: (err: any, data?: ListDatasetsCommandOutput) => void,
|
|
412
376
|
): void;
|
|
413
377
|
listDataViews(
|
|
414
378
|
args: ListDataViewsCommandInput,
|
|
415
|
-
options?: __HttpHandlerOptions
|
|
379
|
+
options?: __HttpHandlerOptions,
|
|
416
380
|
): Promise<ListDataViewsCommandOutput>;
|
|
417
381
|
listDataViews(
|
|
418
382
|
args: ListDataViewsCommandInput,
|
|
419
|
-
cb: (err: any, data?: ListDataViewsCommandOutput) => void
|
|
383
|
+
cb: (err: any, data?: ListDataViewsCommandOutput) => void,
|
|
420
384
|
): void;
|
|
421
385
|
listDataViews(
|
|
422
386
|
args: ListDataViewsCommandInput,
|
|
423
387
|
options: __HttpHandlerOptions,
|
|
424
|
-
cb: (err: any, data?: ListDataViewsCommandOutput) => void
|
|
388
|
+
cb: (err: any, data?: ListDataViewsCommandOutput) => void,
|
|
425
389
|
): void;
|
|
426
390
|
listPermissionGroups(
|
|
427
391
|
args: ListPermissionGroupsCommandInput,
|
|
428
|
-
options?: __HttpHandlerOptions
|
|
392
|
+
options?: __HttpHandlerOptions,
|
|
429
393
|
): Promise<ListPermissionGroupsCommandOutput>;
|
|
430
394
|
listPermissionGroups(
|
|
431
395
|
args: ListPermissionGroupsCommandInput,
|
|
432
|
-
cb: (err: any, data?: ListPermissionGroupsCommandOutput) => void
|
|
396
|
+
cb: (err: any, data?: ListPermissionGroupsCommandOutput) => void,
|
|
433
397
|
): void;
|
|
434
398
|
listPermissionGroups(
|
|
435
399
|
args: ListPermissionGroupsCommandInput,
|
|
436
400
|
options: __HttpHandlerOptions,
|
|
437
|
-
cb: (err: any, data?: ListPermissionGroupsCommandOutput) => void
|
|
401
|
+
cb: (err: any, data?: ListPermissionGroupsCommandOutput) => void,
|
|
438
402
|
): void;
|
|
439
403
|
listPermissionGroupsByUser(
|
|
440
404
|
args: ListPermissionGroupsByUserCommandInput,
|
|
441
|
-
options?: __HttpHandlerOptions
|
|
405
|
+
options?: __HttpHandlerOptions,
|
|
442
406
|
): Promise<ListPermissionGroupsByUserCommandOutput>;
|
|
443
407
|
listPermissionGroupsByUser(
|
|
444
408
|
args: ListPermissionGroupsByUserCommandInput,
|
|
445
|
-
cb: (err: any, data?: ListPermissionGroupsByUserCommandOutput) => void
|
|
409
|
+
cb: (err: any, data?: ListPermissionGroupsByUserCommandOutput) => void,
|
|
446
410
|
): void;
|
|
447
411
|
listPermissionGroupsByUser(
|
|
448
412
|
args: ListPermissionGroupsByUserCommandInput,
|
|
449
413
|
options: __HttpHandlerOptions,
|
|
450
|
-
cb: (err: any, data?: ListPermissionGroupsByUserCommandOutput) => void
|
|
414
|
+
cb: (err: any, data?: ListPermissionGroupsByUserCommandOutput) => void,
|
|
451
415
|
): void;
|
|
452
416
|
listUsers(
|
|
453
417
|
args: ListUsersCommandInput,
|
|
454
|
-
options?: __HttpHandlerOptions
|
|
418
|
+
options?: __HttpHandlerOptions,
|
|
455
419
|
): Promise<ListUsersCommandOutput>;
|
|
456
420
|
listUsers(
|
|
457
421
|
args: ListUsersCommandInput,
|
|
458
|
-
cb: (err: any, data?: ListUsersCommandOutput) => void
|
|
422
|
+
cb: (err: any, data?: ListUsersCommandOutput) => void,
|
|
459
423
|
): void;
|
|
460
424
|
listUsers(
|
|
461
425
|
args: ListUsersCommandInput,
|
|
462
426
|
options: __HttpHandlerOptions,
|
|
463
|
-
cb: (err: any, data?: ListUsersCommandOutput) => void
|
|
427
|
+
cb: (err: any, data?: ListUsersCommandOutput) => void,
|
|
464
428
|
): void;
|
|
465
429
|
listUsersByPermissionGroup(
|
|
466
430
|
args: ListUsersByPermissionGroupCommandInput,
|
|
467
|
-
options?: __HttpHandlerOptions
|
|
431
|
+
options?: __HttpHandlerOptions,
|
|
468
432
|
): Promise<ListUsersByPermissionGroupCommandOutput>;
|
|
469
433
|
listUsersByPermissionGroup(
|
|
470
434
|
args: ListUsersByPermissionGroupCommandInput,
|
|
471
|
-
cb: (err: any, data?: ListUsersByPermissionGroupCommandOutput) => void
|
|
435
|
+
cb: (err: any, data?: ListUsersByPermissionGroupCommandOutput) => void,
|
|
472
436
|
): void;
|
|
473
437
|
listUsersByPermissionGroup(
|
|
474
438
|
args: ListUsersByPermissionGroupCommandInput,
|
|
475
439
|
options: __HttpHandlerOptions,
|
|
476
|
-
cb: (err: any, data?: ListUsersByPermissionGroupCommandOutput) => void
|
|
440
|
+
cb: (err: any, data?: ListUsersByPermissionGroupCommandOutput) => void,
|
|
477
441
|
): void;
|
|
478
442
|
resetUserPassword(
|
|
479
443
|
args: ResetUserPasswordCommandInput,
|
|
480
|
-
options?: __HttpHandlerOptions
|
|
444
|
+
options?: __HttpHandlerOptions,
|
|
481
445
|
): Promise<ResetUserPasswordCommandOutput>;
|
|
482
446
|
resetUserPassword(
|
|
483
447
|
args: ResetUserPasswordCommandInput,
|
|
484
|
-
cb: (err: any, data?: ResetUserPasswordCommandOutput) => void
|
|
448
|
+
cb: (err: any, data?: ResetUserPasswordCommandOutput) => void,
|
|
485
449
|
): void;
|
|
486
450
|
resetUserPassword(
|
|
487
451
|
args: ResetUserPasswordCommandInput,
|
|
488
452
|
options: __HttpHandlerOptions,
|
|
489
|
-
cb: (err: any, data?: ResetUserPasswordCommandOutput) => void
|
|
453
|
+
cb: (err: any, data?: ResetUserPasswordCommandOutput) => void,
|
|
490
454
|
): void;
|
|
491
455
|
updateChangeset(
|
|
492
456
|
args: UpdateChangesetCommandInput,
|
|
493
|
-
options?: __HttpHandlerOptions
|
|
457
|
+
options?: __HttpHandlerOptions,
|
|
494
458
|
): Promise<UpdateChangesetCommandOutput>;
|
|
495
459
|
updateChangeset(
|
|
496
460
|
args: UpdateChangesetCommandInput,
|
|
497
|
-
cb: (err: any, data?: UpdateChangesetCommandOutput) => void
|
|
461
|
+
cb: (err: any, data?: UpdateChangesetCommandOutput) => void,
|
|
498
462
|
): void;
|
|
499
463
|
updateChangeset(
|
|
500
464
|
args: UpdateChangesetCommandInput,
|
|
501
465
|
options: __HttpHandlerOptions,
|
|
502
|
-
cb: (err: any, data?: UpdateChangesetCommandOutput) => void
|
|
466
|
+
cb: (err: any, data?: UpdateChangesetCommandOutput) => void,
|
|
503
467
|
): void;
|
|
504
468
|
updateDataset(
|
|
505
469
|
args: UpdateDatasetCommandInput,
|
|
506
|
-
options?: __HttpHandlerOptions
|
|
470
|
+
options?: __HttpHandlerOptions,
|
|
507
471
|
): Promise<UpdateDatasetCommandOutput>;
|
|
508
472
|
updateDataset(
|
|
509
473
|
args: UpdateDatasetCommandInput,
|
|
510
|
-
cb: (err: any, data?: UpdateDatasetCommandOutput) => void
|
|
474
|
+
cb: (err: any, data?: UpdateDatasetCommandOutput) => void,
|
|
511
475
|
): void;
|
|
512
476
|
updateDataset(
|
|
513
477
|
args: UpdateDatasetCommandInput,
|
|
514
478
|
options: __HttpHandlerOptions,
|
|
515
|
-
cb: (err: any, data?: UpdateDatasetCommandOutput) => void
|
|
479
|
+
cb: (err: any, data?: UpdateDatasetCommandOutput) => void,
|
|
516
480
|
): void;
|
|
517
481
|
updatePermissionGroup(
|
|
518
482
|
args: UpdatePermissionGroupCommandInput,
|
|
519
|
-
options?: __HttpHandlerOptions
|
|
483
|
+
options?: __HttpHandlerOptions,
|
|
520
484
|
): Promise<UpdatePermissionGroupCommandOutput>;
|
|
521
485
|
updatePermissionGroup(
|
|
522
486
|
args: UpdatePermissionGroupCommandInput,
|
|
523
|
-
cb: (err: any, data?: UpdatePermissionGroupCommandOutput) => void
|
|
487
|
+
cb: (err: any, data?: UpdatePermissionGroupCommandOutput) => void,
|
|
524
488
|
): void;
|
|
525
489
|
updatePermissionGroup(
|
|
526
490
|
args: UpdatePermissionGroupCommandInput,
|
|
527
491
|
options: __HttpHandlerOptions,
|
|
528
|
-
cb: (err: any, data?: UpdatePermissionGroupCommandOutput) => void
|
|
492
|
+
cb: (err: any, data?: UpdatePermissionGroupCommandOutput) => void,
|
|
529
493
|
): void;
|
|
530
494
|
updateUser(
|
|
531
495
|
args: UpdateUserCommandInput,
|
|
532
|
-
options?: __HttpHandlerOptions
|
|
496
|
+
options?: __HttpHandlerOptions,
|
|
533
497
|
): Promise<UpdateUserCommandOutput>;
|
|
534
498
|
updateUser(
|
|
535
499
|
args: UpdateUserCommandInput,
|
|
536
|
-
cb: (err: any, data?: UpdateUserCommandOutput) => void
|
|
500
|
+
cb: (err: any, data?: UpdateUserCommandOutput) => void,
|
|
537
501
|
): void;
|
|
538
502
|
updateUser(
|
|
539
503
|
args: UpdateUserCommandInput,
|
|
540
504
|
options: __HttpHandlerOptions,
|
|
541
|
-
cb: (err: any, data?: UpdateUserCommandOutput) => void
|
|
505
|
+
cb: (err: any, data?: UpdateUserCommandOutput) => void,
|
|
542
506
|
): void;
|
|
543
507
|
paginateListChangesets(
|
|
544
508
|
args: ListChangesetsCommandInput,
|
|
545
509
|
paginationConfig?: Pick<
|
|
546
510
|
PaginationConfiguration,
|
|
547
511
|
Exclude<keyof PaginationConfiguration, "client">
|
|
548
|
-
|
|
512
|
+
>,
|
|
549
513
|
): Paginator<ListChangesetsCommandOutput>;
|
|
550
514
|
paginateListDatasets(
|
|
551
515
|
args?: ListDatasetsCommandInput,
|
|
552
516
|
paginationConfig?: Pick<
|
|
553
517
|
PaginationConfiguration,
|
|
554
518
|
Exclude<keyof PaginationConfiguration, "client">
|
|
555
|
-
|
|
519
|
+
>,
|
|
556
520
|
): Paginator<ListDatasetsCommandOutput>;
|
|
557
521
|
paginateListDataViews(
|
|
558
522
|
args: ListDataViewsCommandInput,
|
|
559
523
|
paginationConfig?: Pick<
|
|
560
524
|
PaginationConfiguration,
|
|
561
525
|
Exclude<keyof PaginationConfiguration, "client">
|
|
562
|
-
|
|
526
|
+
>,
|
|
563
527
|
): Paginator<ListDataViewsCommandOutput>;
|
|
564
528
|
paginateListPermissionGroups(
|
|
565
529
|
args: ListPermissionGroupsCommandInput,
|
|
566
530
|
paginationConfig?: Pick<
|
|
567
531
|
PaginationConfiguration,
|
|
568
532
|
Exclude<keyof PaginationConfiguration, "client">
|
|
569
|
-
|
|
533
|
+
>,
|
|
570
534
|
): Paginator<ListPermissionGroupsCommandOutput>;
|
|
571
535
|
paginateListUsers(
|
|
572
536
|
args: ListUsersCommandInput,
|
|
573
537
|
paginationConfig?: Pick<
|
|
574
538
|
PaginationConfiguration,
|
|
575
539
|
Exclude<keyof PaginationConfiguration, "client">
|
|
576
|
-
|
|
540
|
+
>,
|
|
577
541
|
): Paginator<ListUsersCommandOutput>;
|
|
578
542
|
}
|
|
579
|
-
export declare class FinspaceData
|
|
580
|
-
extends FinspaceDataClient
|
|
581
|
-
implements FinspaceData {}
|
|
543
|
+
export declare class FinspaceData extends FinspaceDataClient implements FinspaceData {}
|