aws-sdk-core 2.11.109 → 2.11.110

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: 5ddcbef2c2a87e87c2b59e5e660ed15f0563729b
4
- data.tar.gz: 6f4fb9be3c07434122d80fb4645933c067700e6e
3
+ metadata.gz: dcc85f56ff2c420183a76fdc1e142f5fad8a7f02
4
+ data.tar.gz: 9dfc8c628fe1aeefd727956aa698c43ff3c1dcd7
5
5
  SHA512:
6
- metadata.gz: 29c5c777b49a3648ce799a538dfcecd34d7547b88e6ccc1b1e0eb9923cd808bbfa12bbebbbcab4fa7685002b72f4139bb51cf6a2ef271f2c2431c4d5d753911f
7
- data.tar.gz: efa28d15e1594c4238510760014823ff70163ec3e812e7c7460c25273feed2fb7aec022bb00d189cc9495cc7e8ba2fb1c24398d630836b1465b2fc87800dfd6d
6
+ metadata.gz: cab7720426f1780249d8f7abbf3738f07c3c585f25f832d23bd80ee5df01727b6f0ab723950199f85438a63c6cb68dfb6a2528659af711315ded76f8a14c3c7b
7
+ data.tar.gz: 26a61dd6823b3f7c4093ef475e40683ab7a315ec558e60b52be4d22ba868f139cf094cf9a8b544f81f6879fb8805d2c6d198172dbeae8a121a20a6734ad0a39a
@@ -119,6 +119,23 @@
119
119
  {"shape":"ServerInternalErrorException"}
120
120
  ]
121
121
  },
122
+ "DescribeContinuousExports":{
123
+ "name":"DescribeContinuousExports",
124
+ "http":{
125
+ "method":"POST",
126
+ "requestUri":"/"
127
+ },
128
+ "input":{"shape":"DescribeContinuousExportsRequest"},
129
+ "output":{"shape":"DescribeContinuousExportsResponse"},
130
+ "errors":[
131
+ {"shape":"AuthorizationErrorException"},
132
+ {"shape":"InvalidParameterException"},
133
+ {"shape":"InvalidParameterValueException"},
134
+ {"shape":"ServerInternalErrorException"},
135
+ {"shape":"OperationNotPermittedException"},
136
+ {"shape":"ResourceNotFoundException"}
137
+ ]
138
+ },
122
139
  "DescribeExportConfigurations":{
123
140
  "name":"DescribeExportConfigurations",
124
141
  "http":{
@@ -244,6 +261,24 @@
244
261
  {"shape":"ServerInternalErrorException"}
245
262
  ]
246
263
  },
264
+ "StartContinuousExport":{
265
+ "name":"StartContinuousExport",
266
+ "http":{
267
+ "method":"POST",
268
+ "requestUri":"/"
269
+ },
270
+ "input":{"shape":"StartContinuousExportRequest"},
271
+ "output":{"shape":"StartContinuousExportResponse"},
272
+ "errors":[
273
+ {"shape":"ConflictErrorException"},
274
+ {"shape":"AuthorizationErrorException"},
275
+ {"shape":"InvalidParameterException"},
276
+ {"shape":"InvalidParameterValueException"},
277
+ {"shape":"ServerInternalErrorException"},
278
+ {"shape":"OperationNotPermittedException"},
279
+ {"shape":"ResourceInUseException"}
280
+ ]
281
+ },
247
282
  "StartDataCollectionByAgentIds":{
248
283
  "name":"StartDataCollectionByAgentIds",
249
284
  "http":{
@@ -275,6 +310,24 @@
275
310
  {"shape":"OperationNotPermittedException"}
276
311
  ]
277
312
  },
