aws-sdk-mediaconnect 1.90.0 → 1.92.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-mediaconnect/client.rb +2596 -69
- data/lib/aws-sdk-mediaconnect/client_api.rb +1466 -0
- data/lib/aws-sdk-mediaconnect/errors.rb +48 -0
- data/lib/aws-sdk-mediaconnect/types.rb +4283 -714
- data/lib/aws-sdk-mediaconnect/waiters.rb +443 -5
- data/lib/aws-sdk-mediaconnect.rb +1 -1
- data/sig/client.rbs +938 -6
- data/sig/errors.rbs +9 -0
- data/sig/types.rbs +1101 -0
- data/sig/waiters.rbs +70 -0
- metadata +3 -3
data/sig/waiters.rbs
CHANGED
|
@@ -38,6 +38,76 @@ module Aws
|
|
|
38
38
|
) -> Client::_DescribeFlowResponseSuccess
|
|
39
39
|
| (Hash[Symbol, untyped]) -> Client::_DescribeFlowResponseSuccess
|
|
40
40
|
end
|
|
41
|
+
|
|
42
|
+
class InputActive
|
|
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
|
+
arn: ::String
|
|
48
|
+
) -> Client::_GetRouterInputResponseSuccess
|
|
49
|
+
| (Hash[Symbol, untyped]) -> Client::_GetRouterInputResponseSuccess
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
class InputDeleted
|
|
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
|
+
arn: ::String
|
|
58
|
+
) -> Client::_GetRouterInputResponseSuccess
|
|
59
|
+
| (Hash[Symbol, untyped]) -> Client::_GetRouterInputResponseSuccess
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
class InputStandby
|
|
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
|
+
arn: ::String
|
|
68
|
+
) -> Client::_GetRouterInputResponseSuccess
|
|
69
|
+
| (Hash[Symbol, untyped]) -> Client::_GetRouterInputResponseSuccess
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
class OutputActive
|
|
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
|
+
arn: ::String
|
|
78
|
+
) -> Client::_GetRouterOutputResponseSuccess
|
|
79
|
+
| (Hash[Symbol, untyped]) -> Client::_GetRouterOutputResponseSuccess
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
class OutputDeleted
|
|
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
|
+
arn: ::String
|
|
88
|
+
) -> Client::_GetRouterOutputResponseSuccess
|
|
89
|
+
| (Hash[Symbol, untyped]) -> Client::_GetRouterOutputResponseSuccess
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
class OutputRouted
|
|
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
|
+
arn: ::String
|
|
98
|
+
) -> Client::_GetRouterOutputResponseSuccess
|
|
99
|
+
| (Hash[Symbol, untyped]) -> Client::_GetRouterOutputResponseSuccess
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
class OutputStandby
|
|
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
|
+
arn: ::String
|
|
108
|
+
) -> Client::_GetRouterOutputResponseSuccess
|
|
109
|
+
| (Hash[Symbol, untyped]) -> Client::_GetRouterOutputResponseSuccess
|
|
110
|
+
end
|
|
41
111
|
end
|
|
42
112
|
end
|
|
43
113
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-mediaconnect
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.92.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.239.1
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.239.1
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|