aws-sdk-core 2.6.38 → 2.6.39

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 12ad17eb527dcd1d7539aac9a128709801566d45
4
- data.tar.gz: 51425990ec395ce7d67cfc1bc8930c660253b9a0
3
+ metadata.gz: 4178e46a49a1c6351ea6db2d56e455632609b9b9
4
+ data.tar.gz: a7bdf02353506ba32b9ab9e31661e076e1d93338
5
5
  SHA512:
6
- metadata.gz: 3c758a9ea1905c879598e9cbd908ca815858db5cd1b3716d232efb45ef1bb7d355fc33b8792e43a3f51a3755d472dc19cd660f62bf170d3ec65eaa7fcec6bd78
7
- data.tar.gz: 844f74a580a0d75fe91826ada7e8e69e7aa4ccfe4bd0ea678527bfc65a3b0a9d43cde268348414550046b04be140cc705acbd1459e7813a37bf14e14a03ca327
6
+ metadata.gz: e8c330f6eb7ab659431fdc94c2f2548f4dce116c1bd778e25856b2f8c64c530516dc6738f8625d4614a7c21b3b91b006e009e05bc5f1a6d797897e5fe07af742
7
+ data.tar.gz: 417cbddfef8265f444d3eb0845bc3f80d94f35c0a0c817553a41096ff238f2878ac2187e7bec37978ad57a3b4fce6692a0a52501bf3a2f631a7ca1407a5f16fe
@@ -2,6 +2,12 @@
2
2
  "pagination": {
3
3
  "DescribeTrails": {
4
4
  "result_key": "trailList"
5
+ },
6
+ "LookupEvents": {
7
+ "input_token": "NextToken",
8
+ "output_token": "NextToken",
9
+ "limit_key": "MaxResults",
10
+ "result_key": "Events"
5
11
  }
6
12
  }
7
13
  }
@@ -328,6 +328,24 @@
328
328
  "min":1,
329
329
  "pattern":"\\d+"
330
330
  },
