aws-sdk-core 2.11.283 → 2.11.284

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,64 @@
1
+ {
2
+ "pagination": {
3
+ "GetFlowTemplateRevisions": {
4
+ "input_token": "nextToken",
5
+ "limit_key": "maxResults",
6
+ "output_token": "nextToken",
7
+ "result_key": "summaries"
8
+ },
9
+ "GetSystemTemplateRevisions": {
10
+ "input_token": "nextToken",
11
+ "limit_key": "maxResults",
12
+ "output_token": "nextToken",
13
+ "result_key": "summaries"
14
+ },
15
+ "ListFlowExecutionMessages": {
16
+ "input_token": "nextToken",
17
+ "limit_key": "maxResults",
18
+ "output_token": "nextToken",
19
+ "result_key": "messages"
20
+ },
21
+ "ListTagsForResource": {
22
+ "input_token": "nextToken",
23
+ "limit_key": "maxResults",
24
+ "output_token": "nextToken",
25
+ "result_key": "tags"
26
+ },
27
+ "SearchEntities": {
28
+ "input_token": "nextToken",
29
+ "limit_key": "maxResults",
30
+ "output_token": "nextToken",
31
+ "result_key": "descriptions"
32
+ },
33
+ "SearchFlowExecutions": {
34
+ "input_token": "nextToken",
35
+ "limit_key": "maxResults",
36
+ "output_token": "nextToken",
37
+ "result_key": "summaries"
38
+ },
39
+ "SearchFlowTemplates": {
40
+ "input_token": "nextToken",
41
+ "limit_key": "maxResults",
42
+ "output_token": "nextToken",
43
+ "result_key": "summaries"
44
+ },
45
+ "SearchSystemInstances": {
46
+ "input_token": "nextToken",
47
+ "limit_key": "maxResults",
48
+ "output_token": "nextToken",
49
+ "result_key": "summaries"
50
+ },
51
+ "SearchSystemTemplates": {
52
+ "input_token": "nextToken",
53
+ "limit_key": "maxResults",
54
+ "output_token": "nextToken",
55
+ "result_key": "summaries"
56
+ },
57
+ "SearchThings": {
58
+ "input_token": "nextToken",
59
+ "limit_key": "maxResults",
60
+ "output_token": "nextToken",
61
+ "result_key": "things"
62
+ }
63
+ }
64
+ }
@@ -168,6 +168,21 @@
168
168
  {"shape":"ResourceNotFoundException"}
169
169
  ]
170
170
  },
171
+ "DescribeProducts":{
172
+ "name":"DescribeProducts",
173
+ "http":{
174
+ "method":"GET",
175
+ "requestUri":"/products"
176
+ },
177
+ "input":{"shape":"DescribeProductsRequest"},
178
+ "output":{"shape":"DescribeProductsResponse"},
179
+ "errors":[
180
+ {"shape":"InternalException"},
181
+ {"shape":"LimitExceededException"},
182
+ {"shape":"InvalidAccessException"},
183
+ {"shape":"InvalidInputException"}
184
+ ]
185
+ },
171
186
  "DisableImportFindingsForProduct":{
172
187
  "name":"DisableImportFindingsForProduct",
173
188
  "http":{
@@ -432,6 +447,21 @@
432
447
  {"shape":"LimitExceededException"}
433
448
  ]
434
449
  },
450
+ "ListProductSubscribers":{
451
+ "name":"ListProductSubscribers",
452
+ "http":{
453
+ "method":"GET",
454
+ "requestUri":"/productSubscribers/"
455
+ },
456
+ "input":{"shape":"ListProductSubscribersRequest"},
457
+ "output":{"shape":"ListProductSubscribersResponse"},
458
+ "errors":[
459
+ {"shape":"ResourceNotFoundException"},
460
+ {"shape":"InternalException"},
461
+ {"shape":"LimitExceededException"},
462
+ {"shape":"InvalidAccessException"}
463
+ ]
464
+ },
435
465
  "UpdateFindings":{
436
466
  "name":"UpdateFindings",
437
467
  "http":{
@@ -728,6 +758,10 @@
728
758
  }
729
759
  },
730
760
  "Boolean":{"type":"boolean"},
761
+ "CategoryList":{
762
+ "type":"list",
763
+ "member":{"shape":"NonEmptyString"}
764
+ },
731
765
  "Compliance":{
732
766
  "type":"structure",
733
767
  "members":{
@@ -861,6 +895,29 @@
861
895
  "UnprocessedAccounts":{"shape":"ResultList"}
862
896
  }
863
897
  },
