Skip to content

Commit 823dab5

Browse files
author
AWS
committed
Alexa For Business Update: Adding support for optional tags in CreateBusinessReportSchedule, CreateProfile and CreateSkillGroup APIs
1 parent 9e337a3 commit 823dab5

File tree

2 files changed

+30
-4
lines changed

2 files changed

+30
-4
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "feature",
3+
"category": "Alexa For Business",
4+
"description": "Adding support for optional tags in CreateBusinessReportSchedule, CreateProfile and CreateSkillGroup APIs"
5+
}

services/alexaforbusiness/src/main/resources/codegen-resources/service-2.json

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1516,6 +1516,7 @@
15161516
},
15171517
"BusinessReportContentRange":{
15181518
"type":"structure",
1519+
"required":["Interval"],
15191520
"members":{
15201521
"Interval":{
15211522
"shape":"BusinessReportInterval",
@@ -1917,6 +1918,10 @@
19171918
"shape":"ClientRequestToken",
19181919
"documentation":"<p>The client request token.</p>",
19191920
"idempotencyToken":true
1921+
},
1922+
"Tags":{
1923+
"shape":"TagList",
1924+
"documentation":"<p>The tags for the business report schedule.</p>"
19201925
}
19211926
}
19221927
},
@@ -2227,6 +2232,10 @@
22272232
"MeetingRoomConfiguration":{
22282233
"shape":"CreateMeetingRoomConfiguration",
22292234
"documentation":"<p>The meeting room settings of a room profile.</p>"
2235+
},
2236+
"Tags":{
2237+
"shape":"TagList",
2238+
"documentation":"<p>The tags for the profile.</p>"
22302239
}
22312240
}
22322241
},
@@ -2271,7 +2280,7 @@
22712280
},
22722281
"ProfileArn":{
22732282
"shape":"Arn",
2274-
"documentation":"<p>The profile ARN for the room.</p>"
2283+
"documentation":"<p>The profile ARN for the room. This is required.</p>"
22752284
},
22762285
"ProviderCalendarId":{
22772286
"shape":"ProviderCalendarId",
@@ -2313,6 +2322,10 @@
23132322
"shape":"ClientRequestToken",
23142323
"documentation":"<p>A unique, user-specified identifier for this request that ensures idempotency. </p>",
23152324
"idempotencyToken":true
2325+
},
2326+
"Tags":{
2327+
"shape":"TagList",
2328+
"documentation":"<p>The tags for the skill group.</p>"
23162329
}
23172330
}
23182331
},
@@ -2726,7 +2739,7 @@
27262739
"documentation":"<p>The room ARN associated with a device.</p>"
27272740
},
27282741
"RoomName":{
2729-
"shape":"RoomName",
2742+
"shape":"DeviceRoomName",
27302743
"documentation":"<p>The name of the room associated with a device.</p>"
27312744
},
27322745
"DeviceStatusInfo":{
@@ -2813,6 +2826,12 @@
28132826
"documentation":"<p>The request failed because this device is no longer registered and therefore no longer managed by this account.</p>",
28142827
"exception":true
28152828
},
2829+
"DeviceRoomName":{
2830+
"type":"string",
2831+
"max":100,
2832+
"min":1,
2833+
"pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u007E\\u0085\\u00A0-\\uD7FF\\uE000-\\uFFFD\\u10000-\\u10FFFF]*"
2834+
},
28162835
"DeviceSerialNumber":{
28172836
"type":"string",
28182837
"pattern":"[a-zA-Z0-9]{1,200}"
@@ -2862,7 +2881,9 @@
28622881
"INVALID_CERTIFICATE_AUTHORITY",
28632882
"NETWORK_PROFILE_NOT_FOUND",
28642883
"INVALID_PASSWORD_STATE",
2865-
"PASSWORD_NOT_FOUND"
2884+
"PASSWORD_NOT_FOUND",
2885+
"PASSWORD_MANAGER_ACCESS_DENIED",
2886+
"CERTIFICATE_AUTHORITY_ACCESS_DENIED"
28662887
]
28672888
},
28682889
"DeviceStatusDetails":{
@@ -5098,7 +5119,7 @@
50985119
},
50995120
"Reviews":{
51005121
"shape":"Reviews",
5101-
"documentation":"<p>The list of reviews for the skill, including Key and Value pair.</p>"
5122+
"documentation":"<p> <i>This member has been deprecated.</i> </p> <p>The list of reviews for the skill, including Key and Value pair.</p>"
51025123
},
51035124
"DeveloperInfo":{
51045125
"shape":"DeveloperInfo",

0 commit comments

Comments
 (0)