331
+ "AmbiguousRoleResolutionType":{
332
+ "type":"string",
333
+ "enum":[
334
+ "AuthenticatedRole",
335
+ "Deny"
336
+ ]
337
+ },
338
+ "ClaimName":{
339
+ "type":"string",
340
+ "max":64,
341
+ "min":1,
342
+ "pattern":"[\\p{L}\\p{M}\\p{S}\\p{N}\\p{P}]+"
343
+ },
344
+ "ClaimValue":{
345
+ "type":"string",
346
+ "max":128,
347
+ "min":1
348
+ },
331
349
  "CognitoIdentityProvider":{
332
350
  "type":"structure",
333
351
  "members":{
@@ -434,8 +452,7 @@
434
452
  "DeveloperUserIdentifier":{
435
453
  "type":"string",
436
454
  "max":1024,
437
- "min":1,
438
- "pattern":"[\\w.@_-]+"
455
+ "min":1
439
456
  },
440
457
  "DeveloperUserIdentifierList":{
441
458
  "type":"list",
@@ -497,7 +514,8 @@
497
514
  "type":"structure",
498
515
  "members":{
499
516
  "IdentityPoolId":{"shape":"IdentityPoolId"},
500
- "Roles":{"shape":"RolesMap"}
517
+ "Roles":{"shape":"RolesMap"},
518
+ "RoleMappings":{"shape":"RoleMappingMap"}
501
519
  }
502
520
  },
503
521
  "GetOpenIdTokenForDeveloperIdentityInput":{
@@ -719,6 +737,36 @@
719
737
  "NextToken":{"shape":"PaginationKey"}
720
738
  }
721
739
  },
740
+ "MappingRule":{
741
+ "type":"structure",
742
+ "required":[
743
+ "Claim",
744
+ "MatchType",
745
+ "Value",
746
+ "RoleARN"
747
+ ],
748
+ "members":{
749
+ "Claim":{"shape":"ClaimName"},
750
+ "MatchType":{"shape":"MappingRuleMatchType"},
751
+ "Value":{"shape":"ClaimValue"},
752
+ "RoleARN":{"shape":"ARNString"}
753
+ }
754
+ },
755
+ "MappingRuleMatchType":{
756
+ "type":"string",
757
+ "enum":[
758
+ "Equals",
759
+ "Contains",
760
+ "StartsWith",
761
+ "NotEqual"
762
+ ]
763
+ },
764
+ "MappingRulesList":{
765
+ "type":"list",
766
+ "member":{"shape":"MappingRule"},
767
+ "max":25,
768
+ "min":1
769
+ },
722
770
  "MergeDeveloperIdentitiesInput":{
723
771
  "type":"structure",
724
772
  "required":[
@@ -776,6 +824,28 @@
776
824
  },
777
825
  "exception":true
778
826
  },
827
+ "RoleMapping":{
828
+ "type":"structure",
829
+ "required":["Type"],
830
+ "members":{
831
+ "Type":{"shape":"RoleMappingType"},
832
+ "AmbiguousRoleResolution":{"shape":"AmbiguousRoleResolutionType"},
833
+ "RulesConfiguration":{"shape":"RulesConfigurationType"}
834
+ }
835
+ },
836
+ "RoleMappingMap":{
837
+ "type":"map",
838
+ "key":{"shape":"IdentityProviderName"},
839
+ "value":{"shape":"RoleMapping"},
840
+ "max":10
841
+ },
842
+ "RoleMappingType":{
843
+ "type":"string",
844
+ "enum":[
845
+ "Token",
846
+ "Rules"
847
+ ]
848
+ },
779
849
  "RoleType":{
780
850
  "type":"string",
781
851
  "pattern":"(un)?authenticated"
@@ -786,6 +856,13 @@
786
856
  "value":{"shape":"ARNString"},
787
857
  "max":2
788
858
  },
859
+ "RulesConfigurationType":{
860
+ "type":"structure",
861
+ "required":["Rules"],
862
+ "members":{
863
+ "Rules":{"shape":"MappingRulesList"}
864
+ }
865
+ },
789
866
  "SAMLProviderList":{
790
867
  "type":"list",
791
868
  "member":{"shape":"ARNString"}
@@ -800,7 +877,8 @@
800
877
  ],
801
878
  "members":{
802
879
  "IdentityPoolId":{"shape":"IdentityPoolId"},
803
- "Roles":{"shape":"RolesMap"}
880
+ "Roles":{"shape":"RolesMap"},
881
+ "RoleMappings":{"shape":"RoleMappingMap"}
804
882
  }
805
883
  },
806
884
  "String":{"type":"string"},
@@ -11,6 +11,36 @@
11
11
  "uid":"discovery-2015-11-01"
12
12
  },