898
+ "DescribeProductsRequest":{
899
+ "type":"structure",
900
+ "members":{
901
+ "NextToken":{
902
+ "shape":"NextToken",
903
+ "location":"querystring",
904
+ "locationName":"NextToken"
905
+ },
906
+ "MaxResults":{
907
+ "shape":"MaxResults",
908
+ "location":"querystring",
909
+ "locationName":"MaxResults"
910
+ }
911
+ }
912
+ },
913
+ "DescribeProductsResponse":{
914
+ "type":"structure",
915
+ "required":["Products"],
916
+ "members":{
917
+ "Products":{"shape":"ProductsList"},
918
+ "NextToken":{"shape":"NextToken"}
919
+ }
920
+ },
864
921
  "DisableImportFindingsForProductRequest":{
865
922
  "type":"structure",
866
923
  "required":["ProductSubscriptionArn"],
@@ -1256,6 +1313,33 @@
1256
1313
  "NextToken":{"shape":"NonEmptyString"}
1257
1314
  }
1258
1315
  },
1316
+ "ListProductSubscribersRequest":{
1317
+ "type":"structure",
1318
+ "members":{
1319
+ "ProductArn":{
1320
+ "shape":"NonEmptyString",
1321
+ "location":"querystring",
1322
+ "locationName":"ProductArn"
1323
+ },
1324
+ "NextToken":{
1325
+ "shape":"NextToken",
1326
+ "location":"querystring",
1327
+ "locationName":"NextToken"
1328
+ },
1329
+ "MaxResults":{
1330
+ "shape":"MaxResults",
1331
+ "location":"querystring",
1332
+ "locationName":"MaxResults"
1333
+ }
1334
+ }
1335
+ },
1336
+ "ListProductSubscribersResponse":{
1337
+ "type":"structure",
1338
+ "members":{
1339
+ "ProductSubscribers":{"shape":"ProductSubscribersList"},
1340
+ "NextToken":{"shape":"NextToken"}
1341
+ }
1342
+ },
1259
1343
  "Malware":{
1260
1344
  "type":"structure",
1261
1345
  "required":["Name"],
@@ -1308,7 +1392,7 @@
1308
1392
  },
1309
1393
  "MapFilterComparison":{
1310
1394
  "type":"string",
1311
- "enum":["CONTAINS"]
1395
+ "enum":["EQUALS"]
1312
1396
  },
1313
1397
  "MapFilterList":{
1314
1398
  "type":"list",
@@ -1417,10 +1501,32 @@
1417
1501
  "TerminatedAt":{"shape":"NonEmptyString"}
1418
1502
  }
1419
1503
  },
1504
+ "Product":{
1505
+ "type":"structure",
1506
+ "required":["ProductArn"],
1507
+ "members":{
1508
+ "ProductArn":{"shape":"NonEmptyString"},
1509
+ "ProductName":{"shape":"NonEmptyString"},
1510
+ "CompanyName":{"shape":"NonEmptyString"},
1511
+ "Description":{"shape":"NonEmptyString"},
1512
+ "Categories":{"shape":"CategoryList"},
1513
+ "MarketplaceUrl":{"shape":"NonEmptyString"},
1514
+ "ActivationUrl":{"shape":"NonEmptyString"},
1515
+ "ProductSubscriptionResourcePolicy":{"shape":"NonEmptyString"}
1516
+ }
1517
+ },
1518
+ "ProductSubscribersList":{
1519
+ "type":"list",
1520
+ "member":{"shape":"NonEmptyString"}
1521
+ },
1420
1522
  "ProductSubscriptionArnList":{
1421
1523
  "type":"list",
1422
1524
  "member":{"shape":"NonEmptyString"}
1423
1525
  },
1526
+ "ProductsList":{
1527
+ "type":"list",
1528
+ "member":{"shape":"Product"}
1529
+ },
1424
1530
  "Recommendation":{
1425
1531
  "type":"structure",
1426
1532
  "members":{
@@ -1551,7 +1657,8 @@
1551
1657
  "PENDING",
1552
1658
  "READY",
1553
1659
  "FAILED",
1554
- "DELETING"
1660
+ "DELETING",
1661
+ "INCOMPLETE"
1555
1662
  ]
1556
1663
  },
