aws-sdk-core 2.10.49 → 2.10.50

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: ecf48982031c8ac625ce0a9c8421af17fc80ae61
4
- data.tar.gz: b0d0ec5cad7568731d2d88941c355fc5b97c2bf9
3
+ metadata.gz: fdda9203585f0a4a1f388ae85c79f63a1aabf860
4
+ data.tar.gz: c8d3250aff08c5242e0d066c5abe58971fcd263c
5
5
  SHA512:
6
- metadata.gz: a51977126450105390d4473ad2a03b9fff214e766295f676d7304cf7a67635e0b2e41137fff9525914abdc37c889256ac30c3ad5af5a4e9b3be8d9563be77f80
7
- data.tar.gz: 0ba7995c48cc893e56fa68ce9dac79e792f228a1d6abad417f522babb77347fe4ecb29fe7bccd4496770282b26039a8eda1e5b4c688c36798aee20f06801698c
6
+ metadata.gz: 0cb1b6218572371399bd034f784516b7c86c1661fec95f41a75e8c0a5d7f6655e342e2d4068b3aa6804333211374785f47254592bbb98408790ca9cfaefa357b
7
+ data.tar.gz: 5a4241fd7957c759e478f8c1e10950040985956c5515c6f8e82909c94eec66583f96df8ce5064a508e6adf0b4233927582604b306a018c7e40cee032828ddf36
@@ -427,6 +427,7 @@
427
427
  "Name":{"shape":"Name"},
428
428
  "ImageName":{"shape":"String"},
429
429
  "InstanceType":{"shape":"String"},
430
+ "FleetType":{"shape":"FleetType"},
430
431
  "ComputeCapacity":{"shape":"ComputeCapacity"},
431
432
  "VpcConfig":{"shape":"VpcConfig"},
432
433
  "MaxUserDurationInSeconds":{"shape":"Integer"},
@@ -675,6 +676,7 @@
675
676
  "Description":{"shape":"String"},
676
677
  "ImageName":{"shape":"String"},
677
678
  "InstanceType":{"shape":"String"},
679
+ "FleetType":{"shape":"FleetType"},
678
680
  "ComputeCapacityStatus":{"shape":"ComputeCapacityStatus"},
679
681
  "MaxUserDurationInSeconds":{"shape":"Integer"},
680
682
  "DisconnectTimeoutInSeconds":{"shape":"Integer"},
@@ -720,6 +722,7 @@
720
722
  "IMAGE_NOT_FOUND",
721
723
  "INVALID_SUBNET_CONFIGURATION",
722
724
  "SECURITY_GROUPS_NOT_FOUND",
725
+ "IGW_NOT_ATTACHED",
723
726
  "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION",
724
727
  "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND",
725
728
  "DOMAIN_JOIN_ERROR_ACCESS_DENIED",
@@ -752,6 +755,13 @@
752
755
  "STOPPED"
753
756
  ]
754
757
  },
758
+ "FleetType":{
759
+ "type":"string",
760
+ "enum":[
761
+ "ALWAYS_ON",
762
+ "ON_DEMAND"
763
+ ]
764
+ },
755
765
  "Image":{
756
766
  "type":"structure",
757
767
  "required":["Name"],
@@ -798,7 +798,11 @@
798
798
  "type":"string",
799
799
  "pattern":"[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}"
800
800
  },
801
- "ClientToken":{"type":"string"},
801
+ "ClientToken":{
802
+ "type":"string",
803
+ "max":256,
804
+ "min":1
805
+ },
802
806
  "Code":{"type":"string"},
803
807
  "ContinuationToken":{"type":"string"},
