aws-sdk 2.1644.0 → 2.1645.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/README.md +1 -1
- package/apis/artifact-2018-05-10.examples.json +113 -0
- package/apis/artifact-2018-05-10.min.json +47 -41
- package/apis/artifact-2018-05-10.waiters2.json +5 -0
- package/apis/athena-2017-05-18.min.json +4 -1
- package/apis/cur-2017-01-06.min.json +7 -1
- package/apis/directconnect-2012-10-25.min.json +7 -1
- package/apis/elastictranscoder-2012-09-25.min.json +7 -1
- package/apis/opensearch-2021-01-01.min.json +137 -112
- package/clients/artifact.d.ts +68 -64
- package/clients/artifact.js +1 -0
- package/clients/opensearch.d.ts +48 -2
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +85 -78
- package/dist/aws-sdk.js +28 -7
- package/dist/aws-sdk.min.js +105 -105
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/artifact.d.ts
CHANGED
@@ -142,14 +142,14 @@ declare namespace Artifact {
|
|
142
142
|
nextToken?: NextTokenAttribute;
|
143
143
|
}
|
144
144
|
export interface ListReportsResponse {
|
145
|
-
/**
|
146
|
-
* Pagination token to request the next page of resources.
|
147
|
-
*/
|
148
|
-
nextToken?: NextTokenAttribute;
|
149
145
|
/**
|
150
146
|
* List of report resources.
|
151
147
|
*/
|
152
148
|
reports?: ReportsList;
|
149
|
+
/**
|
150
|
+
* Pagination token to request the next page of resources.
|
151
|
+
*/
|
152
|
+
nextToken?: NextTokenAttribute;
|
153
153
|
}
|
154
154
|
export type LongStringAttribute = string;
|
155
155
|
export type MaxResultsAttribute = number;
|
@@ -167,144 +167,148 @@ declare namespace Artifact {
|
|
167
167
|
}
|
168
168
|
export interface ReportDetail {
|
169
169
|
/**
|
170
|
-
*
|
170
|
+
* Unique resource ID for the report resource.
|
171
171
|
*/
|
172
|
-
|
172
|
+
id?: ReportId;
|
173
173
|
/**
|
174
|
-
*
|
174
|
+
* Name for the report resource.
|
175
175
|
*/
|
176
|
-
|
176
|
+
name?: ShortStringAttribute;
|
177
177
|
/**
|
178
|
-
*
|
178
|
+
* Description for the report resource.
|
179
179
|
*/
|
180
|
-
|
180
|
+
description?: LongStringAttribute;
|
181
181
|
/**
|
182
|
-
*
|
182
|
+
* Timestamp indicating the report resource effective start.
|
183
183
|
*/
|
184
|
-
|
184
|
+
periodStart?: TimestampAttribute;
|
185
|
+
/**
|
186
|
+
* Timestamp indicating the report resource effective end.
|
187
|
+
*/
|
188
|
+
periodEnd?: TimestampAttribute;
|
185
189
|
/**
|
186
190
|
* Timestamp indicating when the report resource was created.
|
187
191
|
*/
|
188
192
|
createdAt?: TimestampAttribute;
|
189
193
|
/**
|
190
|
-
* Timestamp indicating when the report resource was
|
194
|
+
* Timestamp indicating when the report resource was last modified.
|
191
195
|
*/
|
192
|
-
|
196
|
+
lastModifiedAt?: TimestampAttribute;
|
193
197
|
/**
|
194
|
-
*
|
198
|
+
* Timestamp indicating when the report resource was deleted.
|
195
199
|
*/
|
196
|
-
|
200
|
+
deletedAt?: TimestampAttribute;
|
197
201
|
/**
|
198
|
-
*
|
202
|
+
* Current state of the report resource
|
199
203
|
*/
|
200
|
-
|
204
|
+
state?: PublishedState;
|
201
205
|
/**
|
202
|
-
*
|
206
|
+
* ARN for the report resource.
|
203
207
|
*/
|
204
|
-
|
208
|
+
arn?: LongStringAttribute;
|
205
209
|
/**
|
206
|
-
*
|
210
|
+
* Series for the report resource.
|
207
211
|
*/
|
208
|
-
|
212
|
+
series?: ShortStringAttribute;
|
209
213
|
/**
|
210
|
-
*
|
214
|
+
* Category for the report resource.
|
211
215
|
*/
|
212
|
-
|
216
|
+
category?: ShortStringAttribute;
|
213
217
|
/**
|
214
|
-
*
|
218
|
+
* Associated company name for the report resource.
|
215
219
|
*/
|
216
|
-
|
220
|
+
companyName?: ShortStringAttribute;
|
217
221
|
/**
|
218
222
|
* Associated product name for the report resource.
|
219
223
|
*/
|
220
224
|
productName?: ShortStringAttribute;
|
221
225
|
/**
|
222
|
-
*
|
223
|
-
*/
|
224
|
-
sequenceNumber?: SequenceNumberAttribute;
|
225
|
-
/**
|
226
|
-
* Series for the report resource.
|
226
|
+
* Unique resource ARN for term resource.
|
227
227
|
*/
|
228
|
-
|
228
|
+
termArn?: LongStringAttribute;
|
229
229
|
/**
|
230
|
-
*
|
230
|
+
* Version for the report resource.
|
231
231
|
*/
|
232
|
-
|
232
|
+
version?: VersionAttribute;
|
233
233
|
/**
|
234
|
-
*
|
234
|
+
* Acceptance type for report.
|
235
235
|
*/
|
236
|
-
|
236
|
+
acceptanceType?: AcceptanceType;
|
237
237
|
/**
|
238
|
-
*
|
238
|
+
* Sequence number to enforce optimistic locking.
|
239
239
|
*/
|
240
|
-
|
240
|
+
sequenceNumber?: SequenceNumberAttribute;
|
241
241
|
/**
|
242
242
|
* The current state of the document upload.
|
243
243
|
*/
|
244
244
|
uploadState?: UploadState;
|
245
245
|
/**
|
246
|
-
*
|
246
|
+
* The message associated with the current upload state.
|
247
247
|
*/
|
248
|
-
|
248
|
+
statusMessage?: StatusMessage;
|
249
249
|
}
|
250
250
|
export type ReportId = string;
|
251
251
|
export interface ReportSummary {
|
252
252
|
/**
|
253
|
-
*
|
253
|
+
* Unique resource ID for the report resource.
|
254
254
|
*/
|
255
|
-
|
255
|
+
id?: ReportId;
|
256
256
|
/**
|
257
|
-
*
|
257
|
+
* Name for the report resource.
|
258
258
|
*/
|
259
|
-
|
259
|
+
name?: ShortStringAttribute;
|
260
260
|
/**
|
261
|
-
*
|
261
|
+
* Current state of the report resource.
|
262
262
|
*/
|
263
|
-
|
263
|
+
state?: PublishedState;
|
264
264
|
/**
|
265
|
-
*
|
265
|
+
* ARN for the report resource.
|
266
266
|
*/
|
267
|
-
|
267
|
+
arn?: LongStringAttribute;
|
268
268
|
/**
|
269
|
-
*
|
269
|
+
* Version for the report resource.
|
270
270
|
*/
|
271
|
-
|
271
|
+
version?: VersionAttribute;
|
272
272
|
/**
|
273
|
-
*
|
273
|
+
* The current state of the document upload.
|
274
274
|
*/
|
275
|
-
|
275
|
+
uploadState?: UploadState;
|
276
276
|
/**
|
277
|
-
*
|
277
|
+
* Description for the report resource.
|
278
278
|
*/
|
279
|
-
|
279
|
+
description?: LongStringAttribute;
|
280
280
|
/**
|
281
281
|
* Timestamp indicating the report resource effective start.
|
282
282
|
*/
|
283
283
|
periodStart?: TimestampAttribute;
|
284
284
|
/**
|
285
|
-
*
|
285
|
+
* Timestamp indicating the report resource effective end.
|
286
286
|
*/
|
287
|
-
|
287
|
+
periodEnd?: TimestampAttribute;
|
288
288
|
/**
|
289
289
|
* Series for the report resource.
|
290
290
|
*/
|
291
291
|
series?: ShortStringAttribute;
|
292
292
|
/**
|
293
|
-
*
|
293
|
+
* Category for the report resource.
|
294
294
|
*/
|
295
|
-
|
295
|
+
category?: ShortStringAttribute;
|
296
296
|
/**
|
297
|
-
*
|
297
|
+
* Associated company name for the report resource.
|
298
298
|
*/
|
299
|
-
|
299
|
+
companyName?: ShortStringAttribute;
|
300
300
|
/**
|
301
|
-
*
|
301
|
+
* Associated product name for the report resource.
|
302
302
|
*/
|
303
|
-
|
303
|
+
productName?: ShortStringAttribute;
|
304
304
|
/**
|
305
|
-
*
|
305
|
+
* The message associated with the current upload state.
|
306
306
|
*/
|
307
|
-
|
307
|
+
statusMessage?: StatusMessage;
|
308
|
+
/**
|
309
|
+
* Acceptance type for report.
|
310
|
+
*/
|
311
|
+
acceptanceType?: AcceptanceType;
|
308
312
|
}
|
309
313
|
export type ReportsList = ReportSummary[];
|
310
314
|
export type SequenceNumberAttribute = number;
|
package/clients/artifact.js
CHANGED
@@ -9,6 +9,7 @@ Object.defineProperty(apiLoader.services['artifact'], '2018-05-10', {
|
|
9
9
|
get: function get() {
|
10
10
|
var model = require('../apis/artifact-2018-05-10.min.json');
|
11
11
|
model.paginators = require('../apis/artifact-2018-05-10.paginators.json').pagination;
|
12
|
+
model.waiters = require('../apis/artifact-2018-05-10.waiters2.json').waiters;
|
12
13
|
return model;
|
13
14
|
},
|
14
15
|
enumerable: true,
|
package/clients/opensearch.d.ts
CHANGED
@@ -627,6 +627,10 @@ declare namespace OpenSearch {
|
|
627
627
|
* Container for information about the SAML configuration for OpenSearch Dashboards.
|
628
628
|
*/
|
629
629
|
SAMLOptions?: SAMLOptionsOutput;
|
630
|
+
/**
|
631
|
+
* Container for information about the JWT configuration of the Amazon OpenSearch Service.
|
632
|
+
*/
|
633
|
+
JWTOptions?: JWTOptionsOutput;
|
630
634
|
/**
|
631
635
|
* Date and time when the migration period will be disabled. Only necessary when enabling fine-grained access control on an existing domain.
|
632
636
|
*/
|
@@ -653,6 +657,10 @@ declare namespace OpenSearch {
|
|
653
657
|
* Container for information about the SAML configuration for OpenSearch Dashboards.
|
654
658
|
*/
|
655
659
|
SAMLOptions?: SAMLOptionsInput;
|
660
|
+
/**
|
661
|
+
* Container for information about the JWT configuration of the Amazon OpenSearch Service.
|
662
|
+
*/
|
663
|
+
JWTOptions?: JWTOptionsInput;
|
656
664
|
/**
|
657
665
|
* True to enable a 30-day migration period during which administrators can create role mappings. Only necessary when enabling fine-grained access control on an existing domain.
|
658
666
|
*/
|
@@ -2324,7 +2332,7 @@ declare namespace OpenSearch {
|
|
2324
2332
|
*/
|
2325
2333
|
Description?: DataSourceDescription;
|
2326
2334
|
/**
|
2327
|
-
* The status of the data source
|
2335
|
+
* The status of the data source.
|
2328
2336
|
*/
|
2329
2337
|
Status?: DataSourceStatus;
|
2330
2338
|
}
|
@@ -2540,6 +2548,42 @@ declare namespace OpenSearch {
|
|
2540
2548
|
export type IntegerClass = number;
|
2541
2549
|
export type Issue = string;
|
2542
2550
|
export type Issues = Issue[];
|
2551
|
+
export interface JWTOptionsInput {
|
2552
|
+
/**
|
2553
|
+
* True to enable JWT authentication and authorization for a domain.
|
2554
|
+
*/
|
2555
|
+
Enabled?: Boolean;
|
2556
|
+
/**
|
2557
|
+
* Element of the JWT assertion to use for the user name.
|
2558
|
+
*/
|
2559
|
+
SubjectKey?: SubjectKey;
|
2560
|
+
/**
|
2561
|
+
* Element of the JWT assertion to use for roles.
|
2562
|
+
*/
|
2563
|
+
RolesKey?: RolesKey;
|
2564
|
+
/**
|
2565
|
+
* Element of the JWT assertion used by the cluster to verify JWT signatures.
|
2566
|
+
*/
|
2567
|
+
PublicKey?: String;
|
2568
|
+
}
|
2569
|
+
export interface JWTOptionsOutput {
|
2570
|
+
/**
|
2571
|
+
* True if JWT use is enabled.
|
2572
|
+
*/
|
2573
|
+
Enabled?: Boolean;
|
2574
|
+
/**
|
2575
|
+
* The key used for matching the JWT subject attribute.
|
2576
|
+
*/
|
2577
|
+
SubjectKey?: String;
|
2578
|
+
/**
|
2579
|
+
* The key used for matching the JWT roles attribute.
|
2580
|
+
*/
|
2581
|
+
RolesKey?: String;
|
2582
|
+
/**
|
2583
|
+
* The key used to verify the signature of incoming JWT requests.
|
2584
|
+
*/
|
2585
|
+
PublicKey?: String;
|
2586
|
+
}
|
2543
2587
|
export type KmsKeyId = string;
|
2544
2588
|
export type LastUpdated = Date;
|
2545
2589
|
export type LimitName = string;
|
@@ -3276,6 +3320,7 @@ declare namespace OpenSearch {
|
|
3276
3320
|
export interface RevokeVpcEndpointAccessResponse {
|
3277
3321
|
}
|
3278
3322
|
export type RoleArn = string;
|
3323
|
+
export type RolesKey = string;
|
3279
3324
|
export type RollbackOnDisable = "NO_ROLLBACK"|"DEFAULT_ROLLBACK"|string;
|
3280
3325
|
export type S3BucketName = string;
|
3281
3326
|
export interface S3GlueDataCatalog {
|
@@ -3553,6 +3598,7 @@ declare namespace OpenSearch {
|
|
3553
3598
|
export type StorageTypeName = string;
|
3554
3599
|
export type String = string;
|
3555
3600
|
export type StringList = String[];
|
3601
|
+
export type SubjectKey = string;
|
3556
3602
|
export type TLSSecurityPolicy = "Policy-Min-TLS-1-0-2019-07"|"Policy-Min-TLS-1-2-2019-07"|"Policy-Min-TLS-1-2-PFS-2023-10"|string;
|
3557
3603
|
export interface Tag {
|
3558
3604
|
/**
|
@@ -3589,7 +3635,7 @@ declare namespace OpenSearch {
|
|
3589
3635
|
*/
|
3590
3636
|
Description?: DataSourceDescription;
|
3591
3637
|
/**
|
3592
|
-
* The status of the data source update
|
3638
|
+
* The status of the data source update.
|
3593
3639
|
*/
|
3594
3640
|
Status?: DataSourceStatus;
|
3595
3641
|
}
|