1557
1664
  "StandardsSubscription":{
@@ -1604,7 +1711,6 @@
1604
1711
  "type":"string",
1605
1712
  "enum":[
1606
1713
  "EQUALS",
1607
- "CONTAINS",
1608
1714
  "PREFIX"
1609
1715
  ]
1610
1716
  },
@@ -1,5 +1,10 @@
1
1
  {
2
2
  "pagination": {
3
+ "DescribeProducts": {
4
+ "input_token": "NextToken",
5
+ "output_token": "NextToken",
6
+ "limit_key": "MaxResults"
7
+ },
3
8
  "GetFindings": {
4
9
  "input_token": "NextToken",
5
10
  "output_token": "NextToken",
@@ -14,6 +19,11 @@
14
19
  "input_token": "NextToken",
15
20
  "output_token": "NextToken",
16
21
  "limit_key": "MaxResults"
22
+ },
23
+ "ListProductSubscribers": {
24
+ "input_token": "NextToken",
25
+ "output_token": "NextToken",
26
+ "limit_key": "MaxResults"
17
27
  }
18
28
  }
19
29
  }
@@ -1462,6 +1462,12 @@
1462
1462
  },
1463
1463
  "isRegionalized" : true
1464
1464
  },
1465
+ "groundstation" : {
1466
+ "endpoints" : {
1467
+ "us-east-2" : { },
1468
+ "us-west-2" : { }
1469
+ }
1470
+ },
1465
1471
  "guardduty" : {
1466
1472
  "defaults" : {
1467
1473
  "protocols" : [ "https" ]
@@ -111,6 +111,7 @@ module Aws
111
111
  IoTAnalytics
112
112
  IoTDataPlane
113
113
  IoTJobsDataPlane
114
+ IoTThingsGraph
114
115
  KMS
115
116
  Kafka
116
117
  Kinesis
@@ -0,0 +1,6 @@
1
+ Aws.add_service(:IoTThingsGraph, {
2
+ api: "#{Aws::API_DIR}/iotthingsgraph/2018-09-06/api-2.json",
3
+ docs: "#{Aws::API_DIR}/iotthingsgraph/2018-09-06/docs-2.json",
4
+ examples: "#{Aws::API_DIR}/iotthingsgraph/2018-09-06/examples-1.json",
5
+ paginators: "#{Aws::API_DIR}/iotthingsgraph/2018-09-06/paginators-1.json",
6
+ })
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.283'
2
+ VERSION = '2.11.284'
3
3
  end
@@ -350,6 +350,10 @@
350
350
  "models": "iot-jobs-data/2017-09-29",
351
351
  "endpoint": "data.jobs.iot"
352
352
  },
353
+ "IoTThingsGraph": {
354
+ "models": "iotthingsgraph/2018-09-06",
355
+ "endpoint": "iotthingsgraph"
356
+ },
353
357
  "KMS": {
354
358
  "models": "kms/2014-11-01",
355
359
  "endpoint": "kms"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.11.283
4
+ version: 2.11.284
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-05-28 00:00:00.000000000 Z
11
+ date: 2019-05-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -432,6 +432,9 @@ files:
432
432
  - apis/iotanalytics/2017-11-27/api-2.json
433
433
  - apis/iotanalytics/2017-11-27/examples-1.json
434
434
  - apis/iotanalytics/2017-11-27/paginators-1.json
435
+ - apis/iotthingsgraph/2018-09-06/api-2.json
436
+ - apis/iotthingsgraph/2018-09-06/examples-1.json
437
+ - apis/iotthingsgraph/2018-09-06/paginators-1.json
435
438
  - apis/kafka/2018-11-14/api-2.json
436
439
  - apis/kafka/2018-11-14/paginators-1.json
437
440
  - apis/kinesis-video-archived-media/2017-09-30/api-2.json
@@ -878,6 +881,7 @@ files:
878
881
  - lib/aws-sdk-core/iotanalytics.rb
879
882
  - lib/aws-sdk-core/iotdataplane.rb
880
883
  - lib/aws-sdk-core/iotjobsdataplane.rb
884
+ - lib/aws-sdk-core/iotthingsgraph.rb
881
885
  - lib/aws-sdk-core/json.rb
882
886
  - lib/aws-sdk-core/json/builder.rb
883
887
  - lib/aws-sdk-core/json/error_handler.rb