804
808
  "CreateCustomActionTypeInput":{
@@ -1018,7 +1022,8 @@
1018
1022
  "GetPipelineOutput":{
1019
1023
  "type":"structure",
1020
1024
  "members":{
1021
- "pipeline":{"shape":"PipelineDeclaration"}
1025
+ "pipeline":{"shape":"PipelineDeclaration"},
1026
+ "metadata":{"shape":"PipelineMetadata"}
1022
1027
  }
1023
1028
  },
1024
1029
  "GetPipelineStateInput":{
@@ -1255,7 +1260,11 @@
1255
1260
  "max":5,
1256
1261
  "min":0
1257
1262
  },
1258
- "NextToken":{"type":"string"},
1263
+ "NextToken":{
1264
+ "type":"string",
1265
+ "max":2048,
1266
+ "min":1
1267
+ },
1259
1268
  "Nonce":{"type":"string"},
1260
1269
  "NotLatestPipelineExecutionException":{
1261
1270
  "type":"structure",
@@ -1279,6 +1288,10 @@
1279
1288
  "max":100,
1280
1289
  "min":0
1281
1290
  },
1291
+ "PipelineArn":{
1292
+ "type":"string",
1293
+ "pattern":"arn:aws(-[\\w]+)*:codepipeline:.+:[0-9]{12}:.+"
1294
+ },
1282
1295
  "PipelineContext":{
1283
1296
  "type":"structure",
1284
1297
  "members":{
@@ -1349,6 +1362,14 @@
1349
1362
  "type":"list",
1350
1363
  "member":{"shape":"PipelineSummary"}
1351
1364
  },
1365
+ "PipelineMetadata":{
1366
+ "type":"structure",
1367
+ "members":{
1368
+ "pipelineArn":{"shape":"PipelineArn"},
1369
+ "created":{"shape":"Timestamp"},
1370
+ "updated":{"shape":"Timestamp"}
1371
+ }
1372
+ },
1352
1373
  "PipelineName":{
1353
1374
  "type":"string",
1354
1375
  "max":100,
@@ -968,6 +968,23 @@
968
968
  },
969
969
  "errors" : [ ]
970
970
  },
971
+ "ResetDeployments" : {
972
+ "name" : "ResetDeployments",
973
+ "http" : {
974
+ "method" : "POST",
975
+ "requestUri" : "/greengrass/groups/{GroupId}/deployments/$reset",
976
+ "responseCode" : 200
977
+ },
978
+ "input" : {
979
+ "shape" : "ResetDeploymentsRequest"
980
+ },
981
+ "output" : {
982
+ "shape" : "ResetDeploymentsResponse"
983
+ },
984
+ "errors" : [ {
985
+ "shape" : "BadRequestException"
986
+ } ]
987
+ },
971
988
  "UpdateConnectivityInfo" : {
972
989
  "name" : "UpdateConnectivityInfo",
973
990
  "http" : {
@@ -1873,6 +1890,9 @@
1873
1890
  "DeploymentId" : {
1874
1891
  "shape" : "__string"
1875
1892
  },
1893
+ "DeploymentType" : {
1894
+ "shape" : "DeploymentType"
1895
+ },
1876
1896
  "GroupArn" : {
1877
1897
  "shape" : "__string"
1878
1898
  }
@@ -1880,7 +1900,7 @@
1880
1900
  },
1881
1901
  "DeploymentType" : {
1882
1902
  "type" : "string",
1883
- "enum" : [ "NewDeployment", "Redeployment" ]
1903
+ "enum" : [ "NewDeployment", "Redeployment", "ResetDeployment", "ForceResetDeployment" ]
1884
1904
  },
1885
1905
  "Deployments" : {
1886
1906
  "type" : "list",
@@ -2169,6 +2189,12 @@
2169
2189
  "DeploymentStatus" : {
2170
2190
  "shape" : "__string"
2171
2191
  },
2192
+ "DeploymentType" : {
2193
+ "shape" : "DeploymentType"
2194
+ },
2195
+ "ErrorDetails" : {
2196
+ "shape" : "ErrorDetails"
2197
+ },
2172
2198
  "ErrorMessage" : {
2173
2199
  "shape" : "__string"
2174
2200
  },
@@ -3228,6 +3254,36 @@
3228
3254
  "shape" : "__string"
3229
3255
  }
3230
3256
  },
3257
+ "ResetDeploymentsRequest" : {
3258
+ "type" : "structure",
3259
+ "members" : {
3260
+ "AmznClientToken" : {
3261
+ "shape" : "__string",
3262
+ "location" : "header",
3263
+ "locationName" : "X-Amzn-Client-Token"
3264
+ },
3265
+ "Force" : {
3266
+ "shape" : "__boolean"
3267
+ },
3268
+ "GroupId" : {
3269
+ "shape" : "__string",
3270
+ "location" : "uri",
3271
+ "locationName" : "GroupId"
3272
+ }
3273
+ },
3274
+ "required" : [ "GroupId" ]
3275
+ },
3276
+ "ResetDeploymentsResponse" : {
3277
+ "type" : "structure",
3278
+ "members" : {
3279
+ "DeploymentArn" : {
3280
+ "shape" : "__string"
3281
+ },
3282
+ "DeploymentId" : {
3283
+ "shape" : "__string"
3284
+ }
3285
+ }
3286
+ },
3231
3287
  "Subscription" : {
3232
3288
  "type" : "structure",
3233
3289
  "members" : {
@@ -1983,7 +1983,9 @@
1983
1983
  "DomainIAMRoleName":{"shape":"String"},
1984
1984
  "PromotionTier":{"shape":"IntegerOptional"},
1985
1985
  "Timezone":{"shape":"String"},
1986
- "EnableIAMDatabaseAuthentication":{"shape":"BooleanOptional"}
1986
+ "EnableIAMDatabaseAuthentication":{"shape":"BooleanOptional"},
1987
+ "EnablePerformanceInsights":{"shape":"BooleanOptional"},
1988
+ "PerformanceInsightsKMSKeyId":{"shape":"String"}
1987
1989
  }
1988
1990
  },
1989
1991
  "CreateDBInstanceReadReplicaMessage":{
@@ -2010,7 +2012,9 @@
2010
2012
  "MonitoringRoleArn":{"shape":"String"},
2011
2013
  "KmsKeyId":{"shape":"String"},
2012
2014
  "PreSignedUrl":{"shape":"String"},
2013
- "EnableIAMDatabaseAuthentication":{"shape":"BooleanOptional"}
2015
+ "EnableIAMDatabaseAuthentication":{"shape":"BooleanOptional"},
2016
+ "EnablePerformanceInsights":{"shape":"BooleanOptional"},
2017
+ "PerformanceInsightsKMSKeyId":{"shape":"String"}
2014
2018
  }
2015
2019
  },
