Skip to content

Commit 4ccb198

Browse files
AWS SDK for RubyNobody
authored andcommitted
Updated service API models for release.
1 parent b35a269 commit 4ccb198

File tree

14 files changed

+664
-43
lines changed

14 files changed

+664
-43
lines changed

CHANGELOG.md

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

4+
* Feature - Aws::IVS - Updated the API, and documentation for Amazon Interactive Video Service.
5+
6+
* Feature - Aws::LakeFormation - Updated the API, and documentation for AWS Lake Formation.
7+
8+
* Feature - Aws::Organizations - Updated the documentation for AWS Organizations.
9+
10+
* Feature - Aws::ServiceCatalog - Updated the API, and documentation for AWS Service Catalog.
11+
12+
* Feature - Aws::StorageGateway - Updated the API, and documentation for AWS Storage Gateway.
13+
414
2.11.569 (2020-08-18)
515
------------------
616

aws-sdk-core/apis/ivs/2020-07-14/api-2.json

Lines changed: 160 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,21 @@
7676
{"shape":"PendingVerification"}
7777
]
7878
},
79+
"DeletePlaybackKeyPair":{
80+
"name":"DeletePlaybackKeyPair",
81+
"http":{
82+
"method":"POST",
83+
"requestUri":"/DeletePlaybackKeyPair"
84+
},
85+
"input":{"shape":"DeletePlaybackKeyPairRequest"},
86+
"output":{"shape":"DeletePlaybackKeyPairResponse"},
87+
"errors":[
88+
{"shape":"ValidationException"},
89+
{"shape":"AccessDeniedException"},
90+
{"shape":"ResourceNotFoundException"},
91+
{"shape":"PendingVerification"}
92+
]
93+
},
7994
"DeleteStreamKey":{
8095
"name":"DeleteStreamKey",
8196
"http":{
@@ -104,6 +119,20 @@
104119
{"shape":"ResourceNotFoundException"}
105120
]
106121
},
122+
"GetPlaybackKeyPair":{
123+
"name":"GetPlaybackKeyPair",
124+
"http":{
125+
"method":"POST",
126+
"requestUri":"/GetPlaybackKeyPair"
127+
},
128+
"input":{"shape":"GetPlaybackKeyPairRequest"},
129+
"output":{"shape":"GetPlaybackKeyPairResponse"},
130+
"errors":[
131+
{"shape":"ValidationException"},
132+
{"shape":"AccessDeniedException"},
133+
{"shape":"ResourceNotFoundException"}
134+
]
135+
},
107136
"GetStream":{
108137
"name":"GetStream",
109138
"http":{
@@ -133,6 +162,22 @@
133162
{"shape":"ResourceNotFoundException"}
134163
]
135164
},
165+
"ImportPlaybackKeyPair":{
166+
"name":"ImportPlaybackKeyPair",
167+
"http":{
168+
"method":"POST",
169+
"requestUri":"/ImportPlaybackKeyPair"
170+
},
171+
"input":{"shape":"ImportPlaybackKeyPairRequest"},
172+
"output":{"shape":"ImportPlaybackKeyPairResponse"},
173+
"errors":[
174+
{"shape":"ValidationException"},
175+
{"shape":"ConflictException"},
176+
{"shape":"AccessDeniedException"},
177+
{"shape":"ServiceQuotaExceededException"},
178+
{"shape":"PendingVerification"}
179+
]
180+
},
136181
"ListChannels":{
137182
"name":"ListChannels",
138183
"http":{
@@ -146,6 +191,19 @@
146191
{"shape":"AccessDeniedException"}
147192
]
148193
},
194+
"ListPlaybackKeyPairs":{
195+
"name":"ListPlaybackKeyPairs",
196+
"http":{
197+
"method":"POST",
198+
"requestUri":"/ListPlaybackKeyPairs"
199+
},
200+
"input":{"shape":"ListPlaybackKeyPairsRequest"},
201+
"output":{"shape":"ListPlaybackKeyPairsResponse"},
202+
"errors":[
203+
{"shape":"ValidationException"},
204+
{"shape":"AccessDeniedException"}
205+
]
206+
},
149207
"ListStreamKeys":{
150208
"name":"ListStreamKeys",
151209
"http":{
@@ -311,6 +369,7 @@
311369
"errors":{"shape":"BatchErrors"}
312370
}
313371
},
372+
"Boolean":{"type":"boolean"},
314373
"Channel":{
315374
"type":"structure",
316375
"members":{
@@ -320,6 +379,7 @@
320379
"type":{"shape":"ChannelType"},
321380
"ingestEndpoint":{"shape":"IngestEndpoint"},
322381
"playbackUrl":{"shape":"PlaybackURL"},
382+
"authorized":{"shape":"IsAuthorized"},
323383
"tags":{"shape":"Tags"}
324384
}
325385
},
@@ -366,6 +426,7 @@
366426
"arn":{"shape":"ChannelArn"},
367427
"name":{"shape":"ChannelName"},
368428
"latencyMode":{"shape":"ChannelLatencyMode"},
429+
"authorized":{"shape":"IsAuthorized"},
369430
"tags":{"shape":"Tags"}
370431
}
371432
},
@@ -394,6 +455,7 @@
394455
"name":{"shape":"ChannelName"},
395456
"latencyMode":{"shape":"ChannelLatencyMode"},
396457
"type":{"shape":"ChannelType"},
458+
"authorized":{"shape":"Boolean"},
397459
"tags":{"shape":"Tags"}
398460
}
399461
},
@@ -425,6 +487,18 @@
425487
"arn":{"shape":"ChannelArn"}
426488
}
427489
},
490+
"DeletePlaybackKeyPairRequest":{
491+
"type":"structure",
492+
"required":["arn"],
493+
"members":{
494+
"arn":{"shape":"PlaybackKeyPairArn"}
495+
}
496+
},
497+
"DeletePlaybackKeyPairResponse":{
498+
"type":"structure",
499+
"members":{
500+
}
501+
},
428502
"DeleteStreamKeyRequest":{
429503
"type":"structure",
430504
"required":["arn"],
@@ -445,6 +519,19 @@
445519
"channel":{"shape":"Channel"}
446520
}
447521
},
522+
"GetPlaybackKeyPairRequest":{
523+
"type":"structure",
524+
"required":["arn"],
525+
"members":{
526+
"arn":{"shape":"PlaybackKeyPairArn"}
527+
}
528+
},
529+
"GetPlaybackKeyPairResponse":{
530+
"type":"structure",
531+
"members":{
532+
"keyPair":{"shape":"PlaybackKeyPair"}
533+
}
534+
},
448535
"GetStreamKeyRequest":{
449536
"type":"structure",
450537
"required":["arn"],
@@ -471,6 +558,21 @@
471558
"stream":{"shape":"Stream"}
472559
}
473560
},
561+
"ImportPlaybackKeyPairRequest":{
562+
"type":"structure",
563+
"required":["publicKeyMaterial"],
564+
"members":{
565+
"publicKeyMaterial":{"shape":"PlaybackPublicKeyMaterial"},
566+
"name":{"shape":"PlaybackKeyPairName"},
567+
"tags":{"shape":"Tags"}
568+
}
569+
},
570+
"ImportPlaybackKeyPairResponse":{
571+
"type":"structure",
572+
"members":{
573+
"keyPair":{"shape":"PlaybackKeyPair"}
574+
}
575+
},
474576
"IngestEndpoint":{"type":"string"},
475577
"InternalServerException":{
476578
"type":"structure",
@@ -480,6 +582,7 @@
480582
"error":{"httpStatusCode":500},
481583
"exception":true
482584
},
585+
"IsAuthorized":{"type":"boolean"},
483586
"ListChannelsRequest":{
484587
"type":"structure",
485588
"members":{
@@ -496,6 +599,21 @@
496599
"nextToken":{"shape":"PaginationToken"}
497600
}
498601
},
602+
"ListPlaybackKeyPairsRequest":{
603+
"type":"structure",
604+
"members":{
605+
"nextToken":{"shape":"PaginationToken"},
606+
"maxResults":{"shape":"MaxPlaybackKeyPairResults"}
607+
}
608+
},
609+
"ListPlaybackKeyPairsResponse":{
610+
"type":"structure",
611+
"required":["keyPairs"],
612+
"members":{
613+
"keyPairs":{"shape":"PlaybackKeyPairList"},
614+
"nextToken":{"shape":"PaginationToken"}
615+
}
616+
},
499617
"ListStreamKeysRequest":{
500618
"type":"structure",
501619
"required":["channelArn"],
@@ -554,6 +672,11 @@
554672
"max":50,
555673
"min":1
556674
},
675+
"MaxPlaybackKeyPairResults":{
676+
"type":"integer",
677+
"max":50,
678+
"min":1
679+
},
557680
"MaxStreamKeyResults":{
558681
"type":"integer",
559682
"max":50,
@@ -582,6 +705,41 @@
582705
"error":{"httpStatusCode":403},
583706
"exception":true
584707
},
708+
"PlaybackKeyPair":{
709+
"type":"structure",
710+
"members":{
711+
"arn":{"shape":"PlaybackKeyPairArn"},
712+
"name":{"shape":"PlaybackKeyPairName"},
713+
"fingerprint":{"shape":"PlaybackKeyPairFingerprint"},
714+
"tags":{"shape":"Tags"}
715+
}
716+
},
717+
"PlaybackKeyPairArn":{
718+
"type":"string",
719+
"max":128,
720+
"min":1,
721+
"pattern":"^arn:aws:[is]vs:[a-z0-9-]+:[0-9]+:playback-key/[a-zA-Z0-9-]+$"
722+
},
723+
"PlaybackKeyPairFingerprint":{"type":"string"},
724+
"PlaybackKeyPairList":{
725+
"type":"list",
726+
"member":{"shape":"PlaybackKeyPairSummary"}
727+
},
728+
"PlaybackKeyPairName":{
729+
"type":"string",
730+
"max":128,
731+
"min":0,
732+
"pattern":"^[a-zA-Z0-9-_]*$"
733+
},
734+
"PlaybackKeyPairSummary":{
735+
"type":"structure",
736+
"members":{
737+
"arn":{"shape":"PlaybackKeyPairArn"},
738+
"name":{"shape":"PlaybackKeyPairName"},
739+
"tags":{"shape":"Tags"}
740+
}
741+
},
742+
"PlaybackPublicKeyMaterial":{"type":"string"},
585743
"PlaybackURL":{"type":"string"},
586744
"PutMetadataRequest":{
587745
"type":"structure",
@@ -799,7 +957,8 @@
799957
"arn":{"shape":"ChannelArn"},
800958
"name":{"shape":"ChannelName"},
801959
"latencyMode":{"shape":"ChannelLatencyMode"},
802-
"type":{"shape":"ChannelType"}
960+
"type":{"shape":"ChannelType"},
961+
"authorized":{"shape":"Boolean"}
803962
}
804963
},
805964
"UpdateChannelResponse":{

0 commit comments

Comments
 (0)