Skip to content

Commit c15bad2

Browse files
Updated API models and rebuilt service gems.
1 parent 9abea50 commit c15bad2

File tree

308 files changed

+44740
-1938
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

308 files changed

+44740
-1938
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -465,6 +465,8 @@ RubyGems.org page under "LINKS" section.
465465
| AWS Systems Manager for SAP | Aws::SsmSap | aws-sdk-ssmsap | 2018-05-10 |
466466
| AWS Telco Network Builder | Aws::Tnb | aws-sdk-tnb | 2008-10-21 |
467467
| AWS Transfer Family | Aws::Transfer | aws-sdk-transfer | 2018-11-05 |
468+
| AWS User Notifications | Aws::Notifications | aws-sdk-notifications | 2018-05-10 |
469+
| AWS User Notifications Contacts | Aws::NotificationsContacts | aws-sdk-notificationscontacts | 2018-05-10 |
468470
| AWS WAF | Aws::WAF | aws-sdk-waf | 2015-08-24 |
469471
| AWS WAF Regional | Aws::WAFRegional | aws-sdk-wafregional | 2016-11-28 |
470472
| AWS WAFV2 | Aws::WAFV2 | aws-sdk-wafv2 | 2019-07-29 |

apis/apigateway/2015-07-09/api-2.json