13
13
  "operations":{
14
+ "AssociateConfigurationItemsToApplication":{
15
+ "name":"AssociateConfigurationItemsToApplication",
16
+ "http":{
17
+ "method":"POST",
18
+ "requestUri":"/"
19
+ },
20
+ "input":{"shape":"AssociateConfigurationItemsToApplicationRequest"},
21
+ "output":{"shape":"AssociateConfigurationItemsToApplicationResponse"},
22
+ "errors":[
23
+ {"shape":"AuthorizationErrorException"},
24
+ {"shape":"InvalidParameterException"},
25
+ {"shape":"InvalidParameterValueException"},
26
+ {"shape":"ServerInternalErrorException"}
27
+ ]
28
+ },
29
+ "CreateApplication":{
30
+ "name":"CreateApplication",
31
+ "http":{
32
+ "method":"POST",
33
+ "requestUri":"/"
34
+ },
35
+ "input":{"shape":"CreateApplicationRequest"},
36
+ "output":{"shape":"CreateApplicationResponse"},
37
+ "errors":[
38
+ {"shape":"AuthorizationErrorException"},
39
+ {"shape":"InvalidParameterException"},
40
+ {"shape":"InvalidParameterValueException"},
41
+ {"shape":"ServerInternalErrorException"}
42
+ ]
43
+ },
14
44
  "CreateTags":{
15
45
  "name":"CreateTags",
16
46
  "http":{
@@ -27,6 +57,21 @@
27
57
  {"shape":"ServerInternalErrorException"}
28
58
  ]
29
59
  },
60
+ "DeleteApplications":{
61
+ "name":"DeleteApplications",
62
+ "http":{
63
+ "method":"POST",
64
+ "requestUri":"/"
65
+ },
66
+ "input":{"shape":"DeleteApplicationsRequest"},
67
+ "output":{"shape":"DeleteApplicationsResponse"},
68
+ "errors":[
69
+ {"shape":"AuthorizationErrorException"},
70
+ {"shape":"InvalidParameterException"},
71
+ {"shape":"InvalidParameterValueException"},
72
+ {"shape":"ServerInternalErrorException"}
73
+ ]
74
+ },
30
75
  "DeleteTags":{
31
76
  "name":"DeleteTags",
32
77
  "http":{
@@ -105,6 +150,21 @@
105
150
  {"shape":"ServerInternalErrorException"}
106
151
  ]
107
152
  },
153
+ "DisassociateConfigurationItemsFromApplication":{
154
+ "name":"DisassociateConfigurationItemsFromApplication",
155
+ "http":{
156
+ "method":"POST",
157
+ "requestUri":"/"
158
+ },
159
+ "input":{"shape":"DisassociateConfigurationItemsFromApplicationRequest"},
160
+ "output":{"shape":"DisassociateConfigurationItemsFromApplicationResponse"},
161
+ "errors":[
162
+ {"shape":"AuthorizationErrorException"},
163
+ {"shape":"InvalidParameterException"},
164
+ {"shape":"InvalidParameterValueException"},
165
+ {"shape":"ServerInternalErrorException"}
166
+ ]
167
+ },
108
168
  "ExportConfigurations":{
109
169
  "name":"ExportConfigurations",
110
170
  "http":{
@@ -120,6 +180,21 @@
120
180
  {"shape":"OperationNotPermittedException"}
121
181
  ]
122
182
  },
183
+ "GetDiscoverySummary":{
184
+ "name":"GetDiscoverySummary",
185
+ "http":{
186
+ "method":"POST",
187
+ "requestUri":"/"
188
+ },
189
+ "input":{"shape":"GetDiscoverySummaryRequest"},
190
+ "output":{"shape":"GetDiscoverySummaryResponse"},
191
+ "errors":[
192
+ {"shape":"AuthorizationErrorException"},
193
+ {"shape":"InvalidParameterException"},
194
+ {"shape":"InvalidParameterValueException"},
195
+ {"shape":"ServerInternalErrorException"}
196
+ ]
197
+ },
123
198
  "ListConfigurations":{
124
199
  "name":"ListConfigurations",
125
200
  "http":{
@@ -136,6 +211,21 @@
136
211
  {"shape":"ServerInternalErrorException"}
137
212
  ]
138
213
  },
214
+ "ListServerNeighbors":{
215
+ "name":"ListServerNeighbors",
216
+ "http":{
217
+ "method":"POST",
218
+ "requestUri":"/"
219
+ },
220
+ "input":{"shape":"ListServerNeighborsRequest"},
221
+ "output":{"shape":"ListServerNeighborsResponse"},
222
+ "errors":[
223
+ {"shape":"AuthorizationErrorException"},
224
+ {"shape":"InvalidParameterException"},
225
+ {"shape":"InvalidParameterValueException"},
226
+ {"shape":"ServerInternalErrorException"}
227
+ ]
228
+ },
139
229
  "StartDataCollectionByAgentIds":{
140
230
  "name":"StartDataCollectionByAgentIds",
141
231
  "http":{
@@ -165,6 +255,21 @@
165
255
  {"shape":"InvalidParameterValueException"},
166
256
  {"shape":"ServerInternalErrorException"}
167
257
  ]
258
+ },
259
+ "UpdateApplication":{
260
+ "name":"UpdateApplication",
261
+ "http":{
262
+ "method":"POST",
263
+ "requestUri":"/"
264
+ },
265
+ "input":{"shape":"UpdateApplicationRequest"},
266
+ "output":{"shape":"UpdateApplicationResponse"},
267
+ "errors":[
268
+ {"shape":"AuthorizationErrorException"},
269
+ {"shape":"InvalidParameterException"},
270
+ {"shape":"InvalidParameterValueException"},
271
+ {"shape":"ServerInternalErrorException"}
272
+ ]
168
273
  }
169
274
  },
