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.
@@ -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
- * Acceptance type for report.
170
+ * Unique resource ID for the report resource.
171
171
  */
172
- acceptanceType?: AcceptanceType;
172
+ id?: ReportId;
173
173
  /**
174
- * ARN for the report resource.
174
+ * Name for the report resource.
175
175
  */
176
- arn?: LongStringAttribute;
176
+ name?: ShortStringAttribute;
177
177
  /**
178
- * Category for the report resource.
178
+ * Description for the report resource.
179
179
  */
180
- category?: ShortStringAttribute;
180
+ description?: LongStringAttribute;
181
181
  /**
182
- * Associated company name for the report resource.
182
+ * Timestamp indicating the report resource effective start.
183
183
  */
184
- companyName?: ShortStringAttribute;
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 deleted.
194
+ * Timestamp indicating when the report resource was last modified.
191
195
  */
192
- deletedAt?: TimestampAttribute;
196
+ lastModifiedAt?: TimestampAttribute;
193
197
  /**
194
- * Description for the report resource.
198
+ * Timestamp indicating when the report resource was deleted.
195
199
  */
196
- description?: LongStringAttribute;
200
+ deletedAt?: TimestampAttribute;
197
201
  /**
198
- * Unique resource ID for the report resource.
202
+ * Current state of the report resource
199
203
  */
200
- id?: ReportId;
204
+ state?: PublishedState;
201
205
  /**
202
- * Timestamp indicating when the report resource was last modified.
206
+ * ARN for the report resource.
203
207
  */
204
- lastModifiedAt?: TimestampAttribute;
208
+ arn?: LongStringAttribute;
205
209
  /**
206
- * Name for the report resource.
210
+ * Series for the report resource.
207
211
  */
208
- name?: ShortStringAttribute;
212
+ series?: ShortStringAttribute;
209
213
  /**
210
- * Timestamp indicating the report resource effective end.
214
+ * Category for the report resource.
211
215
  */
212
- periodEnd?: TimestampAttribute;
216
+ category?: ShortStringAttribute;
213
217
  /**
214
- * Timestamp indicating the report resource effective start.
218
+ * Associated company name for the report resource.
215
219
  */
216
- periodStart?: TimestampAttribute;
220
+ companyName?: ShortStringAttribute;
217
221
  /**
218
222
  * Associated product name for the report resource.
219
223
  */
220
224
  productName?: ShortStringAttribute;
221
225
  /**
222
- * Sequence number to enforce optimistic locking.
223
- */
224
- sequenceNumber?: SequenceNumberAttribute;
225
- /**
226
- * Series for the report resource.
226
+ * Unique resource ARN for term resource.
227
227
  */
228
- series?: ShortStringAttribute;
228
+ termArn?: LongStringAttribute;
229
229
  /**
230
- * Current state of the report resource
230
+ * Version for the report resource.
231
231
  */
232
- state?: PublishedState;
232
+ version?: VersionAttribute;
233
233
  /**
234
- * The message associated with the current upload state.
234
+ * Acceptance type for report.
235
235
  */
236
- statusMessage?: StatusMessage;
236
+ acceptanceType?: AcceptanceType;
237
237
  /**
238
- * Unique resource ARN for term resource.
238
+ * Sequence number to enforce optimistic locking.
239
239
  */
240
- termArn?: LongStringAttribute;
240
+ sequenceNumber?: SequenceNumberAttribute;
241
241
  /**
242
242
  * The current state of the document upload.
243
243
  */
244
244
  uploadState?: UploadState;
245
245
  /**
246
- * Version for the report resource.
246
+ * The message associated with the current upload state.
247
247
  */
248
- version?: VersionAttribute;
248
+ statusMessage?: StatusMessage;
249
249
  }
250
250
  export type ReportId = string;
251
251
  export interface ReportSummary {
252
252
  /**
253
- * ARN for the report resource.
253
+ * Unique resource ID for the report resource.
254
254
  */
255
- arn?: LongStringAttribute;
255
+ id?: ReportId;
256
256
  /**
257
- * Category for the report resource.
257
+ * Name for the report resource.
258
258
  */
259
- category?: ShortStringAttribute;
259
+ name?: ShortStringAttribute;
260
260
  /**
261
- * Associated company name for the report resource.
261
+ * Current state of the report resource.
262
262
  */
263
- companyName?: ShortStringAttribute;
263
+ state?: PublishedState;
264
264
  /**
265
- * Description for the report resource.
265
+ * ARN for the report resource.
266
266
  */
267
- description?: LongStringAttribute;
267
+ arn?: LongStringAttribute;
268
268
  /**
269
- * Unique resource ID for the report resource.
269
+ * Version for the report resource.
270
270
  */
271
- id?: ReportId;
271
+ version?: VersionAttribute;
272
272
  /**
273
- * Name for the report resource.
273
+ * The current state of the document upload.
274
274
  */
275
- name?: ShortStringAttribute;
275
+ uploadState?: UploadState;
276
276
  /**
277
- * Timestamp indicating the report resource effective end.
277
+ * Description for the report resource.
278
278
  */
279
- periodEnd?: TimestampAttribute;
279
+ description?: LongStringAttribute;
280
280
  /**
281
281
  * Timestamp indicating the report resource effective start.
282
282
  */
283
283
  periodStart?: TimestampAttribute;
284
284
  /**
285
- * Associated product name for the report resource.
285
+ * Timestamp indicating the report resource effective end.
286
286
  */
287
- productName?: ShortStringAttribute;
287
+ periodEnd?: TimestampAttribute;
288
288
  /**
289
289
  * Series for the report resource.
290
290
  */
291
291
  series?: ShortStringAttribute;
292
292
  /**
293
- * Current state of the report resource.
293
+ * Category for the report resource.
294
294
  */
295
- state?: PublishedState;
295
+ category?: ShortStringAttribute;
296
296
  /**
297
- * The message associated with the current upload state.
297
+ * Associated company name for the report resource.
298
298
  */
299
- statusMessage?: StatusMessage;
299
+ companyName?: ShortStringAttribute;
300
300
  /**
301
- * The current state of the document upload.
301
+ * Associated product name for the report resource.
302
302
  */
303
- uploadState?: UploadState;
303
+ productName?: ShortStringAttribute;
304
304
  /**
305
- * Version for the report resource.
305
+ * The message associated with the current upload state.
306
306
  */
307
- version?: VersionAttribute;
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;
@@ -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,
@@ -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 response.
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 request.
3638
+ * The status of the data source update.
3593
3639
  */
3594
3640
  Status?: DataSourceStatus;
3595
3641
  }
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1644.0',
86
+ VERSION: '2.1645.0',
87
87
 
88
88
  /**
89
89
  * @api private