Lines changed: 215 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,23 @@
138138
{"shape":"TooManyRequestsException"}
139139
]
140140
},
141+
"CreateDomainNameAccessAssociation":{
142+
"name":"CreateDomainNameAccessAssociation",
143+
"http":{
144+
"method":"POST",
145+
"requestUri":"/domainnameaccessassociations",
146+
"responseCode":201
147+
},
148+
"input":{"shape":"CreateDomainNameAccessAssociationRequest"},
149+
"output":{"shape":"DomainNameAccessAssociation"},
150+
"errors":[
151+
{"shape":"BadRequestException"},
152+
{"shape":"ConflictException"},
153+
{"shape":"LimitExceededException"},
154+
{"shape":"UnauthorizedException"},
155+
{"shape":"TooManyRequestsException"}
156+
]
157+
},
141158
"CreateModel":{
142159
"name":"CreateModel",
143160
"http":{
@@ -409,6 +426,22 @@
409426
{"shape":"TooManyRequestsException"}
410427
]
411428
},
429+
"DeleteDomainNameAccessAssociation":{
430+
"name":"DeleteDomainNameAccessAssociation",
431+
"http":{
432+
"method":"DELETE",
433+
"requestUri":"/domainnameaccessassociations/{domain_name_access_association_arn}",
434+
"responseCode":202
435+
},
436+
"input":{"shape":"DeleteDomainNameAccessAssociationRequest"},
437+
"errors":[
438+
{"shape":"BadRequestException"},
439+
{"shape":"ConflictException"},
440+
{"shape":"NotFoundException"},
441+
{"shape":"UnauthorizedException"},
442+
{"shape":"TooManyRequestsException"}
443+
]
444+
},
412445
"DeleteGatewayResponse":{
413446
"name":"DeleteGatewayResponse",
414447
"http":{
@@ -909,6 +942,21 @@
909942
{"shape":"TooManyRequestsException"}
910943
]
911944
},
945+
"GetDomainNameAccessAssociations":{
946+
"name":"GetDomainNameAccessAssociations",
947+
"http":{
948+
"method":"GET",
949+
"requestUri":"/domainnameaccessassociations"
950+
},
951+
"input":{"shape":"GetDomainNameAccessAssociationsRequest"},
952+
"output":{"shape":"DomainNameAccessAssociations"},
953+
"errors":[
954+
{"shape":"BadRequestException"},
955+
{"shape":"NotFoundException"},
956+
{"shape":"UnauthorizedException"},
957+
{"shape":"TooManyRequestsException"}
958+
]
959+
},
912960
"GetDomainNames":{
913961
"name":"GetDomainNames",
914962
"http":{
@@ -1527,6 +1575,22 @@
15271575
{"shape":"TooManyRequestsException"}
15281576
]
15291577
},
1578+
"RejectDomainNameAccessAssociation":{
1579+
"name":"RejectDomainNameAccessAssociation",
1580+
"http":{
1581+
"method":"POST",
1582+
"requestUri":"/rejectdomainnameaccessassociations",
1583+
"responseCode":202
1584+
},
1585+
"input":{"shape":"RejectDomainNameAccessAssociationRequest"},
1586+
"errors":[
1587+
{"shape":"BadRequestException"},
1588+
{"shape":"ConflictException"},
1589+
{"shape":"NotFoundException"},
1590+
{"shape":"UnauthorizedException"},
1591+
{"shape":"TooManyRequestsException"}
1592+
]
1593+
},
15301594
"TagResource":{
15311595
"name":"TagResource",
15321596
"http":{
@@ -1967,6 +2031,10 @@
19672031
}
19682032
},
19692033
"shapes":{
2034+
"AccessAssociationSourceType":{
2035+
"type":"string",
2036+
"enum":["VPCE"]
2037+
},
19702038
"AccessLogSettings":{
19712039
"type":"structure",
19722040
"members":{
@@ -2220,6 +2288,11 @@
22202288
"location":"uri",
22212289
"locationName":"domain_name"
22222290
},
2291+
"domainNameId":{
2292+
"shape":"String",
2293+
"location":"querystring",
2294+
"locationName":"domainNameId"
2295+
},
22232296
"basePath":{"shape":"String"},
22242297
"restApiId":{"shape":"String"},
22252298
"stage":{"shape":"String"}
@@ -2278,6 +2351,20 @@
22782351
"description":{"shape":"String"}
22792352
}
22802353
},
2354+
"CreateDomainNameAccessAssociationRequest":{
2355+
"type":"structure",
2356+
"required":[
2357+
"domainNameArn",
2358+
"accessAssociationSourceType",
2359+
"accessAssociationSource"
2360+
],
2361+
"members":{
2362+
"domainNameArn":{"shape":"String"},
2363+
"accessAssociationSourceType":{"shape":"AccessAssociationSourceType"},
2364+
"accessAssociationSource":{"shape":"String"},
2365+
"tags":{"shape":"MapOfStringToString"}
2366+
}
2367+
},
22812368
"CreateDomainNameRequest":{
22822369
"type":"structure",
22832370
"required":["domainName"],
@@ -2294,7 +2381,8 @@
22942381
"tags":{"shape":"MapOfStringToString"},
22952382
"securityPolicy":{"shape":"SecurityPolicy"},
22962383
"mutualTlsAuthentication":{"shape":"MutualTlsAuthenticationInput"},
2297-
"ownershipVerificationCertificateArn":{"shape":"String"}
2384+
"ownershipVerificationCertificateArn":{"shape":"String"},
2385+
"policy":{"shape":"String"}
22982386
}
22992387
},
23002388
"CreateModelRequest":{
@@ -2477,6 +2565,11 @@
24772565
"location":"uri",
24782566
"locationName":"domain_name"
24792567
},
2568+
"domainNameId":{
2569+
"shape":"String",
2570+
"location":"querystring",
2571+
"locationName":"domainNameId"
2572+
},
24802573
"basePath":{
24812574
"shape":"String",
24822575
"location":"uri",
@@ -2552,6 +2645,17 @@
25522645
}
25532646
}
25542647
},
2648+
"DeleteDomainNameAccessAssociationRequest":{
2649+
"type":"structure",
2650+
"required":["domainNameAccessAssociationArn"],
2651+
"members":{
2652+
"domainNameAccessAssociationArn":{
2653+
"shape":"String",
2654+
"location":"uri",
2655+
"locationName":"domain_name_access_association_arn"
2656+
}
2657+
}
2658+
},
25552659
"DeleteDomainNameRequest":{
25562660
"type":"structure",
25572661
"required":["domainName"],
@@ -2560,6 +2664,11 @@
25602664
"shape":"String",
25612665
"location":"uri",
25622666
"locationName":"domain_name"
2667+
},
2668+
"domainNameId":{
2669+
"shape":"String",
2670+
"location":"querystring",
2671+
"locationName":"domainNameId"
25632672
}
25642673
}
25652674
},
@@ -2928,6 +3037,8 @@
29283037
"type":"structure",
29293038
"members":{
29303039
"domainName":{"shape":"String"},
3040+
"domainNameId":{"shape":"String"},
3041+
"domainNameArn":{"shape":"String"},
29313042
"certificateName":{"shape":"String"},
29323043
"certificateArn":{"shape":"String"},
29333044
"certificateUploadDate":{"shape":"Timestamp"},
@@ -2943,7 +3054,29 @@
29433054
"securityPolicy":{"shape":"SecurityPolicy"},
29443055
"tags":{"shape":"MapOfStringToString"},
29453056
"mutualTlsAuthentication":{"shape":"MutualTlsAuthentication"},
2946-
"ownershipVerificationCertificateArn":{"shape":"String"}
3057+
"ownershipVerificationCertificateArn":{"shape":"String"},
3058+
"managementPolicy":{"shape":"String"},
3059+
"policy":{"shape":"String"}
3060+
}
3061+
},
3062+
"DomainNameAccessAssociation":{
3063+
"type":"structure",
3064+
"members":{
3065+
"domainNameAccessAssociationArn":{"shape":"String"},
3066+
"domainNameArn":{"shape":"String"},
3067+
"accessAssociationSourceType":{"shape":"AccessAssociationSourceType"},
3068+
"accessAssociationSource":{"shape":"String"},
3069+
"tags":{"shape":"MapOfStringToString"}
3070+
}
3071+
},
3072+
"DomainNameAccessAssociations":{
3073+
"type":"structure",
3074+
"members":{
3075+
"position":{"shape":"String"},
3076+
"items":{
3077+
"shape":"ListOfDomainNameAccessAssociation",
3078+
"locationName":"item"
3079+
}
29473080
}
29483081
},
29493082
"DomainNameStatus":{
@@ -3193,6 +3326,11 @@
31933326
"location":"uri",
31943327
"locationName":"domain_name"
31953328
},
3329+
"domainNameId":{
3330+
"shape":"String",
3331+
"location":"querystring",
3332+
"locationName":"domainNameId"
3333+
},
31963334
"basePath":{
31973335
"shape":"String",
31983336
"location":"uri",
@@ -3209,6 +3347,11 @@
32093347
"location":"uri",
32103348
"locationName":"domain_name"
32113349
},
3350+
"domainNameId":{
3351+
"shape":"String",
3352+
"location":"querystring",
3353+
"locationName":"domainNameId"
3354+
},
32123355
"position":{
32133356
"shape":"String",
32143357
"location":"querystring",
@@ -3392,6 +3535,26 @@
33923535
}
33933536
}
33943537
},
3538+
"GetDomainNameAccessAssociationsRequest":{
3539+
"type":"structure",
3540+
"members":{
3541+
"position":{
3542+
"shape":"String",
3543+
"location":"querystring",
3544+
"locationName":"position"
3545+
},
3546+
"limit":{
3547+
"shape":"NullableInteger",
3548+
"location":"querystring",
3549+
"locationName":"limit"
3550+
},
3551+
"resourceOwner":{
3552+
"shape":"ResourceOwner",
3553+
"location":"querystring",
3554+
"locationName":"resourceOwner"
3555+
}
3556+
}
3557+
},
33953558
"GetDomainNameRequest":{
33963559
"type":"structure",
33973560
"required":["domainName"],
@@ -3400,6 +3563,11 @@
34003563
"shape":"String",
34013564
"location":"uri",
34023565
"locationName":"domain_name"
3566+
},
3567+
"domainNameId":{
3568+
"shape":"String",
3569+
"location":"querystring",
3570+
"locationName":"domainNameId"
34033571
}
34043572
}
34053573
},
@@ -3415,6 +3583,11 @@
34153583
"shape":"NullableInteger",
34163584
"location":"querystring",
34173585
"locationName":"limit"
3586+
},
3587+
"resourceOwner":{
3588+
"shape":"ResourceOwner",
3589+
"location":"querystring",
3590+
"locationName":"resourceOwner"
34183591
}
34193592
}
34203593
},
@@ -4195,6 +4368,10 @@
41954368
"type":"list",
41964369
"member":{"shape":"DomainName"}
41974370
},
4371+
"ListOfDomainNameAccessAssociation":{
4372+
"type":"list",
4373+
"member":{"shape":"DomainNameAccessAssociation"}
4374+
},
41984375
"ListOfEndpointType":{
41994376
"type":"list",
42004377
"member":{"shape":"EndpointType"}
@@ -4658,6 +4835,25 @@
46584835
"period":{"shape":"QuotaPeriodType"}
46594836
}
46604837
},
4838+
"RejectDomainNameAccessAssociationRequest":{
4839+
"type":"structure",
4840+
"required":[
4841+
"domainNameAccessAssociationArn",
4842+
"domainNameArn"
4843+
],
4844+
"members":{
4845+
"domainNameAccessAssociationArn":{
4846+
"shape":"String",
4847+
"location":"querystring",
4848+
"locationName":"domainNameAccessAssociationArn"
4849+
},
4850+
"domainNameArn":{
4851+
"shape":"String",
4852+
"location":"querystring",
4853+
"locationName":"domainNameArn"
4854+
}
4855+
}
4856+
},
46614857
"RequestValidator":{
46624858
"type":"structure",
46634859
"members":{
@@ -4687,6 +4883,13 @@
46874883
"resourceMethods":{"shape":"MapOfMethod"}
46884884
}
46894885
},
4886+
"ResourceOwner":{
4887+
"type":"string",
4888+
"enum":[
4889+
"SELF",
4890+
"OTHER_ACCOUNTS"
4891+
]
4892+
},
46904893
"Resources":{
46914894
"type":"structure",
46924895
"members":{
@@ -5051,6 +5254,11 @@
50515254
"location":"uri",
50525255
"locationName":"domain_name"
50535256
},
5257+
"domainNameId":{
5258+
"shape":"String",
5259+
"location":"querystring",
5260+
"locationName":"domainNameId"
5261+
},
50545262
"basePath":{
50555263
"shape":"String",
50565264
"location":"uri",
@@ -5140,6 +5348,11 @@
51405348
"location":"uri",
51415349
"locationName":"domain_name"
51425350
},
5351+
"domainNameId":{
5352+
"shape":"String",
5353+
"location":"querystring",
5354+
"locationName":"domainNameId"
5355+
},
51435356
"patchOperations":{"shape":"ListOfPatchOperation"}
51445357
}
51455358
},

0 commit comments

Comments
 (0)