170
275
  "shapes":{
@@ -193,7 +298,11 @@
193
298
  "agentNetworkInfoList":{"shape":"AgentNetworkInfoList"},
194
299
  "connectorId":{"shape":"String"},
195
300
  "version":{"shape":"String"},
196
- "health":{"shape":"AgentStatus"}
301
+ "health":{"shape":"AgentStatus"},
302
+ "lastHealthPingTime":{"shape":"String"},
303
+ "collectionStatus":{"shape":"String"},
304
+ "agentType":{"shape":"String"},
305
+ "registeredTime":{"shape":"String"}
197
306
  }
198
307
  },
199
308
  "AgentNetworkInfo":{
@@ -222,6 +331,27 @@
222
331
  "type":"list",
223
332
  "member":{"shape":"AgentInfo"}
224
333
  },
334
+ "ApplicationId":{"type":"string"},
335
+ "ApplicationIdsList":{
336
+ "type":"list",
337
+ "member":{"shape":"ApplicationId"}
338
+ },
339
+ "AssociateConfigurationItemsToApplicationRequest":{
340
+ "type":"structure",
341
+ "required":[
342
+ "applicationConfigurationId",
343
+ "configurationIds"
344
+ ],
345
+ "members":{
346
+ "applicationConfigurationId":{"shape":"ApplicationId"},
347
+ "configurationIds":{"shape":"ConfigurationIdList"}
348
+ }
349
+ },
350
+ "AssociateConfigurationItemsToApplicationResponse":{
351
+ "type":"structure",
352
+ "members":{
353
+ }
354
+ },
225
355
  "AuthorizationErrorException":{
226
356
  "type":"structure",
227
357
  "members":{
@@ -230,6 +360,10 @@
230
360
  "exception":true
231
361
  },
232
362
  "Boolean":{"type":"boolean"},
363
+ "BoxedInteger":{
364
+ "type":"integer",
365
+ "box":true
366
+ },
233
367
  "Condition":{"type":"string"},
234
368
  "Configuration":{
235
369
  "type":"map",
@@ -246,7 +380,8 @@
246
380
  "enum":[
247
381
  "SERVER",
248
382
  "PROCESS",
249
- "CONNECTION"
383
+ "CONNECTION",
384
+ "APPLICATION"
250
385
  ]
251
386
  },
252
387
  "ConfigurationTag":{
@@ -272,6 +407,20 @@
272
407
  },
273
408
  "ConfigurationsDownloadUrl":{"type":"string"},
274
409
  "ConfigurationsExportId":{"type":"string"},
410
+ "CreateApplicationRequest":{
411
+ "type":"structure",
412
+ "required":["name"],
413
+ "members":{
414
+ "name":{"shape":"String"},
415
+ "description":{"shape":"String"}
416
+ }
417
+ },
418
+ "CreateApplicationResponse":{
419
+ "type":"structure",
420
+ "members":{
421
+ "configurationId":{"shape":"String"}
422
+ }
423
+ },
275
424
  "CreateTagsRequest":{
276
425
  "type":"structure",
277
426
  "required":[
@@ -288,6 +437,60 @@
288
437
  "members":{
289
438
  }
290
439
  },
440
+ "CustomerAgentInfo":{
441
+ "type":"structure",
442
+ "required":[
443
+ "activeAgents",
444
+ "healthyAgents",
445
+ "blackListedAgents",
446
+ "shutdownAgents",
447
+ "unhealthyAgents",
448
+ "totalAgents",
449
+ "unknownAgents"
450
+ ],
451
+ "members":{
452
+ "activeAgents":{"shape":"Integer"},
453
+ "healthyAgents":{"shape":"Integer"},
454
+ "blackListedAgents":{"shape":"Integer"},
455
+ "shutdownAgents":{"shape":"Integer"},
456
+ "unhealthyAgents":{"shape":"Integer"},
457
+ "totalAgents":{"shape":"Integer"},
458
+ "unknownAgents":{"shape":"Integer"}
459
+ }
460
+ },
461
+ "CustomerConnectorInfo":{
462
+ "type":"structure",
463
+ "required":[
464
+ "activeConnectors",
465
+ "healthyConnectors",
466
+ "blackListedConnectors",
467
+ "shutdownConnectors",
468
+ "unhealthyConnectors",
469
+ "totalConnectors",
470
+ "unknownConnectors"
471
+ ],
472
+ "members":{
473
+ "activeConnectors":{"shape":"Integer"},
474
+ "healthyConnectors":{"shape":"Integer"},
475
+ "blackListedConnectors":{"shape":"Integer"},
476
+ "shutdownConnectors":{"shape":"Integer"},
477
+ "unhealthyConnectors":{"shape":"Integer"},
478
+ "totalConnectors":{"shape":"Integer"},
479
+ "unknownConnectors":{"shape":"Integer"}
480
+ }
481
+ },
482
+ "DeleteApplicationsRequest":{
483
+ "type":"structure",
484
+ "required":["configurationIds"],
485
+ "members":{
486
+ "configurationIds":{"shape":"ApplicationIdsList"}
487
+ }
488
+ },
489
+ "DeleteApplicationsResponse":{
490
+ "type":"structure",
491
+ "members":{
492
+ }
493
+ },
291
494
  "DeleteTagsRequest":{
292
495
  "type":"structure",
293
496
  "required":["configurationIds"],
@@ -305,6 +508,7 @@
305
508
  "type":"structure",
306
509
  "members":{
307
510
  "agentIds":{"shape":"AgentIds"},
511
+ "filters":{"shape":"Filters"},
308
512
  "maxResults":{"shape":"Integer"},
309
513
  "nextToken":{"shape":"NextToken"}
310
514
  }
@@ -368,6 +572,22 @@
368
572
  "nextToken":{"shape":"NextToken"}
369
573
  }
370
574
  },
575
+ "DisassociateConfigurationItemsFromApplicationRequest":{
576
+ "type":"structure",
577
+ "required":[
578
+ "applicationConfigurationId",
579
+ "configurationIds"
580
+ ],
581
+ "members":{
582
+ "applicationConfigurationId":{"shape":"ApplicationId"},
583
+ "configurationIds":{"shape":"ConfigurationIdList"}
584
+ }
585
+ },
586
+ "DisassociateConfigurationItemsFromApplicationResponse":{
587
+ "type":"structure",
588
+ "members":{
589
+ }
590
+ },
371
591
  "ExportConfigurationsResponse":{
372
592
  "type":"structure",
373
593
  "members":{
@@ -434,6 +654,22 @@
434
654
  "type":"list",
435
655
  "member":{"shape":"Filter"}
436
656
  },
657
+ "GetDiscoverySummaryRequest":{
658
+ "type":"structure",
659
+ "members":{
660
+ }
661
+ },
662
+ "GetDiscoverySummaryResponse":{
663
+ "type":"structure",
664
+ "members":{
665
+ "servers":{"shape":"Long"},
666
+ "applications":{"shape":"Long"},
667
+ "serversMappedToApplications":{"shape":"Long"},
668
+ "serversMappedtoTags":{"shape":"Long"},
669
+ "agentSummary":{"shape":"CustomerAgentInfo"},
670
+ "connectorSummary":{"shape":"CustomerConnectorInfo"}
671
+ }
672
+ },
437
673
  "Integer":{"type":"integer"},
438
674
  "InvalidParameterException":{
439
675
  "type":"structure",
@@ -456,7 +692,8 @@
456
692
  "configurationType":{"shape":"ConfigurationItemType"},
457
693
  "filters":{"shape":"Filters"},
458
694
  "maxResults":{"shape":"Integer"},
459
- "nextToken":{"shape":"NextToken"}
695
+ "nextToken":{"shape":"NextToken"},
696
+ "orderBy":{"shape":"OrderByList"}
460
697
  }
461
698
  },
462
699
  "ListConfigurationsResponse":{
@@ -466,7 +703,47 @@
466
703
  "nextToken":{"shape":"NextToken"}
467
704
  }
468
705
  },
