aws-sdk-core 2.11.544 → 2.11.545
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 +4 -4
- data/apis/alexaforbusiness/2017-11-09/api-2.json +3 -2
- data/apis/appmesh/2019-01-25/api-2.json +1420 -11
- data/apis/appmesh/2019-01-25/paginators-1.json +12 -0
- data/apis/comprehend/2017-11-27/api-2.json +58 -35
- data/apis/ebs/2019-11-02/api-2.json +377 -9
- data/apis/eventbridge/2015-10-07/api-2.json +76 -12
- data/apis/events/2015-10-07/api-2.json +76 -12
- data/apis/sagemaker/2017-07-24/api-2.json +32 -0
- data/apis/secretsmanager/2017-10-17/api-2.json +111 -5
- data/apis/secretsmanager/2017-10-17/examples-1.json +23 -0
- data/apis/wafv2/2019-07-29/api-2.json +63 -6
- data/endpoints.json +88 -1
- data/lib/aws-sdk-core/version.rb +1 -1
- metadata +2 -2
|
@@ -566,6 +566,29 @@
|
|
|
566
566
|
"id": "to-move-a-staging-label-from-one-version-of-a-secret-to-another-1524004963841",
|
|
567
567
|
"title": "To move a staging label from one version of a secret to another"
|
|
568
568
|
}
|
|
569
|
+
],
|
|
570
|
+
"ValidateResourcePolicy": [
|
|
571
|
+
{
|
|
572
|
+
"input": {
|
|
573
|
+
"ResourcePolicy": "{\n\"Version\":\"2012-10-17\",\n\"Statement\":[{\n\"Effect\":\"Allow\",\n\"Principal\":{\n\"AWS\":\"arn:aws:iam::123456789012:root\"\n},\n\"Action\":\"secretsmanager:GetSecretValue\",\n\"Resource\":\"*\"\n}]\n}",
|
|
574
|
+
"SecretId": "MyTestDatabaseSecret"
|
|
575
|
+
},
|
|
576
|
+
"output": {
|
|
577
|
+
"PolicyValidationPassed": true,
|
|
578
|
+
"ValidationErrors": [
|
|
579
|
+
|
|
580
|
+
]
|
|
581
|
+
},
|
|
582
|
+
"comments": {
|
|
583
|
+
"input": {
|
|
584
|
+
},
|
|
585
|
+
"output": {
|
|
586
|
+
}
|
|
587
|
+
},
|
|
588
|
+
"description": "The following example shows how to validate a resource-based policy to a secret.",
|
|
589
|
+
"id": "to-validate-the-resource-policy-of-a-secret-1524000138629",
|
|
590
|
+
"title": "To validate a resource-based policy to a secret"
|
|
591
|
+
}
|
|
569
592
|
]
|
|
570
593
|
}
|
|
571
594
|
}
|
|
@@ -547,7 +547,8 @@
|
|
|
547
547
|
{"shape":"WAFOptimisticLockException"},
|
|
548
548
|
{"shape":"WAFServiceLinkedRoleErrorException"},
|
|
549
549
|
{"shape":"WAFInvalidParameterException"},
|
|
550
|
-
{"shape":"WAFInvalidOperationException"}
|
|
550
|
+
{"shape":"WAFInvalidOperationException"},
|
|
551
|
+
{"shape":"WAFLimitsExceededException"}
|
|
551
552
|
]
|
|
552
553
|
},
|
|
553
554
|
"PutPermissionPolicy":{
|
|
@@ -1323,6 +1324,13 @@
|
|
|
1323
1324
|
"type":"list",
|
|
1324
1325
|
"member":{"shape":"ExcludedRule"}
|
|
1325
1326
|
},
|
|
1327
|
+
"FallbackBehavior":{
|
|
1328
|
+
"type":"string",
|
|
1329
|
+
"enum":[
|
|
1330
|
+
"MATCH",
|
|
1331
|
+
"NO_MATCH"
|
|
1332
|
+
]
|
|
1333
|
+
},
|
|
1326
1334
|
"FieldToMatch":{
|
|
1327
1335
|
"type":"structure",
|
|
1328
1336
|
"members":{
|
|
@@ -1369,10 +1377,36 @@
|
|
|
1369
1377
|
"RuleGroupReferenceStatement":{"shape":"RuleGroupReferenceStatement"}
|
|
1370
1378
|
}
|
|
1371
1379
|
},
|
|
1380
|
+
"ForwardedIPConfig":{
|
|
1381
|
+
"type":"structure",
|
|
1382
|
+
"required":[
|
|
1383
|
+
"HeaderName",
|
|
1384
|
+
"FallbackBehavior"
|
|
1385
|
+
],
|
|
1386
|
+
"members":{
|
|
1387
|
+
"HeaderName":{"shape":"ForwardedIPHeaderName"},
|
|
1388
|
+
"FallbackBehavior":{"shape":"FallbackBehavior"}
|
|
1389
|
+
}
|
|
1390
|
+
},
|
|
1391
|
+
"ForwardedIPHeaderName":{
|
|
1392
|
+
"type":"string",
|
|
1393
|
+
"max":255,
|
|
1394
|
+
"min":1,
|
|
1395
|
+
"pattern":"^[a-zA-Z0-9-]+$"
|
|
1396
|
+
},
|
|
1397
|
+
"ForwardedIPPosition":{
|
|
1398
|
+
"type":"string",
|
|
1399
|
+
"enum":[
|
|
1400
|
+
"FIRST",
|
|
1401
|
+
"LAST",
|
|
1402
|
+
"ANY"
|
|
1403
|
+
]
|
|
1404
|
+
},
|
|
1372
1405
|
"GeoMatchStatement":{
|
|
1373
1406
|
"type":"structure",
|
|
1374
1407
|
"members":{
|
|
1375
|
-
"CountryCodes":{"shape":"CountryCodes"}
|
|
1408
|
+
"CountryCodes":{"shape":"CountryCodes"},
|
|
1409
|
+
"ForwardedIPConfig":{"shape":"ForwardedIPConfig"}
|
|
1376
1410
|
}
|
|
1377
1411
|
},
|
|
1378
1412
|
"GetIPSetRequest":{
|
|
@@ -1602,11 +1636,25 @@
|
|
|
1602
1636
|
"Addresses":{"shape":"IPAddresses"}
|
|
1603
1637
|
}
|
|
1604
1638
|
},
|
|
1639
|
+
"IPSetForwardedIPConfig":{
|
|
1640
|
+
"type":"structure",
|
|
1641
|
+
"required":[
|
|
1642
|
+
"HeaderName",
|
|
1643
|
+
"FallbackBehavior",
|
|
1644
|
+
"Position"
|
|
1645
|
+
],
|
|
1646
|
+
"members":{
|
|
1647
|
+
"HeaderName":{"shape":"ForwardedIPHeaderName"},
|
|
1648
|
+
"FallbackBehavior":{"shape":"FallbackBehavior"},
|
|
1649
|
+
"Position":{"shape":"ForwardedIPPosition"}
|
|
1650
|
+
}
|
|
1651
|
+
},
|
|
1605
1652
|
"IPSetReferenceStatement":{
|
|
1606
1653
|
"type":"structure",
|
|
1607
1654
|
"required":["ARN"],
|
|
1608
1655
|
"members":{
|
|
1609
|
-
"ARN":{"shape":"ResourceArn"}
|
|
1656
|
+
"ARN":{"shape":"ResourceArn"},
|
|
1657
|
+
"IPSetForwardedIPConfig":{"shape":"IPSetForwardedIPConfig"}
|
|
1610
1658
|
}
|
|
1611
1659
|
},
|
|
1612
1660
|
"IPSetSummaries":{
|
|
@@ -1894,7 +1942,12 @@
|
|
|
1894
1942
|
"TAGS",
|
|
1895
1943
|
"TAG_KEYS",
|
|
1896
1944
|
"METRIC_NAME",
|
|
1897
|
-
"FIREWALL_MANAGER_STATEMENT"
|
|
1945
|
+
"FIREWALL_MANAGER_STATEMENT",
|
|
1946
|
+
"FALLBACK_BEHAVIOR",
|
|
1947
|
+
"POSITION",
|
|
1948
|
+
"FORWARDED_IP_CONFIG",
|
|
1949
|
+
"IP_SET_FORWARDED_IP_CONFIG",
|
|
1950
|
+
"HEADER_NAME"
|
|
1898
1951
|
]
|
|
1899
1952
|
},
|
|
1900
1953
|
"ParameterExceptionParameter":{
|
|
@@ -1959,12 +2012,16 @@
|
|
|
1959
2012
|
"members":{
|
|
1960
2013
|
"Limit":{"shape":"RateLimit"},
|
|
1961
2014
|
"AggregateKeyType":{"shape":"RateBasedStatementAggregateKeyType"},
|
|
1962
|
-
"ScopeDownStatement":{"shape":"Statement"}
|
|
2015
|
+
"ScopeDownStatement":{"shape":"Statement"},
|
|
2016
|
+
"ForwardedIPConfig":{"shape":"ForwardedIPConfig"}
|
|
1963
2017
|
}
|
|
1964
2018
|
},
|
|
1965
2019
|
"RateBasedStatementAggregateKeyType":{
|
|
1966
2020
|
"type":"string",
|
|
1967
|
-
"enum":[
|
|
2021
|
+
"enum":[
|
|
2022
|
+
"IP",
|
|
2023
|
+
"FORWARDED_IP"
|
|
2024
|
+
]
|
|
1968
2025
|
},
|
|
1969
2026
|
"RateBasedStatementManagedKeysIPSet":{
|
|
1970
2027
|
"type":"structure",
|
data/endpoints.json
CHANGED
|
@@ -3377,6 +3377,51 @@
|
|
|
3377
3377
|
"us-west-2" : { }
|
|
3378
3378
|
}
|
|
3379
3379
|
},
|
|
3380
|
+
"macie2" : {
|
|
3381
|
+
"endpoints" : {
|
|
3382
|
+
"ap-east-1" : { },
|
|
3383
|
+
"ap-northeast-1" : { },
|
|
3384
|
+
"ap-northeast-2" : { },
|
|
3385
|
+
"ap-south-1" : { },
|
|
3386
|
+
"ap-southeast-1" : { },
|
|
3387
|
+
"ap-southeast-2" : { },
|
|
3388
|
+
"ca-central-1" : { },
|
|
3389
|
+
"eu-central-1" : { },
|
|
3390
|
+
"eu-north-1" : { },
|
|
3391
|
+
"eu-west-1" : { },
|
|
3392
|
+
"eu-west-2" : { },
|
|
3393
|
+
"eu-west-3" : { },
|
|
3394
|
+
"fips-us-east-1" : {
|
|
3395
|
+
"credentialScope" : {
|
|
3396
|
+
"region" : "us-east-1"
|
|
3397
|
+
},
|
|
3398
|
+
"hostname" : "macie2-fips.us-east-1.amazonaws.com"
|
|
3399
|
+
},
|
|
3400
|
+
"fips-us-east-2" : {
|
|
3401
|
+
"credentialScope" : {
|
|
3402
|
+
"region" : "us-east-2"
|
|
3403
|
+
},
|
|
3404
|
+
"hostname" : "macie2-fips.us-east-2.amazonaws.com"
|
|
3405
|
+
},
|
|
3406
|
+
"fips-us-west-1" : {
|
|
3407
|
+
"credentialScope" : {
|
|
3408
|
+
"region" : "us-west-1"
|
|
3409
|
+
},
|
|
3410
|
+
"hostname" : "macie2-fips.us-west-1.amazonaws.com"
|
|
3411
|
+
},
|
|
3412
|
+
"fips-us-west-2" : {
|
|
3413
|
+
"credentialScope" : {
|
|
3414
|
+
"region" : "us-west-2"
|
|
3415
|
+
},
|
|
3416
|
+
"hostname" : "macie2-fips.us-west-2.amazonaws.com"
|
|
3417
|
+
},
|
|
3418
|
+
"sa-east-1" : { },
|
|
3419
|
+
"us-east-1" : { },
|
|
3420
|
+
"us-east-2" : { },
|
|
3421
|
+
"us-west-1" : { },
|
|
3422
|
+
"us-west-2" : { }
|
|
3423
|
+
}
|
|
3424
|
+
},
|
|
3380
3425
|
"managedblockchain" : {
|
|
3381
3426
|
"endpoints" : {
|
|
3382
3427
|
"ap-northeast-1" : { },
|
|
@@ -3567,7 +3612,19 @@
|
|
|
3567
3612
|
"eu-west-1" : { },
|
|
3568
3613
|
"eu-west-2" : { },
|
|
3569
3614
|
"us-east-1" : { },
|
|
3570
|
-
"us-
|
|
3615
|
+
"us-east-1-fips" : {
|
|
3616
|
+
"credentialScope" : {
|
|
3617
|
+
"region" : "us-east-1"
|
|
3618
|
+
},
|
|
3619
|
+
"hostname" : "models-fips.lex.us-east-1.amazonaws.com"
|
|
3620
|
+
},
|
|
3621
|
+
"us-west-2" : { },
|
|
3622
|
+
"us-west-2-fips" : {
|
|
3623
|
+
"credentialScope" : {
|
|
3624
|
+
"region" : "us-west-2"
|
|
3625
|
+
},
|
|
3626
|
+
"hostname" : "models-fips.lex.us-west-2.amazonaws.com"
|
|
3627
|
+
}
|
|
3571
3628
|
}
|
|
3572
3629
|
},
|
|
3573
3630
|
"monitoring" : {
|
|
@@ -4240,6 +4297,30 @@
|
|
|
4240
4297
|
"eu-central-1" : { },
|
|
4241
4298
|
"eu-west-1" : { },
|
|
4242
4299
|
"eu-west-2" : { },
|
|
4300
|
+
"rekognition-fips.us-east-1" : {
|
|
4301
|
+
"credentialScope" : {
|
|
4302
|
+
"region" : "us-east-1"
|
|
4303
|
+
},
|
|
4304
|
+
"hostname" : "rekognition-fips.us-east-1.amazonaws.com"
|
|
4305
|
+
},
|
|
4306
|
+
"rekognition-fips.us-east-2" : {
|
|
4307
|
+
"credentialScope" : {
|
|
4308
|
+
"region" : "us-east-2"
|
|
4309
|
+
},
|
|
4310
|
+
"hostname" : "rekognition-fips.us-east-2.amazonaws.com"
|
|
4311
|
+
},
|
|
4312
|
+
"rekognition-fips.us-west-1" : {
|
|
4313
|
+
"credentialScope" : {
|
|
4314
|
+
"region" : "us-west-1"
|
|
4315
|
+
},
|
|
4316
|
+
"hostname" : "rekognition-fips.us-west-1.amazonaws.com"
|
|
4317
|
+
},
|
|
4318
|
+
"rekognition-fips.us-west-2" : {
|
|
4319
|
+
"credentialScope" : {
|
|
4320
|
+
"region" : "us-west-2"
|
|
4321
|
+
},
|
|
4322
|
+
"hostname" : "rekognition-fips.us-west-2.amazonaws.com"
|
|
4323
|
+
},
|
|
4243
4324
|
"us-east-1" : { },
|
|
4244
4325
|
"us-east-2" : { },
|
|
4245
4326
|
"us-west-1" : { },
|
|
@@ -7655,6 +7736,12 @@
|
|
|
7655
7736
|
},
|
|
7656
7737
|
"rekognition" : {
|
|
7657
7738
|
"endpoints" : {
|
|
7739
|
+
"rekognition-fips.us-gov-west-1" : {
|
|
7740
|
+
"credentialScope" : {
|
|
7741
|
+
"region" : "us-gov-west-1"
|
|
7742
|
+
},
|
|
7743
|
+
"hostname" : "rekognition-fips.us-gov-west-1.amazonaws.com"
|
|
7744
|
+
},
|
|
7658
7745
|
"us-gov-west-1" : { }
|
|
7659
7746
|
}
|
|
7660
7747
|
},
|
data/lib/aws-sdk-core/version.rb
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.545
|
|
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-07-
|
|
11
|
+
date: 2020-07-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jmespath
|