2016
2020
  "CreateDBInstanceReadReplicaResult":{
@@ -2522,7 +2526,9 @@
2522
2526
  "PromotionTier":{"shape":"IntegerOptional"},
2523
2527
  "DBInstanceArn":{"shape":"String"},
2524
2528
  "Timezone":{"shape":"String"},
2525
- "IAMDatabaseAuthenticationEnabled":{"shape":"Boolean"}
2529
+ "IAMDatabaseAuthenticationEnabled":{"shape":"Boolean"},
2530
+ "PerformanceInsightsEnabled":{"shape":"BooleanOptional"},
2531
+ "PerformanceInsightsKMSKeyId":{"shape":"String"}
2526
2532
  },
2527
2533
  "wrapper":true
2528
2534
  },
@@ -3952,7 +3958,9 @@
3952
3958
  "MonitoringRoleArn":{"shape":"String"},
3953
3959
  "DomainIAMRoleName":{"shape":"String"},
3954
3960
  "PromotionTier":{"shape":"IntegerOptional"},
3955
- "EnableIAMDatabaseAuthentication":{"shape":"BooleanOptional"}
3961
+ "EnableIAMDatabaseAuthentication":{"shape":"BooleanOptional"},
3962
+ "EnablePerformanceInsights":{"shape":"BooleanOptional"},
3963
+ "PerformanceInsightsKMSKeyId":{"shape":"String"}
3956
3964
  }
3957
3965
  },
3958
3966
  "ModifyDBInstanceResult":{
@@ -3996,7 +4004,8 @@
3996
4004
  "required":["DBSnapshotIdentifier"],
3997
4005
  "members":{
3998
4006
  "DBSnapshotIdentifier":{"shape":"String"},
3999
- "EngineVersion":{"shape":"String"}
4007
+ "EngineVersion":{"shape":"String"},
4008
+ "OptionGroupName":{"shape":"String"}
4000
4009
  }
4001
4010
  },