706
+ "ListServerNeighborsRequest":{
707
+ "type":"structure",
708
+ "required":["configurationId"],
709
+ "members":{
710
+ "configurationId":{"shape":"ConfigurationId"},
711
+ "portInformationNeeded":{"shape":"Boolean"},
712
+ "neighborConfigurationIds":{"shape":"ConfigurationIdList"},
713
+ "maxResults":{"shape":"Integer"},
714
+ "nextToken":{"shape":"String"}
715
+ }
716
+ },
717
+ "ListServerNeighborsResponse":{
718
+ "type":"structure",
719
+ "required":["neighbors"],
720
+ "members":{
721
+ "neighbors":{"shape":"NeighborDetailsList"},
722
+ "nextToken":{"shape":"String"},
723
+ "knownDependencyCount":{"shape":"Long"}
724
+ }
725
+ },
726
+ "Long":{"type":"long"},
469
727
  "Message":{"type":"string"},
728
+ "NeighborConnectionDetail":{
729
+ "type":"structure",
730
+ "required":[
731
+ "sourceServerId",
732
+ "destinationServerId",
733
+ "connectionsCount"
734
+ ],
735
+ "members":{
736
+ "sourceServerId":{"shape":"ConfigurationId"},
737
+ "destinationServerId":{"shape":"ConfigurationId"},
738
+ "destinationPort":{"shape":"BoxedInteger"},
739
+ "transportProtocol":{"shape":"String"},
740
+ "connectionsCount":{"shape":"Long"}
741
+ }
742
+ },
743
+ "NeighborDetailsList":{
744
+ "type":"list",
745
+ "member":{"shape":"NeighborConnectionDetail"}
746
+ },
470
747
  "NextToken":{"type":"string"},
