aws-sdk-core 2.5.0 → 2.5.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e20124372a0e4423d29f974c5ee4a797d46fd0ce
4
- data.tar.gz: a758200b79055168cdabb8957556655d66342a84
3
+ metadata.gz: 03df9912d0158a5f11915dff2c329bc48c1f5517
4
+ data.tar.gz: 9d129ef61bbeea42081179543b7b92c4626c25a2
5
5
  SHA512:
6
- metadata.gz: 83191a1c273f4417890e6cf83c7984fd1f88ffa8d699118ca98ffa5e512b2de5d3ab6c6916e835b0931e672a692fada430c96eb5de78152cb94860ebf0203435
7
- data.tar.gz: ce5c265cf12aff6c90575c46ea39137ef5ae51e24cdb777098a792e40d3f1f04215c48b65cef761e1c5f63335d283a4fbcc3968da892f0f34190c72b0e5ae976
6
+ metadata.gz: a323291f1d7cfc94d757181de676206f6cc63ab3650015932335d35502394c884e3ef4a53aa5e3cff2faedb54dee8509c7f98474a2b6f8956b3da59f1c5c37eb
7
+ data.tar.gz: ca0ee993b514b72511bcb22b38e5fe1b742d912d58a64db197b395958a44c3ccebfdd233ddc69f2a61873e6eff546d0c4f628d571bb17592d12ceca0f60d027a
@@ -0,0 +1,16 @@
1
+ {
2
+ "pagination": {
3
+ "DescribeRepositories": {
4
+ "result_key": "repositories",
5
+ "input_token": "nextToken",
6
+ "output_token": "nextToken",
7
+ "limit_key": "maxResults"
8
+ },
9
+ "ListImages": {
10
+ "result_key": "imageIds",
11
+ "input_token": "nextToken",
12
+ "output_token": "nextToken",
13
+ "limit_key": "maxResults"
14
+ }
15
+ }
16
+ }
@@ -902,6 +902,38 @@
902
902
  }
903
903
  ]
904
904
  },
905
+ "SearchGameSessions":{
906
+ "name":"SearchGameSessions",
907
+ "http":{
908
+ "method":"POST",
909
+ "requestUri":"/"
910
+ },
911
+ "input":{"shape":"SearchGameSessionsInput"},
912
+ "output":{"shape":"SearchGameSessionsOutput"},
913
+ "errors":[
914
+ {
915
+ "shape":"InternalServiceException",
916
+ "exception":true,
917
+ "fault":true
918
+ },
919
+ {
920
+ "shape":"NotFoundException",
921
+ "exception":true
922
+ },
923
+ {
924
+ "shape":"InvalidRequestException",
925
+ "exception":true
926
+ },
927
+ {
928
+ "shape":"UnauthorizedException",
929
+ "exception":true
930
+ },
931
+ {
932
+ "shape":"TerminalRoutingStrategyException",
933
+ "exception":true
934
+ }
935
+ ]
936
+ },
905
937
  "UpdateAlias":{
906
938
  "name":"UpdateAlias",
907
939
  "http":{
@@ -2150,6 +2182,24 @@
2150
2182
  "ERROR"
2151
2183
  ]
2152
2184
  },
2185
+ "SearchGameSessionsInput":{
2186
+ "type":"structure",
2187
+ "members":{
2188
+ "FleetId":{"shape":"FleetId"},
2189
+ "AliasId":{"shape":"AliasId"},
2190
+ "FilterExpression":{"shape":"NonZeroAndMaxString"},
2191
+ "SortExpression":{"shape":"NonZeroAndMaxString"},
2192
+ "Limit":{"shape":"PositiveInteger"},
2193
+ "NextToken":{"shape":"NonZeroAndMaxString"}
2194
+ }
2195
+ },
2196
+ "SearchGameSessionsOutput":{
2197
+ "type":"structure",
2198
+ "members":{
2199
+ "GameSessions":{"shape":"GameSessionList"},
2200
+ "NextToken":{"shape":"NonZeroAndMaxString"}
2201
+ }
2202
+ },
2153
2203
  "ServerProcess":{
2154
2204
  "type":"structure",
2155
2205
  "required":[
@@ -226,7 +226,8 @@
226
226
  {"shape":"EC2ThrottledException"},
227
227
  {"shape":"EC2AccessDeniedException"},
228
228
  {"shape":"InvalidSubnetIDException"},
229
- {"shape":"InvalidSecurityGroupIDException"}
229
+ {"shape":"InvalidSecurityGroupIDException"},
230
+ {"shape":"InvalidZipFileException"}
230
231
  ]
231
232
  },
