aws-sdk-elementalinference 1.0.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.
data/sig/types.rbs ADDED
@@ -0,0 +1,236 @@
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::ElementalInference
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class AssociateFeedRequest
17
+ attr_accessor id: ::String
18
+ attr_accessor associated_resource_name: ::String
19
+ attr_accessor outputs: ::Array[Types::CreateOutput]
20
+ attr_accessor dry_run: bool
21
+ SENSITIVE: []
22
+ end
23
+
24
+ class AssociateFeedResponse
25
+ attr_accessor arn: ::String
26
+ attr_accessor id: ::String
27
+ SENSITIVE: []
28
+ end
29
+
30
+ class ClippingConfig
31
+ attr_accessor callback_metadata: ::String
32
+ SENSITIVE: []
33
+ end
34
+
35
+ class ConflictException
36
+ attr_accessor message: ::String
37
+ SENSITIVE: []
38
+ end
39
+
40
+ class CreateFeedRequest
41
+ attr_accessor name: ::String
42
+ attr_accessor outputs: ::Array[Types::CreateOutput]
43
+ attr_accessor tags: ::Hash[::String, ::String]
44
+ SENSITIVE: []
45
+ end
46
+
47
+ class CreateFeedResponse
48
+ attr_accessor arn: ::String
49
+ attr_accessor name: ::String
50
+ attr_accessor id: ::String
51
+ attr_accessor data_endpoints: ::Array[::String]
52
+ attr_accessor outputs: ::Array[Types::GetOutput]
53
+ attr_accessor status: ("CREATING" | "AVAILABLE" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "ARCHIVED")
54
+ attr_accessor association: Types::FeedAssociation
55
+ attr_accessor tags: ::Hash[::String, ::String]
56
+ SENSITIVE: []
57
+ end
58
+
59
+ class CreateOutput
60
+ attr_accessor name: ::String
61
+ attr_accessor output_config: Types::OutputConfig
62
+ attr_accessor status: ("ENABLED" | "DISABLED")
63
+ attr_accessor description: ::String
64
+ SENSITIVE: []
65
+ end
66
+
67
+ class CroppingConfig < Aws::EmptyStructure
68
+ end
69
+
70
+ class DeleteFeedRequest
71
+ attr_accessor id: ::String
72
+ SENSITIVE: []
73
+ end
74
+
75
+ class DeleteFeedResponse
76
+ attr_accessor arn: ::String
77
+ attr_accessor id: ::String
78
+ attr_accessor status: ("CREATING" | "AVAILABLE" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "ARCHIVED")
79
+ SENSITIVE: []
80
+ end
81
+
82
+ class DisassociateFeedRequest
83
+ attr_accessor id: ::String
84
+ attr_accessor associated_resource_name: ::String
85
+ attr_accessor dry_run: bool
86
+ SENSITIVE: []
87
+ end
88
+
89
+ class DisassociateFeedResponse
90
+ attr_accessor arn: ::String
91
+ attr_accessor id: ::String
92
+ SENSITIVE: []
93
+ end
94
+
95
+ class FeedAssociation
96
+ attr_accessor associated_resource_name: ::String
97
+ SENSITIVE: []
98
+ end
99
+
100
+ class FeedSummary
101
+ attr_accessor arn: ::String
102
+ attr_accessor id: ::String
103
+ attr_accessor name: ::String
104
+ attr_accessor association: Types::FeedAssociation
105
+ attr_accessor status: ("CREATING" | "AVAILABLE" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "ARCHIVED")
106
+ SENSITIVE: []
107
+ end
108
+
109
+ class GetFeedRequest
110
+ attr_accessor id: ::String
111
+ SENSITIVE: []
112
+ end
113
+
114
+ class GetFeedResponse
115
+ attr_accessor arn: ::String
116
+ attr_accessor name: ::String
117
+ attr_accessor id: ::String
118
+ attr_accessor data_endpoints: ::Array[::String]
119
+ attr_accessor outputs: ::Array[Types::GetOutput]
120
+ attr_accessor status: ("CREATING" | "AVAILABLE" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "ARCHIVED")
121
+ attr_accessor association: Types::FeedAssociation
122
+ attr_accessor tags: ::Hash[::String, ::String]
123
+ SENSITIVE: []
124
+ end
125
+
126
+ class GetOutput
127
+ attr_accessor name: ::String
128
+ attr_accessor output_config: Types::OutputConfig
129
+ attr_accessor status: ("ENABLED" | "DISABLED")
130
+ attr_accessor description: ::String
131
+ attr_accessor from_association: bool
132
+ SENSITIVE: []
133
+ end
134
+
135
+ class InternalServerErrorException
136
+ attr_accessor message: ::String
137
+ SENSITIVE: []
138
+ end
139
+
140
+ class ListFeedsRequest
141
+ attr_accessor max_results: ::Integer
142
+ attr_accessor next_token: ::String
143
+ SENSITIVE: []
144
+ end
145
+
146
+ class ListFeedsResponse
147
+ attr_accessor feeds: ::Array[Types::FeedSummary]
148
+ attr_accessor next_token: ::String
149
+ SENSITIVE: []
150
+ end
151
+
152
+ class ListTagsForResourceRequest
153
+ attr_accessor resource_arn: ::String
154
+ SENSITIVE: []
155
+ end
156
+
157
+ class ListTagsForResourceResponse
158
+ attr_accessor tags: ::Hash[::String, ::String]
159
+ SENSITIVE: []
160
+ end
161
+
162
+ class OutputConfig
163
+ attr_accessor cropping: Types::CroppingConfig
164
+ attr_accessor clipping: Types::ClippingConfig
165
+ attr_accessor unknown: untyped
166
+ SENSITIVE: []
167
+
168
+ class Cropping < OutputConfig
169
+ end
170
+ class Clipping < OutputConfig
171
+ end
172
+ class Unknown < OutputConfig
173
+ end
174
+ end
175
+
176
+ class ResourceNotFoundException
177
+ attr_accessor message: ::String
178
+ SENSITIVE: []
179
+ end
180
+
181
+ class ServiceQuotaExceededException
182
+ attr_accessor message: ::String
183
+ SENSITIVE: []
184
+ end
185
+
186
+ class TagResourceRequest
187
+ attr_accessor resource_arn: ::String
188
+ attr_accessor tags: ::Hash[::String, ::String]
189
+ SENSITIVE: []
190
+ end
191
+
192
+ class TooManyRequestException
193
+ attr_accessor message: ::String
194
+ SENSITIVE: []
195
+ end
196
+
197
+ class UntagResourceRequest
198
+ attr_accessor resource_arn: ::String
199
+ attr_accessor tag_keys: ::Array[::String]
200
+ SENSITIVE: []
201
+ end
202
+
203
+ class UpdateFeedRequest
204
+ attr_accessor name: ::String
205
+ attr_accessor id: ::String
206
+ attr_accessor outputs: ::Array[Types::UpdateOutput]
207
+ SENSITIVE: []
208
+ end
209
+
210
+ class UpdateFeedResponse
211
+ attr_accessor arn: ::String
212
+ attr_accessor name: ::String
213
+ attr_accessor id: ::String
214
+ attr_accessor data_endpoints: ::Array[::String]
215
+ attr_accessor outputs: ::Array[Types::GetOutput]
216
+ attr_accessor status: ("CREATING" | "AVAILABLE" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "ARCHIVED")
217
+ attr_accessor association: Types::FeedAssociation
218
+ attr_accessor tags: ::Hash[::String, ::String]
219
+ SENSITIVE: []
220
+ end
221
+
222
+ class UpdateOutput
223
+ attr_accessor name: ::String
224
+ attr_accessor output_config: Types::OutputConfig
225
+ attr_accessor status: ("ENABLED" | "DISABLED")
226
+ attr_accessor description: ::String
227
+ attr_accessor from_association: bool
228
+ SENSITIVE: []
229
+ end
230
+
231
+ class ValidationException
232
+ attr_accessor message: ::String
233
+ SENSITIVE: []
234
+ end
235
+ end
236
+ end
data/sig/waiters.rbs ADDED
@@ -0,0 +1,23 @@
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 ElementalInference
10
+ module Waiters
11
+
12
+ class FeedDeleted
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
+ id: ::String
18
+ ) -> Client::_GetFeedResponseSuccess
19
+ | (Hash[Symbol, untyped]) -> Client::_GetFeedResponseSuccess
20
+ end
21
+ end
22
+ end
23
+ end
metadata ADDED
@@ -0,0 +1,97 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: aws-sdk-elementalinference
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Amazon Web Services
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: aws-sdk-core
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: '3'
19
+ - - ">="
20
+ - !ruby/object:Gem::Version
21
+ version: 3.241.4
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - "~>"
27
+ - !ruby/object:Gem::Version
28
+ version: '3'
29
+ - - ">="
30
+ - !ruby/object:Gem::Version
31
+ version: 3.241.4
32
+ - !ruby/object:Gem::Dependency
33
+ name: aws-sigv4
34
+ requirement: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - "~>"
37
+ - !ruby/object:Gem::Version
38
+ version: '1.5'
39
+ type: :runtime
40
+ prerelease: false
41
+ version_requirements: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - "~>"
44
+ - !ruby/object:Gem::Version
45
+ version: '1.5'
46
+ description: Official AWS Ruby gem for AWS Elemental Inference. This gem is part of
47
+ the AWS SDK for Ruby.
48
+ email:
49
+ - aws-dr-rubygems@amazon.com
50
+ executables: []
51
+ extensions: []
52
+ extra_rdoc_files: []
53
+ files:
54
+ - CHANGELOG.md
55
+ - LICENSE.txt
56
+ - VERSION
57
+ - lib/aws-sdk-elementalinference.rb
58
+ - lib/aws-sdk-elementalinference/client.rb
59
+ - lib/aws-sdk-elementalinference/client_api.rb
60
+ - lib/aws-sdk-elementalinference/customizations.rb
61
+ - lib/aws-sdk-elementalinference/endpoint_parameters.rb
62
+ - lib/aws-sdk-elementalinference/endpoint_provider.rb
63
+ - lib/aws-sdk-elementalinference/endpoints.rb
64
+ - lib/aws-sdk-elementalinference/errors.rb
65
+ - lib/aws-sdk-elementalinference/plugins/endpoints.rb
66
+ - lib/aws-sdk-elementalinference/resource.rb
67
+ - lib/aws-sdk-elementalinference/types.rb
68
+ - lib/aws-sdk-elementalinference/waiters.rb
69
+ - sig/client.rbs
70
+ - sig/errors.rbs
71
+ - sig/resource.rbs
72
+ - sig/types.rbs
73
+ - sig/waiters.rbs
74
+ homepage: https://github.com/aws/aws-sdk-ruby
75
+ licenses:
76
+ - Apache-2.0
77
+ metadata:
78
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-elementalinference
79
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-elementalinference/CHANGELOG.md
80
+ rdoc_options: []
81
+ require_paths:
82
+ - lib
83
+ required_ruby_version: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ version: '2.7'
88
+ required_rubygems_version: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: '0'
93
+ requirements: []
94
+ rubygems_version: 3.6.7
95
+ specification_version: 4
96
+ summary: AWS SDK for Ruby - AWS Elemental Inference
97
+ test_files: []