@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,203 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const ApiAccess: {
|
|
6
|
+
readonly DISABLED: "DISABLED";
|
|
7
|
+
readonly ENABLED: "ENABLED";
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
export type ApiAccess = (typeof ApiAccess)[keyof typeof ApiAccess];
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
* @enum
|
|
16
|
+
*/
|
|
17
|
+
export declare const ApplicationPermission: {
|
|
18
|
+
readonly AccessNotebooks: "AccessNotebooks";
|
|
19
|
+
readonly CreateDataset: "CreateDataset";
|
|
20
|
+
readonly GetTemporaryCredentials: "GetTemporaryCredentials";
|
|
21
|
+
readonly ManageAttributeSets: "ManageAttributeSets";
|
|
22
|
+
readonly ManageClusters: "ManageClusters";
|
|
23
|
+
readonly ManageUsersAndGroups: "ManageUsersAndGroups";
|
|
24
|
+
readonly ViewAuditData: "ViewAuditData";
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
export type ApplicationPermission = (typeof ApplicationPermission)[keyof typeof ApplicationPermission];
|
|
30
|
+
/**
|
|
31
|
+
* @public
|
|
32
|
+
* @enum
|
|
33
|
+
*/
|
|
34
|
+
export declare const ChangeType: {
|
|
35
|
+
readonly APPEND: "APPEND";
|
|
36
|
+
readonly MODIFY: "MODIFY";
|
|
37
|
+
readonly REPLACE: "REPLACE";
|
|
38
|
+
};
|
|
39
|
+
/**
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
42
|
+
export type ChangeType = (typeof ChangeType)[keyof typeof ChangeType];
|
|
43
|
+
/**
|
|
44
|
+
* @public
|
|
45
|
+
* @enum
|
|
46
|
+
*/
|
|
47
|
+
export declare const DatasetKind: {
|
|
48
|
+
readonly NON_TABULAR: "NON_TABULAR";
|
|
49
|
+
readonly TABULAR: "TABULAR";
|
|
50
|
+
};
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
54
|
+
export type DatasetKind = (typeof DatasetKind)[keyof typeof DatasetKind];
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
* @enum
|
|
58
|
+
*/
|
|
59
|
+
export declare const ColumnDataType: {
|
|
60
|
+
readonly BIGINT: "BIGINT";
|
|
61
|
+
readonly BINARY: "BINARY";
|
|
62
|
+
readonly BOOLEAN: "BOOLEAN";
|
|
63
|
+
readonly CHAR: "CHAR";
|
|
64
|
+
readonly DATE: "DATE";
|
|
65
|
+
readonly DATETIME: "DATETIME";
|
|
66
|
+
readonly DOUBLE: "DOUBLE";
|
|
67
|
+
readonly FLOAT: "FLOAT";
|
|
68
|
+
readonly INTEGER: "INTEGER";
|
|
69
|
+
readonly SMALLINT: "SMALLINT";
|
|
70
|
+
readonly STRING: "STRING";
|
|
71
|
+
readonly TINYINT: "TINYINT";
|
|
72
|
+
};
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
export type ColumnDataType = (typeof ColumnDataType)[keyof typeof ColumnDataType];
|
|
77
|
+
/**
|
|
78
|
+
* @public
|
|
79
|
+
* @enum
|
|
80
|
+
*/
|
|
81
|
+
export declare const ExportFileFormat: {
|
|
82
|
+
readonly DELIMITED_TEXT: "DELIMITED_TEXT";
|
|
83
|
+
readonly PARQUET: "PARQUET";
|
|
84
|
+
};
|
|
85
|
+
/**
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
88
|
+
export type ExportFileFormat = (typeof ExportFileFormat)[keyof typeof ExportFileFormat];
|
|
89
|
+
/**
|
|
90
|
+
* @public
|
|
91
|
+
* @enum
|
|
92
|
+
*/
|
|
93
|
+
export declare const UserType: {
|
|
94
|
+
readonly APP_USER: "APP_USER";
|
|
95
|
+
readonly SUPER_USER: "SUPER_USER";
|
|
96
|
+
};
|
|
97
|
+
/**
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
export type UserType = (typeof UserType)[keyof typeof UserType];
|
|
101
|
+
/**
|
|
102
|
+
* @public
|
|
103
|
+
* @enum
|
|
104
|
+
*/
|
|
105
|
+
export declare const ErrorCategory: {
|
|
106
|
+
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
107
|
+
readonly CANCELLED: "CANCELLED";
|
|
108
|
+
readonly INTERNAL_SERVICE_EXCEPTION: "INTERNAL_SERVICE_EXCEPTION";
|
|
109
|
+
readonly RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND";
|
|
110
|
+
readonly SERVICE_QUOTA_EXCEEDED: "SERVICE_QUOTA_EXCEEDED";
|
|
111
|
+
readonly THROTTLING: "THROTTLING";
|
|
112
|
+
readonly USER_RECOVERABLE: "USER_RECOVERABLE";
|
|
113
|
+
readonly VALIDATION: "VALIDATION";
|
|
114
|
+
};
|
|
115
|
+
/**
|
|
116
|
+
* @public
|
|
117
|
+
*/
|
|
118
|
+
export type ErrorCategory = (typeof ErrorCategory)[keyof typeof ErrorCategory];
|
|
119
|
+
/**
|
|
120
|
+
* @public
|
|
121
|
+
* @enum
|
|
122
|
+
*/
|
|
123
|
+
export declare const IngestionStatus: {
|
|
124
|
+
readonly FAILED: "FAILED";
|
|
125
|
+
readonly PENDING: "PENDING";
|
|
126
|
+
readonly RUNNING: "RUNNING";
|
|
127
|
+
readonly STOP_REQUESTED: "STOP_REQUESTED";
|
|
128
|
+
readonly SUCCESS: "SUCCESS";
|
|
129
|
+
};
|
|
130
|
+
/**
|
|
131
|
+
* @public
|
|
132
|
+
*/
|
|
133
|
+
export type IngestionStatus = (typeof IngestionStatus)[keyof typeof IngestionStatus];
|
|
134
|
+
/**
|
|
135
|
+
* @public
|
|
136
|
+
* @enum
|
|
137
|
+
*/
|
|
138
|
+
export declare const DatasetStatus: {
|
|
139
|
+
readonly FAILED: "FAILED";
|
|
140
|
+
readonly PENDING: "PENDING";
|
|
141
|
+
readonly RUNNING: "RUNNING";
|
|
142
|
+
readonly SUCCESS: "SUCCESS";
|
|
143
|
+
};
|
|
144
|
+
/**
|
|
145
|
+
* @public
|
|
146
|
+
*/
|
|
147
|
+
export type DatasetStatus = (typeof DatasetStatus)[keyof typeof DatasetStatus];
|
|
148
|
+
/**
|
|
149
|
+
* @public
|
|
150
|
+
* @enum
|
|
151
|
+
*/
|
|
152
|
+
export declare const DataViewStatus: {
|
|
153
|
+
readonly CANCELLED: "CANCELLED";
|
|
154
|
+
readonly FAILED: "FAILED";
|
|
155
|
+
readonly FAILED_CLEANUP_FAILED: "FAILED_CLEANUP_FAILED";
|
|
156
|
+
readonly PENDING: "PENDING";
|
|
157
|
+
readonly RUNNING: "RUNNING";
|
|
158
|
+
readonly STARTING: "STARTING";
|
|
159
|
+
readonly SUCCESS: "SUCCESS";
|
|
160
|
+
readonly TIMEOUT: "TIMEOUT";
|
|
161
|
+
};
|
|
162
|
+
/**
|
|
163
|
+
* @public
|
|
164
|
+
*/
|
|
165
|
+
export type DataViewStatus = (typeof DataViewStatus)[keyof typeof DataViewStatus];
|
|
166
|
+
/**
|
|
167
|
+
* @public
|
|
168
|
+
* @enum
|
|
169
|
+
*/
|
|
170
|
+
export declare const PermissionGroupMembershipStatus: {
|
|
171
|
+
readonly ADDITION_IN_PROGRESS: "ADDITION_IN_PROGRESS";
|
|
172
|
+
readonly ADDITION_SUCCESS: "ADDITION_SUCCESS";
|
|
173
|
+
readonly REMOVAL_IN_PROGRESS: "REMOVAL_IN_PROGRESS";
|
|
174
|
+
};
|
|
175
|
+
/**
|
|
176
|
+
* @public
|
|
177
|
+
*/
|
|
178
|
+
export type PermissionGroupMembershipStatus = (typeof PermissionGroupMembershipStatus)[keyof typeof PermissionGroupMembershipStatus];
|
|
179
|
+
/**
|
|
180
|
+
* @public
|
|
181
|
+
* @enum
|
|
182
|
+
*/
|
|
183
|
+
export declare const UserStatus: {
|
|
184
|
+
readonly CREATING: "CREATING";
|
|
185
|
+
readonly DISABLED: "DISABLED";
|
|
186
|
+
readonly ENABLED: "ENABLED";
|
|
187
|
+
};
|
|
188
|
+
/**
|
|
189
|
+
* @public
|
|
190
|
+
*/
|
|
191
|
+
export type UserStatus = (typeof UserStatus)[keyof typeof UserStatus];
|
|
192
|
+
/**
|
|
193
|
+
* @public
|
|
194
|
+
* @enum
|
|
195
|
+
*/
|
|
196
|
+
export declare const LocationType: {
|
|
197
|
+
readonly INGESTION: "INGESTION";
|
|
198
|
+
readonly SAGEMAKER: "SAGEMAKER";
|
|
199
|
+
};
|
|
200
|
+
/**
|
|
201
|
+
* @public
|
|
202
|
+
*/
|
|
203
|
+
export type LocationType = (typeof LocationType)[keyof typeof LocationType];
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { FinspaceDataServiceException as __BaseException } from "./FinspaceDataServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
+
readonly name: "AccessDeniedException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* <p>The request conflicts with an existing resource.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
export declare class ConflictException extends __BaseException {
|
|
20
|
+
readonly name: "ConflictException";
|
|
21
|
+
readonly $fault: "client";
|
|
22
|
+
reason?: string | undefined;
|
|
23
|
+
/**
|
|
24
|
+
* @internal
|
|
25
|
+
*/
|
|
26
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* <p>The request processing has failed because of an unknown error, exception or
|
|
30
|
+
* failure.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
export declare class InternalServerException extends __BaseException {
|
|
34
|
+
readonly name: "InternalServerException";
|
|
35
|
+
readonly $fault: "server";
|
|
36
|
+
/**
|
|
37
|
+
* @internal
|
|
38
|
+
*/
|
|
39
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* <p>One or more resources can't be found.</p>
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
46
|
+
readonly name: "ResourceNotFoundException";
|
|
47
|
+
readonly $fault: "client";
|
|
48
|
+
reason?: string | undefined;
|
|
49
|
+
/**
|
|
50
|
+
* @internal
|
|
51
|
+
*/
|
|
52
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* <p>The request was denied due to request throttling.</p>
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
export declare class ThrottlingException extends __BaseException {
|
|
59
|
+
readonly name: "ThrottlingException";
|
|
60
|
+
readonly $fault: "client";
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
64
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
70
|
+
export declare class ValidationException extends __BaseException {
|
|
71
|
+
readonly name: "ValidationException";
|
|
72
|
+
readonly $fault: "client";
|
|
73
|
+
reason?: string | undefined;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
77
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* <p>A limit has exceeded.</p>
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
83
|
+
export declare class LimitExceededException extends __BaseException {
|
|
84
|
+
readonly name: "LimitExceededException";
|
|
85
|
+
readonly $fault: "client";
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
89
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
90
|
+
}
|
|
@@ -1,46 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { FinspaceDataServiceException as __BaseException } from "./FinspaceDataServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p>You do not have sufficient access to perform this action.</p>
|
|
5
|
-
* @public
|
|
6
|
-
*/
|
|
7
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
-
readonly name: "AccessDeniedException";
|
|
9
|
-
readonly $fault: "client";
|
|
10
|
-
/**
|
|
11
|
-
* @internal
|
|
12
|
-
*/
|
|
13
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
|
-
}
|
|
15
|
-
/**
|
|
16
|
-
* @public
|
|
17
|
-
* @enum
|
|
18
|
-
*/
|
|
19
|
-
export declare const ApiAccess: {
|
|
20
|
-
readonly DISABLED: "DISABLED";
|
|
21
|
-
readonly ENABLED: "ENABLED";
|
|
22
|
-
};
|
|
23
|
-
/**
|
|
24
|
-
* @public
|
|
25
|
-
*/
|
|
26
|
-
export type ApiAccess = (typeof ApiAccess)[keyof typeof ApiAccess];
|
|
27
|
-
/**
|
|
28
|
-
* @public
|
|
29
|
-
* @enum
|
|
30
|
-
*/
|
|
31
|
-
export declare const ApplicationPermission: {
|
|
32
|
-
readonly AccessNotebooks: "AccessNotebooks";
|
|
33
|
-
readonly CreateDataset: "CreateDataset";
|
|
34
|
-
readonly GetTemporaryCredentials: "GetTemporaryCredentials";
|
|
35
|
-
readonly ManageAttributeSets: "ManageAttributeSets";
|
|
36
|
-
readonly ManageClusters: "ManageClusters";
|
|
37
|
-
readonly ManageUsersAndGroups: "ManageUsersAndGroups";
|
|
38
|
-
readonly ViewAuditData: "ViewAuditData";
|
|
39
|
-
};
|
|
40
|
-
/**
|
|
41
|
-
* @public
|
|
42
|
-
*/
|
|
43
|
-
export type ApplicationPermission = (typeof ApplicationPermission)[keyof typeof ApplicationPermission];
|
|
1
|
+
import { ApiAccess, ApplicationPermission, ChangeType, ColumnDataType, DatasetKind, DatasetStatus, DataViewStatus, ErrorCategory, ExportFileFormat, IngestionStatus, LocationType, PermissionGroupMembershipStatus, UserStatus, UserType } from "./enums";
|
|
44
2
|
/**
|
|
45
3
|
* @public
|
|
46
4
|
*/
|
|
@@ -71,70 +29,6 @@ export interface AssociateUserToPermissionGroupResponse {
|
|
|
71
29
|
*/
|
|
72
30
|
statusCode?: number | undefined;
|
|
73
31
|
}
|
|
74
|
-
/**
|
|
75
|
-
* <p>The request conflicts with an existing resource.</p>
|
|
76
|
-
* @public
|
|
77
|
-
*/
|
|
78
|
-
export declare class ConflictException extends __BaseException {
|
|
79
|
-
readonly name: "ConflictException";
|
|
80
|
-
readonly $fault: "client";
|
|
81
|
-
reason?: string | undefined;
|
|
82
|
-
/**
|
|
83
|
-
* @internal
|
|
84
|
-
*/
|
|
85
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
86
|
-
}
|
|
87
|
-
/**
|
|
88
|
-
* <p>The request processing has failed because of an unknown error, exception or
|
|
89
|
-
* failure.</p>
|
|
90
|
-
* @public
|
|
91
|
-
*/
|
|
92
|
-
export declare class InternalServerException extends __BaseException {
|
|
93
|
-
readonly name: "InternalServerException";
|
|
94
|
-
readonly $fault: "server";
|
|
95
|
-
/**
|
|
96
|
-
* @internal
|
|
97
|
-
*/
|
|
98
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
99
|
-
}
|
|
100
|
-
/**
|
|
101
|
-
* <p>One or more resources can't be found.</p>
|
|
102
|
-
* @public
|
|
103
|
-
*/
|
|
104
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
105
|
-
readonly name: "ResourceNotFoundException";
|
|
106
|
-
readonly $fault: "client";
|
|
107
|
-
reason?: string | undefined;
|
|
108
|
-
/**
|
|
109
|
-
* @internal
|
|
110
|
-
*/
|
|
111
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
112
|
-
}
|
|
113
|
-
/**
|
|
114
|
-
* <p>The request was denied due to request throttling.</p>
|
|
115
|
-
* @public
|
|
116
|
-
*/
|
|
117
|
-
export declare class ThrottlingException extends __BaseException {
|
|
118
|
-
readonly name: "ThrottlingException";
|
|
119
|
-
readonly $fault: "client";
|
|
120
|
-
/**
|
|
121
|
-
* @internal
|
|
122
|
-
*/
|
|
123
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
124
|
-
}
|
|
125
|
-
/**
|
|
126
|
-
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
127
|
-
* @public
|
|
128
|
-
*/
|
|
129
|
-
export declare class ValidationException extends __BaseException {
|
|
130
|
-
readonly name: "ValidationException";
|
|
131
|
-
readonly $fault: "client";
|
|
132
|
-
reason?: string | undefined;
|
|
133
|
-
/**
|
|
134
|
-
* @internal
|
|
135
|
-
*/
|
|
136
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
137
|
-
}
|
|
138
32
|
/**
|
|
139
33
|
* <p> The credentials required to access the external Dataview from the S3 location.</p>
|
|
140
34
|
* @public
|
|
@@ -161,19 +55,6 @@ export interface AwsCredentials {
|
|
|
161
55
|
*/
|
|
162
56
|
expiration?: number | undefined;
|
|
163
57
|
}
|
|
164
|
-
/**
|
|
165
|
-
* @public
|
|
166
|
-
* @enum
|
|
167
|
-
*/
|
|
168
|
-
export declare const ChangeType: {
|
|
169
|
-
readonly APPEND: "APPEND";
|
|
170
|
-
readonly MODIFY: "MODIFY";
|
|
171
|
-
readonly REPLACE: "REPLACE";
|
|
172
|
-
};
|
|
173
|
-
/**
|
|
174
|
-
* @public
|
|
175
|
-
*/
|
|
176
|
-
export type ChangeType = (typeof ChangeType)[keyof typeof ChangeType];
|
|
177
58
|
/**
|
|
178
59
|
* The request for a CreateChangeset operation.
|
|
179
60
|
* @public
|
|
@@ -294,30 +175,6 @@ export interface CreateChangesetResponse {
|
|
|
294
175
|
*/
|
|
295
176
|
changesetId?: string | undefined;
|
|
296
177
|
}
|
|
297
|
-
/**
|
|
298
|
-
* <p>A limit has exceeded.</p>
|
|
299
|
-
* @public
|
|
300
|
-
*/
|
|
301
|
-
export declare class LimitExceededException extends __BaseException {
|
|
302
|
-
readonly name: "LimitExceededException";
|
|
303
|
-
readonly $fault: "client";
|
|
304
|
-
/**
|
|
305
|
-
* @internal
|
|
306
|
-
*/
|
|
307
|
-
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
308
|
-
}
|
|
309
|
-
/**
|
|
310
|
-
* @public
|
|
311
|
-
* @enum
|
|
312
|
-
*/
|
|
313
|
-
export declare const DatasetKind: {
|
|
314
|
-
readonly NON_TABULAR: "NON_TABULAR";
|
|
315
|
-
readonly TABULAR: "TABULAR";
|
|
316
|
-
};
|
|
317
|
-
/**
|
|
318
|
-
* @public
|
|
319
|
-
*/
|
|
320
|
-
export type DatasetKind = (typeof DatasetKind)[keyof typeof DatasetKind];
|
|
321
178
|
/**
|
|
322
179
|
* <p>A structure for Dataset owner info.</p>
|
|
323
180
|
* @public
|
|
@@ -416,28 +273,6 @@ export interface PermissionGroupParams {
|
|
|
416
273
|
*/
|
|
417
274
|
datasetPermissions?: ResourcePermission[] | undefined;
|
|
418
275
|
}
|
|
419
|
-
/**
|
|
420
|
-
* @public
|
|
421
|
-
* @enum
|
|
422
|
-
*/
|
|
423
|
-
export declare const ColumnDataType: {
|
|
424
|
-
readonly BIGINT: "BIGINT";
|
|
425
|
-
readonly BINARY: "BINARY";
|
|
426
|
-
readonly BOOLEAN: "BOOLEAN";
|
|
427
|
-
readonly CHAR: "CHAR";
|
|
428
|
-
readonly DATE: "DATE";
|
|
429
|
-
readonly DATETIME: "DATETIME";
|
|
430
|
-
readonly DOUBLE: "DOUBLE";
|
|
431
|
-
readonly FLOAT: "FLOAT";
|
|
432
|
-
readonly INTEGER: "INTEGER";
|
|
433
|
-
readonly SMALLINT: "SMALLINT";
|
|
434
|
-
readonly STRING: "STRING";
|
|
435
|
-
readonly TINYINT: "TINYINT";
|
|
436
|
-
};
|
|
437
|
-
/**
|
|
438
|
-
* @public
|
|
439
|
-
*/
|
|
440
|
-
export type ColumnDataType = (typeof ColumnDataType)[keyof typeof ColumnDataType];
|
|
441
276
|
/**
|
|
442
277
|
* <p>The definition of a column in a tabular Dataset.</p>
|
|
443
278
|
* @public
|
|
@@ -581,18 +416,6 @@ export interface CreateDatasetResponse {
|
|
|
581
416
|
*/
|
|
582
417
|
datasetId?: string | undefined;
|
|
583
418
|
}
|
|
584
|
-
/**
|
|
585
|
-
* @public
|
|
586
|
-
* @enum
|
|
587
|
-
*/
|
|
588
|
-
export declare const ExportFileFormat: {
|
|
589
|
-
readonly DELIMITED_TEXT: "DELIMITED_TEXT";
|
|
590
|
-
readonly PARQUET: "PARQUET";
|
|
591
|
-
};
|
|
592
|
-
/**
|
|
593
|
-
* @public
|
|
594
|
-
*/
|
|
595
|
-
export type ExportFileFormat = (typeof ExportFileFormat)[keyof typeof ExportFileFormat];
|
|
596
419
|
/**
|
|
597
420
|
* <p>Structure for the Dataview destination type parameters.</p>
|
|
598
421
|
* @public
|
|
@@ -769,18 +592,6 @@ export interface CreatePermissionGroupResponse {
|
|
|
769
592
|
*/
|
|
770
593
|
permissionGroupId?: string | undefined;
|
|
771
594
|
}
|
|
772
|
-
/**
|
|
773
|
-
* @public
|
|
774
|
-
* @enum
|
|
775
|
-
*/
|
|
776
|
-
export declare const UserType: {
|
|
777
|
-
readonly APP_USER: "APP_USER";
|
|
778
|
-
readonly SUPER_USER: "SUPER_USER";
|
|
779
|
-
};
|
|
780
|
-
/**
|
|
781
|
-
* @public
|
|
782
|
-
*/
|
|
783
|
-
export type UserType = (typeof UserType)[keyof typeof UserType];
|
|
784
595
|
/**
|
|
785
596
|
* @public
|
|
786
597
|
*/
|
|
@@ -999,24 +810,6 @@ export interface GetChangesetRequest {
|
|
|
999
810
|
*/
|
|
1000
811
|
changesetId: string | undefined;
|
|
1001
812
|
}
|
|
1002
|
-
/**
|
|
1003
|
-
* @public
|
|
1004
|
-
* @enum
|
|
1005
|
-
*/
|
|
1006
|
-
export declare const ErrorCategory: {
|
|
1007
|
-
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
1008
|
-
readonly CANCELLED: "CANCELLED";
|
|
1009
|
-
readonly INTERNAL_SERVICE_EXCEPTION: "INTERNAL_SERVICE_EXCEPTION";
|
|
1010
|
-
readonly RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND";
|
|
1011
|
-
readonly SERVICE_QUOTA_EXCEEDED: "SERVICE_QUOTA_EXCEEDED";
|
|
1012
|
-
readonly THROTTLING: "THROTTLING";
|
|
1013
|
-
readonly USER_RECOVERABLE: "USER_RECOVERABLE";
|
|
1014
|
-
readonly VALIDATION: "VALIDATION";
|
|
1015
|
-
};
|
|
1016
|
-
/**
|
|
1017
|
-
* @public
|
|
1018
|
-
*/
|
|
1019
|
-
export type ErrorCategory = (typeof ErrorCategory)[keyof typeof ErrorCategory];
|
|
1020
813
|
/**
|
|
1021
814
|
* <p>The structure with error messages.</p>
|
|
1022
815
|
* @public
|
|
@@ -1072,21 +865,6 @@ export interface ChangesetErrorInfo {
|
|
|
1072
865
|
*/
|
|
1073
866
|
errorCategory?: ErrorCategory | undefined;
|
|
1074
867
|
}
|
|
1075
|
-
/**
|
|
1076
|
-
* @public
|
|
1077
|
-
* @enum
|
|
1078
|
-
*/
|
|
1079
|
-
export declare const IngestionStatus: {
|
|
1080
|
-
readonly FAILED: "FAILED";
|
|
1081
|
-
readonly PENDING: "PENDING";
|
|
1082
|
-
readonly RUNNING: "RUNNING";
|
|
1083
|
-
readonly STOP_REQUESTED: "STOP_REQUESTED";
|
|
1084
|
-
readonly SUCCESS: "SUCCESS";
|
|
1085
|
-
};
|
|
1086
|
-
/**
|
|
1087
|
-
* @public
|
|
1088
|
-
*/
|
|
1089
|
-
export type IngestionStatus = (typeof IngestionStatus)[keyof typeof IngestionStatus];
|
|
1090
868
|
/**
|
|
1091
869
|
* The response from a describe changeset operation
|
|
1092
870
|
* @public
|
|
@@ -1183,20 +961,6 @@ export interface GetDatasetRequest {
|
|
|
1183
961
|
*/
|
|
1184
962
|
datasetId: string | undefined;
|
|
1185
963
|
}
|
|
1186
|
-
/**
|
|
1187
|
-
* @public
|
|
1188
|
-
* @enum
|
|
1189
|
-
*/
|
|
1190
|
-
export declare const DatasetStatus: {
|
|
1191
|
-
readonly FAILED: "FAILED";
|
|
1192
|
-
readonly PENDING: "PENDING";
|
|
1193
|
-
readonly RUNNING: "RUNNING";
|
|
1194
|
-
readonly SUCCESS: "SUCCESS";
|
|
1195
|
-
};
|
|
1196
|
-
/**
|
|
1197
|
-
* @public
|
|
1198
|
-
*/
|
|
1199
|
-
export type DatasetStatus = (typeof DatasetStatus)[keyof typeof DatasetStatus];
|
|
1200
964
|
/**
|
|
1201
965
|
* Response for the GetDataset operation
|
|
1202
966
|
* @public
|
|
@@ -1352,24 +1116,6 @@ export interface DataViewErrorInfo {
|
|
|
1352
1116
|
*/
|
|
1353
1117
|
errorCategory?: ErrorCategory | undefined;
|
|
1354
1118
|
}
|
|
1355
|
-
/**
|
|
1356
|
-
* @public
|
|
1357
|
-
* @enum
|
|
1358
|
-
*/
|
|
1359
|
-
export declare const DataViewStatus: {
|
|
1360
|
-
readonly CANCELLED: "CANCELLED";
|
|
1361
|
-
readonly FAILED: "FAILED";
|
|
1362
|
-
readonly FAILED_CLEANUP_FAILED: "FAILED_CLEANUP_FAILED";
|
|
1363
|
-
readonly PENDING: "PENDING";
|
|
1364
|
-
readonly RUNNING: "RUNNING";
|
|
1365
|
-
readonly STARTING: "STARTING";
|
|
1366
|
-
readonly SUCCESS: "SUCCESS";
|
|
1367
|
-
readonly TIMEOUT: "TIMEOUT";
|
|
1368
|
-
};
|
|
1369
|
-
/**
|
|
1370
|
-
* @public
|
|
1371
|
-
*/
|
|
1372
|
-
export type DataViewStatus = (typeof DataViewStatus)[keyof typeof DataViewStatus];
|
|
1373
1119
|
/**
|
|
1374
1120
|
* Response from retrieving a dataview, which includes details on the target database and table name
|
|
1375
1121
|
* @public
|
|
@@ -1526,19 +1272,6 @@ export interface GetPermissionGroupRequest {
|
|
|
1526
1272
|
*/
|
|
1527
1273
|
permissionGroupId: string | undefined;
|
|
1528
1274
|
}
|
|
1529
|
-
/**
|
|
1530
|
-
* @public
|
|
1531
|
-
* @enum
|
|
1532
|
-
*/
|
|
1533
|
-
export declare const PermissionGroupMembershipStatus: {
|
|
1534
|
-
readonly ADDITION_IN_PROGRESS: "ADDITION_IN_PROGRESS";
|
|
1535
|
-
readonly ADDITION_SUCCESS: "ADDITION_SUCCESS";
|
|
1536
|
-
readonly REMOVAL_IN_PROGRESS: "REMOVAL_IN_PROGRESS";
|
|
1537
|
-
};
|
|
1538
|
-
/**
|
|
1539
|
-
* @public
|
|
1540
|
-
*/
|
|
1541
|
-
export type PermissionGroupMembershipStatus = (typeof PermissionGroupMembershipStatus)[keyof typeof PermissionGroupMembershipStatus];
|
|
1542
1275
|
/**
|
|
1543
1276
|
* <p>The structure for a permission group.</p>
|
|
1544
1277
|
* @public
|
|
@@ -1702,19 +1435,6 @@ export interface GetUserRequest {
|
|
|
1702
1435
|
*/
|
|
1703
1436
|
userId: string | undefined;
|
|
1704
1437
|
}
|
|
1705
|
-
/**
|
|
1706
|
-
* @public
|
|
1707
|
-
* @enum
|
|
1708
|
-
*/
|
|
1709
|
-
export declare const UserStatus: {
|
|
1710
|
-
readonly CREATING: "CREATING";
|
|
1711
|
-
readonly DISABLED: "DISABLED";
|
|
1712
|
-
readonly ENABLED: "ENABLED";
|
|
1713
|
-
};
|
|
1714
|
-
/**
|
|
1715
|
-
* @public
|
|
1716
|
-
*/
|
|
1717
|
-
export type UserStatus = (typeof UserStatus)[keyof typeof UserStatus];
|
|
1718
1438
|
/**
|
|
1719
1439
|
* @public
|
|
1720
1440
|
*/
|
|
@@ -1821,18 +1541,6 @@ export interface GetUserResponse {
|
|
|
1821
1541
|
*/
|
|
1822
1542
|
lastLoginTime?: number | undefined;
|
|
1823
1543
|
}
|
|
1824
|
-
/**
|
|
1825
|
-
* @public
|
|
1826
|
-
* @enum
|
|
1827
|
-
*/
|
|
1828
|
-
export declare const LocationType: {
|
|
1829
|
-
readonly INGESTION: "INGESTION";
|
|
1830
|
-
readonly SAGEMAKER: "SAGEMAKER";
|
|
1831
|
-
};
|
|
1832
|
-
/**
|
|
1833
|
-
* @public
|
|
1834
|
-
*/
|
|
1835
|
-
export type LocationType = (typeof LocationType)[keyof typeof LocationType];
|
|
1836
1544
|
/**
|
|
1837
1545
|
* @public
|
|
1838
1546
|
*/
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { FinspaceDataExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { FinspaceDataServiceException } from "./models/FinspaceDataServiceException";
|