Skip to content

Commit ab853b7

Browse files
AWS SDK for RubyNobody
authored andcommitted
Updated service API models for release.
1 parent ef0c9f9 commit ab853b7

File tree

8 files changed

+341
-217
lines changed

8 files changed

+341
-217
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Unreleased Changes
22
------------------
33

4+
* Feature - Aws::AlexaForBusiness - Updated the API, and documentation for Alexa For Business.
5+
6+
* Feature - Aws::ApiGatewayV2 - Updated the API, and documentation for AmazonApiGatewayV2.
7+
8+
* Feature - Aws::ApplicationAutoScaling - Updated the documentation for Application Auto Scaling.
9+
10+
* Feature - Aws::SSM - Updated the API, and documentation for Amazon Simple Systems Manager (SSM).
11+
412
2.11.230 (2019-02-27)
513
------------------
614

aws-sdk-core/apis/alexaforbusiness/2017-11-09/api-2.json

Lines changed: 68 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@
8787
"input":{"shape":"AssociateSkillWithUsersRequest"},
8888
"output":{"shape":"AssociateSkillWithUsersResponse"},
8989
"errors":[
90-
{"shape":"ConcurrentModificationException"}
90+
{"shape":"ConcurrentModificationException"},
91+
{"shape":"NotFoundException"}
9192
]
9293
},
9394
"CreateAddressBook":{
@@ -381,7 +382,8 @@
381382
"input":{"shape":"DisassociateSkillFromUsersRequest"},
382383
"output":{"shape":"DisassociateSkillFromUsersResponse"},
383384
"errors":[
384-
{"shape":"ConcurrentModificationException"}
385+
{"shape":"ConcurrentModificationException"},
386+
{"shape":"NotFoundException"}
385387
]
386388
},
387389
"DisassociateSkillGroupFromRoom":{
@@ -468,6 +470,18 @@
468470
{"shape":"NotFoundException"}
469471
]
470472
},
473+
"GetInvitationConfiguration":{
474+
"name":"GetInvitationConfiguration",
475+
"http":{
476+
"method":"POST",
477+
"requestUri":"/"
478+
},
479+
"input":{"shape":"GetInvitationConfigurationRequest"},
480+
"output":{"shape":"GetInvitationConfigurationResponse"},
481+
"errors":[
482+
{"shape":"NotFoundException"}
483+
]
484+
},
471485
"GetProfile":{
472486
"name":"GetProfile",
473487
"http":{
@@ -609,6 +623,19 @@
609623
{"shape":"NotFoundException"}
610624
]
611625
},
626+
"PutInvitationConfiguration":{
627+
"name":"PutInvitationConfiguration",
628+
"http":{
629+
"method":"POST",
630+
"requestUri":"/"
631+
},
632+
"input":{"shape":"PutInvitationConfigurationRequest"},
633+
"output":{"shape":"PutInvitationConfigurationResponse"},
634+
"errors":[
635+
{"shape":"NotFoundException"},
636+
{"shape":"ConcurrentModificationException"}
637+
]
638+
},
612639
"PutRoomSkillParameter":{
613640
"name":"PutRoomSkillParameter",
614641
"http":{
@@ -1044,7 +1071,6 @@
10441071
"type":"structure",
10451072
"required":["SkillId"],
10461073
"members":{
1047-
"OrganizationArn":{"shape":"Arn"},
10481074
"SkillId":{"shape":"SkillId"}
10491075
}
10501076
},
@@ -1762,7 +1788,6 @@
17621788
"type":"structure",
17631789
"required":["SkillId"],
17641790
"members":{
1765-
"OrganizationArn":{"shape":"Arn"},
17661791
"SkillId":{"shape":"SkillId"}
17671792
}
17681793
},
@@ -1962,6 +1987,19 @@
19621987
"Device":{"shape":"Device"}
19631988
}
19641989
},
1990+
"GetInvitationConfigurationRequest":{
1991+
"type":"structure",
1992+
"members":{
1993+
}
1994+
},
1995+
"GetInvitationConfigurationResponse":{
1996+
"type":"structure",
1997+
"members":{
1998+
"OrganizationName":{"shape":"OrganizationName"},
1999+
"ContactEmail":{"shape":"Email"},
2000+
"PrivateSkillIds":{"shape":"ShortSkillIdList"}
2001+
}
2002+
},
19652003
"GetProfileRequest":{
19662004
"type":"structure",
19672005
"members":{
@@ -2232,6 +2270,12 @@
22322270
"max":2,
22332271
"min":1
22342272
},
2273+
"OrganizationName":{
2274+
"type":"string",
2275+
"max":100,
2276+
"min":1,
2277+
"pattern":"([A-Za-z\\-' 0-9._]|\\p{IsLetter})*"
2278+
},
22352279
"OutboundPhoneNumber":{
22362280
"type":"string",
22372281
"pattern":"\\d{10}"
@@ -2314,6 +2358,20 @@
23142358
"members":{
23152359
}
23162360
},
2361+
"PutInvitationConfigurationRequest":{
2362+
"type":"structure",
2363+
"required":["OrganizationName"],
2364+
"members":{
2365+
"OrganizationName":{"shape":"OrganizationName"},
2366+
"ContactEmail":{"shape":"Email"},
2367+
"PrivateSkillIds":{"shape":"ShortSkillIdList"}
2368+
}
2369+
},
2370+
"PutInvitationConfigurationResponse":{
2371+
"type":"structure",
2372+
"members":{
2373+
}
2374+
},
23172375
"PutRoomSkillParameterRequest":{
23182376
"type":"structure",
23192377
"required":[
@@ -2641,6 +2699,12 @@
26412699
}
26422700
},
26432701
"ShortDescription":{"type":"string"},
2702+
"ShortSkillIdList":{
2703+
"type":"list",
2704+
"member":{"shape":"SkillId"},
2705+
"max":3,
2706+
"min":0
2707+
},
26442708
"SkillDetails":{
26452709
"type":"structure",
26462710
"members":{

aws-sdk-core/apis/alexaforbusiness/2017-11-09/docs-2.json

Lines changed: 47 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
"GetConferenceProvider": "<p>Gets details about a specific conference provider.</p>",
3939
"GetContact": "<p>Gets the contact details by the contact ARN.</p>",
4040
"GetDevice": "<p>Gets the details of a device by device ARN.</p>",
41+
"GetInvitationConfiguration": "<p>Retrieves the configured values for the user enrollment invitation email template.</p>",
4142
"GetProfile": "<p>Gets the details of a room profile by profile ARN.</p>",
4243
"GetRoom": "<p>Gets room details by room ARN.</p>",
4344
"GetRoomSkillParameter": "<p>Gets room skill parameter details by room, skill, and parameter key ARN.</p>",
@@ -51,6 +52,7 @@
5152
"ListSmartHomeAppliances": "<p>Lists all of the smart home appliances associated with a room.</p>",
5253
"ListTags": "<p>Lists all tags for the specified resource.</p>",
5354
"PutConferencePreference": "<p>Sets the conference preferences on a specific conference provider at the account level.</p>",
55+
"PutInvitationConfiguration": "<p>Configures the email template for the user enrollment invitation with the specified attributes.</p>",
5456
"PutRoomSkillParameter": "<p>Updates room skill parameter details by room, skill, and parameter key ID. Not all skills have a room skill parameter.</p>",
5557
"PutSkillAuthorization": "<p>Links a user's account to a third-party skill provider. If this API operation is called by an assumed IAM role, the skill being linked must be a private skill. Also, the skill must be owned by the AWS account that assumed the IAM role.</p>",
5658
"RegisterAVSDevice": "<p>Registers an Alexa-enabled device built by an Original Equipment Manufacturer (OEM) using Alexa Voice Service (AVS).</p>",
@@ -175,7 +177,6 @@
175177
"AssociateSkillGroupWithRoomRequest$SkillGroupArn": "<p>The ARN of the skill group to associate with a room. Required.</p>",
176178
"AssociateSkillGroupWithRoomRequest$RoomArn": "<p>The ARN of the room with which to associate the skill group. Required.</p>",
177179
"AssociateSkillWithSkillGroupRequest$SkillGroupArn": "<p>The ARN of the skill group to associate the skill to. Required.</p>",
178-
"AssociateSkillWithUsersRequest$OrganizationArn": "<p>The ARN of the organization.</p>",
179180
"BusinessReportSchedule$ScheduleArn": "<p>The ARN of the business report schedule.</p>",
180181
"ConferencePreference$DefaultConferenceProviderArn": "<p>The ARN of the default conference provider.</p>",
181182
"ConferenceProvider$Arn": "<p>The ARN of the newly created conference provider.</p>",
@@ -209,7 +210,6 @@
209210
"DisassociateContactFromAddressBookRequest$AddressBookArn": "<p>The ARN of the address from which to disassociate the contact.</p>",
210211
"DisassociateDeviceFromRoomRequest$DeviceArn": "<p>The ARN of the device to disassociate from a room. Required.</p>",
211212
"DisassociateSkillFromSkillGroupRequest$SkillGroupArn": "<p>The unique identifier of a skill. Required.</p>",
212-
"DisassociateSkillFromUsersRequest$OrganizationArn": "<p>The ARN of the organization.</p>",
213213
"DisassociateSkillGroupFromRoomRequest$SkillGroupArn": "<p>The ARN of the skill group to disassociate from a room. Required.</p>",
214214
"DisassociateSkillGroupFromRoomRequest$RoomArn": "<p>The ARN of the room from which the skill group is to be disassociated. Required.</p>",
215215
"ForgetSmartHomeAppliancesRequest$RoomArn": "<p>The room that the appliances are associated with.</p>",
@@ -222,7 +222,7 @@
222222
"GetRoomSkillParameterRequest$RoomArn": "<p>The ARN of the room from which to get the room skill parameter details. </p>",
223223
"GetSkillGroupRequest$SkillGroupArn": "<p>The ARN of the skill group for which to get details. Required.</p>",
224224
"ListDeviceEventsRequest$DeviceArn": "<p>The ARN of a device.</p>",
225-
"ListSkillsRequest$SkillGroupArn": "<p>The ARN of the skill group for which to list enabled skills.</p>",
225+
"ListSkillsRequest$SkillGroupArn": "<p>The ARN of the skill group for which to list enabled skills. Required.</p>",
226226
"ListSmartHomeAppliancesRequest$RoomArn": "<p>The room that the appliances are associated with.</p>",
227227
"ListTagsRequest$Arn": "<p>The ARN of the specified resource for which to list tags.</p>",
228228
"Profile$ProfileArn": "<p>The ARN of a room profile.</p>",
@@ -383,7 +383,7 @@
383383
"base": "<p>The recurrence of the reports.</p>",
384384
"refs": {
385385
"BusinessReportSchedule$Recurrence": "<p>The recurrence of the reports.</p>",
386-
"CreateBusinessReportScheduleRequest$Recurrence": "<p>The recurrence of the reports.</p>",
386+
"CreateBusinessReportScheduleRequest$Recurrence": "<p>The recurrence of the reports. If this isn't specified, the report will only be delivered one time when the API is called. </p>",
387387
"UpdateBusinessReportScheduleRequest$Recurrence": "<p>The recurrence of the reports.</p>"
388388
}
389389
},
@@ -457,7 +457,7 @@
457457
}
458458
},
459459
"ClientRequestToken": {
460-
"base": "User specified token that is used to support idempotency during Create Resource",
460+
"base": null,
461461
"refs": {
462462
"CreateAddressBookRequest$ClientRequestToken": "<p>A unique, user-specified identifier for the request that ensures idempotency.</p>",
463463
"CreateBusinessReportScheduleRequest$ClientRequestToken": "<p>The client request token.</p>",
@@ -477,7 +477,7 @@
477477
}
478478
},
479479
"ConcurrentModificationException": {
480-
"base": "Concurrent modification of resources. HTTP Status Code: 400.",
480+
"base": "<p>There is a concurrent modification of resources.</p>",
481481
"refs": {
482482
}
483483
},
@@ -648,7 +648,7 @@
648648
"refs": {
649649
"BusinessReportS3Location$BucketName": "<p>The S3 bucket name of the output reports.</p>",
650650
"BusinessReportSchedule$S3BucketName": "<p>The S3 bucket name of the output reports.</p>",
651-
"CreateBusinessReportScheduleRequest$S3BucketName": "<p>The S3 bucket name of the output reports.</p>",
651+
"CreateBusinessReportScheduleRequest$S3BucketName": "<p>The S3 bucket name of the output reports. If this isn't specified, the report can be retrieved from a download link by calling ListBusinessReportSchedule. </p>",
652652
"UpdateBusinessReportScheduleRequest$S3BucketName": "<p>The S3 location of the output reports.</p>"
653653
}
654654
},
@@ -961,6 +961,8 @@
961961
"refs": {
962962
"CreateUserRequest$Email": "<p>The email address for the user.</p>",
963963
"DeveloperInfo$Email": "<p>The email of the developer.</p>",
964+
"GetInvitationConfigurationResponse$ContactEmail": "<p>The email ID of the organization or individual contact that the enrolled user can use. </p>",
965+
"PutInvitationConfigurationRequest$ContactEmail": "<p>The email ID of the organization or individual contact that the enrolled user can use. </p>",
964966
"UserData$Email": "<p>The email of a user.</p>"
965967
}
966968
},
@@ -1139,6 +1141,16 @@
11391141
"refs": {
11401142
}
11411143
},
1144+
"GetInvitationConfigurationRequest": {
1145+
"base": null,
1146+
"refs": {
1147+
}
1148+
},
1149+
"GetInvitationConfigurationResponse": {
1150+
"base": null,
1151+
"refs": {
1152+
}
1153+
},
11421154
"GetProfileRequest": {
11431155
"base": null,
11441156
"refs": {
@@ -1366,7 +1378,7 @@
13661378
"ListConferenceProvidersResponse$NextToken": "<p>The tokens used for pagination.</p>",
13671379
"ListDeviceEventsRequest$NextToken": "<p>An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response only includes results beyond the token, up to the value specified by MaxResults. When the end of results is reached, the response has a value of null.</p>",
13681380
"ListDeviceEventsResponse$NextToken": "<p>The token returned to indicate that there is more data available.</p>",
1369-
"ListSkillsRequest$NextToken": "<p>An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by <code>MaxResults</code>.</p>",
1381+
"ListSkillsRequest$NextToken": "<p>An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by <code>MaxResults</code>. Required.</p>",
13701382
"ListSkillsResponse$NextToken": "<p>The token returned to indicate that there is more data available.</p>",
13711383
"ListSkillsStoreCategoriesRequest$NextToken": "<p>The tokens used for pagination.</p>",
13721384
"ListSkillsStoreCategoriesResponse$NextToken": "<p>The tokens used for pagination.</p>",
@@ -1409,6 +1421,13 @@
14091421
"PSTNDialIn$OneClickPinDelay": "<p>The delay duration before Alexa enters the conference pin with dual-tone multi-frequency (DTMF). Each number on the dial pad corresponds to a DTMF tone, which is how we send data over the telephone network.</p>"
14101422
}
14111423
},
1424+
"OrganizationName": {
1425+
"base": null,
1426+
"refs": {
1427+
"GetInvitationConfigurationResponse$OrganizationName": "<p>The name of the organization sending the enrollment invite to a user.</p>",
1428+
"PutInvitationConfigurationRequest$OrganizationName": "<p>The name of the organization sending the enrollment invite to a user.</p>"
1429+
}
1430+
},
14121431
"OutboundPhoneNumber": {
14131432
"base": null,
14141433
"refs": {
@@ -1488,6 +1507,16 @@
14881507
"refs": {
14891508
}
14901509
},
1510+
"PutInvitationConfigurationRequest": {
1511+
"base": null,
1512+
"refs": {
1513+
}
1514+
},
1515+
"PutInvitationConfigurationResponse": {
1516+
"base": null,
1517+
"refs": {
1518+
}
1519+
},
14911520
"PutRoomSkillParameterRequest": {
14921521
"base": null,
14931522
"refs": {
@@ -1749,6 +1778,13 @@
17491778
"SkillsStoreSkill$ShortDescription": "<p>Short description about the skill.</p>"
17501779
}
17511780
},
1781+
"ShortSkillIdList": {
1782+
"base": null,
1783+
"refs": {
1784+
"GetInvitationConfigurationResponse$PrivateSkillIds": "<p>The list of private skill IDs that you want to recommend to the user to enable in the invitation.</p>",
1785+
"PutInvitationConfigurationRequest$PrivateSkillIds": "<p>The list of private skill IDs that you want to recommend to the user to enable in the invitation.</p>"
1786+
}
1787+
},
17521788
"SkillDetails": {
17531789
"base": "<p>Granular information about the skill.</p>",
17541790
"refs": {
@@ -1796,7 +1832,7 @@
17961832
"refs": {
17971833
"ApproveSkillRequest$SkillId": "<p>The unique identifier of the skill.</p>",
17981834
"AssociateSkillWithSkillGroupRequest$SkillId": "<p>The unique identifier of the skill.</p>",
1799-
"AssociateSkillWithUsersRequest$SkillId": "<p>The private skill ID you want to make available to enrolled users.&gt;</p>",
1835+
"AssociateSkillWithUsersRequest$SkillId": "<p>The private skill ID you want to make available to enrolled users.</p>",
18001836
"DeleteRoomSkillParameterRequest$SkillId": "<p>The ID of the skill from which to remove the room skill parameter details.</p>",
18011837
"DeleteSkillAuthorizationRequest$SkillId": "<p>The unique identifier of a skill.</p>",
18021838
"DisassociateSkillFromSkillGroupRequest$SkillId": "<p>The ARN of a skill group to associate to a skill.</p>",
@@ -1806,14 +1842,15 @@
18061842
"PutSkillAuthorizationRequest$SkillId": "<p>The unique identifier of a skill.</p>",
18071843
"RejectSkillRequest$SkillId": "<p>The unique identifier of the skill.</p>",
18081844
"ResolveRoomRequest$SkillId": "<p>The ARN of the skill that was requested. Required.</p>",
1845+
"ShortSkillIdList$member": null,
18091846
"SkillSummary$SkillId": "<p>The ARN of the skill summary.</p>",
18101847
"SkillsStoreSkill$SkillId": "<p>The ARN of the skill.</p>"
18111848
}
18121849
},
18131850
"SkillListMaxResults": {
18141851
"base": null,
18151852
"refs": {
1816-
"ListSkillsRequest$MaxResults": "<p>The maximum number of results to include in the response. If more results exist than the specified <code>MaxResults</code> value, a token is included in the response so that the remaining results can be retrieved.</p>",
1853+
"ListSkillsRequest$MaxResults": "<p>The maximum number of results to include in the response. If more results exist than the specified <code>MaxResults</code> value, a token is included in the response so that the remaining results can be retrieved. Required.</p>",
18171854
"ListSkillsStoreSkillsByCategoryRequest$MaxResults": "<p>The maximum number of skills returned per paginated calls.</p>"
18181855
}
18191856
},

0 commit comments

Comments
 (0)