313
+ "StopContinuousExport":{
314
+ "name":"StopContinuousExport",
315
+ "http":{
316
+ "method":"POST",
317
+ "requestUri":"/"
318
+ },
319
+ "input":{"shape":"StopContinuousExportRequest"},
320
+ "output":{"shape":"StopContinuousExportResponse"},
321
+ "errors":[
322
+ {"shape":"AuthorizationErrorException"},
323
+ {"shape":"InvalidParameterException"},
324
+ {"shape":"InvalidParameterValueException"},
325
+ {"shape":"ServerInternalErrorException"},
326
+ {"shape":"OperationNotPermittedException"},
327
+ {"shape":"ResourceNotFoundException"},
328
+ {"shape":"ResourceInUseException"}
329
+ ]
330
+ },
278
331
  "StopDataCollectionByAgentIds":{
279
332
  "name":"StopDataCollectionByAgentIds",
280
333
  "http":{
@@ -438,6 +491,46 @@
438
491
  },
439
492
  "ConfigurationsDownloadUrl":{"type":"string"},
440
493
  "ConfigurationsExportId":{"type":"string"},
494
+ "ConflictErrorException":{
495
+ "type":"structure",
496
+ "members":{
497
+ "message":{"shape":"Message"}
498
+ },
499
+ "exception":true
500
+ },
501
+ "ContinuousExportDescription":{
502
+ "type":"structure",
503
+ "members":{
504
+ "exportId":{"shape":"ConfigurationsExportId"},
505
+ "status":{"shape":"ContinuousExportStatus"},
506
+ "statusDetail":{"shape":"StringMax255"},
507
+ "s3Bucket":{"shape":"S3Bucket"},
508
+ "startTime":{"shape":"TimeStamp"},
509
+ "stopTime":{"shape":"TimeStamp"},
510
+ "dataSource":{"shape":"DataSource"},
511
+ "schemaStorageConfig":{"shape":"SchemaStorageConfig"}
512
+ }
513
+ },
514
+ "ContinuousExportDescriptions":{
515
+ "type":"list",
516
+ "member":{"shape":"ContinuousExportDescription"}
517
+ },
518
+ "ContinuousExportIds":{
519
+ "type":"list",
520
+ "member":{"shape":"ConfigurationsExportId"}
521
+ },
522
+ "ContinuousExportStatus":{
523
+ "type":"string",
524
+ "enum":[
525
+ "START_IN_PROGRESS",
526
+ "START_FAILED",
527
+ "ACTIVE",
528
+ "ERROR",
529
+ "STOP_IN_PROGRESS",
530
+ "STOP_FAILED",
531
+ "INACTIVE"
532
+ ]
533
+ },
441
534
  "CreateApplicationRequest":{
442
535
  "type":"structure",
443
536
  "required":["name"],
@@ -510,6 +603,15 @@
510
603
  "unknownConnectors":{"shape":"Integer"}
511
604
  }
512
605
  },
606
+ "DataSource":{
607
+ "type":"string",
608
+ "enum":["AGENT"]
609
+ },
610
+ "DatabaseName":{
611
+ "type":"string",
612
+ "max":252,
613
+ "min":1
614
+ },
513
615
  "DeleteApplicationsRequest":{
514
616
  "type":"structure",
515
617
  "required":["configurationIds"],
@@ -573,6 +675,27 @@
573
675
  "configurations":{"shape":"DescribeConfigurationsAttributes"}
574
676
  }
575
677
  },
