aws-sdk 2.1643.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.
@@ -216,6 +216,12 @@
216
216
  "limit_key": "MaxResults",
217
217
  "result_key": "LineageGroupSummaries"
218
218
  },
219
+ "ListMlflowTrackingServers": {
220
+ "input_token": "NextToken",
221
+ "output_token": "NextToken",
222
+ "limit_key": "MaxResults",
223
+ "result_key": "TrackingServerSummaries"
224
+ },
219
225
  "ListModelBiasJobDefinitions": {
220
226
  "input_token": "NextToken",
221
227
  "output_token": "NextToken",
@@ -5,12 +5,18 @@
5
5
  "endpointPrefix": "shield",
6
6
  "jsonVersion": "1.1",
7
7
  "protocol": "json",
8
+ "protocols": [
9
+ "json"
10
+ ],
8
11
  "serviceAbbreviation": "AWS Shield",
9
12
  "serviceFullName": "AWS Shield",
10
13
  "serviceId": "Shield",
11
14
  "signatureVersion": "v4",
12
15
  "targetPrefix": "AWSShield_20160616",
13
- "uid": "shield-2016-06-02"
16
+ "uid": "shield-2016-06-02",
17
+ "auth": [
18
+ "aws.auth#sigv4"
19
+ ]
14
20
  },
15
21
  "operations": {
16
22
  "AssociateDRTLogBucket": {
@@ -5,12 +5,18 @@
5
5
  "endpointPrefix": "snowball",
6
6
  "jsonVersion": "1.1",
7
7
  "protocol": "json",
8
+ "protocols": [
9
+ "json"
10
+ ],
8
11
  "serviceAbbreviation": "Amazon Snowball",
9
12
  "serviceFullName": "Amazon Import/Export Snowball",
10
13
  "serviceId": "Snowball",
11
14
  "signatureVersion": "v4",
12
15
  "targetPrefix": "AWSIESnowballJobManagementService",
13
- "uid": "snowball-2016-06-30"
16
+ "uid": "snowball-2016-06-30",
17
+ "auth": [
18
+ "aws.auth#sigv4"
19
+ ]
14
20
  },
15
21
  "operations": {
16
22
  "CancelCluster": {
@@ -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,