232
233
  "InvokeAsync":{
@@ -844,6 +845,15 @@
844
845
  "error":{"httpStatusCode":502},
845
846
  "exception":true
846
847
  },
848
+ "InvalidZipFileException":{
849
+ "type":"structure",
850
+ "members":{
851
+ "Type":{"shape":"String"},
852
+ "Message":{"shape":"String"}
853
+ },
854
+ "error":{"httpStatusCode":502},
855
+ "exception":true
856
+ },
847
857
  "InvocationRequest":{
848
858
  "type":"structure",
849
859
  "required":["FunctionName"],
@@ -1219,6 +1229,14 @@
1219
1229
  "member":{"shape":"SubnetId"},
1220
1230
  "max":16
1221
1231
  },
1232
+ "ThrottleReason":{
1233
+ "type":"string",
1234
+ "enum":[
1235
+ "ConcurrentInvocationLimitExceeded",
1236
+ "FunctionInvocationRateLimitExceeded",
1237
+ "CallerRateLimitExceeded"
1238
+ ]
1239
+ },
1222
1240
  "Timeout":{
1223
1241
  "type":"integer",
1224
1242
  "min":1
@@ -1233,7 +1251,8 @@
1233
1251
  "locationName":"Retry-After"
1234
1252
  },
1235
1253
  "Type":{"shape":"String"},
1236
- "message":{"shape":"String"}
1254
+ "message":{"shape":"String"},
1255
+ "Reason":{"shape":"ThrottleReason"}
1237
1256
  },
1238
1257
  "error":{"httpStatusCode":429},
1239
1258
  "exception":true
@@ -1268,6 +1268,32 @@
1268
1268
  {"shape":"DBParameterGroupNotFoundFault"}
1269
1269
  ]
1270
1270
  },
1271
+ "RestoreDBClusterFromS3":{
1272
+ "name":"RestoreDBClusterFromS3",
1273
+ "http":{
1274
+ "method":"POST",
1275
+ "requestUri":"/"
1276
+ },
1277
+ "input":{"shape":"RestoreDBClusterFromS3Message"},
1278
+ "output":{
1279
+ "shape":"RestoreDBClusterFromS3Result",
1280
+ "resultWrapper":"RestoreDBClusterFromS3Result"
1281
+ },
1282
+ "errors":[
1283
+ {"shape":"DBClusterAlreadyExistsFault"},
1284
+ {"shape":"DBClusterQuotaExceededFault"},
1285
+ {"shape":"StorageQuotaExceededFault"},
1286
+ {"shape":"DBSubnetGroupNotFoundFault"},
1287
+ {"shape":"InvalidVPCNetworkStateFault"},
1288
+ {"shape":"InvalidDBClusterStateFault"},
1289
+ {"shape":"InvalidDBSubnetGroupStateFault"},
1290
+ {"shape":"InvalidSubnet"},
1291
+ {"shape":"InvalidS3BucketFault"},
1292
+ {"shape":"DBClusterParameterGroupNotFoundFault"},
1293
+ {"shape":"KMSKeyNotAccessibleFault"},
1294
+ {"shape":"DBClusterNotFoundFault"}
1295
+ ]
1296
+ },
1271
1297
  "RestoreDBClusterFromSnapshot":{
1272
1298
  "name":"RestoreDBClusterFromSnapshot",
1273
1299
  "http":{
@@ -3565,6 +3591,17 @@
3565
3591
  },
3566
3592
  "exception":true
3567
3593
  },
3594
+ "InvalidS3BucketFault":{
3595
+ "type":"structure",
3596
+ "members":{
3597
+ },
3598
+ "error":{
3599
+ "code":"InvalidS3BucketFault",
3600
+ "httpStatusCode":400,
3601
+ "senderFault":true
3602
+ },
3603
+ "exception":true
3604
+ },
3568
3605
  "InvalidSubnet":{
3569
3606
  "type":"structure",
3570
3607
  "members":{
@@ -3671,6 +3708,7 @@
3671
3708
  "DBInstanceIdentifier":{"shape":"String"},
3672
3709
  "AllocatedStorage":{"shape":"IntegerOptional"},
3673
3710
  "DBInstanceClass":{"shape":"String"},
3711
+ "DBSubnetGroupName":{"shape":"String"},
3674
3712
  "DBSecurityGroups":{"shape":"DBSecurityGroupNameList"},
3675
3713
  "VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"},
3676
3714
  "ApplyImmediately":{"shape":"Boolean"},
@@ -4104,7 +4142,8 @@
4104
4142
  "Iops":{"shape":"IntegerOptional"},
4105
4143
  "DBInstanceIdentifier":{"shape":"String"},
4106
4144
  "StorageType":{"shape":"String"},
4107
- "CACertificateIdentifier":{"shape":"String"}
4145
+ "CACertificateIdentifier":{"shape":"String"},
4146
+ "DBSubnetGroupName":{"shape":"String"}
4108
4147
  }
4109
4148
  },
4110
4149
  "PointInTimeRestoreNotEnabledFault":{
@@ -4389,6 +4428,51 @@
4389
4428
  },
4390
4429
  "wrapper":true
4391
4430
  },
4431
+ "RestoreDBClusterFromS3Message":{
4432
+ "type":"structure",
4433
+ "required":[
4434
+ "DBClusterIdentifier",
4435
+ "Engine",
4436
+ "MasterUsername",
4437
+ "MasterUserPassword",
4438
+ "SourceEngine",
4439
+ "SourceEngineVersion",
4440
+ "S3BucketName",
4441
+ "S3IngestionRoleArn"
4442
+ ],
4443
+ "members":{
4444
+ "AvailabilityZones":{"shape":"AvailabilityZones"},
4445
+ "BackupRetentionPeriod":{"shape":"IntegerOptional"},
4446
+ "CharacterSetName":{"shape":"String"},
4447
+ "DatabaseName":{"shape":"String"},
4448
+ "DBClusterIdentifier":{"shape":"String"},
4449
+ "DBClusterParameterGroupName":{"shape":"String"},
4450
+ "VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"},
4451
+ "DBSubnetGroupName":{"shape":"String"},
4452
+ "Engine":{"shape":"String"},
4453
+ "EngineVersion":{"shape":"String"},
4454
+ "Port":{"shape":"IntegerOptional"},
4455
+ "MasterUsername":{"shape":"String"},
4456
+ "MasterUserPassword":{"shape":"String"},
4457
+ "OptionGroupName":{"shape":"String"},
4458
+ "PreferredBackupWindow":{"shape":"String"},
4459
+ "PreferredMaintenanceWindow":{"shape":"String"},
4460
+ "Tags":{"shape":"TagList"},
4461
+ "StorageEncrypted":{"shape":"BooleanOptional"},
4462
+ "KmsKeyId":{"shape":"String"},
4463
+ "SourceEngine":{"shape":"String"},
4464
+ "SourceEngineVersion":{"shape":"String"},
4465
+ "S3BucketName":{"shape":"String"},
4466
+ "S3Prefix":{"shape":"String"},
4467
+ "S3IngestionRoleArn":{"shape":"String"}
4468
+ }
4469
+ },
4470
+ "RestoreDBClusterFromS3Result":{
4471
+ "type":"structure",
4472
+ "members":{
4473
+ "DBCluster":{"shape":"DBCluster"}
4474
+ }
4475
+ },
4392
4476
  "RestoreDBClusterFromSnapshotMessage":{
4393
4477
  "type":"structure",
4394
4478
  "required":[
@@ -5,6 +5,8 @@ module Aws
5
5
  module Docs
6
6
  class Builder
7
7
 
8
+ DOC_SRC = File.expand_path('../../../../../../doc-src/', __FILE__)
9
+
8
10
  def self.document(svc_module)
9
11
  new(svc_module).document
10
12
  end
@@ -37,8 +39,8 @@ module Aws
37
39
  end
38
40
 
39
41
  def service_docstring
40
- path = "doc-src/services/#{@svc_name}/service.md"
41
- path = 'doc-src/services/default/service.md' unless File.exist?(path)
42
+ path = "#{DOC_SRC}/services/#{@svc_name}/service.md"
43
+ path = "#{DOC_SRC}/services/default/service.md" unless File.exist?(path)
42
44
  template = read(path)
43
45
  svc_name = @svc_name
44
46
  api = @api
@@ -61,8 +63,8 @@ module Aws
61
63
  end
62
64
 
63
65
  def errors_docstring
64
- path = "doc-src/services/#{@svc_name}/errors.md"
65
- path = 'doc-src/services/default/errors.md' unless File.exist?(path)
66
+ path = "#{DOC_SRC}/services/#{@svc_name}/errors.md"
67
+ path = "#{DOC_SRC}/services/default/errors.md" unless File.exist?(path)
66
68
  template = read(path)
67
69
  svc_name = @svc_name
68
70
  api = @api
@@ -89,8 +91,8 @@ module Aws
89
91
  end
90
92
 
91
93
  def client_docstring
92
- path = "doc-src/services/#{@svc_name}/client.md"
93
- path = 'doc-src/services/default/client.md' unless File.exist?(path)
94
+ path = "#{DOC_SRC}/services/#{@svc_name}/client.md"
95
+ path = "#{DOC_SRC}/services/default/client.md" unless File.exist?(path)
94
96
  render(path)
95
97
  end
96
98
 
@@ -98,7 +100,7 @@ module Aws
98
100
  svc_name = @svc_name
99
101
  api = @api
100
102
  full_name = @full_name
101
- ERB.new(File.read(path)).result(binding)
103
+ ERB.new(read(path)).result(binding)
102
104
  end
103
105
 
104
106
  def document_client_constructor(namespace)
@@ -45,7 +45,7 @@ module Aws
45
45
  req = ref.required ? 'required,' : ''
46
46
  type = input_type(ref)
47
47
  docstring = "@option #{@optname} [#{req}#{type}] :#{name}\n"
48
- docstring += ref.documentation.lines.map { |line| " #{line}" }.join
48
+ docstring += ref.documentation.to_s.lines.map { |line| " #{line}" }.join
49
49
  tag(docstring)
50
50
  end
51
51
  end
@@ -2,4 +2,5 @@ Aws.add_service(:ECR, {
2
2
  api: "#{Aws::API_DIR}/ecr/2015-09-21/api-2.json",
3
3
  docs: "#{Aws::API_DIR}/ecr/2015-09-21/docs-2.json",
4
4
  examples: "#{Aws::API_DIR}/ecr/2015-09-21/examples-1.json",
5
+ paginators: "#{Aws::API_DIR}/ecr/2015-09-21/paginators-1.json",
5
6
  })
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.5.0'
2
+ VERSION = '2.5.1'
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.5.0
4
+ version: 2.5.1
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: 2016-08-02 00:00:00.000000000 Z
11
+ date: 2016-08-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -113,6 +113,7 @@ files:
113
113
  - apis/ec2/2016-04-01/waiters-2.json
114
114
  - apis/ecr/2015-09-21/api-2.json
115
115
  - apis/ecr/2015-09-21/examples-1.json
116
+ - apis/ecr/2015-09-21/paginators-1.json
116
117
  - apis/ecs/2014-11-13/api-2.json
117
118
  - apis/ecs/2014-11-13/examples-1.json
118
119
  - apis/ecs/2014-11-13/paginators-1.json