678
+ "DescribeContinuousExportsMaxResults":{
679
+ "type":"integer",
680
+ "box":true,
681
+ "max":100,
682
+ "min":1
683
+ },
684
+ "DescribeContinuousExportsRequest":{
685
+ "type":"structure",
686
+ "members":{
687
+ "exportIds":{"shape":"ContinuousExportIds"},
688
+ "maxResults":{"shape":"DescribeContinuousExportsMaxResults"},
689
+ "nextToken":{"shape":"NextToken"}
690
+ }
691
+ },
692
+ "DescribeContinuousExportsResponse":{
693
+ "type":"structure",
694
+ "members":{
695
+ "descriptions":{"shape":"ContinuousExportDescriptions"},
696
+ "nextToken":{"shape":"NextToken"}
697
+ }
698
+ },
576
699
  "DescribeExportConfigurationsRequest":{
577
700
  "type":"structure",
578
701
  "members":{
@@ -839,6 +962,13 @@
839
962
  "type":"list",
840
963
  "member":{"shape":"OrderByElement"}
841
964
  },
965
+ "ResourceInUseException":{
966
+ "type":"structure",
967
+ "members":{
968
+ "message":{"shape":"Message"}
969
+ },
970
+ "exception":true
971
+ },
842
972
  "ResourceNotFoundException":{
843
973
  "type":"structure",
844
974
  "members":{
@@ -846,6 +976,12 @@
846
976
  },
847
977
  "exception":true
848
978
  },
979
+ "S3Bucket":{"type":"string"},
980
+ "SchemaStorageConfig":{
981
+ "type":"map",
982
+ "key":{"shape":"DatabaseName"},
983
+ "value":{"shape":"String"}
984
+ },
849
985
  "ServerInternalErrorException":{
850
986
  "type":"structure",
851
987
  "members":{
@@ -854,6 +990,21 @@
854
990
  "exception":true,
855
991
  "fault":true
856
992
  },
993
+ "StartContinuousExportRequest":{
994
+ "type":"structure",
995
+ "members":{
996
+ }
997
+ },
998
+ "StartContinuousExportResponse":{
999
+ "type":"structure",
1000
+ "members":{
1001
+ "exportId":{"shape":"ConfigurationsExportId"},
1002
+ "s3Bucket":{"shape":"S3Bucket"},
1003
+ "startTime":{"shape":"TimeStamp"},
1004
+ "dataSource":{"shape":"DataSource"},
1005
+ "schemaStorageConfig":{"shape":"SchemaStorageConfig"}
1006
+ }
1007
+ },
857
1008
  "StartDataCollectionByAgentIdsRequest":{
858
1009
  "type":"structure",
859
1010
  "required":["agentIds"],
@@ -882,6 +1033,20 @@
882
1033
  "exportId":{"shape":"ConfigurationsExportId"}
883
1034
  }
884
1035
  },
1036
+ "StopContinuousExportRequest":{
1037
+ "type":"structure",
1038
+ "required":["exportId"],
1039
+ "members":{
1040
+ "exportId":{"shape":"ConfigurationsExportId"}
1041
+ }
1042
+ },
1043
+ "StopContinuousExportResponse":{
1044
+ "type":"structure",
1045
+ "members":{
1046
+ "startTime":{"shape":"TimeStamp"},
1047
+ "stopTime":{"shape":"TimeStamp"}
1048
+ }
1049
+ },
885
1050
  "StopDataCollectionByAgentIdsRequest":{
886
1051
  "type":"structure",
887
1052
  "required":["agentIds"],
@@ -896,6 +1061,11 @@
896
1061
  }
897
1062
  },
898
1063
  "String":{"type":"string"},
1064
+ "StringMax255":{
1065
+ "type":"string",
1066
+ "max":255,
1067
+ "min":1
1068
+ },
899
1069
  "Tag":{
900
1070
  "type":"structure",
901
1071
  "required":[
@@ -1,4 +1,9 @@
1
1
  {
2
2
  "pagination": {
3
+ "DescribeContinuousExports": {
4
+ "input_token": "nextToken",
5
+ "output_token": "nextToken",
6
+ "limit_key": "maxResults"
7
+ }
3
8
  }
4
9
  }
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 1,
3
+ "defaultRegion": "us-west-2",
4
+ "testCases": [
5
+ {
6
+ "operationName": "DescribeAgents",
7
+ "input": {},
8
+ "errorExpectedFromService": false
9
+ }
10
+ ]
11
+ }
@@ -7766,7 +7766,10 @@
7766
7766
  },
7767
7767
  "DescribeVolumeAttributeRequest":{
7768
7768
  "type":"structure",
7769
- "required":["VolumeId"],
7769
+ "required":[
7770
+ "Attribute",
7771
+ "VolumeId"
7772
+ ],
7770
7773
  "members":{
7771
7774
  "Attribute":{"shape":"VolumeAttributeName"},
7772
7775
  "VolumeId":{"shape":"String"},
@@ -2092,6 +2092,10 @@
2092
2092
  "SegmentLength": {
2093
2093
  "shape": "__integerMin1Max2147483647",
2094
2094
  "locationName": "segmentLength"
2095
+ },
2096
+ "WriteSegmentTimelineInRepresentation": {
2097
+ "shape": "DashIsoWriteSegmentTimelineInRepresentation",
2098
+ "locationName": "writeSegmentTimelineInRepresentation"
2095
2099
  }
2096
2100
  },
2097
2101
  "required": [
@@ -2113,6 +2117,13 @@
2113
2117
  "SEGMENTED_FILES"
2114
2118
  ]
2115
2119
  },
2120
+ "DashIsoWriteSegmentTimelineInRepresentation": {
2121
+ "type": "string",
2122
+ "enum": [
2123
+ "ENABLED",
2124
+ "DISABLED"
2125
+ ]
2126
+ },
2116
2127
  "DeinterlaceAlgorithm": {
2117
2128
  "type": "string",
2118
2129
  "enum": [
@@ -1076,6 +1076,29 @@
1076
1076
  {"shape":"ClusterParameterGroupNotFoundFault"}
1077
1077
  ]
1078
1078
  },
