aws-sdk-kinesisvideo 1.43.0 → 1.45.0
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/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kinesisvideo/client.rb +285 -3
- data/lib/aws-sdk-kinesisvideo/client_api.rb +199 -0
- data/lib/aws-sdk-kinesisvideo/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-kinesisvideo/endpoint_provider.rb +75 -77
- data/lib/aws-sdk-kinesisvideo/endpoints.rb +70 -0
- data/lib/aws-sdk-kinesisvideo/errors.rb +16 -0
- data/lib/aws-sdk-kinesisvideo/plugins/endpoints.rb +10 -0
- data/lib/aws-sdk-kinesisvideo/types.rb +512 -336
- data/lib/aws-sdk-kinesisvideo.rb +1 -1
- metadata +2 -2
@@ -39,6 +39,7 @@ module Aws::KinesisVideo
|
|
39
39
|
# * {NotAuthorizedException}
|
40
40
|
# * {ResourceInUseException}
|
41
41
|
# * {ResourceNotFoundException}
|
42
|
+
# * {StreamEdgeConfigurationNotFoundException}
|
42
43
|
# * {TagsPerResourceExceededLimitException}
|
43
44
|
# * {VersionMismatchException}
|
44
45
|
#
|
@@ -228,6 +229,21 @@ module Aws::KinesisVideo
|
|
228
229
|
end
|
229
230
|
end
|
230
231
|
|
232
|
+
class StreamEdgeConfigurationNotFoundException < ServiceError
|
233
|
+
|
234
|
+
# @param [Seahorse::Client::RequestContext] context
|
235
|
+
# @param [String] message
|
236
|
+
# @param [Aws::KinesisVideo::Types::StreamEdgeConfigurationNotFoundException] data
|
237
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
238
|
+
super(context, message, data)
|
239
|
+
end
|
240
|
+
|
241
|
+
# @return [String]
|
242
|
+
def message
|
243
|
+
@message || @data[:message]
|
244
|
+
end
|
245
|
+
end
|
246
|
+
|
231
247
|
class TagsPerResourceExceededLimitException < ServiceError
|
232
248
|
|
233
249
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -64,8 +64,14 @@ module Aws::KinesisVideo
|
|
64
64
|
Aws::KinesisVideo::Endpoints::DeleteSignalingChannel.build(context)
|
65
65
|
when :delete_stream
|
66
66
|
Aws::KinesisVideo::Endpoints::DeleteStream.build(context)
|
67
|
+
when :describe_edge_configuration
|
68
|
+
Aws::KinesisVideo::Endpoints::DescribeEdgeConfiguration.build(context)
|
67
69
|
when :describe_image_generation_configuration
|
68
70
|
Aws::KinesisVideo::Endpoints::DescribeImageGenerationConfiguration.build(context)
|
71
|
+
when :describe_mapped_resource_configuration
|
72
|
+
Aws::KinesisVideo::Endpoints::DescribeMappedResourceConfiguration.build(context)
|
73
|
+
when :describe_media_storage_configuration
|
74
|
+
Aws::KinesisVideo::Endpoints::DescribeMediaStorageConfiguration.build(context)
|
69
75
|
when :describe_notification_configuration
|
70
76
|
Aws::KinesisVideo::Endpoints::DescribeNotificationConfiguration.build(context)
|
71
77
|
when :describe_signaling_channel
|
@@ -84,6 +90,8 @@ module Aws::KinesisVideo
|
|
84
90
|
Aws::KinesisVideo::Endpoints::ListTagsForResource.build(context)
|
85
91
|
when :list_tags_for_stream
|
86
92
|
Aws::KinesisVideo::Endpoints::ListTagsForStream.build(context)
|
93
|
+
when :start_edge_configuration_update
|
94
|
+
Aws::KinesisVideo::Endpoints::StartEdgeConfigurationUpdate.build(context)
|
87
95
|
when :tag_resource
|
88
96
|
Aws::KinesisVideo::Endpoints::TagResource.build(context)
|
89
97
|
when :tag_stream
|
@@ -96,6 +104,8 @@ module Aws::KinesisVideo
|
|
96
104
|
Aws::KinesisVideo::Endpoints::UpdateDataRetention.build(context)
|
97
105
|
when :update_image_generation_configuration
|
98
106
|
Aws::KinesisVideo::Endpoints::UpdateImageGenerationConfiguration.build(context)
|
107
|
+
when :update_media_storage_configuration
|
108
|
+
Aws::KinesisVideo::Endpoints::UpdateMediaStorageConfiguration.build(context)
|
99
109
|
when :update_notification_configuration
|
100
110
|
Aws::KinesisVideo::Endpoints::UpdateNotificationConfiguration.build(context)
|
101
111
|
when :update_signaling_channel
|