aws-sdk-osis 1.38.0 → 1.40.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-osis/client.rb +289 -17
- data/lib/aws-sdk-osis/client_api.rb +227 -0
- data/lib/aws-sdk-osis/types.rb +361 -19
- data/lib/aws-sdk-osis.rb +1 -1
- data/sig/client.rbs +93 -0
- data/sig/types.rbs +112 -0
- metadata +1 -1
data/sig/types.rbs
CHANGED
@@ -40,6 +40,20 @@ module Aws::OSIS
|
|
40
40
|
class ConflictException < Aws::EmptyStructure
|
41
41
|
end
|
42
42
|
|
43
|
+
class CreatePipelineEndpointRequest
|
44
|
+
attr_accessor pipeline_arn: ::String
|
45
|
+
attr_accessor vpc_options: Types::PipelineEndpointVpcOptions
|
46
|
+
SENSITIVE: []
|
47
|
+
end
|
48
|
+
|
49
|
+
class CreatePipelineEndpointResponse
|
50
|
+
attr_accessor pipeline_arn: ::String
|
51
|
+
attr_accessor endpoint_id: ::String
|
52
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "CREATE_FAILED" | "DELETING" | "REVOKING" | "REVOKED")
|
53
|
+
attr_accessor vpc_id: ::String
|
54
|
+
SENSITIVE: []
|
55
|
+
end
|
56
|
+
|
43
57
|
class CreatePipelineRequest
|
44
58
|
attr_accessor pipeline_name: ::String
|
45
59
|
attr_accessor min_units: ::Integer
|
@@ -59,6 +73,14 @@ module Aws::OSIS
|
|
59
73
|
SENSITIVE: []
|
60
74
|
end
|
61
75
|
|
76
|
+
class DeletePipelineEndpointRequest
|
77
|
+
attr_accessor endpoint_id: ::String
|
78
|
+
SENSITIVE: []
|
79
|
+
end
|
80
|
+
|
81
|
+
class DeletePipelineEndpointResponse < Aws::EmptyStructure
|
82
|
+
end
|
83
|
+
|
62
84
|
class DeletePipelineRequest
|
63
85
|
attr_accessor pipeline_name: ::String
|
64
86
|
SENSITIVE: []
|
@@ -67,6 +89,14 @@ module Aws::OSIS
|
|
67
89
|
class DeletePipelineResponse < Aws::EmptyStructure
|
68
90
|
end
|
69
91
|
|
92
|
+
class DeleteResourcePolicyRequest
|
93
|
+
attr_accessor resource_arn: ::String
|
94
|
+
SENSITIVE: []
|
95
|
+
end
|
96
|
+
|
97
|
+
class DeleteResourcePolicyResponse < Aws::EmptyStructure
|
98
|
+
end
|
99
|
+
|
70
100
|
class DisabledOperationException < Aws::EmptyStructure
|
71
101
|
end
|
72
102
|
|
@@ -107,6 +137,17 @@ module Aws::OSIS
|
|
107
137
|
SENSITIVE: []
|
108
138
|
end
|
109
139
|
|
140
|
+
class GetResourcePolicyRequest
|
141
|
+
attr_accessor resource_arn: ::String
|
142
|
+
SENSITIVE: []
|
143
|
+
end
|
144
|
+
|
145
|
+
class GetResourcePolicyResponse
|
146
|
+
attr_accessor resource_arn: ::String
|
147
|
+
attr_accessor policy: ::String
|
148
|
+
SENSITIVE: []
|
149
|
+
end
|
150
|
+
|
110
151
|
class InternalException < Aws::EmptyStructure
|
111
152
|
end
|
112
153
|
|
@@ -124,6 +165,30 @@ module Aws::OSIS
|
|
124
165
|
SENSITIVE: []
|
125
166
|
end
|
126
167
|
|
168
|
+
class ListPipelineEndpointConnectionsRequest
|
169
|
+
attr_accessor max_results: ::Integer
|
170
|
+
attr_accessor next_token: ::String
|
171
|
+
SENSITIVE: []
|
172
|
+
end
|
173
|
+
|
174
|
+
class ListPipelineEndpointConnectionsResponse
|
175
|
+
attr_accessor next_token: ::String
|
176
|
+
attr_accessor pipeline_endpoint_connections: ::Array[Types::PipelineEndpointConnection]
|
177
|
+
SENSITIVE: []
|
178
|
+
end
|
179
|
+
|
180
|
+
class ListPipelineEndpointsRequest
|
181
|
+
attr_accessor max_results: ::Integer
|
182
|
+
attr_accessor next_token: ::String
|
183
|
+
SENSITIVE: []
|
184
|
+
end
|
185
|
+
|
186
|
+
class ListPipelineEndpointsResponse
|
187
|
+
attr_accessor next_token: ::String
|
188
|
+
attr_accessor pipeline_endpoints: ::Array[Types::PipelineEndpoint]
|
189
|
+
SENSITIVE: []
|
190
|
+
end
|
191
|
+
|
127
192
|
class ListPipelinesRequest
|
128
193
|
attr_accessor max_results: ::Integer
|
129
194
|
attr_accessor next_token: ::String
|
@@ -200,6 +265,30 @@ module Aws::OSIS
|
|
200
265
|
SENSITIVE: []
|
201
266
|
end
|
202
267
|
|
268
|
+
class PipelineEndpoint
|
269
|
+
attr_accessor pipeline_arn: ::String
|
270
|
+
attr_accessor endpoint_id: ::String
|
271
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "CREATE_FAILED" | "DELETING" | "REVOKING" | "REVOKED")
|
272
|
+
attr_accessor vpc_id: ::String
|
273
|
+
attr_accessor vpc_options: Types::PipelineEndpointVpcOptions
|
274
|
+
attr_accessor ingest_endpoint_url: ::String
|
275
|
+
SENSITIVE: []
|
276
|
+
end
|
277
|
+
|
278
|
+
class PipelineEndpointConnection
|
279
|
+
attr_accessor pipeline_arn: ::String
|
280
|
+
attr_accessor endpoint_id: ::String
|
281
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "CREATE_FAILED" | "DELETING" | "REVOKING" | "REVOKED")
|
282
|
+
attr_accessor vpc_endpoint_owner: ::String
|
283
|
+
SENSITIVE: []
|
284
|
+
end
|
285
|
+
|
286
|
+
class PipelineEndpointVpcOptions
|
287
|
+
attr_accessor subnet_ids: ::Array[::String]
|
288
|
+
attr_accessor security_group_ids: ::Array[::String]
|
289
|
+
SENSITIVE: []
|
290
|
+
end
|
291
|
+
|
203
292
|
class PipelineStatusReason
|
204
293
|
attr_accessor description: ::String
|
205
294
|
SENSITIVE: []
|
@@ -219,12 +308,35 @@ module Aws::OSIS
|
|
219
308
|
SENSITIVE: []
|
220
309
|
end
|
221
310
|
|
311
|
+
class PutResourcePolicyRequest
|
312
|
+
attr_accessor resource_arn: ::String
|
313
|
+
attr_accessor policy: ::String
|
314
|
+
SENSITIVE: []
|
315
|
+
end
|
316
|
+
|
317
|
+
class PutResourcePolicyResponse
|
318
|
+
attr_accessor resource_arn: ::String
|
319
|
+
attr_accessor policy: ::String
|
320
|
+
SENSITIVE: []
|
321
|
+
end
|
322
|
+
|
222
323
|
class ResourceAlreadyExistsException < Aws::EmptyStructure
|
223
324
|
end
|
224
325
|
|
225
326
|
class ResourceNotFoundException < Aws::EmptyStructure
|
226
327
|
end
|
227
328
|
|
329
|
+
class RevokePipelineEndpointConnectionsRequest
|
330
|
+
attr_accessor pipeline_arn: ::String
|
331
|
+
attr_accessor endpoint_ids: ::Array[::String]
|
332
|
+
SENSITIVE: []
|
333
|
+
end
|
334
|
+
|
335
|
+
class RevokePipelineEndpointConnectionsResponse
|
336
|
+
attr_accessor pipeline_arn: ::String
|
337
|
+
SENSITIVE: []
|
338
|
+
end
|
339
|
+
|
228
340
|
class ServiceVpcEndpoint
|
229
341
|
attr_accessor service_name: ("OPENSEARCH_SERVERLESS")
|
230
342
|
attr_accessor vpc_endpoint_id: ::String
|