@aws-sdk/client-finspace 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.
@@ -1,255 +1,288 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { FinspaceServiceException as __BaseException } from "./FinspaceServiceException";
3
-
4
- export declare class AccessDeniedException extends __BaseException {
5
- readonly name: "AccessDeniedException";
6
- readonly $fault: "client";
7
-
8
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
9
- }
10
- export declare enum FederationMode {
11
- FEDERATED = "FEDERATED",
12
- LOCAL = "LOCAL"
13
- }
14
-
15
- export interface FederationParameters {
16
-
17
- samlMetadataDocument?: string;
18
-
19
- samlMetadataURL?: string;
20
-
21
- applicationCallBackURL?: string;
22
-
23
- federationURN?: string;
24
-
25
- federationProviderName?: string;
26
-
27
- attributeMap?: Record<string, string>;
28
- }
29
-
30
- export interface SuperuserParameters {
31
-
32
- emailAddress: string | undefined;
33
-
34
- firstName: string | undefined;
35
-
36
- lastName: string | undefined;
37
- }
38
- export interface CreateEnvironmentRequest {
39
-
40
- name: string | undefined;
41
-
42
- description?: string;
43
-
44
- kmsKeyId?: string;
45
-
46
- tags?: Record<string, string>;
47
-
48
- federationMode?: FederationMode | string;
49
-
50
- federationParameters?: FederationParameters;
51
-
52
- superuserParameters?: SuperuserParameters;
53
-
54
- dataBundles?: string[];
55
- }
56
- export interface CreateEnvironmentResponse {
57
-
58
- environmentId?: string;
59
-
60
- environmentArn?: string;
61
-
62
- environmentUrl?: string;
63
- }
64
-
65
- export declare class InternalServerException extends __BaseException {
66
- readonly name: "InternalServerException";
67
- readonly $fault: "server";
68
-
69
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
70
- }
71
-
72
- export declare class LimitExceededException extends __BaseException {
73
- readonly name: "LimitExceededException";
74
- readonly $fault: "client";
75
-
76
- constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
77
- }
78
-
79
- export declare class ServiceQuotaExceededException extends __BaseException {
80
- readonly name: "ServiceQuotaExceededException";
81
- readonly $fault: "client";
82
-
83
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
84
- }
85
-
86
- export declare class ThrottlingException extends __BaseException {
87
- readonly name: "ThrottlingException";
88
- readonly $fault: "client";
89
-
90
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
91
- }
92
-
93
- export declare class ValidationException extends __BaseException {
94
- readonly name: "ValidationException";
95
- readonly $fault: "client";
96
-
97
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
98
- }
99
- export interface DeleteEnvironmentRequest {
100
-
101
- environmentId: string | undefined;
102
- }
103
- export interface DeleteEnvironmentResponse {
104
- }
105
-
106
- export declare class ResourceNotFoundException extends __BaseException {
107
- readonly name: "ResourceNotFoundException";
108
- readonly $fault: "client";
109
-
110
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
111
- }
112
- export interface GetEnvironmentRequest {
113
-
114
- environmentId: string | undefined;
115
- }
116
- export declare enum EnvironmentStatus {
117
- CREATED = "CREATED",
118
- CREATE_REQUESTED = "CREATE_REQUESTED",
119
- CREATING = "CREATING",
120
- DELETED = "DELETED",
121
- DELETE_REQUESTED = "DELETE_REQUESTED",
122
- DELETING = "DELETING",
123
- FAILED_CREATION = "FAILED_CREATION",
124
- FAILED_DELETION = "FAILED_DELETION",
125
- RETRY_DELETION = "RETRY_DELETION",
126
- SUSPENDED = "SUSPENDED"
127
- }
128
-
129
- export interface Environment {
130
-
131
- name?: string;
132
-
133
- environmentId?: string;
134
-
135
- awsAccountId?: string;
136
-
137
- status?: EnvironmentStatus | string;
138
-
139
- environmentUrl?: string;
140
-
141
- description?: string;
142
-
143
- environmentArn?: string;
144
-
145
- sageMakerStudioDomainUrl?: string;
146
-
147
- kmsKeyId?: string;
148
-
149
- dedicatedServiceAccountId?: string;
150
-
151
- federationMode?: FederationMode | string;
152
-
153
- federationParameters?: FederationParameters;
154
- }
155
- export interface GetEnvironmentResponse {
156
-
157
- environment?: Environment;
158
- }
159
- export interface ListEnvironmentsRequest {
160
-
161
- nextToken?: string;
162
-
163
- maxResults?: number;
164
- }
165
- export interface ListEnvironmentsResponse {
166
-
167
- environments?: Environment[];
168
-
169
- nextToken?: string;
170
- }
171
-
172
- export declare class InvalidRequestException extends __BaseException {
173
- readonly name: "InvalidRequestException";
174
- readonly $fault: "client";
175
-
176
- constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
177
- }
178
- export interface ListTagsForResourceRequest {
179
-
180
- resourceArn: string | undefined;
181
- }
182
- export interface ListTagsForResourceResponse {
183
-
184
- tags?: Record<string, string>;
185
- }
186
- export interface TagResourceRequest {
187
-
188
- resourceArn: string | undefined;
189
-
190
- tags: Record<string, string> | undefined;
191
- }
192
- export interface TagResourceResponse {
193
- }
194
- export interface UntagResourceRequest {
195
-
196
- resourceArn: string | undefined;
197
-
198
- tagKeys: string[] | undefined;
199
- }
200
- export interface UntagResourceResponse {
201
- }
202
- export interface UpdateEnvironmentRequest {
203
-
204
- environmentId: string | undefined;
205
-
206
- name?: string;
207
-
208
- description?: string;
209
-
210
- federationMode?: FederationMode | string;
211
-
212
- federationParameters?: FederationParameters;
213
- }
214
- export interface UpdateEnvironmentResponse {
215
-
216
- environment?: Environment;
217
- }
218
-
219
- export declare const FederationParametersFilterSensitiveLog: (obj: FederationParameters) => any;
220
-
221
- export declare const SuperuserParametersFilterSensitiveLog: (obj: SuperuserParameters) => any;
222
-
223
- export declare const CreateEnvironmentRequestFilterSensitiveLog: (obj: CreateEnvironmentRequest) => any;
224
-
225
- export declare const CreateEnvironmentResponseFilterSensitiveLog: (obj: CreateEnvironmentResponse) => any;
226
-
227
- export declare const DeleteEnvironmentRequestFilterSensitiveLog: (obj: DeleteEnvironmentRequest) => any;
228
-
229
- export declare const DeleteEnvironmentResponseFilterSensitiveLog: (obj: DeleteEnvironmentResponse) => any;
230
-
231
- export declare const GetEnvironmentRequestFilterSensitiveLog: (obj: GetEnvironmentRequest) => any;
232
-
233
- export declare const EnvironmentFilterSensitiveLog: (obj: Environment) => any;
234
-
235
- export declare const GetEnvironmentResponseFilterSensitiveLog: (obj: GetEnvironmentResponse) => any;
236
-
237
- export declare const ListEnvironmentsRequestFilterSensitiveLog: (obj: ListEnvironmentsRequest) => any;
238
-
239
- export declare const ListEnvironmentsResponseFilterSensitiveLog: (obj: ListEnvironmentsResponse) => any;
240
-
241
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
242
-
243
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
244
-
245
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
246
-
247
- export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
248
-
249
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
250
-
251
- export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
252
-
253
- export declare const UpdateEnvironmentRequestFilterSensitiveLog: (obj: UpdateEnvironmentRequest) => any;
254
-
255
- export declare const UpdateEnvironmentResponseFilterSensitiveLog: (obj: UpdateEnvironmentResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { FinspaceServiceException as __BaseException } from "./FinspaceServiceException";
3
+
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
7
+
8
+ constructor(
9
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
10
+ );
11
+ }
12
+ export declare enum FederationMode {
13
+ FEDERATED = "FEDERATED",
14
+ LOCAL = "LOCAL",
15
+ }
16
+
17
+ export interface FederationParameters {
18
+ samlMetadataDocument?: string;
19
+
20
+ samlMetadataURL?: string;
21
+
22
+ applicationCallBackURL?: string;
23
+
24
+ federationURN?: string;
25
+
26
+ federationProviderName?: string;
27
+
28
+ attributeMap?: Record<string, string>;
29
+ }
30
+
31
+ export interface SuperuserParameters {
32
+ emailAddress: string | undefined;
33
+
34
+ firstName: string | undefined;
35
+
36
+ lastName: string | undefined;
37
+ }
38
+ export interface CreateEnvironmentRequest {
39
+ name: string | undefined;
40
+
41
+ description?: string;
42
+
43
+ kmsKeyId?: string;
44
+
45
+ tags?: Record<string, string>;
46
+
47
+ federationMode?: FederationMode | string;
48
+
49
+ federationParameters?: FederationParameters;
50
+
51
+ superuserParameters?: SuperuserParameters;
52
+
53
+ dataBundles?: string[];
54
+ }
55
+ export interface CreateEnvironmentResponse {
56
+ environmentId?: string;
57
+
58
+ environmentArn?: string;
59
+
60
+ environmentUrl?: string;
61
+ }
62
+
63
+ export declare class InternalServerException extends __BaseException {
64
+ readonly name: "InternalServerException";
65
+ readonly $fault: "server";
66
+
67
+ constructor(
68
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
69
+ );
70
+ }
71
+
72
+ export declare class LimitExceededException extends __BaseException {
73
+ readonly name: "LimitExceededException";
74
+ readonly $fault: "client";
75
+
76
+ constructor(
77
+ opts: __ExceptionOptionType<LimitExceededException, __BaseException>
78
+ );
79
+ }
80
+
81
+ export declare class ServiceQuotaExceededException extends __BaseException {
82
+ readonly name: "ServiceQuotaExceededException";
83
+ readonly $fault: "client";
84
+
85
+ constructor(
86
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
87
+ );
88
+ }
89
+
90
+ export declare class ThrottlingException extends __BaseException {
91
+ readonly name: "ThrottlingException";
92
+ readonly $fault: "client";
93
+
94
+ constructor(
95
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
96
+ );
97
+ }
98
+
99
+ export declare class ValidationException extends __BaseException {
100
+ readonly name: "ValidationException";
101
+ readonly $fault: "client";
102
+
103
+ constructor(
104
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
105
+ );
106
+ }
107
+ export interface DeleteEnvironmentRequest {
108
+ environmentId: string | undefined;
109
+ }
110
+ export interface DeleteEnvironmentResponse {}
111
+
112
+ export declare class ResourceNotFoundException extends __BaseException {
113
+ readonly name: "ResourceNotFoundException";
114
+ readonly $fault: "client";
115
+
116
+ constructor(
117
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
118
+ );
119
+ }
120
+ export interface GetEnvironmentRequest {
121
+ environmentId: string | undefined;
122
+ }
123
+ export declare enum EnvironmentStatus {
124
+ CREATED = "CREATED",
125
+ CREATE_REQUESTED = "CREATE_REQUESTED",
126
+ CREATING = "CREATING",
127
+ DELETED = "DELETED",
128
+ DELETE_REQUESTED = "DELETE_REQUESTED",
129
+ DELETING = "DELETING",
130
+ FAILED_CREATION = "FAILED_CREATION",
131
+ FAILED_DELETION = "FAILED_DELETION",
132
+ RETRY_DELETION = "RETRY_DELETION",
133
+ SUSPENDED = "SUSPENDED",
134
+ }
135
+
136
+ export interface Environment {
137
+ name?: string;
138
+
139
+ environmentId?: string;
140
+
141
+ awsAccountId?: string;
142
+
143
+ status?: EnvironmentStatus | string;
144
+
145
+ environmentUrl?: string;
146
+
147
+ description?: string;
148
+
149
+ environmentArn?: string;
150
+
151
+ sageMakerStudioDomainUrl?: string;
152
+
153
+ kmsKeyId?: string;
154
+
155
+ dedicatedServiceAccountId?: string;
156
+
157
+ federationMode?: FederationMode | string;
158
+
159
+ federationParameters?: FederationParameters;
160
+ }
161
+ export interface GetEnvironmentResponse {
162
+ environment?: Environment;
163
+ }
164
+ export interface ListEnvironmentsRequest {
165
+ nextToken?: string;
166
+
167
+ maxResults?: number;
168
+ }
169
+ export interface ListEnvironmentsResponse {
170
+ environments?: Environment[];
171
+
172
+ nextToken?: string;
173
+ }
174
+
175
+ export declare class InvalidRequestException extends __BaseException {
176
+ readonly name: "InvalidRequestException";
177
+ readonly $fault: "client";
178
+
179
+ constructor(
180
+ opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
181
+ );
182
+ }
183
+ export interface ListTagsForResourceRequest {
184
+ resourceArn: string | undefined;
185
+ }
186
+ export interface ListTagsForResourceResponse {
187
+ tags?: Record<string, string>;
188
+ }
189
+ export interface TagResourceRequest {
190
+ resourceArn: string | undefined;
191
+
192
+ tags: Record<string, string> | undefined;
193
+ }
194
+ export interface TagResourceResponse {}
195
+ export interface UntagResourceRequest {
196
+ resourceArn: string | undefined;
197
+
198
+ tagKeys: string[] | undefined;
199
+ }
200
+ export interface UntagResourceResponse {}
201
+ export interface UpdateEnvironmentRequest {
202
+ environmentId: string | undefined;
203
+
204
+ name?: string;
205
+
206
+ description?: string;
207
+
208
+ federationMode?: FederationMode | string;
209
+
210
+ federationParameters?: FederationParameters;
211
+ }
212
+ export interface UpdateEnvironmentResponse {
213
+ environment?: Environment;
214
+ }
215
+
216
+ export declare const FederationParametersFilterSensitiveLog: (
217
+ obj: FederationParameters
218
+ ) => any;
219
+
220
+ export declare const SuperuserParametersFilterSensitiveLog: (
221
+ obj: SuperuserParameters
222
+ ) => any;
223
+
224
+ export declare const CreateEnvironmentRequestFilterSensitiveLog: (
225
+ obj: CreateEnvironmentRequest
226
+ ) => any;
227
+
228
+ export declare const CreateEnvironmentResponseFilterSensitiveLog: (
229
+ obj: CreateEnvironmentResponse
230
+ ) => any;
231
+
232
+ export declare const DeleteEnvironmentRequestFilterSensitiveLog: (
233
+ obj: DeleteEnvironmentRequest
234
+ ) => any;
235
+
236
+ export declare const DeleteEnvironmentResponseFilterSensitiveLog: (
237
+ obj: DeleteEnvironmentResponse
238
+ ) => any;
239
+
240
+ export declare const GetEnvironmentRequestFilterSensitiveLog: (
241
+ obj: GetEnvironmentRequest
242
+ ) => any;
243
+
244
+ export declare const EnvironmentFilterSensitiveLog: (obj: Environment) => any;
245
+
246
+ export declare const GetEnvironmentResponseFilterSensitiveLog: (
247
+ obj: GetEnvironmentResponse
248
+ ) => any;
249
+
250
+ export declare const ListEnvironmentsRequestFilterSensitiveLog: (
251
+ obj: ListEnvironmentsRequest
252
+ ) => any;
253
+
254
+ export declare const ListEnvironmentsResponseFilterSensitiveLog: (
255
+ obj: ListEnvironmentsResponse
256
+ ) => any;
257
+
258
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
259
+ obj: ListTagsForResourceRequest
260
+ ) => any;
261
+
262
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
263
+ obj: ListTagsForResourceResponse
264
+ ) => any;
265
+
266
+ export declare const TagResourceRequestFilterSensitiveLog: (
267
+ obj: TagResourceRequest
268
+ ) => any;
269
+
270
+ export declare const TagResourceResponseFilterSensitiveLog: (
271
+ obj: TagResourceResponse
272
+ ) => any;
273
+
274
+ export declare const UntagResourceRequestFilterSensitiveLog: (
275
+ obj: UntagResourceRequest
276
+ ) => any;
277
+
278
+ export declare const UntagResourceResponseFilterSensitiveLog: (
279
+ obj: UntagResourceResponse
280
+ ) => any;
281
+
282
+ export declare const UpdateEnvironmentRequestFilterSensitiveLog: (
283
+ obj: UpdateEnvironmentRequest
284
+ ) => any;
285
+
286
+ export declare const UpdateEnvironmentResponseFilterSensitiveLog: (
287
+ obj: UpdateEnvironmentResponse
288
+ ) => any;