cdk-comprehend-s3olap 2.0.54 → 2.0.57
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/.jsii +4 -4
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +12 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/license-manager-user-subscriptions-2018-05-10.examples.json +5 -0
- package/node_modules/aws-sdk/apis/license-manager-user-subscriptions-2018-05-10.min.json +446 -0
- package/node_modules/aws-sdk/apis/license-manager-user-subscriptions-2018-05-10.paginators.json +28 -0
- package/node_modules/aws-sdk/apis/metadata.json +4 -0
- package/node_modules/aws-sdk/apis/personalize-2018-05-22.min.json +28 -25
- package/node_modules/aws-sdk/apis/workspaces-2015-04-08.min.json +51 -18
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/cognitoidentityserviceprovider.d.ts +21 -21
- package/node_modules/aws-sdk/clients/configservice.d.ts +21 -21
- package/node_modules/aws-sdk/clients/licensemanagerusersubscriptions.d.ts +490 -0
- package/node_modules/aws-sdk/clients/licensemanagerusersubscriptions.js +18 -0
- package/node_modules/aws-sdk/clients/personalize.d.ts +15 -2
- package/node_modules/aws-sdk/clients/wafv2.d.ts +44 -44
- package/node_modules/aws-sdk/clients/workspaces.d.ts +46 -0
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +43 -6
- package/node_modules/aws-sdk/dist/aws-sdk.js +35 -28
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +33 -33
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/esbuild/bin/esbuild +1 -0
- package/node_modules/esbuild/install.js +5 -4
- package/node_modules/esbuild/lib/main.d.ts +2 -2
- package/node_modules/esbuild/lib/main.js +22 -15
- package/node_modules/esbuild/package.json +22 -21
- package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
- package/node_modules/esbuild-linux-64/package.json +1 -1
- package/package.json +7 -7
@@ -0,0 +1,490 @@
|
|
1
|
+
import {Request} from '../lib/request';
|
2
|
+
import {Response} from '../lib/response';
|
3
|
+
import {AWSError} from '../lib/error';
|
4
|
+
import {Service} from '../lib/service';
|
5
|
+
import {ServiceConfigurationOptions} from '../lib/service';
|
6
|
+
import {ConfigBase as Config} from '../lib/config-base';
|
7
|
+
interface Blob {}
|
8
|
+
declare class LicenseManagerUserSubscriptions extends Service {
|
9
|
+
/**
|
10
|
+
* Constructs a service object. This object has one method for each API operation.
|
11
|
+
*/
|
12
|
+
constructor(options?: LicenseManagerUserSubscriptions.Types.ClientConfiguration)
|
13
|
+
config: Config & LicenseManagerUserSubscriptions.Types.ClientConfiguration;
|
14
|
+
/**
|
15
|
+
* Associates the user to an EC2 instance to utilize user-based subscriptions.
|
16
|
+
*/
|
17
|
+
associateUser(params: LicenseManagerUserSubscriptions.Types.AssociateUserRequest, callback?: (err: AWSError, data: LicenseManagerUserSubscriptions.Types.AssociateUserResponse) => void): Request<LicenseManagerUserSubscriptions.Types.AssociateUserResponse, AWSError>;
|
18
|
+
/**
|
19
|
+
* Associates the user to an EC2 instance to utilize user-based subscriptions.
|
20
|
+
*/
|
21
|
+
associateUser(callback?: (err: AWSError, data: LicenseManagerUserSubscriptions.Types.AssociateUserResponse) => void): Request<LicenseManagerUserSubscriptions.Types.AssociateUserResponse, AWSError>;
|
22
|
+
/**
|
23
|
+
* Deregisters the identity provider from providing user-based subscriptions.
|
24
|
+
*/
|
25
|
+
deregisterIdentityProvider(params: LicenseManagerUserSubscriptions.Types.DeregisterIdentityProviderRequest, callback?: (err: AWSError, data: LicenseManagerUserSubscriptions.Types.DeregisterIdentityProviderResponse) => void): Request<LicenseManagerUserSubscriptions.Types.DeregisterIdentityProviderResponse, AWSError>;
|
26
|
+
/**
|
27
|
+
* Deregisters the identity provider from providing user-based subscriptions.
|
28
|
+
*/
|
29
|
+
deregisterIdentityProvider(callback?: (err: AWSError, data: LicenseManagerUserSubscriptions.Types.DeregisterIdentityProviderResponse) => void): Request<LicenseManagerUserSubscriptions.Types.DeregisterIdentityProviderResponse, AWSError>;
|
30
|
+
/**
|
31
|
+
* Disassociates the user from an EC2 instance providing user-based subscriptions.
|
32
|
+
*/
|
33
|
+
disassociateUser(params: LicenseManagerUserSubscriptions.Types.DisassociateUserRequest, callback?: (err: AWSError, data: LicenseManagerUserSubscriptions.Types.DisassociateUserResponse) => void): Request<LicenseManagerUserSubscriptions.Types.DisassociateUserResponse, AWSError>;
|
34
|
+
/**
|
35
|
+
* Disassociates the user from an EC2 instance providing user-based subscriptions.
|
36
|
+
*/
|
37
|
+
disassociateUser(callback?: (err: AWSError, data: LicenseManagerUserSubscriptions.Types.DisassociateUserResponse) => void): Request<LicenseManagerUserSubscriptions.Types.DisassociateUserResponse, AWSError>;
|
38
|
+
/**
|
39
|
+
* Lists the identity providers for user-based subscriptions.
|
40
|
+
*/
|
41
|
+
listIdentityProviders(params: LicenseManagerUserSubscriptions.Types.ListIdentityProvidersRequest, callback?: (err: AWSError, data: LicenseManagerUserSubscriptions.Types.ListIdentityProvidersResponse) => void): Request<LicenseManagerUserSubscriptions.Types.ListIdentityProvidersResponse, AWSError>;
|
42
|
+
/**
|
43
|
+
* Lists the identity providers for user-based subscriptions.
|
44
|
+
*/
|
45
|
+
listIdentityProviders(callback?: (err: AWSError, data: LicenseManagerUserSubscriptions.Types.ListIdentityProvidersResponse) => void): Request<LicenseManagerUserSubscriptions.Types.ListIdentityProvidersResponse, AWSError>;
|
46
|
+
/**
|
47
|
+
* Lists the EC2 instances providing user-based subscriptions.
|
48
|
+
*/
|
49
|
+
listInstances(params: LicenseManagerUserSubscriptions.Types.ListInstancesRequest, callback?: (err: AWSError, data: LicenseManagerUserSubscriptions.Types.ListInstancesResponse) => void): Request<LicenseManagerUserSubscriptions.Types.ListInstancesResponse, AWSError>;
|
50
|
+
/**
|
51
|
+
* Lists the EC2 instances providing user-based subscriptions.
|
52
|
+
*/
|
53
|
+
listInstances(callback?: (err: AWSError, data: LicenseManagerUserSubscriptions.Types.ListInstancesResponse) => void): Request<LicenseManagerUserSubscriptions.Types.ListInstancesResponse, AWSError>;
|
54
|
+
/**
|
55
|
+
* Lists the user-based subscription products available from an identity provider.
|
56
|
+
*/
|
57
|
+
listProductSubscriptions(params: LicenseManagerUserSubscriptions.Types.ListProductSubscriptionsRequest, callback?: (err: AWSError, data: LicenseManagerUserSubscriptions.Types.ListProductSubscriptionsResponse) => void): Request<LicenseManagerUserSubscriptions.Types.ListProductSubscriptionsResponse, AWSError>;
|
58
|
+
/**
|
59
|
+
* Lists the user-based subscription products available from an identity provider.
|
60
|
+
*/
|
61
|
+
listProductSubscriptions(callback?: (err: AWSError, data: LicenseManagerUserSubscriptions.Types.ListProductSubscriptionsResponse) => void): Request<LicenseManagerUserSubscriptions.Types.ListProductSubscriptionsResponse, AWSError>;
|
62
|
+
/**
|
63
|
+
* Lists user associations for an identity provider.
|
64
|
+
*/
|
65
|
+
listUserAssociations(params: LicenseManagerUserSubscriptions.Types.ListUserAssociationsRequest, callback?: (err: AWSError, data: LicenseManagerUserSubscriptions.Types.ListUserAssociationsResponse) => void): Request<LicenseManagerUserSubscriptions.Types.ListUserAssociationsResponse, AWSError>;
|
66
|
+
/**
|
67
|
+
* Lists user associations for an identity provider.
|
68
|
+
*/
|
69
|
+
listUserAssociations(callback?: (err: AWSError, data: LicenseManagerUserSubscriptions.Types.ListUserAssociationsResponse) => void): Request<LicenseManagerUserSubscriptions.Types.ListUserAssociationsResponse, AWSError>;
|
70
|
+
/**
|
71
|
+
* Registers an identity provider for user-based subscriptions.
|
72
|
+
*/
|
73
|
+
registerIdentityProvider(params: LicenseManagerUserSubscriptions.Types.RegisterIdentityProviderRequest, callback?: (err: AWSError, data: LicenseManagerUserSubscriptions.Types.RegisterIdentityProviderResponse) => void): Request<LicenseManagerUserSubscriptions.Types.RegisterIdentityProviderResponse, AWSError>;
|
74
|
+
/**
|
75
|
+
* Registers an identity provider for user-based subscriptions.
|
76
|
+
*/
|
77
|
+
registerIdentityProvider(callback?: (err: AWSError, data: LicenseManagerUserSubscriptions.Types.RegisterIdentityProviderResponse) => void): Request<LicenseManagerUserSubscriptions.Types.RegisterIdentityProviderResponse, AWSError>;
|
78
|
+
/**
|
79
|
+
* Starts a product subscription for a user with the specified identity provider.
|
80
|
+
*/
|
81
|
+
startProductSubscription(params: LicenseManagerUserSubscriptions.Types.StartProductSubscriptionRequest, callback?: (err: AWSError, data: LicenseManagerUserSubscriptions.Types.StartProductSubscriptionResponse) => void): Request<LicenseManagerUserSubscriptions.Types.StartProductSubscriptionResponse, AWSError>;
|
82
|
+
/**
|
83
|
+
* Starts a product subscription for a user with the specified identity provider.
|
84
|
+
*/
|
85
|
+
startProductSubscription(callback?: (err: AWSError, data: LicenseManagerUserSubscriptions.Types.StartProductSubscriptionResponse) => void): Request<LicenseManagerUserSubscriptions.Types.StartProductSubscriptionResponse, AWSError>;
|
86
|
+
/**
|
87
|
+
* Stops a product subscription for a user with the specified identity provider.
|
88
|
+
*/
|
89
|
+
stopProductSubscription(params: LicenseManagerUserSubscriptions.Types.StopProductSubscriptionRequest, callback?: (err: AWSError, data: LicenseManagerUserSubscriptions.Types.StopProductSubscriptionResponse) => void): Request<LicenseManagerUserSubscriptions.Types.StopProductSubscriptionResponse, AWSError>;
|
90
|
+
/**
|
91
|
+
* Stops a product subscription for a user with the specified identity provider.
|
92
|
+
*/
|
93
|
+
stopProductSubscription(callback?: (err: AWSError, data: LicenseManagerUserSubscriptions.Types.StopProductSubscriptionResponse) => void): Request<LicenseManagerUserSubscriptions.Types.StopProductSubscriptionResponse, AWSError>;
|
94
|
+
}
|
95
|
+
declare namespace LicenseManagerUserSubscriptions {
|
96
|
+
export interface ActiveDirectoryIdentityProvider {
|
97
|
+
/**
|
98
|
+
* The directory ID for an Active Directory identity provider.
|
99
|
+
*/
|
100
|
+
DirectoryId?: String;
|
101
|
+
}
|
102
|
+
export interface AssociateUserRequest {
|
103
|
+
/**
|
104
|
+
* The domain name of the user.
|
105
|
+
*/
|
106
|
+
Domain?: String;
|
107
|
+
/**
|
108
|
+
* The identity provider of the user.
|
109
|
+
*/
|
110
|
+
IdentityProvider: IdentityProvider;
|
111
|
+
/**
|
112
|
+
* The ID of the EC2 instance, which provides user-based subscriptions.
|
113
|
+
*/
|
114
|
+
InstanceId: String;
|
115
|
+
/**
|
116
|
+
* The user name from the identity provider for the user.
|
117
|
+
*/
|
118
|
+
Username: String;
|
119
|
+
}
|
120
|
+
export interface AssociateUserResponse {
|
121
|
+
/**
|
122
|
+
* Metadata that describes the associate user operation.
|
123
|
+
*/
|
124
|
+
InstanceUserSummary: InstanceUserSummary;
|
125
|
+
}
|
126
|
+
export type BoxInteger = number;
|
127
|
+
export interface DeregisterIdentityProviderRequest {
|
128
|
+
/**
|
129
|
+
* An object that specifies details for the identity provider.
|
130
|
+
*/
|
131
|
+
IdentityProvider: IdentityProvider;
|
132
|
+
/**
|
133
|
+
* The name of the user-based subscription product.
|
134
|
+
*/
|
135
|
+
Product: String;
|
136
|
+
}
|
137
|
+
export interface DeregisterIdentityProviderResponse {
|
138
|
+
/**
|
139
|
+
* Metadata that describes the results of an identity provider operation.
|
140
|
+
*/
|
141
|
+
IdentityProviderSummary: IdentityProviderSummary;
|
142
|
+
}
|
143
|
+
export interface DisassociateUserRequest {
|
144
|
+
/**
|
145
|
+
* The domain name of the user.
|
146
|
+
*/
|
147
|
+
Domain?: String;
|
148
|
+
/**
|
149
|
+
* An object that specifies details for the identity provider.
|
150
|
+
*/
|
151
|
+
IdentityProvider: IdentityProvider;
|
152
|
+
/**
|
153
|
+
* The ID of the EC2 instance, which provides user-based subscriptions.
|
154
|
+
*/
|
155
|
+
InstanceId: String;
|
156
|
+
/**
|
157
|
+
* The user name from the identity provider for the user.
|
158
|
+
*/
|
159
|
+
Username: String;
|
160
|
+
}
|
161
|
+
export interface DisassociateUserResponse {
|
162
|
+
/**
|
163
|
+
* Metadata that describes the associate user operation.
|
164
|
+
*/
|
165
|
+
InstanceUserSummary: InstanceUserSummary;
|
166
|
+
}
|
167
|
+
export interface Filter {
|
168
|
+
/**
|
169
|
+
* The name of an attribute to use as a filter.
|
170
|
+
*/
|
171
|
+
Attribute?: String;
|
172
|
+
/**
|
173
|
+
* The type of search (For example, eq, geq, leq)
|
174
|
+
*/
|
175
|
+
Operation?: String;
|
176
|
+
/**
|
177
|
+
* Value of the filter.
|
178
|
+
*/
|
179
|
+
Value?: String;
|
180
|
+
}
|
181
|
+
export type FilterList = Filter[];
|
182
|
+
export interface IdentityProvider {
|
183
|
+
/**
|
184
|
+
* An object that details an Active Directory identity provider.
|
185
|
+
*/
|
186
|
+
ActiveDirectoryIdentityProvider?: ActiveDirectoryIdentityProvider;
|
187
|
+
}
|
188
|
+
export interface IdentityProviderSummary {
|
189
|
+
/**
|
190
|
+
* The failure message associated with an identity provider.
|
191
|
+
*/
|
192
|
+
FailureMessage?: String;
|
193
|
+
/**
|
194
|
+
* An object that specifies details for the identity provider.
|
195
|
+
*/
|
196
|
+
IdentityProvider: IdentityProvider;
|
197
|
+
/**
|
198
|
+
* The name of the user-based subscription product.
|
199
|
+
*/
|
200
|
+
Product: String;
|
201
|
+
/**
|
202
|
+
* The status of an identity provider.
|
203
|
+
*/
|
204
|
+
Status: String;
|
205
|
+
}
|
206
|
+
export type IdentityProviderSummaryList = IdentityProviderSummary[];
|
207
|
+
export interface InstanceSummary {
|
208
|
+
/**
|
209
|
+
* The ID of the EC2 instance, which provides user-based subscriptions.
|
210
|
+
*/
|
211
|
+
InstanceId: String;
|
212
|
+
/**
|
213
|
+
* The date of the last status check.
|
214
|
+
*/
|
215
|
+
LastStatusCheckDate?: String;
|
216
|
+
/**
|
217
|
+
* A list of provided user-based subscription products.
|
218
|
+
*/
|
219
|
+
Products: StringList;
|
220
|
+
/**
|
221
|
+
* The status of an EC2 instance resource.
|
222
|
+
*/
|
223
|
+
Status: String;
|
224
|
+
/**
|
225
|
+
* The status message for an EC2 instance.
|
226
|
+
*/
|
227
|
+
StatusMessage?: String;
|
228
|
+
}
|
229
|
+
export type InstanceSummaryList = InstanceSummary[];
|
230
|
+
export interface InstanceUserSummary {
|
231
|
+
/**
|
232
|
+
* The date a user was associated with an EC2 instance.
|
233
|
+
*/
|
234
|
+
AssociationDate?: String;
|
235
|
+
/**
|
236
|
+
* The date a user was disassociated from an EC2 instance.
|
237
|
+
*/
|
238
|
+
DisassociationDate?: String;
|
239
|
+
/**
|
240
|
+
* The domain name of the user.
|
241
|
+
*/
|
242
|
+
Domain?: String;
|
243
|
+
/**
|
244
|
+
* An object that specifies details for the identity provider.
|
245
|
+
*/
|
246
|
+
IdentityProvider: IdentityProvider;
|
247
|
+
/**
|
248
|
+
* The ID of the EC2 instance, which provides user-based subscriptions.
|
249
|
+
*/
|
250
|
+
InstanceId: String;
|
251
|
+
/**
|
252
|
+
* The status of a user associated with an EC2 instance.
|
253
|
+
*/
|
254
|
+
Status: String;
|
255
|
+
/**
|
256
|
+
* The status message for users of an EC2 instance.
|
257
|
+
*/
|
258
|
+
StatusMessage?: String;
|
259
|
+
/**
|
260
|
+
* The user name from the identity provider for the user.
|
261
|
+
*/
|
262
|
+
Username: String;
|
263
|
+
}
|
264
|
+
export type InstanceUserSummaryList = InstanceUserSummary[];
|
265
|
+
export interface ListIdentityProvidersRequest {
|
266
|
+
/**
|
267
|
+
* Maximum number of results to return in a single call.
|
268
|
+
*/
|
269
|
+
MaxResults?: BoxInteger;
|
270
|
+
/**
|
271
|
+
* Token for the next set of results.
|
272
|
+
*/
|
273
|
+
NextToken?: String;
|
274
|
+
}
|
275
|
+
export interface ListIdentityProvidersResponse {
|
276
|
+
/**
|
277
|
+
* Metadata that describes the list identity providers operation.
|
278
|
+
*/
|
279
|
+
IdentityProviderSummaries: IdentityProviderSummaryList;
|
280
|
+
/**
|
281
|
+
* Token for the next set of results.
|
282
|
+
*/
|
283
|
+
NextToken?: String;
|
284
|
+
}
|
285
|
+
export interface ListInstancesRequest {
|
286
|
+
/**
|
287
|
+
* An array of structures that you can use to filter the results to those that match one or more sets of key-value pairs that you specify.
|
288
|
+
*/
|
289
|
+
Filters?: FilterList;
|
290
|
+
/**
|
291
|
+
* Maximum number of results to return in a single call.
|
292
|
+
*/
|
293
|
+
MaxResults?: BoxInteger;
|
294
|
+
/**
|
295
|
+
* Token for the next set of results.
|
296
|
+
*/
|
297
|
+
NextToken?: String;
|
298
|
+
}
|
299
|
+
export interface ListInstancesResponse {
|
300
|
+
/**
|
301
|
+
* Metadata that describes the list instances operation.
|
302
|
+
*/
|
303
|
+
InstanceSummaries?: InstanceSummaryList;
|
304
|
+
/**
|
305
|
+
* Token for the next set of results.
|
306
|
+
*/
|
307
|
+
NextToken?: String;
|
308
|
+
}
|
309
|
+
export interface ListProductSubscriptionsRequest {
|
310
|
+
/**
|
311
|
+
* An array of structures that you can use to filter the results to those that match one or more sets of key-value pairs that you specify.
|
312
|
+
*/
|
313
|
+
Filters?: FilterList;
|
314
|
+
/**
|
315
|
+
* An object that specifies details for the identity provider.
|
316
|
+
*/
|
317
|
+
IdentityProvider: IdentityProvider;
|
318
|
+
/**
|
319
|
+
* Maximum number of results to return in a single call.
|
320
|
+
*/
|
321
|
+
MaxResults?: BoxInteger;
|
322
|
+
/**
|
323
|
+
* Token for the next set of results.
|
324
|
+
*/
|
325
|
+
NextToken?: String;
|
326
|
+
/**
|
327
|
+
* The name of the user-based subscription product.
|
328
|
+
*/
|
329
|
+
Product: String;
|
330
|
+
}
|
331
|
+
export interface ListProductSubscriptionsResponse {
|
332
|
+
/**
|
333
|
+
* Token for the next set of results.
|
334
|
+
*/
|
335
|
+
NextToken?: String;
|
336
|
+
/**
|
337
|
+
* Metadata that describes the list product subscriptions operation.
|
338
|
+
*/
|
339
|
+
ProductUserSummaries?: ProductUserSummaryList;
|
340
|
+
}
|
341
|
+
export interface ListUserAssociationsRequest {
|
342
|
+
/**
|
343
|
+
* An array of structures that you can use to filter the results to those that match one or more sets of key-value pairs that you specify.
|
344
|
+
*/
|
345
|
+
Filters?: FilterList;
|
346
|
+
/**
|
347
|
+
* An object that specifies details for the identity provider.
|
348
|
+
*/
|
349
|
+
IdentityProvider: IdentityProvider;
|
350
|
+
/**
|
351
|
+
* The ID of the EC2 instance, which provides user-based subscriptions.
|
352
|
+
*/
|
353
|
+
InstanceId: String;
|
354
|
+
/**
|
355
|
+
* Maximum number of results to return in a single call.
|
356
|
+
*/
|
357
|
+
MaxResults?: BoxInteger;
|
358
|
+
/**
|
359
|
+
* Token for the next set of results.
|
360
|
+
*/
|
361
|
+
NextToken?: String;
|
362
|
+
}
|
363
|
+
export interface ListUserAssociationsResponse {
|
364
|
+
/**
|
365
|
+
* Metadata that describes the list user association operation.
|
366
|
+
*/
|
367
|
+
InstanceUserSummaries?: InstanceUserSummaryList;
|
368
|
+
/**
|
369
|
+
* Token for the next set of results.
|
370
|
+
*/
|
371
|
+
NextToken?: String;
|
372
|
+
}
|
373
|
+
export interface ProductUserSummary {
|
374
|
+
/**
|
375
|
+
* The domain name of the user.
|
376
|
+
*/
|
377
|
+
Domain?: String;
|
378
|
+
/**
|
379
|
+
* An object that specifies details for the identity provider.
|
380
|
+
*/
|
381
|
+
IdentityProvider: IdentityProvider;
|
382
|
+
/**
|
383
|
+
* The name of the user-based subscription product.
|
384
|
+
*/
|
385
|
+
Product: String;
|
386
|
+
/**
|
387
|
+
* The status of a product for a user.
|
388
|
+
*/
|
389
|
+
Status: String;
|
390
|
+
/**
|
391
|
+
* The status message for a product for a user.
|
392
|
+
*/
|
393
|
+
StatusMessage?: String;
|
394
|
+
/**
|
395
|
+
* The end date of a subscription.
|
396
|
+
*/
|
397
|
+
SubscriptionEndDate?: String;
|
398
|
+
/**
|
399
|
+
* The start date of a subscription.
|
400
|
+
*/
|
401
|
+
SubscriptionStartDate?: String;
|
402
|
+
/**
|
403
|
+
* The user name from the identity provider of the user.
|
404
|
+
*/
|
405
|
+
Username: String;
|
406
|
+
}
|
407
|
+
export type ProductUserSummaryList = ProductUserSummary[];
|
408
|
+
export interface RegisterIdentityProviderRequest {
|
409
|
+
/**
|
410
|
+
* An object that specifies details for the identity provider.
|
411
|
+
*/
|
412
|
+
IdentityProvider: IdentityProvider;
|
413
|
+
/**
|
414
|
+
* The name of the user-based subscription product.
|
415
|
+
*/
|
416
|
+
Product: String;
|
417
|
+
}
|
418
|
+
export interface RegisterIdentityProviderResponse {
|
419
|
+
/**
|
420
|
+
* Metadata that describes the results of an identity provider operation.
|
421
|
+
*/
|
422
|
+
IdentityProviderSummary: IdentityProviderSummary;
|
423
|
+
}
|
424
|
+
export interface StartProductSubscriptionRequest {
|
425
|
+
/**
|
426
|
+
* The domain name of the user.
|
427
|
+
*/
|
428
|
+
Domain?: String;
|
429
|
+
/**
|
430
|
+
* An object that specifies details for the identity provider.
|
431
|
+
*/
|
432
|
+
IdentityProvider: IdentityProvider;
|
433
|
+
/**
|
434
|
+
* The name of the user-based subscription product.
|
435
|
+
*/
|
436
|
+
Product: String;
|
437
|
+
/**
|
438
|
+
* The user name from the identity provider of the user.
|
439
|
+
*/
|
440
|
+
Username: String;
|
441
|
+
}
|
442
|
+
export interface StartProductSubscriptionResponse {
|
443
|
+
/**
|
444
|
+
* Metadata that describes the start product subscription operation.
|
445
|
+
*/
|
446
|
+
ProductUserSummary: ProductUserSummary;
|
447
|
+
}
|
448
|
+
export interface StopProductSubscriptionRequest {
|
449
|
+
/**
|
450
|
+
* The domain name of the user.
|
451
|
+
*/
|
452
|
+
Domain?: String;
|
453
|
+
/**
|
454
|
+
* An object that specifies details for the identity provider.
|
455
|
+
*/
|
456
|
+
IdentityProvider: IdentityProvider;
|
457
|
+
/**
|
458
|
+
* The name of the user-based subscription product.
|
459
|
+
*/
|
460
|
+
Product: String;
|
461
|
+
/**
|
462
|
+
* The user name from the identity provider for the user.
|
463
|
+
*/
|
464
|
+
Username: String;
|
465
|
+
}
|
466
|
+
export interface StopProductSubscriptionResponse {
|
467
|
+
/**
|
468
|
+
* Metadata that describes the start product subscription operation.
|
469
|
+
*/
|
470
|
+
ProductUserSummary: ProductUserSummary;
|
471
|
+
}
|
472
|
+
export type String = string;
|
473
|
+
export type StringList = String[];
|
474
|
+
/**
|
475
|
+
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
476
|
+
*/
|
477
|
+
export type apiVersion = "2018-05-10"|"latest"|string;
|
478
|
+
export interface ClientApiVersions {
|
479
|
+
/**
|
480
|
+
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
481
|
+
*/
|
482
|
+
apiVersion?: apiVersion;
|
483
|
+
}
|
484
|
+
export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
|
485
|
+
/**
|
486
|
+
* Contains interfaces for use with the LicenseManagerUserSubscriptions client.
|
487
|
+
*/
|
488
|
+
export import Types = LicenseManagerUserSubscriptions;
|
489
|
+
}
|
490
|
+
export = LicenseManagerUserSubscriptions;
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require('../lib/node_loader');
|
2
|
+
var AWS = require('../lib/core');
|
3
|
+
var Service = AWS.Service;
|
4
|
+
var apiLoader = AWS.apiLoader;
|
5
|
+
|
6
|
+
apiLoader.services['licensemanagerusersubscriptions'] = {};
|
7
|
+
AWS.LicenseManagerUserSubscriptions = Service.defineService('licensemanagerusersubscriptions', ['2018-05-10']);
|
8
|
+
Object.defineProperty(apiLoader.services['licensemanagerusersubscriptions'], '2018-05-10', {
|
9
|
+
get: function get() {
|
10
|
+
var model = require('../apis/license-manager-user-subscriptions-2018-05-10.min.json');
|
11
|
+
model.paginators = require('../apis/license-manager-user-subscriptions-2018-05-10.paginators.json').pagination;
|
12
|
+
return model;
|
13
|
+
},
|
14
|
+
enumerable: true,
|
15
|
+
configurable: true
|
16
|
+
});
|
17
|
+
|
18
|
+
module.exports = AWS.LicenseManagerUserSubscriptions;
|
@@ -60,11 +60,11 @@ declare class Personalize extends Service {
|
|
60
60
|
*/
|
61
61
|
createDatasetGroup(callback?: (err: AWSError, data: Personalize.Types.CreateDatasetGroupResponse) => void): Request<Personalize.Types.CreateDatasetGroupResponse, AWSError>;
|
62
62
|
/**
|
63
|
-
* Creates a job that imports training data from your data source (an Amazon S3 bucket) to an Amazon Personalize dataset. To allow Amazon Personalize to import the training data, you must specify an IAM service role that has permission to read from the data source, as Amazon Personalize makes a copy of your data and processes it internally. For information on granting access to your Amazon S3 bucket, see Giving Amazon Personalize Access to Amazon S3 Resources.
|
63
|
+
* Creates a job that imports training data from your data source (an Amazon S3 bucket) to an Amazon Personalize dataset. To allow Amazon Personalize to import the training data, you must specify an IAM service role that has permission to read from the data source, as Amazon Personalize makes a copy of your data and processes it internally. For information on granting access to your Amazon S3 bucket, see Giving Amazon Personalize Access to Amazon S3 Resources. By default, a dataset import job replaces any existing data in the dataset that you imported in bulk. To add new records without replacing existing data, specify INCREMENTAL for the import mode in the CreateDatasetImportJob operation. Status A dataset import job can be in one of the following states: CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED To get the status of the import job, call DescribeDatasetImportJob, providing the Amazon Resource Name (ARN) of the dataset import job. The dataset import is complete when the status shows as ACTIVE. If the status shows as CREATE FAILED, the response includes a failureReason key, which describes why the job failed. Importing takes time. You must wait until the status shows as ACTIVE before training a model using the dataset. Related APIs ListDatasetImportJobs DescribeDatasetImportJob
|
64
64
|
*/
|
65
65
|
createDatasetImportJob(params: Personalize.Types.CreateDatasetImportJobRequest, callback?: (err: AWSError, data: Personalize.Types.CreateDatasetImportJobResponse) => void): Request<Personalize.Types.CreateDatasetImportJobResponse, AWSError>;
|
66
66
|
/**
|
67
|
-
* Creates a job that imports training data from your data source (an Amazon S3 bucket) to an Amazon Personalize dataset. To allow Amazon Personalize to import the training data, you must specify an IAM service role that has permission to read from the data source, as Amazon Personalize makes a copy of your data and processes it internally. For information on granting access to your Amazon S3 bucket, see Giving Amazon Personalize Access to Amazon S3 Resources.
|
67
|
+
* Creates a job that imports training data from your data source (an Amazon S3 bucket) to an Amazon Personalize dataset. To allow Amazon Personalize to import the training data, you must specify an IAM service role that has permission to read from the data source, as Amazon Personalize makes a copy of your data and processes it internally. For information on granting access to your Amazon S3 bucket, see Giving Amazon Personalize Access to Amazon S3 Resources. By default, a dataset import job replaces any existing data in the dataset that you imported in bulk. To add new records without replacing existing data, specify INCREMENTAL for the import mode in the CreateDatasetImportJob operation. Status A dataset import job can be in one of the following states: CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED To get the status of the import job, call DescribeDatasetImportJob, providing the Amazon Resource Name (ARN) of the dataset import job. The dataset import is complete when the status shows as ACTIVE. If the status shows as CREATE FAILED, the response includes a failureReason key, which describes why the job failed. Importing takes time. You must wait until the status shows as ACTIVE before training a model using the dataset. Related APIs ListDatasetImportJobs DescribeDatasetImportJob
|
68
68
|
*/
|
69
69
|
createDatasetImportJob(callback?: (err: AWSError, data: Personalize.Types.CreateDatasetImportJobResponse) => void): Request<Personalize.Types.CreateDatasetImportJobResponse, AWSError>;
|
70
70
|
/**
|
@@ -1082,6 +1082,10 @@ declare namespace Personalize {
|
|
1082
1082
|
* A list of tags to apply to the dataset import job.
|
1083
1083
|
*/
|
1084
1084
|
tags?: Tags;
|
1085
|
+
/**
|
1086
|
+
* Specify how to add the new records to an existing dataset. The default import mode is FULL. If you haven't imported bulk records into the dataset previously, you can only specify FULL. Specify FULL to overwrite all existing bulk data in your dataset. Data you imported individually is not replaced. Specify INCREMENTAL to append the new records to the existing data in your dataset. Amazon Personalize replaces any record with the same ID with the new one.
|
1087
|
+
*/
|
1088
|
+
importMode?: ImportMode;
|
1085
1089
|
}
|
1086
1090
|
export interface CreateDatasetImportJobResponse {
|
1087
1091
|
/**
|
@@ -1491,6 +1495,10 @@ declare namespace Personalize {
|
|
1491
1495
|
* If a dataset import job fails, provides the reason why.
|
1492
1496
|
*/
|
1493
1497
|
failureReason?: FailureReason;
|
1498
|
+
/**
|
1499
|
+
* The import mode used by the dataset import job to import new records.
|
1500
|
+
*/
|
1501
|
+
importMode?: ImportMode;
|
1494
1502
|
}
|
1495
1503
|
export interface DatasetImportJobSummary {
|
1496
1504
|
/**
|
@@ -1517,6 +1525,10 @@ declare namespace Personalize {
|
|
1517
1525
|
* If a dataset import job fails, the reason behind the failure.
|
1518
1526
|
*/
|
1519
1527
|
failureReason?: FailureReason;
|
1528
|
+
/**
|
1529
|
+
* The import mode the dataset import job used to update the data in the dataset. For more information see Updating existing bulk data.
|
1530
|
+
*/
|
1531
|
+
importMode?: ImportMode;
|
1520
1532
|
}
|
1521
1533
|
export type DatasetImportJobs = DatasetImportJobSummary[];
|
1522
1534
|
export interface DatasetSchema {
|
@@ -2131,6 +2143,7 @@ declare namespace Personalize {
|
|
2131
2143
|
categoricalHyperParameterRanges?: CategoricalHyperParameterRanges;
|
2132
2144
|
}
|
2133
2145
|
export type HyperParameters = {[key: string]: ParameterValue};
|
2146
|
+
export type ImportMode = "FULL"|"INCREMENTAL"|string;
|
2134
2147
|
export type IngestionMode = "BULK"|"PUT"|"ALL"|string;
|
2135
2148
|
export interface IntegerHyperParameterRange {
|
2136
2149
|
/**
|