aws-sdk 2.1423.0 → 2.1425.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/CHANGELOG.md +16 -1
- package/README.md +1 -1
- package/apis/application-insights-2018-11-25.min.json +228 -43
- package/apis/application-insights-2018-11-25.paginators.json +5 -0
- package/apis/autoscaling-2011-01-01.examples.json +54 -16
- package/apis/autoscaling-2011-01-01.min.json +3 -0
- package/apis/autoscaling-2011-01-01.paginators.json +6 -0
- package/apis/cloudformation-2010-05-15.min.json +95 -80
- package/apis/cloudfront-2020-05-31.min.json +4 -1
- package/apis/ebs-2019-11-02.min.json +2 -1
- package/apis/ec2-2016-11-15.min.json +795 -780
- package/apis/ec2-2016-11-15.waiters2.json +25 -0
- package/apis/kafka-2018-11-14.min.json +237 -52
- package/apis/kafka-2018-11-14.paginators.json +6 -0
- package/apis/pinpoint-2016-12-01.examples.json +6 -12
- package/apis/pinpoint-2016-12-01.min.json +286 -243
- package/apis/sagemaker-2017-07-24.min.json +3 -0
- package/clients/applicationinsights.d.ts +342 -2
- package/clients/autoscaling.d.ts +7 -7
- package/clients/cloudformation.d.ts +21 -0
- package/clients/cloudfront.d.ts +14 -10
- package/clients/connect.d.ts +1 -1
- package/clients/ebs.d.ts +17 -12
- package/clients/ec2.d.ts +29 -0
- package/clients/eks.d.ts +1 -1
- package/clients/kafka.d.ts +204 -0
- package/clients/pinpoint.d.ts +69 -5
- package/clients/sagemaker.d.ts +1 -0
- package/clients/sqs.d.ts +9 -9
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +14 -14
- package/dist/aws-sdk.js +931 -864
- package/dist/aws-sdk.min.js +98 -98
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,7 +1,22 @@
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
2
|
-
<!--LATEST=2.
|
2
|
+
<!--LATEST=2.1425.0-->
|
3
3
|
<!--ENTRYINSERT-->
|
4
4
|
|
5
|
+
## 2.1425.0
|
6
|
+
* feature: ApplicationInsights: This release enable customer to add/remove/update more than one workload for a component
|
7
|
+
* feature: CloudFormation: This SDK release is for the feature launch of AWS CloudFormation RetainExceptOnCreate. It adds a new parameter retainExceptOnCreate in the following APIs: CreateStack, UpdateStack, RollbackStack, ExecuteChangeSet.
|
8
|
+
* feature: CloudFront: Add a new JavaScript runtime version for CloudFront Functions.
|
9
|
+
* feature: Connect: This release adds support for new number types.
|
10
|
+
* feature: Kafka: Amazon MSK has introduced new versions of ListClusterOperations and DescribeClusterOperation APIs. These v2 APIs provide information and insights into the ongoing operations of both MSK Provisioned and MSK Serverless clusters.
|
11
|
+
* feature: Pinpoint: Added support for sending push notifications using the FCM v1 API with json credentials. Amazon Pinpoint customers can now deliver messages to Android devices using both FCM v1 API and the legacy FCM/GCM API
|
12
|
+
|
13
|
+
## 2.1424.0
|
14
|
+
* feature: AutoScaling: This release updates validation for instance types used in the AllowedInstanceTypes and ExcludedInstanceTypes parameters of the InstanceRequirements property of a MixedInstancesPolicy.
|
15
|
+
* feature: EBS: SDK and documentation updates for Amazon Elastic Block Store API
|
16
|
+
* feature: EC2: SDK and documentation updates for Amazon Elastic Block Store APIs
|
17
|
+
* feature: EKS: Add multiple customer error code to handle customer caused failure when managing EKS node groups
|
18
|
+
* feature: SageMaker: Expose ProfilerConfig attribute in SageMaker Search API response.
|
19
|
+
|
5
20
|
## 2.1423.0
|
6
21
|
* feature: EntityResolution: AWS Entity Resolution can effectively match a source record from a customer relationship management (CRM) system with a source record from a marketing system containing campaign information.
|
7
22
|
* feature: Glue: Release Glue Studio Snowflake Connector Node for SDK/CLI
|
package/README.md
CHANGED
@@ -71,7 +71,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
|
|
71
71
|
To use the SDK in the browser, simply add the following script tag to your
|
72
72
|
HTML pages:
|
73
73
|
|
74
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
74
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1425.0.min.js"></script>
|
75
75
|
|
76
76
|
You can also build a custom browser SDK with your specified set of AWS services.
|
77
77
|
This can allow you to reduce the SDK's size, specify different API versions of
|
@@ -14,6 +14,32 @@
|
|
14
14
|
"uid": "application-insights-2018-11-25"
|
15
15
|
},
|
16
16
|
"operations": {
|
17
|
+
"AddWorkload": {
|
18
|
+
"input": {
|
19
|
+
"type": "structure",
|
20
|
+
"required": [
|
21
|
+
"ResourceGroupName",
|
22
|
+
"ComponentName",
|
23
|
+
"WorkloadConfiguration"
|
24
|
+
],
|
25
|
+
"members": {
|
26
|
+
"ResourceGroupName": {},
|
27
|
+
"ComponentName": {},
|
28
|
+
"WorkloadConfiguration": {
|
29
|
+
"shape": "S4"
|
30
|
+
}
|
31
|
+
}
|
32
|
+
},
|
33
|
+
"output": {
|
34
|
+
"type": "structure",
|
35
|
+
"members": {
|
36
|
+
"WorkloadId": {},
|
37
|
+
"WorkloadConfiguration": {
|
38
|
+
"shape": "S4"
|
39
|
+
}
|
40
|
+
}
|
41
|
+
}
|
42
|
+
},
|
17
43
|
"CreateApplication": {
|
18
44
|
"input": {
|
19
45
|
"type": "structure",
|
@@ -27,7 +53,7 @@
|
|
27
53
|
},
|
28
54
|
"OpsItemSNSTopicArn": {},
|
29
55
|
"Tags": {
|
30
|
-
"shape": "
|
56
|
+
"shape": "Se"
|
31
57
|
},
|
32
58
|
"AutoConfigEnabled": {
|
33
59
|
"type": "boolean"
|
@@ -42,7 +68,7 @@
|
|
42
68
|
"type": "structure",
|
43
69
|
"members": {
|
44
70
|
"ApplicationInfo": {
|
45
|
-
"shape": "
|
71
|
+
"shape": "Sm"
|
46
72
|
}
|
47
73
|
}
|
48
74
|
}
|
@@ -59,7 +85,7 @@
|
|
59
85
|
"ResourceGroupName": {},
|
60
86
|
"ComponentName": {},
|
61
87
|
"ResourceList": {
|
62
|
-
"shape": "
|
88
|
+
"shape": "St"
|
63
89
|
}
|
64
90
|
}
|
65
91
|
},
|
@@ -92,7 +118,7 @@
|
|
92
118
|
"type": "structure",
|
93
119
|
"members": {
|
94
120
|
"LogPattern": {
|
95
|
-
"shape": "
|
121
|
+
"shape": "S12"
|
96
122
|
},
|
97
123
|
"ResourceGroupName": {}
|
98
124
|
}
|
@@ -156,14 +182,15 @@
|
|
156
182
|
"ResourceGroupName"
|
157
183
|
],
|
158
184
|
"members": {
|
159
|
-
"ResourceGroupName": {}
|
185
|
+
"ResourceGroupName": {},
|
186
|
+
"AccountId": {}
|
160
187
|
}
|
161
188
|
},
|
162
189
|
"output": {
|
163
190
|
"type": "structure",
|
164
191
|
"members": {
|
165
192
|
"ApplicationInfo": {
|
166
|
-
"shape": "
|
193
|
+
"shape": "Sm"
|
167
194
|
}
|
168
195
|
}
|
169
196
|
}
|
@@ -177,17 +204,18 @@
|
|
177
204
|
],
|
178
205
|
"members": {
|
179
206
|
"ResourceGroupName": {},
|
180
|
-
"ComponentName": {}
|
207
|
+
"ComponentName": {},
|
208
|
+
"AccountId": {}
|
181
209
|
}
|
182
210
|
},
|
183
211
|
"output": {
|
184
212
|
"type": "structure",
|
185
213
|
"members": {
|
186
214
|
"ApplicationComponent": {
|
187
|
-
"shape": "
|
215
|
+
"shape": "S1d"
|
188
216
|
},
|
189
217
|
"ResourceList": {
|
190
|
-
"shape": "
|
218
|
+
"shape": "St"
|
191
219
|
}
|
192
220
|
}
|
193
221
|
}
|
@@ -201,7 +229,8 @@
|
|
201
229
|
],
|
202
230
|
"members": {
|
203
231
|
"ResourceGroupName": {},
|
204
|
-
"ComponentName": {}
|
232
|
+
"ComponentName": {},
|
233
|
+
"AccountId": {}
|
205
234
|
}
|
206
235
|
},
|
207
236
|
"output": {
|
@@ -226,7 +255,8 @@
|
|
226
255
|
"members": {
|
227
256
|
"ResourceGroupName": {},
|
228
257
|
"ComponentName": {},
|
229
|
-
"Tier": {}
|
258
|
+
"Tier": {},
|
259
|
+
"RecommendationType": {}
|
230
260
|
}
|
231
261
|
},
|
232
262
|
"output": {
|
@@ -247,15 +277,17 @@
|
|
247
277
|
"members": {
|
248
278
|
"ResourceGroupName": {},
|
249
279
|
"PatternSetName": {},
|
250
|
-
"PatternName": {}
|
280
|
+
"PatternName": {},
|
281
|
+
"AccountId": {}
|
251
282
|
}
|
252
283
|
},
|
253
284
|
"output": {
|
254
285
|
"type": "structure",
|
255
286
|
"members": {
|
256
287
|
"ResourceGroupName": {},
|
288
|
+
"AccountId": {},
|
257
289
|
"LogPattern": {
|
258
|
-
"shape": "
|
290
|
+
"shape": "S12"
|
259
291
|
}
|
260
292
|
}
|
261
293
|
}
|
@@ -267,14 +299,15 @@
|
|
267
299
|
"ObservationId"
|
268
300
|
],
|
269
301
|
"members": {
|
270
|
-
"ObservationId": {}
|
302
|
+
"ObservationId": {},
|
303
|
+
"AccountId": {}
|
271
304
|
}
|
272
305
|
},
|
273
306
|
"output": {
|
274
307
|
"type": "structure",
|
275
308
|
"members": {
|
276
309
|
"Observation": {
|
277
|
-
"shape": "
|
310
|
+
"shape": "S1v"
|
278
311
|
}
|
279
312
|
}
|
280
313
|
}
|
@@ -286,14 +319,15 @@
|
|
286
319
|
"ProblemId"
|
287
320
|
],
|
288
321
|
"members": {
|
289
|
-
"ProblemId": {}
|
322
|
+
"ProblemId": {},
|
323
|
+
"AccountId": {}
|
290
324
|
}
|
291
325
|
},
|
292
326
|
"output": {
|
293
327
|
"type": "structure",
|
294
328
|
"members": {
|
295
329
|
"Problem": {
|
296
|
-
"shape": "
|
330
|
+
"shape": "S37"
|
297
331
|
}
|
298
332
|
}
|
299
333
|
}
|
@@ -305,7 +339,8 @@
|
|
305
339
|
"ProblemId"
|
306
340
|
],
|
307
341
|
"members": {
|
308
|
-
"ProblemId": {}
|
342
|
+
"ProblemId": {},
|
343
|
+
"AccountId": {}
|
309
344
|
}
|
310
345
|
},
|
311
346
|
"output": {
|
@@ -317,7 +352,7 @@
|
|
317
352
|
"ObservationList": {
|
318
353
|
"type": "list",
|
319
354
|
"member": {
|
320
|
-
"shape": "
|
355
|
+
"shape": "S1v"
|
321
356
|
}
|
322
357
|
}
|
323
358
|
}
|
@@ -325,6 +360,32 @@
|
|
325
360
|
}
|
326
361
|
}
|
327
362
|
},
|
363
|
+
"DescribeWorkload": {
|
364
|
+
"input": {
|
365
|
+
"type": "structure",
|
366
|
+
"required": [
|
367
|
+
"ResourceGroupName",
|
368
|
+
"ComponentName",
|
369
|
+
"WorkloadId"
|
370
|
+
],
|
371
|
+
"members": {
|
372
|
+
"ResourceGroupName": {},
|
373
|
+
"ComponentName": {},
|
374
|
+
"WorkloadId": {},
|
375
|
+
"AccountId": {}
|
376
|
+
}
|
377
|
+
},
|
378
|
+
"output": {
|
379
|
+
"type": "structure",
|
380
|
+
"members": {
|
381
|
+
"WorkloadId": {},
|
382
|
+
"WorkloadRemarks": {},
|
383
|
+
"WorkloadConfiguration": {
|
384
|
+
"shape": "S4"
|
385
|
+
}
|
386
|
+
}
|
387
|
+
}
|
388
|
+
},
|
328
389
|
"ListApplications": {
|
329
390
|
"input": {
|
330
391
|
"type": "structure",
|
@@ -332,7 +393,8 @@
|
|
332
393
|
"MaxResults": {
|
333
394
|
"type": "integer"
|
334
395
|
},
|
335
|
-
"NextToken": {}
|
396
|
+
"NextToken": {},
|
397
|
+
"AccountId": {}
|
336
398
|
}
|
337
399
|
},
|
338
400
|
"output": {
|
@@ -341,7 +403,7 @@
|
|
341
403
|
"ApplicationInfoList": {
|
342
404
|
"type": "list",
|
343
405
|
"member": {
|
344
|
-
"shape": "
|
406
|
+
"shape": "Sm"
|
345
407
|
}
|
346
408
|
},
|
347
409
|
"NextToken": {}
|
@@ -359,7 +421,8 @@
|
|
359
421
|
"MaxResults": {
|
360
422
|
"type": "integer"
|
361
423
|
},
|
362
|
-
"NextToken": {}
|
424
|
+
"NextToken": {},
|
425
|
+
"AccountId": {}
|
363
426
|
}
|
364
427
|
},
|
365
428
|
"output": {
|
@@ -368,7 +431,7 @@
|
|
368
431
|
"ApplicationComponentList": {
|
369
432
|
"type": "list",
|
370
433
|
"member": {
|
371
|
-
"shape": "
|
434
|
+
"shape": "S1d"
|
372
435
|
}
|
373
436
|
},
|
374
437
|
"NextToken": {}
|
@@ -390,7 +453,8 @@
|
|
390
453
|
"MaxResults": {
|
391
454
|
"type": "integer"
|
392
455
|
},
|
393
|
-
"NextToken": {}
|
456
|
+
"NextToken": {},
|
457
|
+
"AccountId": {}
|
394
458
|
}
|
395
459
|
},
|
396
460
|
"output": {
|
@@ -401,6 +465,8 @@
|
|
401
465
|
"member": {
|
402
466
|
"type": "structure",
|
403
467
|
"members": {
|
468
|
+
"ResourceGroupName": {},
|
469
|
+
"AccountId": {},
|
404
470
|
"MonitoredResourceARN": {},
|
405
471
|
"EventStatus": {},
|
406
472
|
"EventResourceType": {},
|
@@ -427,13 +493,15 @@
|
|
427
493
|
"MaxResults": {
|
428
494
|
"type": "integer"
|
429
495
|
},
|
430
|
-
"NextToken": {}
|
496
|
+
"NextToken": {},
|
497
|
+
"AccountId": {}
|
431
498
|
}
|
432
499
|
},
|
433
500
|
"output": {
|
434
501
|
"type": "structure",
|
435
502
|
"members": {
|
436
503
|
"ResourceGroupName": {},
|
504
|
+
"AccountId": {},
|
437
505
|
"LogPatternSets": {
|
438
506
|
"type": "list",
|
439
507
|
"member": {}
|
@@ -454,17 +522,19 @@
|
|
454
522
|
"MaxResults": {
|
455
523
|
"type": "integer"
|
456
524
|
},
|
457
|
-
"NextToken": {}
|
525
|
+
"NextToken": {},
|
526
|
+
"AccountId": {}
|
458
527
|
}
|
459
528
|
},
|
460
529
|
"output": {
|
461
530
|
"type": "structure",
|
462
531
|
"members": {
|
463
532
|
"ResourceGroupName": {},
|
533
|
+
"AccountId": {},
|
464
534
|
"LogPatterns": {
|
465
535
|
"type": "list",
|
466
536
|
"member": {
|
467
|
-
"shape": "
|
537
|
+
"shape": "S12"
|
468
538
|
}
|
469
539
|
},
|
470
540
|
"NextToken": {}
|
@@ -475,6 +545,7 @@
|
|
475
545
|
"input": {
|
476
546
|
"type": "structure",
|
477
547
|
"members": {
|
548
|
+
"AccountId": {},
|
478
549
|
"ResourceGroupName": {},
|
479
550
|
"StartTime": {
|
480
551
|
"type": "timestamp"
|
@@ -486,7 +557,8 @@
|
|
486
557
|
"type": "integer"
|
487
558
|
},
|
488
559
|
"NextToken": {},
|
489
|
-
"ComponentName": {}
|
560
|
+
"ComponentName": {},
|
561
|
+
"Visibility": {}
|
490
562
|
}
|
491
563
|
},
|
492
564
|
"output": {
|
@@ -495,11 +567,12 @@
|
|
495
567
|
"ProblemList": {
|
496
568
|
"type": "list",
|
497
569
|
"member": {
|
498
|
-
"shape": "
|
570
|
+
"shape": "S37"
|
499
571
|
}
|
500
572
|
},
|
501
573
|
"NextToken": {},
|
502
|
-
"ResourceGroupName": {}
|
574
|
+
"ResourceGroupName": {},
|
575
|
+
"AccountId": {}
|
503
576
|
}
|
504
577
|
}
|
505
578
|
},
|
@@ -517,11 +590,67 @@
|
|
517
590
|
"type": "structure",
|
518
591
|
"members": {
|
519
592
|
"Tags": {
|
520
|
-
"shape": "
|
593
|
+
"shape": "Se"
|
521
594
|
}
|
522
595
|
}
|
523
596
|
}
|
524
597
|
},
|
598
|
+
"ListWorkloads": {
|
599
|
+
"input": {
|
600
|
+
"type": "structure",
|
601
|
+
"required": [
|
602
|
+
"ResourceGroupName",
|
603
|
+
"ComponentName"
|
604
|
+
],
|
605
|
+
"members": {
|
606
|
+
"ResourceGroupName": {},
|
607
|
+
"ComponentName": {},
|
608
|
+
"MaxResults": {
|
609
|
+
"type": "integer"
|
610
|
+
},
|
611
|
+
"NextToken": {},
|
612
|
+
"AccountId": {}
|
613
|
+
}
|
614
|
+
},
|
615
|
+
"output": {
|
616
|
+
"type": "structure",
|
617
|
+
"members": {
|
618
|
+
"WorkloadList": {
|
619
|
+
"type": "list",
|
620
|
+
"member": {
|
621
|
+
"type": "structure",
|
622
|
+
"members": {
|
623
|
+
"WorkloadId": {},
|
624
|
+
"ComponentName": {},
|
625
|
+
"WorkloadName": {},
|
626
|
+
"Tier": {},
|
627
|
+
"WorkloadRemarks": {}
|
628
|
+
}
|
629
|
+
}
|
630
|
+
},
|
631
|
+
"NextToken": {}
|
632
|
+
}
|
633
|
+
}
|
634
|
+
},
|
635
|
+
"RemoveWorkload": {
|
636
|
+
"input": {
|
637
|
+
"type": "structure",
|
638
|
+
"required": [
|
639
|
+
"ResourceGroupName",
|
640
|
+
"ComponentName",
|
641
|
+
"WorkloadId"
|
642
|
+
],
|
643
|
+
"members": {
|
644
|
+
"ResourceGroupName": {},
|
645
|
+
"ComponentName": {},
|
646
|
+
"WorkloadId": {}
|
647
|
+
}
|
648
|
+
},
|
649
|
+
"output": {
|
650
|
+
"type": "structure",
|
651
|
+
"members": {}
|
652
|
+
}
|
653
|
+
},
|
525
654
|
"TagResource": {
|
526
655
|
"input": {
|
527
656
|
"type": "structure",
|
@@ -532,7 +661,7 @@
|
|
532
661
|
"members": {
|
533
662
|
"ResourceARN": {},
|
534
663
|
"Tags": {
|
535
|
-
"shape": "
|
664
|
+
"shape": "Se"
|
536
665
|
}
|
537
666
|
}
|
538
667
|
},
|
@@ -588,7 +717,7 @@
|
|
588
717
|
"type": "structure",
|
589
718
|
"members": {
|
590
719
|
"ApplicationInfo": {
|
591
|
-
"shape": "
|
720
|
+
"shape": "Sm"
|
592
721
|
}
|
593
722
|
}
|
594
723
|
}
|
@@ -605,7 +734,7 @@
|
|
605
734
|
"ComponentName": {},
|
606
735
|
"NewComponentName": {},
|
607
736
|
"ResourceList": {
|
608
|
-
"shape": "
|
737
|
+
"shape": "St"
|
609
738
|
}
|
610
739
|
}
|
611
740
|
},
|
@@ -662,14 +791,66 @@
|
|
662
791
|
"members": {
|
663
792
|
"ResourceGroupName": {},
|
664
793
|
"LogPattern": {
|
665
|
-
"shape": "
|
794
|
+
"shape": "S12"
|
795
|
+
}
|
796
|
+
}
|
797
|
+
}
|
798
|
+
},
|
799
|
+
"UpdateProblem": {
|
800
|
+
"input": {
|
801
|
+
"type": "structure",
|
802
|
+
"required": [
|
803
|
+
"ProblemId"
|
804
|
+
],
|
805
|
+
"members": {
|
806
|
+
"ProblemId": {},
|
807
|
+
"UpdateStatus": {},
|
808
|
+
"Visibility": {}
|
809
|
+
}
|
810
|
+
},
|
811
|
+
"output": {
|
812
|
+
"type": "structure",
|
813
|
+
"members": {}
|
814
|
+
}
|
815
|
+
},
|
816
|
+
"UpdateWorkload": {
|
817
|
+
"input": {
|
818
|
+
"type": "structure",
|
819
|
+
"required": [
|
820
|
+
"ResourceGroupName",
|
821
|
+
"ComponentName",
|
822
|
+
"WorkloadConfiguration"
|
823
|
+
],
|
824
|
+
"members": {
|
825
|
+
"ResourceGroupName": {},
|
826
|
+
"ComponentName": {},
|
827
|
+
"WorkloadId": {},
|
828
|
+
"WorkloadConfiguration": {
|
829
|
+
"shape": "S4"
|
830
|
+
}
|
831
|
+
}
|
832
|
+
},
|
833
|
+
"output": {
|
834
|
+
"type": "structure",
|
835
|
+
"members": {
|
836
|
+
"WorkloadId": {},
|
837
|
+
"WorkloadConfiguration": {
|
838
|
+
"shape": "S4"
|
666
839
|
}
|
667
840
|
}
|
668
841
|
}
|
669
842
|
}
|
670
843
|
},
|
671
844
|
"shapes": {
|
672
|
-
"
|
845
|
+
"S4": {
|
846
|
+
"type": "structure",
|
847
|
+
"members": {
|
848
|
+
"WorkloadName": {},
|
849
|
+
"Tier": {},
|
850
|
+
"Configuration": {}
|
851
|
+
}
|
852
|
+
},
|
853
|
+
"Se": {
|
673
854
|
"type": "list",
|
674
855
|
"member": {
|
675
856
|
"type": "structure",
|
@@ -683,9 +864,10 @@
|
|
683
864
|
}
|
684
865
|
}
|
685
866
|
},
|
686
|
-
"
|
867
|
+
"Sm": {
|
687
868
|
"type": "structure",
|
688
869
|
"members": {
|
870
|
+
"AccountId": {},
|
689
871
|
"ResourceGroupName": {},
|
690
872
|
"LifeCycle": {},
|
691
873
|
"OpsItemSNSTopicArn": {},
|
@@ -702,11 +884,11 @@
|
|
702
884
|
"DiscoveryType": {}
|
703
885
|
}
|
704
886
|
},
|
705
|
-
"
|
887
|
+
"St": {
|
706
888
|
"type": "list",
|
707
889
|
"member": {}
|
708
890
|
},
|
709
|
-
"
|
891
|
+
"S12": {
|
710
892
|
"type": "structure",
|
711
893
|
"members": {
|
712
894
|
"PatternSetName": {},
|
@@ -717,7 +899,7 @@
|
|
717
899
|
}
|
718
900
|
}
|
719
901
|
},
|
720
|
-
"
|
902
|
+
"S1d": {
|
721
903
|
"type": "structure",
|
722
904
|
"members": {
|
723
905
|
"ComponentName": {},
|
@@ -739,7 +921,7 @@
|
|
739
921
|
}
|
740
922
|
}
|
741
923
|
},
|
742
|
-
"
|
924
|
+
"S1v": {
|
743
925
|
"type": "structure",
|
744
926
|
"members": {
|
745
927
|
"Id": {},
|
@@ -807,7 +989,7 @@
|
|
807
989
|
"XRayNodeType": {}
|
808
990
|
}
|
809
991
|
},
|
810
|
-
"
|
992
|
+
"S37": {
|
811
993
|
"type": "structure",
|
812
994
|
"members": {
|
813
995
|
"Id": {},
|
@@ -822,6 +1004,7 @@
|
|
822
1004
|
"type": "timestamp"
|
823
1005
|
},
|
824
1006
|
"SeverityLevel": {},
|
1007
|
+
"AccountId": {},
|
825
1008
|
"ResourceGroupName": {},
|
826
1009
|
"Feedback": {
|
827
1010
|
"type": "map",
|
@@ -833,7 +1016,9 @@
|
|
833
1016
|
},
|
834
1017
|
"LastRecurrenceTime": {
|
835
1018
|
"type": "timestamp"
|
836
|
-
}
|
1019
|
+
},
|
1020
|
+
"Visibility": {},
|
1021
|
+
"ResolutionMethod": {}
|
837
1022
|
}
|
838
1023
|
}
|
839
1024
|
}
|