aws-sdk-kinesisvideo 1.43.0 → 1.44.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kinesisvideo/client.rb +163 -1
- data/lib/aws-sdk-kinesisvideo/client_api.rb +110 -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 +28 -0
- data/lib/aws-sdk-kinesisvideo/errors.rb +16 -0
- data/lib/aws-sdk-kinesisvideo/plugins/endpoints.rb +4 -0
- data/lib/aws-sdk-kinesisvideo/types.rb +358 -332
- data/lib/aws-sdk-kinesisvideo.rb +1 -1
- metadata +2 -2
@@ -67,6 +67,20 @@ module Aws::KinesisVideo
|
|
67
67
|
end
|
68
68
|
end
|
69
69
|
|
70
|
+
class DescribeEdgeConfiguration
|
71
|
+
def self.build(context)
|
72
|
+
unless context.config.regional_endpoint
|
73
|
+
endpoint = context.config.endpoint.to_s
|
74
|
+
end
|
75
|
+
Aws::KinesisVideo::EndpointParameters.new(
|
76
|
+
region: context.config.region,
|
77
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
78
|
+
use_fips: context.config.use_fips_endpoint,
|
79
|
+
endpoint: endpoint,
|
80
|
+
)
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
70
84
|
class DescribeImageGenerationConfiguration
|
71
85
|
def self.build(context)
|
72
86
|
unless context.config.regional_endpoint
|
@@ -207,6 +221,20 @@ module Aws::KinesisVideo
|
|
207
221
|
end
|
208
222
|
end
|
209
223
|
|
224
|
+
class StartEdgeConfigurationUpdate
|
225
|
+
def self.build(context)
|
226
|
+
unless context.config.regional_endpoint
|
227
|
+
endpoint = context.config.endpoint.to_s
|
228
|
+
end
|
229
|
+
Aws::KinesisVideo::EndpointParameters.new(
|
230
|
+
region: context.config.region,
|
231
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
232
|
+
use_fips: context.config.use_fips_endpoint,
|
233
|
+
endpoint: endpoint,
|
234
|
+
)
|
235
|
+
end
|
236
|
+
end
|
237
|
+
|
210
238
|
class TagResource
|
211
239
|
def self.build(context)
|
212
240
|
unless context.config.regional_endpoint
|
@@ -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,6 +64,8 @@ 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)
|
69
71
|
when :describe_notification_configuration
|
@@ -84,6 +86,8 @@ module Aws::KinesisVideo
|
|
84
86
|
Aws::KinesisVideo::Endpoints::ListTagsForResource.build(context)
|
85
87
|
when :list_tags_for_stream
|
86
88
|
Aws::KinesisVideo::Endpoints::ListTagsForStream.build(context)
|
89
|
+
when :start_edge_configuration_update
|
90
|
+
Aws::KinesisVideo::Endpoints::StartEdgeConfigurationUpdate.build(context)
|
87
91
|
when :tag_resource
|
88
92
|
Aws::KinesisVideo::Endpoints::TagResource.build(context)
|
89
93
|
when :tag_stream
|