1079
+ "ResizeCluster":{
1080
+ "name":"ResizeCluster",
1081
+ "http":{
1082
+ "method":"POST",
1083
+ "requestUri":"/"
1084
+ },
1085
+ "input":{"shape":"ResizeClusterMessage"},
1086
+ "output":{
1087
+ "shape":"ResizeClusterResult",
1088
+ "resultWrapper":"ResizeClusterResult"
1089
+ },
1090
+ "errors":[
1091
+ {"shape":"InvalidClusterStateFault"},
1092
+ {"shape":"ClusterNotFoundFault"},
1093
+ {"shape":"NumberOfNodesQuotaExceededFault"},
1094
+ {"shape":"NumberOfNodesPerClusterLimitExceededFault"},
1095
+ {"shape":"InsufficientClusterCapacityFault"},
1096
+ {"shape":"UnsupportedOptionFault"},
1097
+ {"shape":"UnsupportedOperationFault"},
1098
+ {"shape":"UnauthorizedOperation"},
1099
+ {"shape":"LimitExceededFault"}
1100
+ ]
1101
+ },
1079
1102
  "RestoreFromClusterSnapshot":{
1080
1103
  "name":"RestoreFromClusterSnapshot",
1081
1104
  "http":{
@@ -1360,7 +1383,8 @@
1360
1383
  "EnhancedVpcRouting":{"shape":"Boolean"},
1361
1384
  "IamRoles":{"shape":"ClusterIamRoleList"},
1362
1385
  "PendingActions":{"shape":"PendingActionsList"},
1363
- "MaintenanceTrackName":{"shape":"String"}
1386
+ "MaintenanceTrackName":{"shape":"String"},
1387
+ "ElasticResizeNumberOfNodeOptions":{"shape":"String"}
1364
1388
  },
1365
1389
  "wrapper":true
1366
1390
  },
@@ -3462,6 +3486,26 @@
3462
3486
  "Parameters":{"shape":"ParametersList"}
3463
3487
  }
3464
3488
  },
3489
+ "ResizeClusterMessage":{
3490
+ "type":"structure",
3491
+ "required":[
3492
+ "ClusterIdentifier",
3493
+ "NumberOfNodes"
3494
+ ],
3495
+ "members":{
3496
+ "ClusterIdentifier":{"shape":"String"},
3497
+ "ClusterType":{"shape":"String"},
3498
+ "NodeType":{"shape":"String"},
3499
+ "NumberOfNodes":{"shape":"Integer"},
3500
+ "Classic":{"shape":"BooleanOptional"}
3501
+ }
3502
+ },
3503
+ "ResizeClusterResult":{
3504
+ "type":"structure",
3505
+ "members":{
3506
+ "Cluster":{"shape":"Cluster"}
3507
+ }
3508
+ },
3465
3509
  "ResizeNotFoundFault":{
3466
3510
  "type":"structure",
3467
3511
  "members":{
@@ -3487,7 +3531,9 @@
3487
3531
  "TotalResizeDataInMegaBytes":{"shape":"LongOptional"},
3488
3532
  "ProgressInMegaBytes":{"shape":"LongOptional"},
3489
3533
  "ElapsedTimeInSeconds":{"shape":"LongOptional"},
3490
- "EstimatedTimeToCompletionInSeconds":{"shape":"LongOptional"}
3534
+ "EstimatedTimeToCompletionInSeconds":{"shape":"LongOptional"},
3535
+ "ResizeType":{"shape":"String"},
3536
+ "Message":{"shape":"String"}
3491
3537
  }
3492
3538
  },
3493
3539
  "ResourceNotFoundFault":{
@@ -791,8 +791,10 @@
791
791
  "errors":[
792
792
  {"shape":"InternalServerError"},
793
793
  {"shape":"InvalidFilter"},
794
+ {"shape":"InvalidInventoryGroupException"},
794
795
  {"shape":"InvalidNextToken"},
795
796
  {"shape":"InvalidTypeNameException"},
797
+ {"shape":"InvalidAggregatorException"},
796
798
  {"shape":"InvalidResultAttributeException"}
797
799
  ]
798
800
  },
