@aws-sdk/client-finspace-data 3.934.0 → 3.936.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 +92 -91
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +91 -0
- package/dist-es/models/errors.js +91 -0
- package/dist-es/models/models_0.js +1 -182
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +203 -0
- package/dist-types/models/errors.d.ts +90 -0
- package/dist-types/models/models_0.d.ts +1 -293
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +111 -0
- package/dist-types/ts3.4/models/errors.d.ts +52 -0
- package/dist-types/ts3.4/models/models_0.d.ts +16 -163
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
export declare const ApiAccess: {
|
|
2
|
+
readonly DISABLED: "DISABLED";
|
|
3
|
+
readonly ENABLED: "ENABLED";
|
|
4
|
+
};
|
|
5
|
+
export type ApiAccess = (typeof ApiAccess)[keyof typeof ApiAccess];
|
|
6
|
+
export declare const ApplicationPermission: {
|
|
7
|
+
readonly AccessNotebooks: "AccessNotebooks";
|
|
8
|
+
readonly CreateDataset: "CreateDataset";
|
|
9
|
+
readonly GetTemporaryCredentials: "GetTemporaryCredentials";
|
|
10
|
+
readonly ManageAttributeSets: "ManageAttributeSets";
|
|
11
|
+
readonly ManageClusters: "ManageClusters";
|
|
12
|
+
readonly ManageUsersAndGroups: "ManageUsersAndGroups";
|
|
13
|
+
readonly ViewAuditData: "ViewAuditData";
|
|
14
|
+
};
|
|
15
|
+
export type ApplicationPermission =
|
|
16
|
+
(typeof ApplicationPermission)[keyof typeof ApplicationPermission];
|
|
17
|
+
export declare const ChangeType: {
|
|
18
|
+
readonly APPEND: "APPEND";
|
|
19
|
+
readonly MODIFY: "MODIFY";
|
|
20
|
+
readonly REPLACE: "REPLACE";
|
|
21
|
+
};
|
|
22
|
+
export type ChangeType = (typeof ChangeType)[keyof typeof ChangeType];
|
|
23
|
+
export declare const DatasetKind: {
|
|
24
|
+
readonly NON_TABULAR: "NON_TABULAR";
|
|
25
|
+
readonly TABULAR: "TABULAR";
|
|
26
|
+
};
|
|
27
|
+
export type DatasetKind = (typeof DatasetKind)[keyof typeof DatasetKind];
|
|
28
|
+
export declare const ColumnDataType: {
|
|
29
|
+
readonly BIGINT: "BIGINT";
|
|
30
|
+
readonly BINARY: "BINARY";
|
|
31
|
+
readonly BOOLEAN: "BOOLEAN";
|
|
32
|
+
readonly CHAR: "CHAR";
|
|
33
|
+
readonly DATE: "DATE";
|
|
34
|
+
readonly DATETIME: "DATETIME";
|
|
35
|
+
readonly DOUBLE: "DOUBLE";
|
|
36
|
+
readonly FLOAT: "FLOAT";
|
|
37
|
+
readonly INTEGER: "INTEGER";
|
|
38
|
+
readonly SMALLINT: "SMALLINT";
|
|
39
|
+
readonly STRING: "STRING";
|
|
40
|
+
readonly TINYINT: "TINYINT";
|
|
41
|
+
};
|
|
42
|
+
export type ColumnDataType =
|
|
43
|
+
(typeof ColumnDataType)[keyof typeof ColumnDataType];
|
|
44
|
+
export declare const ExportFileFormat: {
|
|
45
|
+
readonly DELIMITED_TEXT: "DELIMITED_TEXT";
|
|
46
|
+
readonly PARQUET: "PARQUET";
|
|
47
|
+
};
|
|
48
|
+
export type ExportFileFormat =
|
|
49
|
+
(typeof ExportFileFormat)[keyof typeof ExportFileFormat];
|
|
50
|
+
export declare const UserType: {
|
|
51
|
+
readonly APP_USER: "APP_USER";
|
|
52
|
+
readonly SUPER_USER: "SUPER_USER";
|
|
53
|
+
};
|
|
54
|
+
export type UserType = (typeof UserType)[keyof typeof UserType];
|
|
55
|
+
export declare const ErrorCategory: {
|
|
56
|
+
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
57
|
+
readonly CANCELLED: "CANCELLED";
|
|
58
|
+
readonly INTERNAL_SERVICE_EXCEPTION: "INTERNAL_SERVICE_EXCEPTION";
|
|
59
|
+
readonly RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND";
|
|
60
|
+
readonly SERVICE_QUOTA_EXCEEDED: "SERVICE_QUOTA_EXCEEDED";
|
|
61
|
+
readonly THROTTLING: "THROTTLING";
|
|
62
|
+
readonly USER_RECOVERABLE: "USER_RECOVERABLE";
|
|
63
|
+
readonly VALIDATION: "VALIDATION";
|
|
64
|
+
};
|
|
65
|
+
export type ErrorCategory = (typeof ErrorCategory)[keyof typeof ErrorCategory];
|
|
66
|
+
export declare const IngestionStatus: {
|
|
67
|
+
readonly FAILED: "FAILED";
|
|
68
|
+
readonly PENDING: "PENDING";
|
|
69
|
+
readonly RUNNING: "RUNNING";
|
|
70
|
+
readonly STOP_REQUESTED: "STOP_REQUESTED";
|
|
71
|
+
readonly SUCCESS: "SUCCESS";
|
|
72
|
+
};
|
|
73
|
+
export type IngestionStatus =
|
|
74
|
+
(typeof IngestionStatus)[keyof typeof IngestionStatus];
|
|
75
|
+
export declare const DatasetStatus: {
|
|
76
|
+
readonly FAILED: "FAILED";
|
|
77
|
+
readonly PENDING: "PENDING";
|
|
78
|
+
readonly RUNNING: "RUNNING";
|
|
79
|
+
readonly SUCCESS: "SUCCESS";
|
|
80
|
+
};
|
|
81
|
+
export type DatasetStatus = (typeof DatasetStatus)[keyof typeof DatasetStatus];
|
|
82
|
+
export declare const DataViewStatus: {
|
|
83
|
+
readonly CANCELLED: "CANCELLED";
|
|
84
|
+
readonly FAILED: "FAILED";
|
|
85
|
+
readonly FAILED_CLEANUP_FAILED: "FAILED_CLEANUP_FAILED";
|
|
86
|
+
readonly PENDING: "PENDING";
|
|
87
|
+
readonly RUNNING: "RUNNING";
|
|
88
|
+
readonly STARTING: "STARTING";
|
|
89
|
+
readonly SUCCESS: "SUCCESS";
|
|
90
|
+
readonly TIMEOUT: "TIMEOUT";
|
|
91
|
+
};
|
|
92
|
+
export type DataViewStatus =
|
|
93
|
+
(typeof DataViewStatus)[keyof typeof DataViewStatus];
|
|
94
|
+
export declare const PermissionGroupMembershipStatus: {
|
|
95
|
+
readonly ADDITION_IN_PROGRESS: "ADDITION_IN_PROGRESS";
|
|
96
|
+
readonly ADDITION_SUCCESS: "ADDITION_SUCCESS";
|
|
97
|
+
readonly REMOVAL_IN_PROGRESS: "REMOVAL_IN_PROGRESS";
|
|
98
|
+
};
|
|
99
|
+
export type PermissionGroupMembershipStatus =
|
|
100
|
+
(typeof PermissionGroupMembershipStatus)[keyof typeof PermissionGroupMembershipStatus];
|
|
101
|
+
export declare const UserStatus: {
|
|
102
|
+
readonly CREATING: "CREATING";
|
|
103
|
+
readonly DISABLED: "DISABLED";
|
|
104
|
+
readonly ENABLED: "ENABLED";
|
|
105
|
+
};
|
|
106
|
+
export type UserStatus = (typeof UserStatus)[keyof typeof UserStatus];
|
|
107
|
+
export declare const LocationType: {
|
|
108
|
+
readonly INGESTION: "INGESTION";
|
|
109
|
+
readonly SAGEMAKER: "SAGEMAKER";
|
|
110
|
+
};
|
|
111
|
+
export type LocationType = (typeof LocationType)[keyof typeof LocationType];
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { FinspaceDataServiceException as __BaseException } from "./FinspaceDataServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
constructor(
|
|
7
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
+
);
|
|
9
|
+
}
|
|
10
|
+
export declare class ConflictException extends __BaseException {
|
|
11
|
+
readonly name: "ConflictException";
|
|
12
|
+
readonly $fault: "client";
|
|
13
|
+
reason?: string | undefined;
|
|
14
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
15
|
+
}
|
|
16
|
+
export declare class InternalServerException extends __BaseException {
|
|
17
|
+
readonly name: "InternalServerException";
|
|
18
|
+
readonly $fault: "server";
|
|
19
|
+
constructor(
|
|
20
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
21
|
+
);
|
|
22
|
+
}
|
|
23
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
24
|
+
readonly name: "ResourceNotFoundException";
|
|
25
|
+
readonly $fault: "client";
|
|
26
|
+
reason?: string | undefined;
|
|
27
|
+
constructor(
|
|
28
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
29
|
+
);
|
|
30
|
+
}
|
|
31
|
+
export declare class ThrottlingException extends __BaseException {
|
|
32
|
+
readonly name: "ThrottlingException";
|
|
33
|
+
readonly $fault: "client";
|
|
34
|
+
constructor(
|
|
35
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
36
|
+
);
|
|
37
|
+
}
|
|
38
|
+
export declare class ValidationException extends __BaseException {
|
|
39
|
+
readonly name: "ValidationException";
|
|
40
|
+
readonly $fault: "client";
|
|
41
|
+
reason?: string | undefined;
|
|
42
|
+
constructor(
|
|
43
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
44
|
+
);
|
|
45
|
+
}
|
|
46
|
+
export declare class LimitExceededException extends __BaseException {
|
|
47
|
+
readonly name: "LimitExceededException";
|
|
48
|
+
readonly $fault: "client";
|
|
49
|
+
constructor(
|
|
50
|
+
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
51
|
+
);
|
|
52
|
+
}
|
|
@@ -1,28 +1,19 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
readonly CreateDataset: "CreateDataset";
|
|
18
|
-
readonly GetTemporaryCredentials: "GetTemporaryCredentials";
|
|
19
|
-
readonly ManageAttributeSets: "ManageAttributeSets";
|
|
20
|
-
readonly ManageClusters: "ManageClusters";
|
|
21
|
-
readonly ManageUsersAndGroups: "ManageUsersAndGroups";
|
|
22
|
-
readonly ViewAuditData: "ViewAuditData";
|
|
23
|
-
};
|
|
24
|
-
export type ApplicationPermission =
|
|
25
|
-
(typeof ApplicationPermission)[keyof typeof ApplicationPermission];
|
|
1
|
+
import {
|
|
2
|
+
ApiAccess,
|
|
3
|
+
ApplicationPermission,
|
|
4
|
+
ChangeType,
|
|
5
|
+
ColumnDataType,
|
|
6
|
+
DatasetKind,
|
|
7
|
+
DatasetStatus,
|
|
8
|
+
DataViewStatus,
|
|
9
|
+
ErrorCategory,
|
|
10
|
+
ExportFileFormat,
|
|
11
|
+
IngestionStatus,
|
|
12
|
+
LocationType,
|
|
13
|
+
PermissionGroupMembershipStatus,
|
|
14
|
+
UserStatus,
|
|
15
|
+
UserType,
|
|
16
|
+
} from "./enums";
|
|
26
17
|
export interface AssociateUserToPermissionGroupRequest {
|
|
27
18
|
permissionGroupId: string | undefined;
|
|
28
19
|
userId: string | undefined;
|
|
@@ -31,54 +22,12 @@ export interface AssociateUserToPermissionGroupRequest {
|
|
|
31
22
|
export interface AssociateUserToPermissionGroupResponse {
|
|
32
23
|
statusCode?: number | undefined;
|
|
33
24
|
}
|
|
34
|
-
export declare class ConflictException extends __BaseException {
|
|
35
|
-
readonly name: "ConflictException";
|
|
36
|
-
readonly $fault: "client";
|
|
37
|
-
reason?: string | undefined;
|
|
38
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
39
|
-
}
|
|
40
|
-
export declare class InternalServerException extends __BaseException {
|
|
41
|
-
readonly name: "InternalServerException";
|
|
42
|
-
readonly $fault: "server";
|
|
43
|
-
constructor(
|
|
44
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
45
|
-
);
|
|
46
|
-
}
|
|
47
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
48
|
-
readonly name: "ResourceNotFoundException";
|
|
49
|
-
readonly $fault: "client";
|
|
50
|
-
reason?: string | undefined;
|
|
51
|
-
constructor(
|
|
52
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
53
|
-
);
|
|
54
|
-
}
|
|
55
|
-
export declare class ThrottlingException extends __BaseException {
|
|
56
|
-
readonly name: "ThrottlingException";
|
|
57
|
-
readonly $fault: "client";
|
|
58
|
-
constructor(
|
|
59
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
60
|
-
);
|
|
61
|
-
}
|
|
62
|
-
export declare class ValidationException extends __BaseException {
|
|
63
|
-
readonly name: "ValidationException";
|
|
64
|
-
readonly $fault: "client";
|
|
65
|
-
reason?: string | undefined;
|
|
66
|
-
constructor(
|
|
67
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
68
|
-
);
|
|
69
|
-
}
|
|
70
25
|
export interface AwsCredentials {
|
|
71
26
|
accessKeyId?: string | undefined;
|
|
72
27
|
secretAccessKey?: string | undefined;
|
|
73
28
|
sessionToken?: string | undefined;
|
|
74
29
|
expiration?: number | undefined;
|
|
75
30
|
}
|
|
76
|
-
export declare const ChangeType: {
|
|
77
|
-
readonly APPEND: "APPEND";
|
|
78
|
-
readonly MODIFY: "MODIFY";
|
|
79
|
-
readonly REPLACE: "REPLACE";
|
|
80
|
-
};
|
|
81
|
-
export type ChangeType = (typeof ChangeType)[keyof typeof ChangeType];
|
|
82
31
|
export interface CreateChangesetRequest {
|
|
83
32
|
clientToken?: string | undefined;
|
|
84
33
|
datasetId: string | undefined;
|
|
@@ -90,18 +39,6 @@ export interface CreateChangesetResponse {
|
|
|
90
39
|
datasetId?: string | undefined;
|
|
91
40
|
changesetId?: string | undefined;
|
|
92
41
|
}
|
|
93
|
-
export declare class LimitExceededException extends __BaseException {
|
|
94
|
-
readonly name: "LimitExceededException";
|
|
95
|
-
readonly $fault: "client";
|
|
96
|
-
constructor(
|
|
97
|
-
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
98
|
-
);
|
|
99
|
-
}
|
|
100
|
-
export declare const DatasetKind: {
|
|
101
|
-
readonly NON_TABULAR: "NON_TABULAR";
|
|
102
|
-
readonly TABULAR: "TABULAR";
|
|
103
|
-
};
|
|
104
|
-
export type DatasetKind = (typeof DatasetKind)[keyof typeof DatasetKind];
|
|
105
42
|
export interface DatasetOwnerInfo {
|
|
106
43
|
name?: string | undefined;
|
|
107
44
|
phoneNumber?: string | undefined;
|
|
@@ -114,22 +51,6 @@ export interface PermissionGroupParams {
|
|
|
114
51
|
permissionGroupId?: string | undefined;
|
|
115
52
|
datasetPermissions?: ResourcePermission[] | undefined;
|
|
116
53
|
}
|
|
117
|
-
export declare const ColumnDataType: {
|
|
118
|
-
readonly BIGINT: "BIGINT";
|
|
119
|
-
readonly BINARY: "BINARY";
|
|
120
|
-
readonly BOOLEAN: "BOOLEAN";
|
|
121
|
-
readonly CHAR: "CHAR";
|
|
122
|
-
readonly DATE: "DATE";
|
|
123
|
-
readonly DATETIME: "DATETIME";
|
|
124
|
-
readonly DOUBLE: "DOUBLE";
|
|
125
|
-
readonly FLOAT: "FLOAT";
|
|
126
|
-
readonly INTEGER: "INTEGER";
|
|
127
|
-
readonly SMALLINT: "SMALLINT";
|
|
128
|
-
readonly STRING: "STRING";
|
|
129
|
-
readonly TINYINT: "TINYINT";
|
|
130
|
-
};
|
|
131
|
-
export type ColumnDataType =
|
|
132
|
-
(typeof ColumnDataType)[keyof typeof ColumnDataType];
|
|
133
54
|
export interface ColumnDefinition {
|
|
134
55
|
dataType?: ColumnDataType | undefined;
|
|
135
56
|
columnName?: string | undefined;
|
|
@@ -155,12 +76,6 @@ export interface CreateDatasetRequest {
|
|
|
155
76
|
export interface CreateDatasetResponse {
|
|
156
77
|
datasetId?: string | undefined;
|
|
157
78
|
}
|
|
158
|
-
export declare const ExportFileFormat: {
|
|
159
|
-
readonly DELIMITED_TEXT: "DELIMITED_TEXT";
|
|
160
|
-
readonly PARQUET: "PARQUET";
|
|
161
|
-
};
|
|
162
|
-
export type ExportFileFormat =
|
|
163
|
-
(typeof ExportFileFormat)[keyof typeof ExportFileFormat];
|
|
164
79
|
export interface DataViewDestinationTypeParams {
|
|
165
80
|
destinationType: string | undefined;
|
|
166
81
|
s3DestinationExportFileFormat?: ExportFileFormat | undefined;
|
|
@@ -188,11 +103,6 @@ export interface CreatePermissionGroupRequest {
|
|
|
188
103
|
export interface CreatePermissionGroupResponse {
|
|
189
104
|
permissionGroupId?: string | undefined;
|
|
190
105
|
}
|
|
191
|
-
export declare const UserType: {
|
|
192
|
-
readonly APP_USER: "APP_USER";
|
|
193
|
-
readonly SUPER_USER: "SUPER_USER";
|
|
194
|
-
};
|
|
195
|
-
export type UserType = (typeof UserType)[keyof typeof UserType];
|
|
196
106
|
export interface CreateUserRequest {
|
|
197
107
|
emailAddress: string | undefined;
|
|
198
108
|
type: UserType | undefined;
|
|
@@ -245,30 +155,10 @@ export interface GetChangesetRequest {
|
|
|
245
155
|
datasetId: string | undefined;
|
|
246
156
|
changesetId: string | undefined;
|
|
247
157
|
}
|
|
248
|
-
export declare const ErrorCategory: {
|
|
249
|
-
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
250
|
-
readonly CANCELLED: "CANCELLED";
|
|
251
|
-
readonly INTERNAL_SERVICE_EXCEPTION: "INTERNAL_SERVICE_EXCEPTION";
|
|
252
|
-
readonly RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND";
|
|
253
|
-
readonly SERVICE_QUOTA_EXCEEDED: "SERVICE_QUOTA_EXCEEDED";
|
|
254
|
-
readonly THROTTLING: "THROTTLING";
|
|
255
|
-
readonly USER_RECOVERABLE: "USER_RECOVERABLE";
|
|
256
|
-
readonly VALIDATION: "VALIDATION";
|
|
257
|
-
};
|
|
258
|
-
export type ErrorCategory = (typeof ErrorCategory)[keyof typeof ErrorCategory];
|
|
259
158
|
export interface ChangesetErrorInfo {
|
|
260
159
|
errorMessage?: string | undefined;
|
|
261
160
|
errorCategory?: ErrorCategory | undefined;
|
|
262
161
|
}
|
|
263
|
-
export declare const IngestionStatus: {
|
|
264
|
-
readonly FAILED: "FAILED";
|
|
265
|
-
readonly PENDING: "PENDING";
|
|
266
|
-
readonly RUNNING: "RUNNING";
|
|
267
|
-
readonly STOP_REQUESTED: "STOP_REQUESTED";
|
|
268
|
-
readonly SUCCESS: "SUCCESS";
|
|
269
|
-
};
|
|
270
|
-
export type IngestionStatus =
|
|
271
|
-
(typeof IngestionStatus)[keyof typeof IngestionStatus];
|
|
272
162
|
export interface GetChangesetResponse {
|
|
273
163
|
changesetId?: string | undefined;
|
|
274
164
|
changesetArn?: string | undefined;
|
|
@@ -287,13 +177,6 @@ export interface GetChangesetResponse {
|
|
|
287
177
|
export interface GetDatasetRequest {
|
|
288
178
|
datasetId: string | undefined;
|
|
289
179
|
}
|
|
290
|
-
export declare const DatasetStatus: {
|
|
291
|
-
readonly FAILED: "FAILED";
|
|
292
|
-
readonly PENDING: "PENDING";
|
|
293
|
-
readonly RUNNING: "RUNNING";
|
|
294
|
-
readonly SUCCESS: "SUCCESS";
|
|
295
|
-
};
|
|
296
|
-
export type DatasetStatus = (typeof DatasetStatus)[keyof typeof DatasetStatus];
|
|
297
180
|
export interface GetDatasetResponse {
|
|
298
181
|
datasetId?: string | undefined;
|
|
299
182
|
datasetArn?: string | undefined;
|
|
@@ -314,18 +197,6 @@ export interface DataViewErrorInfo {
|
|
|
314
197
|
errorMessage?: string | undefined;
|
|
315
198
|
errorCategory?: ErrorCategory | undefined;
|
|
316
199
|
}
|
|
317
|
-
export declare const DataViewStatus: {
|
|
318
|
-
readonly CANCELLED: "CANCELLED";
|
|
319
|
-
readonly FAILED: "FAILED";
|
|
320
|
-
readonly FAILED_CLEANUP_FAILED: "FAILED_CLEANUP_FAILED";
|
|
321
|
-
readonly PENDING: "PENDING";
|
|
322
|
-
readonly RUNNING: "RUNNING";
|
|
323
|
-
readonly STARTING: "STARTING";
|
|
324
|
-
readonly SUCCESS: "SUCCESS";
|
|
325
|
-
readonly TIMEOUT: "TIMEOUT";
|
|
326
|
-
};
|
|
327
|
-
export type DataViewStatus =
|
|
328
|
-
(typeof DataViewStatus)[keyof typeof DataViewStatus];
|
|
329
200
|
export interface GetDataViewResponse {
|
|
330
201
|
autoUpdate?: boolean | undefined;
|
|
331
202
|
partitionColumns?: string[] | undefined;
|
|
@@ -355,13 +226,6 @@ export interface GetExternalDataViewAccessDetailsResponse {
|
|
|
355
226
|
export interface GetPermissionGroupRequest {
|
|
356
227
|
permissionGroupId: string | undefined;
|
|
357
228
|
}
|
|
358
|
-
export declare const PermissionGroupMembershipStatus: {
|
|
359
|
-
readonly ADDITION_IN_PROGRESS: "ADDITION_IN_PROGRESS";
|
|
360
|
-
readonly ADDITION_SUCCESS: "ADDITION_SUCCESS";
|
|
361
|
-
readonly REMOVAL_IN_PROGRESS: "REMOVAL_IN_PROGRESS";
|
|
362
|
-
};
|
|
363
|
-
export type PermissionGroupMembershipStatus =
|
|
364
|
-
(typeof PermissionGroupMembershipStatus)[keyof typeof PermissionGroupMembershipStatus];
|
|
365
229
|
export interface PermissionGroup {
|
|
366
230
|
permissionGroupId?: string | undefined;
|
|
367
231
|
name?: string | undefined;
|
|
@@ -390,12 +254,6 @@ export interface GetProgrammaticAccessCredentialsResponse {
|
|
|
390
254
|
export interface GetUserRequest {
|
|
391
255
|
userId: string | undefined;
|
|
392
256
|
}
|
|
393
|
-
export declare const UserStatus: {
|
|
394
|
-
readonly CREATING: "CREATING";
|
|
395
|
-
readonly DISABLED: "DISABLED";
|
|
396
|
-
readonly ENABLED: "ENABLED";
|
|
397
|
-
};
|
|
398
|
-
export type UserStatus = (typeof UserStatus)[keyof typeof UserStatus];
|
|
399
257
|
export interface GetUserResponse {
|
|
400
258
|
userId?: string | undefined;
|
|
401
259
|
status?: UserStatus | undefined;
|
|
@@ -411,11 +269,6 @@ export interface GetUserResponse {
|
|
|
411
269
|
lastModifiedTime?: number | undefined;
|
|
412
270
|
lastLoginTime?: number | undefined;
|
|
413
271
|
}
|
|
414
|
-
export declare const LocationType: {
|
|
415
|
-
readonly INGESTION: "INGESTION";
|
|
416
|
-
readonly SAGEMAKER: "SAGEMAKER";
|
|
417
|
-
};
|
|
418
|
-
export type LocationType = (typeof LocationType)[keyof typeof LocationType];
|
|
419
272
|
export interface GetWorkingLocationRequest {
|
|
420
273
|
locationType?: LocationType | undefined;
|
|
421
274
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-finspace-data",
|
|
3
3
|
"description": "AWS SDK for JavaScript Finspace Data Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.936.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-finspace-data",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.936.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.936.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.936.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
|
+
"@aws-sdk/types": "3.936.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.936.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|