471
748
  "OperationNotPermittedException":{
472
749
  "type":"structure",
@@ -475,6 +752,18 @@
475
752
  },
476
753
  "exception":true
477
754
  },
755
+ "OrderByElement":{
756
+ "type":"structure",
757
+ "required":["fieldName"],
758
+ "members":{
759
+ "fieldName":{"shape":"String"},
760
+ "sortOrder":{"shape":"orderString"}
761
+ }
762
+ },
763
+ "OrderByList":{
764
+ "type":"list",
765
+ "member":{"shape":"OrderByElement"}
766
+ },
478
767
  "ResourceNotFoundException":{
479
768
  "type":"structure",
480
769
  "members":{
@@ -552,6 +841,27 @@
552
841
  }
553
842
  },
554
843
  "TagValue":{"type":"string"},
555
- "TimeStamp":{"type":"timestamp"}
844
+ "TimeStamp":{"type":"timestamp"},
845
+ "UpdateApplicationRequest":{
846
+ "type":"structure",
847
+ "required":["configurationId"],
848
+ "members":{
849
+ "configurationId":{"shape":"ApplicationId"},
850
+ "name":{"shape":"String"},
851
+ "description":{"shape":"String"}
852
+ }
853
+ },
854
+ "UpdateApplicationResponse":{
855
+ "type":"structure",
856
+ "members":{
857
+ }
858
+ },
859
+ "orderString":{
860
+ "type":"string",
861
+ "enum":[
862
+ "ASC",
863
+ "DESC"
864
+ ]
865
+ }
556
866
  }
557
867
  }