4002
4011
  "ModifyDBSnapshotResult":{
@@ -4299,7 +4308,8 @@
4299
4308
  "StorageType":{"shape":"String"},
4300
4309
  "SupportsIops":{"shape":"Boolean"},
4301
4310
  "SupportsEnhancedMonitoring":{"shape":"Boolean"},
4302
- "SupportsIAMDatabaseAuthentication":{"shape":"Boolean"}
4311
+ "SupportsIAMDatabaseAuthentication":{"shape":"Boolean"},
4312
+ "SupportsPerformanceInsights":{"shape":"Boolean"}
4303
4313
  },
4304
4314
  "wrapper":true
4305
4315
  },
@@ -56,6 +56,10 @@
56
56
  },
57
57
  "shapes":{
58
58
  "Accept":{"type":"string"},
59
+ "AttributesString":{
60
+ "type":"string",
61
+ "sensitive":true
62
+ },
59
63
  "BadGatewayException":{
60
64
  "type":"structure",
61
65
  "members":{
@@ -215,11 +219,17 @@
215
219
  "locationName":"userId"
216
220
  },
217
221
  "sessionAttributes":{
218
- "shape":"String",
222
+ "shape":"AttributesString",
219
223
  "jsonvalue":true,
220
224
  "location":"header",
221
225
  "locationName":"x-amz-lex-session-attributes"
222
226
  },
227
+ "requestAttributes":{
228
+ "shape":"AttributesString",
229
+ "jsonvalue":true,
230
+ "location":"header",
231
+ "locationName":"x-amz-lex-request-attributes"
232
+ },
223
233
  "contentType":{
224
234
  "shape":"HttpContentType",
225
235
  "location":"header",
@@ -308,6 +318,7 @@
308
318
  "locationName":"userId"
309
319
  },
310
320
  "sessionAttributes":{"shape":"StringMap"},
321
+ "requestAttributes":{"shape":"StringMap"},
311
322
  "inputText":{"shape":"Text"}
312
323
  }
313
324
  },
@@ -343,7 +354,8 @@
343
354
  "StringMap":{
344
355
  "type":"map",
345
356
  "key":{"shape":"String"},
346
- "value":{"shape":"String"}
357
+ "value":{"shape":"String"},
358
+ "sensitive":true
347
359
  },
348
360
  "StringUrlWithLength":{
349
361
  "type":"string",
@@ -358,7 +370,8 @@
358
370
  "Text":{
359
371
  "type":"string",
360
372
  "max":1024,
361
- "min":1
373
+ "min":1,
374
+ "sensitive":true
362
375
  },
363
376
  "UnsupportedMediaTypeException":{
364
377
  "type":"structure",
@@ -806,7 +806,9 @@
806
806
  },
807
807
  "glue" : {
808
808
  "endpoints" : {
809
- "us-east-1" : { }
809
+ "us-east-1" : { },
810
+ "us-east-2" : { },
811
+ "us-west-2" : { }
810
812
  }
811
813
  },
812
814
  "greengrass" : {
@@ -1299,6 +1301,7 @@
1299
1301
  },
1300
1302
  "snowball" : {
1301
1303
  "endpoints" : {
1304
+ "ap-northeast-1" : { },
1302
1305
  "ap-south-1" : { },
1303
1306
  "ap-southeast-2" : { },
1304
1307
  "eu-central-1" : { },
@@ -1569,6 +1572,7 @@
1569
1572
  "ap-southeast-2" : { },
1570
1573
  "eu-central-1" : { },
1571
1574
  "eu-west-1" : { },
1575
+ "eu-west-2" : { },
1572
1576
  "us-east-1" : { },
1573
1577
  "us-west-2" : { }
1574
1578
  }
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.10.49'
2
+ VERSION = '2.10.50'
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.10.49
4
+ version: 2.10.50
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: 2017-09-19 00:00:00.000000000 Z
11
+ date: 2017-09-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath