aws-sdk-core 2.11.532 → 2.11.537
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/apis/amplify/2017-07-25/api-2.json +37 -6
- data/apis/backup/2018-11-15/api-2.json +43 -3
- data/apis/cloudformation/2010-05-15/api-2.json +41 -0
- data/apis/codecommit/2015-04-13/api-2.json +139 -5
- data/apis/codecommit/2015-04-13/paginators-1.json +5 -0
- data/apis/cognito-idp/2016-04-18/api-2.json +4 -2
- data/apis/ec2/2016-11-15/api-2.json +47 -7
- data/apis/elasticmapreduce/2009-03-31/api-2.json +21 -4
- data/apis/fsx/2018-03-01/api-2.json +39 -12
- data/apis/glue/2017-03-31/api-2.json +418 -0
- data/apis/honeycode/2020-03-01/api-2.json +321 -0
- data/apis/honeycode/2020-03-01/examples-1.json +5 -0
- data/apis/honeycode/2020-03-01/paginators-1.json +4 -0
- data/apis/mediatailor/2018-04-23/api-2.json +45 -25
- data/apis/organizations/2016-11-28/api-2.json +40 -11
- data/apis/quicksight/2018-04-01/api-2.json +17 -2
- data/apis/rds/2014-10-31/paginators-1.json +48 -0
- data/apis/rekognition/2016-06-27/api-2.json +186 -0
- data/apis/rekognition/2016-06-27/paginators-1.json +5 -0
- data/apis/sagemaker/2017-07-24/api-2.json +19 -0
- data/apis/sqs/2012-11-05/api-2.json +15 -4
- data/apis/sqs/2012-11-05/paginators-1.json +9 -0
- data/endpoints.json +71 -2
- data/lib/aws-sdk-core.rb +1 -0
- data/lib/aws-sdk-core/honeycode.rb +6 -0
- data/lib/aws-sdk-core/version.rb +1 -1
- data/service-models.json +4 -0
- metadata +6 -2
@@ -42,6 +42,11 @@
|
|
42
42
|
"limit_key": "MaxResults",
|
43
43
|
"output_token": "NextToken"
|
44
44
|
},
|
45
|
+
"GetSegmentDetection": {
|
46
|
+
"input_token": "NextToken",
|
47
|
+
"limit_key": "MaxResults",
|
48
|
+
"output_token": "NextToken"
|
49
|
+
},
|
45
50
|
"GetTextDetection": {
|
46
51
|
"input_token": "NextToken",
|
47
52
|
"limit_key": "MaxResults",
|
@@ -2994,6 +2994,7 @@
|
|
2994
2994
|
"TransformJobName":{"shape":"TransformJobName"},
|
2995
2995
|
"ModelName":{"shape":"ModelName"},
|
2996
2996
|
"MaxConcurrentTransforms":{"shape":"MaxConcurrentTransforms"},
|
2997
|
+
"ModelClientConfig":{"shape":"ModelClientConfig"},
|
2997
2998
|
"MaxPayloadInMB":{"shape":"MaxPayloadInMB"},
|
2998
2999
|
"BatchStrategy":{"shape":"BatchStrategy"},
|
2999
3000
|
"Environment":{"shape":"TransformEnvironmentMap"},
|
@@ -4071,6 +4072,7 @@
|
|
4071
4072
|
"FailureReason":{"shape":"FailureReason"},
|
4072
4073
|
"ModelName":{"shape":"ModelName"},
|
4073
4074
|
"MaxConcurrentTransforms":{"shape":"MaxConcurrentTransforms"},
|
4075
|
+
"ModelClientConfig":{"shape":"ModelClientConfig"},
|
4074
4076
|
"MaxPayloadInMB":{"shape":"MaxPayloadInMB"},
|
4075
4077
|
"BatchStrategy":{"shape":"BatchStrategy"},
|
4076
4078
|
"Environment":{"shape":"TransformEnvironmentMap"},
|
@@ -5231,6 +5233,16 @@
|
|
5231
5233
|
"max":20,
|
5232
5234
|
"min":0
|
5233
5235
|
},
|
5236
|
+
"InvocationsMaxRetries":{
|
5237
|
+
"type":"integer",
|
5238
|
+
"max":3,
|
5239
|
+
"min":0
|
5240
|
+
},
|
5241
|
+
"InvocationsTimeoutInSeconds":{
|
5242
|
+
"type":"integer",
|
5243
|
+
"max":3600,
|
5244
|
+
"min":1
|
5245
|
+
},
|
5234
5246
|
"JobReferenceCode":{
|
5235
5247
|
"type":"string",
|
5236
5248
|
"min":1,
|
@@ -6282,6 +6294,13 @@
|
|
6282
6294
|
"S3ModelArtifacts":{"shape":"S3Uri"}
|
6283
6295
|
}
|
6284
6296
|
},
|
6297
|
+
"ModelClientConfig":{
|
6298
|
+
"type":"structure",
|
6299
|
+
"members":{
|
6300
|
+
"InvocationsTimeoutInSeconds":{"shape":"InvocationsTimeoutInSeconds"},
|
6301
|
+
"InvocationsMaxRetries":{"shape":"InvocationsMaxRetries"}
|
6302
|
+
}
|
6303
|
+
},
|
6285
6304
|
"ModelName":{
|
6286
6305
|
"type":"string",
|
6287
6306
|
"max":63,
|
@@ -368,6 +368,10 @@
|
|
368
368
|
}
|
369
369
|
},
|
370
370
|
"Boolean":{"type":"boolean"},
|
371
|
+
"BoxedInteger":{
|
372
|
+
"type":"integer",
|
373
|
+
"box":true
|
374
|
+
},
|
371
375
|
"ChangeMessageVisibilityBatchRequest":{
|
372
376
|
"type":"structure",
|
373
377
|
"required":[
|
@@ -609,14 +613,17 @@
|
|
609
613
|
"type":"structure",
|
610
614
|
"required":["QueueUrl"],
|
611
615
|
"members":{
|
612
|
-
"QueueUrl":{"shape":"String"}
|
616
|
+
"QueueUrl":{"shape":"String"},
|
617
|
+
"NextToken":{"shape":"Token"},
|
618
|
+
"MaxResults":{"shape":"BoxedInteger"}
|
613
619
|
}
|
614
620
|
},
|
615
621
|
"ListDeadLetterSourceQueuesResult":{
|
616
622
|
"type":"structure",
|
617
623
|
"required":["queueUrls"],
|
618
624
|
"members":{
|
619
|
-
"queueUrls":{"shape":"QueueUrlList"}
|
625
|
+
"queueUrls":{"shape":"QueueUrlList"},
|
626
|
+
"NextToken":{"shape":"Token"}
|
620
627
|
}
|
621
628
|
},
|
622
629
|
"ListQueueTagsRequest":{
|
@@ -638,13 +645,16 @@
|
|
638
645
|
"ListQueuesRequest":{
|
639
646
|
"type":"structure",
|
640
647
|
"members":{
|
641
|
-
"QueueNamePrefix":{"shape":"String"}
|
648
|
+
"QueueNamePrefix":{"shape":"String"},
|
649
|
+
"NextToken":{"shape":"Token"},
|
650
|
+
"MaxResults":{"shape":"BoxedInteger"}
|
642
651
|
}
|
643
652
|
},
|
644
653
|
"ListQueuesResult":{
|
645
654
|
"type":"structure",
|
646
655
|
"members":{
|
647
|
-
"QueueUrls":{"shape":"QueueUrlList"}
|
656
|
+
"QueueUrls":{"shape":"QueueUrlList"},
|
657
|
+
"NextToken":{"shape":"Token"}
|
648
658
|
}
|
649
659
|
},
|
650
660
|
"Message":{
|
@@ -1091,6 +1101,7 @@
|
|
1091
1101
|
}
|
1092
1102
|
},
|
1093
1103
|
"TagValue":{"type":"string"},
|
1104
|
+
"Token":{"type":"string"},
|
1094
1105
|
"TooManyEntriesInBatchRequest":{
|
1095
1106
|
"type":"structure",
|
1096
1107
|
"members":{
|
@@ -1,6 +1,15 @@
|
|
1
1
|
{
|
2
2
|
"pagination": {
|
3
|
+
"ListDeadLetterSourceQueues": {
|
4
|
+
"input_token": "NextToken",
|
5
|
+
"limit_key": "MaxResults",
|
6
|
+
"output_token": "NextToken",
|
7
|
+
"result_key": "queueUrls"
|
8
|
+
},
|
3
9
|
"ListQueues": {
|
10
|
+
"input_token": "NextToken",
|
11
|
+
"limit_key": "MaxResults",
|
12
|
+
"output_token": "NextToken",
|
4
13
|
"result_key": "QueueUrls"
|
5
14
|
}
|
6
15
|
}
|
data/endpoints.json
CHANGED
@@ -2804,6 +2804,11 @@
|
|
2804
2804
|
"us-east-1" : { }
|
2805
2805
|
}
|
2806
2806
|
},
|
2807
|
+
"honeycode" : {
|
2808
|
+
"endpoints" : {
|
2809
|
+
"us-west-2" : { }
|
2810
|
+
}
|
2811
|
+
},
|
2807
2812
|
"iam" : {
|
2808
2813
|
"endpoints" : {
|
2809
2814
|
"aws-global" : {
|
@@ -3311,6 +3316,30 @@
|
|
3311
3316
|
"eu-west-1" : { },
|
3312
3317
|
"eu-west-2" : { },
|
3313
3318
|
"eu-west-3" : { },
|
3319
|
+
"fips-us-east-1" : {
|
3320
|
+
"credentialScope" : {
|
3321
|
+
"region" : "us-east-1"
|
3322
|
+
},
|
3323
|
+
"hostname" : "logs-fips.us-east-1.amazonaws.com"
|
3324
|
+
},
|
3325
|
+
"fips-us-east-2" : {
|
3326
|
+
"credentialScope" : {
|
3327
|
+
"region" : "us-east-2"
|
3328
|
+
},
|
3329
|
+
"hostname" : "logs-fips.us-east-2.amazonaws.com"
|
3330
|
+
},
|
3331
|
+
"fips-us-west-1" : {
|
3332
|
+
"credentialScope" : {
|
3333
|
+
"region" : "us-west-1"
|
3334
|
+
},
|
3335
|
+
"hostname" : "logs-fips.us-west-1.amazonaws.com"
|
3336
|
+
},
|
3337
|
+
"fips-us-west-2" : {
|
3338
|
+
"credentialScope" : {
|
3339
|
+
"region" : "us-west-2"
|
3340
|
+
},
|
3341
|
+
"hostname" : "logs-fips.us-west-2.amazonaws.com"
|
3342
|
+
},
|
3314
3343
|
"me-south-1" : { },
|
3315
3344
|
"sa-east-1" : { },
|
3316
3345
|
"us-east-1" : { },
|
@@ -6373,6 +6402,24 @@
|
|
6373
6402
|
}
|
6374
6403
|
}
|
6375
6404
|
},
|
6405
|
+
"organizations" : {
|
6406
|
+
"endpoints" : {
|
6407
|
+
"aws-cn-global" : {
|
6408
|
+
"credentialScope" : {
|
6409
|
+
"region" : "cn-northwest-1"
|
6410
|
+
},
|
6411
|
+
"hostname" : "organizations.cn-northwest-1.amazonaws.com.cn"
|
6412
|
+
},
|
6413
|
+
"fips-aws-cn-global" : {
|
6414
|
+
"credentialScope" : {
|
6415
|
+
"region" : "cn-northwest-1"
|
6416
|
+
},
|
6417
|
+
"hostname" : "organizations.cn-northwest-1.amazonaws.com.cn"
|
6418
|
+
}
|
6419
|
+
},
|
6420
|
+
"isRegionalized" : false,
|
6421
|
+
"partitionEndpoint" : "aws-cn-global"
|
6422
|
+
},
|
6376
6423
|
"polly" : {
|
6377
6424
|
"endpoints" : {
|
6378
6425
|
"cn-northwest-1" : { }
|
@@ -6751,6 +6798,12 @@
|
|
6751
6798
|
"us-gov-west-1" : { }
|
6752
6799
|
}
|
6753
6800
|
},
|
6801
|
+
"backup" : {
|
6802
|
+
"endpoints" : {
|
6803
|
+
"us-gov-east-1" : { },
|
6804
|
+
"us-gov-west-1" : { }
|
6805
|
+
}
|
6806
|
+
},
|
6754
6807
|
"batch" : {
|
6755
6808
|
"endpoints" : {
|
6756
6809
|
"fips-us-gov-east-1" : {
|
@@ -7345,6 +7398,12 @@
|
|
7345
7398
|
"us-gov-west-1" : { }
|
7346
7399
|
}
|
7347
7400
|
},
|
7401
|
+
"kinesisanalytics" : {
|
7402
|
+
"endpoints" : {
|
7403
|
+
"us-gov-east-1" : { },
|
7404
|
+
"us-gov-west-1" : { }
|
7405
|
+
}
|
7406
|
+
},
|
7348
7407
|
"kms" : {
|
7349
7408
|
"endpoints" : {
|
7350
7409
|
"ProdFips" : {
|
@@ -7395,8 +7454,18 @@
|
|
7395
7454
|
},
|
7396
7455
|
"logs" : {
|
7397
7456
|
"endpoints" : {
|
7398
|
-
"us-gov-east-1" : {
|
7399
|
-
|
7457
|
+
"us-gov-east-1" : {
|
7458
|
+
"credentialScope" : {
|
7459
|
+
"region" : "us-gov-east-1"
|
7460
|
+
},
|
7461
|
+
"hostname" : "logs.us-gov-east-1.amazonaws.com"
|
7462
|
+
},
|
7463
|
+
"us-gov-west-1" : {
|
7464
|
+
"credentialScope" : {
|
7465
|
+
"region" : "us-gov-west-1"
|
7466
|
+
},
|
7467
|
+
"hostname" : "logs.us-gov-west-1.amazonaws.com"
|
7468
|
+
}
|
7400
7469
|
}
|
7401
7470
|
},
|
7402
7471
|
"mediaconvert" : {
|
data/lib/aws-sdk-core.rb
CHANGED
@@ -0,0 +1,6 @@
|
|
1
|
+
Aws.add_service(:Honeycode, {
|
2
|
+
api: "#{Aws::API_DIR}/honeycode/2020-03-01/api-2.json",
|
3
|
+
docs: "#{Aws::API_DIR}/honeycode/2020-03-01/docs-2.json",
|
4
|
+
examples: "#{Aws::API_DIR}/honeycode/2020-03-01/examples-1.json",
|
5
|
+
paginators: "#{Aws::API_DIR}/honeycode/2020-03-01/paginators-1.json",
|
6
|
+
})
|
data/lib/aws-sdk-core/version.rb
CHANGED
data/service-models.json
CHANGED
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.
|
4
|
+
version: 2.11.537
|
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: 2020-06-
|
11
|
+
date: 2020-06-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jmespath
|
@@ -473,6 +473,9 @@ files:
|
|
473
473
|
- apis/health/2016-08-04/examples-1.json
|
474
474
|
- apis/health/2016-08-04/paginators-1.json
|
475
475
|
- apis/health/2016-08-04/smoke.json
|
476
|
+
- apis/honeycode/2020-03-01/api-2.json
|
477
|
+
- apis/honeycode/2020-03-01/examples-1.json
|
478
|
+
- apis/honeycode/2020-03-01/paginators-1.json
|
476
479
|
- apis/iam/2010-05-08/api-2.json
|
477
480
|
- apis/iam/2010-05-08/examples-1.json
|
478
481
|
- apis/iam/2010-05-08/paginators-1.json
|
@@ -1048,6 +1051,7 @@ files:
|
|
1048
1051
|
- lib/aws-sdk-core/groundstation.rb
|
1049
1052
|
- lib/aws-sdk-core/guardduty.rb
|
1050
1053
|
- lib/aws-sdk-core/health.rb
|
1054
|
+
- lib/aws-sdk-core/honeycode.rb
|
1051
1055
|
- lib/aws-sdk-core/iam.rb
|
1052
1056
|
- lib/aws-sdk-core/imagebuilder.rb
|
1053
1057
|
- lib/aws-sdk-core/importexport.rb
|