aws-sdk-medialive 1.113.0 → 1.115.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-medialive/client.rb +22 -1
- data/lib/aws-sdk-medialive/client_api.rb +20 -0
- data/lib/aws-sdk-medialive/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-medialive/types.rb +72 -3
- data/lib/aws-sdk-medialive.rb +1 -1
- data/sig/client.rbs +3423 -0
- data/sig/errors.rbs +44 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +3466 -0
- data/sig/waiters.rbs +123 -0
- metadata +13 -8
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,123 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module MediaLive
|
10
|
+
module Waiters
|
11
|
+
|
12
|
+
class ChannelCreated
|
13
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
14
|
+
| (?Hash[Symbol, untyped]) -> void
|
15
|
+
|
16
|
+
def wait: (
|
17
|
+
channel_id: ::String
|
18
|
+
) -> Client::_DescribeChannelResponseSuccess
|
19
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeChannelResponseSuccess
|
20
|
+
end
|
21
|
+
|
22
|
+
class ChannelDeleted
|
23
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
24
|
+
| (?Hash[Symbol, untyped]) -> void
|
25
|
+
|
26
|
+
def wait: (
|
27
|
+
channel_id: ::String
|
28
|
+
) -> Client::_DescribeChannelResponseSuccess
|
29
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeChannelResponseSuccess
|
30
|
+
end
|
31
|
+
|
32
|
+
class ChannelRunning
|
33
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
34
|
+
| (?Hash[Symbol, untyped]) -> void
|
35
|
+
|
36
|
+
def wait: (
|
37
|
+
channel_id: ::String
|
38
|
+
) -> Client::_DescribeChannelResponseSuccess
|
39
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeChannelResponseSuccess
|
40
|
+
end
|
41
|
+
|
42
|
+
class ChannelStopped
|
43
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
44
|
+
| (?Hash[Symbol, untyped]) -> void
|
45
|
+
|
46
|
+
def wait: (
|
47
|
+
channel_id: ::String
|
48
|
+
) -> Client::_DescribeChannelResponseSuccess
|
49
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeChannelResponseSuccess
|
50
|
+
end
|
51
|
+
|
52
|
+
class InputAttached
|
53
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
54
|
+
| (?Hash[Symbol, untyped]) -> void
|
55
|
+
|
56
|
+
def wait: (
|
57
|
+
input_id: ::String
|
58
|
+
) -> Client::_DescribeInputResponseSuccess
|
59
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeInputResponseSuccess
|
60
|
+
end
|
61
|
+
|
62
|
+
class InputDeleted
|
63
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
64
|
+
| (?Hash[Symbol, untyped]) -> void
|
65
|
+
|
66
|
+
def wait: (
|
67
|
+
input_id: ::String
|
68
|
+
) -> Client::_DescribeInputResponseSuccess
|
69
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeInputResponseSuccess
|
70
|
+
end
|
71
|
+
|
72
|
+
class InputDetached
|
73
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
74
|
+
| (?Hash[Symbol, untyped]) -> void
|
75
|
+
|
76
|
+
def wait: (
|
77
|
+
input_id: ::String
|
78
|
+
) -> Client::_DescribeInputResponseSuccess
|
79
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeInputResponseSuccess
|
80
|
+
end
|
81
|
+
|
82
|
+
class MultiplexCreated
|
83
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
84
|
+
| (?Hash[Symbol, untyped]) -> void
|
85
|
+
|
86
|
+
def wait: (
|
87
|
+
multiplex_id: ::String
|
88
|
+
) -> Client::_DescribeMultiplexResponseSuccess
|
89
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeMultiplexResponseSuccess
|
90
|
+
end
|
91
|
+
|
92
|
+
class MultiplexDeleted
|
93
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
94
|
+
| (?Hash[Symbol, untyped]) -> void
|
95
|
+
|
96
|
+
def wait: (
|
97
|
+
multiplex_id: ::String
|
98
|
+
) -> Client::_DescribeMultiplexResponseSuccess
|
99
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeMultiplexResponseSuccess
|
100
|
+
end
|
101
|
+
|
102
|
+
class MultiplexRunning
|
103
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
104
|
+
| (?Hash[Symbol, untyped]) -> void
|
105
|
+
|
106
|
+
def wait: (
|
107
|
+
multiplex_id: ::String
|
108
|
+
) -> Client::_DescribeMultiplexResponseSuccess
|
109
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeMultiplexResponseSuccess
|
110
|
+
end
|
111
|
+
|
112
|
+
class MultiplexStopped
|
113
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
114
|
+
| (?Hash[Symbol, untyped]) -> void
|
115
|
+
|
116
|
+
def wait: (
|
117
|
+
multiplex_id: ::String
|
118
|
+
) -> Client::_DescribeMultiplexResponseSuccess
|
119
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeMultiplexResponseSuccess
|
120
|
+
end
|
121
|
+
end
|
122
|
+
end
|
123
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-medialive
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.115.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.191.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.191.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -67,13 +67,18 @@ files:
|
|
67
67
|
- lib/aws-sdk-medialive/resource.rb
|
68
68
|
- lib/aws-sdk-medialive/types.rb
|
69
69
|
- lib/aws-sdk-medialive/waiters.rb
|
70
|
+
- sig/client.rbs
|
71
|
+
- sig/errors.rbs
|
72
|
+
- sig/resource.rbs
|
73
|
+
- sig/types.rbs
|
74
|
+
- sig/waiters.rbs
|
70
75
|
homepage: https://github.com/aws/aws-sdk-ruby
|
71
76
|
licenses:
|
72
77
|
- Apache-2.0
|
73
78
|
metadata:
|
74
79
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-medialive
|
75
80
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-medialive/CHANGELOG.md
|
76
|
-
post_install_message:
|
81
|
+
post_install_message:
|
77
82
|
rdoc_options: []
|
78
83
|
require_paths:
|
79
84
|
- lib
|
@@ -88,8 +93,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
88
93
|
- !ruby/object:Gem::Version
|
89
94
|
version: '0'
|
90
95
|
requirements: []
|
91
|
-
rubygems_version: 3.
|
92
|
-
signing_key:
|
96
|
+
rubygems_version: 3.4.10
|
97
|
+
signing_key:
|
93
98
|
specification_version: 4
|
94
99
|
summary: AWS SDK for Ruby - MediaLive
|
95
100
|
test_files: []
|