@@ -2196,17 +2198,20 @@
2196
2198
  "enum":[
2197
2199
  "InvokedAfter",
2198
2200
  "InvokedBefore",
2199
- "Status"
2201
+ "Status",
2202
+ "ExecutionStage",
2203
+ "DocumentName"
2200
2204
  ]
2201
2205
  },
2202
2206
  "CommandFilterList":{
2203
2207
  "type":"list",
2204
2208
  "member":{"shape":"CommandFilter"},
2205
- "max":3,
2209
+ "max":5,
2206
2210
  "min":1
2207
2211
  },
2208
2212
  "CommandFilterValue":{
2209
2213
  "type":"string",
2214
+ "max":128,
2210
2215
  "min":1
2211
2216
  },
2212
2217
  "CommandId":{
@@ -4450,6 +4455,13 @@
4450
4455
  },
4451
4456
  "exception":true
4452
4457
  },
4458
+ "InvalidAggregatorException":{
4459
+ "type":"structure",
4460
+ "members":{
4461
+ "Message":{"shape":"String"}
4462
+ },
4463
+ "exception":true
4464
+ },
4453
4465
  "InvalidAllowedPatternException":{
4454
4466
  "type":"structure",
4455
4467
  "members":{
@@ -4588,6 +4600,13 @@
4588
4600
  },
4589
4601
  "exception":true
4590
4602
  },
4603
+ "InvalidInventoryGroupException":{
4604
+ "type":"structure",
4605
+ "members":{
4606
+ "Message":{"shape":"String"}
4607
+ },
4608
+ "exception":true
4609
+ },
4591
4610
  "InvalidInventoryItemContextException":{
4592
4611
  "type":"structure",
4593
4612
  "members":{
@@ -4728,7 +4747,8 @@
4728
4747
  "type":"structure",
4729
4748
  "members":{
4730
4749
  "Expression":{"shape":"InventoryAggregatorExpression"},
4731
- "Aggregators":{"shape":"InventoryAggregatorList"}
4750
+ "Aggregators":{"shape":"InventoryAggregatorList"},
4751
+ "Groups":{"shape":"InventoryGroupList"}
4732
4752
  }
4733
4753
  },
4734
4754
  "InventoryAggregatorExpression":{
@@ -4823,7 +4843,29 @@
4823
4843
  "InventoryFilterValueList":{
4824
4844
  "type":"list",
4825
4845
  "member":{"shape":"InventoryFilterValue"},
4826
- "max":20,
4846
+ "max":40,
4847
+ "min":1
4848
+ },
4849
+ "InventoryGroup":{
4850
+ "type":"structure",
4851
+ "required":[
4852
+ "Name",
4853
+ "Filters"
4854
+ ],
4855
+ "members":{
4856
+ "Name":{"shape":"InventoryGroupName"},
4857
+ "Filters":{"shape":"InventoryFilterList"}
4858
+ }
4859
+ },
4860
+ "InventoryGroupList":{
4861
+ "type":"list",
4862
+ "member":{"shape":"InventoryGroup"},
4863
+ "max":10,
4864
+ "min":1
4865
+ },
4866
+ "InventoryGroupName":{
4867
+ "type":"string",
4868
+ "max":200,
4827
4869
  "min":1
4828
4870
  },
4829
4871
  "InventoryItem":{
@@ -4933,7 +4975,8 @@
4933
4975
  "NotEqual",
4934
4976
  "BeginWith",
4935
4977
  "LessThan",
4936
- "GreaterThan"
4978
+ "GreaterThan",
4979
+ "Exists"
4937
4980
  ]
4938
4981
  },
4939
4982
  "InventoryResultEntity":{
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.109'
2
+ VERSION = '2.11.110'
3
3
  end
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.109
4
+ version: 2.11.110
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: 2018-08-15 00:00:00.000000000 Z
11
+ date: 2018-08-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -215,6 +215,7 @@ files:
215
215
  - apis/discovery/2015-11-01/api-2.json
216
216
  - apis/discovery/2015-11-01/examples-1.json
217
217
  - apis/discovery/2015-11-01/paginators-1.json
218
+ - apis/discovery/2015-11-01/smoke.json
218
219
  - apis/dlm/2018-01-12/api-2.json
219
220
  - apis/dlm/2018-01-12/examples-1.json
220
221
  - apis/dlm/2018-01-12/paginators-1.json