aws-sdk-networkflowmonitor 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.
- checksums.yaml +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-networkflowmonitor/client.rb +1862 -0
- data/lib/aws-sdk-networkflowmonitor/client_api.rb +897 -0
- data/lib/aws-sdk-networkflowmonitor/customizations.rb +0 -0
- data/lib/aws-sdk-networkflowmonitor/endpoint_parameters.rb +59 -0
- data/lib/aws-sdk-networkflowmonitor/endpoint_provider.rb +35 -0
- data/lib/aws-sdk-networkflowmonitor/endpoints.rb +20 -0
- data/lib/aws-sdk-networkflowmonitor/errors.rb +162 -0
- data/lib/aws-sdk-networkflowmonitor/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-networkflowmonitor/resource.rb +26 -0
- data/lib/aws-sdk-networkflowmonitor/types.rb +1825 -0
- data/lib/aws-sdk-networkflowmonitor/waiters.rb +15 -0
- data/lib/aws-sdk-networkflowmonitor.rb +62 -0
- data/sig/client.rbs +469 -0
- data/sig/errors.rbs +37 -0
- data/sig/resource.rbs +82 -0
- data/sig/types.rbs +484 -0
- data/sig/waiters.rbs +13 -0
- metadata +100 -0
data/sig/resource.rbs
ADDED
@@ -0,0 +1,82 @@
|
|
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 NetworkFlowMonitor
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFlowMonitor/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFlowMonitor/Resource.html#initialize-instance_method
|
13
|
+
def initialize: (
|
14
|
+
?client: Client,
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?account_id: String,
|
19
|
+
?active_endpoint_cache: bool,
|
20
|
+
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?client_side_monitoring: bool,
|
22
|
+
?client_side_monitoring_client_id: String,
|
23
|
+
?client_side_monitoring_host: String,
|
24
|
+
?client_side_monitoring_port: Integer,
|
25
|
+
?client_side_monitoring_publisher: untyped,
|
26
|
+
?convert_params: bool,
|
27
|
+
?correct_clock_skew: bool,
|
28
|
+
?defaults_mode: String,
|
29
|
+
?disable_host_prefix_injection: bool,
|
30
|
+
?disable_request_compression: bool,
|
31
|
+
?endpoint: String,
|
32
|
+
?endpoint_cache_max_entries: Integer,
|
33
|
+
?endpoint_cache_max_threads: Integer,
|
34
|
+
?endpoint_cache_poll_interval: Integer,
|
35
|
+
?endpoint_discovery: bool,
|
36
|
+
?ignore_configured_endpoint_urls: bool,
|
37
|
+
?log_formatter: untyped,
|
38
|
+
?log_level: Symbol,
|
39
|
+
?logger: untyped,
|
40
|
+
?max_attempts: Integer,
|
41
|
+
?profile: String,
|
42
|
+
?request_min_compression_size_bytes: Integer,
|
43
|
+
?retry_backoff: Proc,
|
44
|
+
?retry_base_delay: Float,
|
45
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
46
|
+
?retry_limit: Integer,
|
47
|
+
?retry_max_delay: Integer,
|
48
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
49
|
+
?sdk_ua_app_id: String,
|
50
|
+
?secret_access_key: String,
|
51
|
+
?session_token: String,
|
52
|
+
?sigv4a_signing_region_set: Array[String],
|
53
|
+
?stub_responses: untyped,
|
54
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
55
|
+
?token_provider: untyped,
|
56
|
+
?use_dualstack_endpoint: bool,
|
57
|
+
?use_fips_endpoint: bool,
|
58
|
+
?validate_params: bool,
|
59
|
+
?endpoint_provider: untyped,
|
60
|
+
?http_proxy: String,
|
61
|
+
?http_open_timeout: (Float | Integer),
|
62
|
+
?http_read_timeout: (Float | Integer),
|
63
|
+
?http_idle_timeout: (Float | Integer),
|
64
|
+
?http_continue_timeout: (Float | Integer),
|
65
|
+
?ssl_timeout: (Float | Integer | nil),
|
66
|
+
?http_wire_trace: bool,
|
67
|
+
?ssl_verify_peer: bool,
|
68
|
+
?ssl_ca_bundle: String,
|
69
|
+
?ssl_ca_directory: String,
|
70
|
+
?ssl_ca_store: String,
|
71
|
+
?on_chunk_received: Proc,
|
72
|
+
?on_chunk_sent: Proc,
|
73
|
+
?raise_response_errors: bool
|
74
|
+
) -> void
|
75
|
+
| (?Hash[Symbol, untyped]) -> void
|
76
|
+
|
77
|
+
def client: () -> Client
|
78
|
+
|
79
|
+
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
data/sig/types.rbs
ADDED
@@ -0,0 +1,484 @@
|
|
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::NetworkFlowMonitor
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class ConflictException
|
17
|
+
attr_accessor message: ::String
|
18
|
+
SENSITIVE: []
|
19
|
+
end
|
20
|
+
|
21
|
+
class CreateMonitorInput
|
22
|
+
attr_accessor monitor_name: ::String
|
23
|
+
attr_accessor local_resources: ::Array[Types::MonitorLocalResource]
|
24
|
+
attr_accessor remote_resources: ::Array[Types::MonitorRemoteResource]
|
25
|
+
attr_accessor scope_arn: ::String
|
26
|
+
attr_accessor client_token: ::String
|
27
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
28
|
+
SENSITIVE: []
|
29
|
+
end
|
30
|
+
|
31
|
+
class CreateMonitorOutput
|
32
|
+
attr_accessor monitor_arn: ::String
|
33
|
+
attr_accessor monitor_name: ::String
|
34
|
+
attr_accessor monitor_status: ("PENDING" | "ACTIVE" | "INACTIVE" | "ERROR" | "DELETING")
|
35
|
+
attr_accessor local_resources: ::Array[Types::MonitorLocalResource]
|
36
|
+
attr_accessor remote_resources: ::Array[Types::MonitorRemoteResource]
|
37
|
+
attr_accessor created_at: ::Time
|
38
|
+
attr_accessor modified_at: ::Time
|
39
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
40
|
+
SENSITIVE: []
|
41
|
+
end
|
42
|
+
|
43
|
+
class CreateScopeInput
|
44
|
+
attr_accessor targets: ::Array[Types::TargetResource]
|
45
|
+
attr_accessor client_token: ::String
|
46
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
47
|
+
SENSITIVE: []
|
48
|
+
end
|
49
|
+
|
50
|
+
class CreateScopeOutput
|
51
|
+
attr_accessor scope_id: ::String
|
52
|
+
attr_accessor status: ("SUCCEEDED" | "IN_PROGRESS" | "FAILED")
|
53
|
+
attr_accessor scope_arn: ::String
|
54
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
55
|
+
SENSITIVE: []
|
56
|
+
end
|
57
|
+
|
58
|
+
class DeleteMonitorInput
|
59
|
+
attr_accessor monitor_name: ::String
|
60
|
+
SENSITIVE: []
|
61
|
+
end
|
62
|
+
|
63
|
+
class DeleteMonitorOutput < Aws::EmptyStructure
|
64
|
+
end
|
65
|
+
|
66
|
+
class DeleteScopeInput
|
67
|
+
attr_accessor scope_id: ::String
|
68
|
+
SENSITIVE: []
|
69
|
+
end
|
70
|
+
|
71
|
+
class DeleteScopeOutput < Aws::EmptyStructure
|
72
|
+
end
|
73
|
+
|
74
|
+
class GetMonitorInput
|
75
|
+
attr_accessor monitor_name: ::String
|
76
|
+
SENSITIVE: []
|
77
|
+
end
|
78
|
+
|
79
|
+
class GetMonitorOutput
|
80
|
+
attr_accessor monitor_arn: ::String
|
81
|
+
attr_accessor monitor_name: ::String
|
82
|
+
attr_accessor monitor_status: ("PENDING" | "ACTIVE" | "INACTIVE" | "ERROR" | "DELETING")
|
83
|
+
attr_accessor local_resources: ::Array[Types::MonitorLocalResource]
|
84
|
+
attr_accessor remote_resources: ::Array[Types::MonitorRemoteResource]
|
85
|
+
attr_accessor created_at: ::Time
|
86
|
+
attr_accessor modified_at: ::Time
|
87
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
88
|
+
SENSITIVE: []
|
89
|
+
end
|
90
|
+
|
91
|
+
class GetQueryResultsMonitorTopContributorsInput
|
92
|
+
attr_accessor monitor_name: ::String
|
93
|
+
attr_accessor query_id: ::String
|
94
|
+
attr_accessor next_token: ::String
|
95
|
+
attr_accessor max_results: ::Integer
|
96
|
+
SENSITIVE: []
|
97
|
+
end
|
98
|
+
|
99
|
+
class GetQueryResultsMonitorTopContributorsOutput
|
100
|
+
attr_accessor unit: ("Seconds" | "Microseconds" | "Milliseconds" | "Bytes" | "Kilobytes" | "Megabytes" | "Gigabytes" | "Terabytes" | "Bits" | "Kilobits" | "Megabits" | "Gigabits" | "Terabits" | "Percent" | "Count" | "Bytes/Second" | "Kilobytes/Second" | "Megabytes/Second" | "Gigabytes/Second" | "Terabytes/Second" | "Bits/Second" | "Kilobits/Second" | "Megabits/Second" | "Gigabits/Second" | "Terabits/Second" | "Count/Second" | "None")
|
101
|
+
attr_accessor top_contributors: ::Array[Types::MonitorTopContributorsRow]
|
102
|
+
attr_accessor next_token: ::String
|
103
|
+
SENSITIVE: []
|
104
|
+
end
|
105
|
+
|
106
|
+
class GetQueryResultsWorkloadInsightsTopContributorsDataInput
|
107
|
+
attr_accessor scope_id: ::String
|
108
|
+
attr_accessor query_id: ::String
|
109
|
+
attr_accessor next_token: ::String
|
110
|
+
attr_accessor max_results: ::Integer
|
111
|
+
SENSITIVE: []
|
112
|
+
end
|
113
|
+
|
114
|
+
class GetQueryResultsWorkloadInsightsTopContributorsDataOutput
|
115
|
+
attr_accessor unit: ("Seconds" | "Microseconds" | "Milliseconds" | "Bytes" | "Kilobytes" | "Megabytes" | "Gigabytes" | "Terabytes" | "Bits" | "Kilobits" | "Megabits" | "Gigabits" | "Terabits" | "Percent" | "Count" | "Bytes/Second" | "Kilobytes/Second" | "Megabytes/Second" | "Gigabytes/Second" | "Terabytes/Second" | "Bits/Second" | "Kilobits/Second" | "Megabits/Second" | "Gigabits/Second" | "Terabits/Second" | "Count/Second" | "None")
|
116
|
+
attr_accessor datapoints: ::Array[Types::WorkloadInsightsTopContributorsDataPoint]
|
117
|
+
attr_accessor next_token: ::String
|
118
|
+
SENSITIVE: []
|
119
|
+
end
|
120
|
+
|
121
|
+
class GetQueryResultsWorkloadInsightsTopContributorsInput
|
122
|
+
attr_accessor scope_id: ::String
|
123
|
+
attr_accessor query_id: ::String
|
124
|
+
attr_accessor next_token: ::String
|
125
|
+
attr_accessor max_results: ::Integer
|
126
|
+
SENSITIVE: []
|
127
|
+
end
|
128
|
+
|
129
|
+
class GetQueryResultsWorkloadInsightsTopContributorsOutput
|
130
|
+
attr_accessor top_contributors: ::Array[Types::WorkloadInsightsTopContributorsRow]
|
131
|
+
attr_accessor next_token: ::String
|
132
|
+
SENSITIVE: []
|
133
|
+
end
|
134
|
+
|
135
|
+
class GetQueryStatusMonitorTopContributorsInput
|
136
|
+
attr_accessor monitor_name: ::String
|
137
|
+
attr_accessor query_id: ::String
|
138
|
+
SENSITIVE: []
|
139
|
+
end
|
140
|
+
|
141
|
+
class GetQueryStatusMonitorTopContributorsOutput
|
142
|
+
attr_accessor status: ("QUEUED" | "RUNNING" | "SUCCEEDED" | "FAILED" | "CANCELED")
|
143
|
+
SENSITIVE: []
|
144
|
+
end
|
145
|
+
|
146
|
+
class GetQueryStatusWorkloadInsightsTopContributorsDataInput
|
147
|
+
attr_accessor scope_id: ::String
|
148
|
+
attr_accessor query_id: ::String
|
149
|
+
SENSITIVE: []
|
150
|
+
end
|
151
|
+
|
152
|
+
class GetQueryStatusWorkloadInsightsTopContributorsDataOutput
|
153
|
+
attr_accessor status: ("QUEUED" | "RUNNING" | "SUCCEEDED" | "FAILED" | "CANCELED")
|
154
|
+
SENSITIVE: []
|
155
|
+
end
|
156
|
+
|
157
|
+
class GetQueryStatusWorkloadInsightsTopContributorsInput
|
158
|
+
attr_accessor scope_id: ::String
|
159
|
+
attr_accessor query_id: ::String
|
160
|
+
SENSITIVE: []
|
161
|
+
end
|
162
|
+
|
163
|
+
class GetQueryStatusWorkloadInsightsTopContributorsOutput
|
164
|
+
attr_accessor status: ("QUEUED" | "RUNNING" | "SUCCEEDED" | "FAILED" | "CANCELED")
|
165
|
+
SENSITIVE: []
|
166
|
+
end
|
167
|
+
|
168
|
+
class GetScopeInput
|
169
|
+
attr_accessor scope_id: ::String
|
170
|
+
SENSITIVE: []
|
171
|
+
end
|
172
|
+
|
173
|
+
class GetScopeOutput
|
174
|
+
attr_accessor scope_id: ::String
|
175
|
+
attr_accessor status: ("SUCCEEDED" | "IN_PROGRESS" | "FAILED")
|
176
|
+
attr_accessor scope_arn: ::String
|
177
|
+
attr_accessor targets: ::Array[Types::TargetResource]
|
178
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
179
|
+
SENSITIVE: []
|
180
|
+
end
|
181
|
+
|
182
|
+
class InternalServerException
|
183
|
+
attr_accessor message: ::String
|
184
|
+
SENSITIVE: []
|
185
|
+
end
|
186
|
+
|
187
|
+
class KubernetesMetadata
|
188
|
+
attr_accessor local_service_name: ::String
|
189
|
+
attr_accessor local_pod_name: ::String
|
190
|
+
attr_accessor local_pod_namespace: ::String
|
191
|
+
attr_accessor remote_service_name: ::String
|
192
|
+
attr_accessor remote_pod_name: ::String
|
193
|
+
attr_accessor remote_pod_namespace: ::String
|
194
|
+
SENSITIVE: []
|
195
|
+
end
|
196
|
+
|
197
|
+
class ListMonitorsInput
|
198
|
+
attr_accessor next_token: ::String
|
199
|
+
attr_accessor max_results: ::Integer
|
200
|
+
attr_accessor monitor_status: ("PENDING" | "ACTIVE" | "INACTIVE" | "ERROR" | "DELETING")
|
201
|
+
SENSITIVE: []
|
202
|
+
end
|
203
|
+
|
204
|
+
class ListMonitorsOutput
|
205
|
+
attr_accessor monitors: ::Array[Types::MonitorSummary]
|
206
|
+
attr_accessor next_token: ::String
|
207
|
+
SENSITIVE: []
|
208
|
+
end
|
209
|
+
|
210
|
+
class ListScopesInput
|
211
|
+
attr_accessor next_token: ::String
|
212
|
+
attr_accessor max_results: ::Integer
|
213
|
+
SENSITIVE: []
|
214
|
+
end
|
215
|
+
|
216
|
+
class ListScopesOutput
|
217
|
+
attr_accessor scopes: ::Array[Types::ScopeSummary]
|
218
|
+
attr_accessor next_token: ::String
|
219
|
+
SENSITIVE: []
|
220
|
+
end
|
221
|
+
|
222
|
+
class ListTagsForResourceInput
|
223
|
+
attr_accessor resource_arn: ::String
|
224
|
+
SENSITIVE: []
|
225
|
+
end
|
226
|
+
|
227
|
+
class ListTagsForResourceOutput
|
228
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
229
|
+
SENSITIVE: []
|
230
|
+
end
|
231
|
+
|
232
|
+
class MonitorLocalResource
|
233
|
+
attr_accessor type: ("AWS::EC2::VPC" | "AWS::AvailabilityZone" | "AWS::EC2::Subnet")
|
234
|
+
attr_accessor identifier: ::String
|
235
|
+
SENSITIVE: []
|
236
|
+
end
|
237
|
+
|
238
|
+
class MonitorRemoteResource
|
239
|
+
attr_accessor type: ("AWS::EC2::VPC" | "AWS::AvailabilityZone" | "AWS::EC2::Subnet" | "AWS::AWSService")
|
240
|
+
attr_accessor identifier: ::String
|
241
|
+
SENSITIVE: []
|
242
|
+
end
|
243
|
+
|
244
|
+
class MonitorSummary
|
245
|
+
attr_accessor monitor_arn: ::String
|
246
|
+
attr_accessor monitor_name: ::String
|
247
|
+
attr_accessor monitor_status: ("PENDING" | "ACTIVE" | "INACTIVE" | "ERROR" | "DELETING")
|
248
|
+
SENSITIVE: []
|
249
|
+
end
|
250
|
+
|
251
|
+
class MonitorTopContributorsRow
|
252
|
+
attr_accessor local_ip: ::String
|
253
|
+
attr_accessor snat_ip: ::String
|
254
|
+
attr_accessor local_instance_id: ::String
|
255
|
+
attr_accessor local_vpc_id: ::String
|
256
|
+
attr_accessor local_region: ::String
|
257
|
+
attr_accessor local_az: ::String
|
258
|
+
attr_accessor local_subnet_id: ::String
|
259
|
+
attr_accessor target_port: ::Integer
|
260
|
+
attr_accessor destination_category: ("INTRA_AZ" | "INTER_AZ" | "INTER_VPC" | "UNCLASSIFIED" | "AMAZON_S3" | "AMAZON_DYNAMODB")
|
261
|
+
attr_accessor remote_vpc_id: ::String
|
262
|
+
attr_accessor remote_region: ::String
|
263
|
+
attr_accessor remote_az: ::String
|
264
|
+
attr_accessor remote_subnet_id: ::String
|
265
|
+
attr_accessor remote_instance_id: ::String
|
266
|
+
attr_accessor remote_ip: ::String
|
267
|
+
attr_accessor dnat_ip: ::String
|
268
|
+
attr_accessor value: ::Integer
|
269
|
+
attr_accessor traversed_constructs: ::Array[Types::TraversedComponent]
|
270
|
+
attr_accessor kubernetes_metadata: Types::KubernetesMetadata
|
271
|
+
attr_accessor local_instance_arn: ::String
|
272
|
+
attr_accessor local_subnet_arn: ::String
|
273
|
+
attr_accessor local_vpc_arn: ::String
|
274
|
+
attr_accessor remote_instance_arn: ::String
|
275
|
+
attr_accessor remote_subnet_arn: ::String
|
276
|
+
attr_accessor remote_vpc_arn: ::String
|
277
|
+
SENSITIVE: []
|
278
|
+
end
|
279
|
+
|
280
|
+
class ResourceNotFoundException
|
281
|
+
attr_accessor message: ::String
|
282
|
+
SENSITIVE: []
|
283
|
+
end
|
284
|
+
|
285
|
+
class ScopeSummary
|
286
|
+
attr_accessor scope_id: ::String
|
287
|
+
attr_accessor status: ("SUCCEEDED" | "IN_PROGRESS" | "FAILED")
|
288
|
+
attr_accessor scope_arn: ::String
|
289
|
+
SENSITIVE: []
|
290
|
+
end
|
291
|
+
|
292
|
+
class ServiceQuotaExceededException
|
293
|
+
attr_accessor message: ::String
|
294
|
+
SENSITIVE: []
|
295
|
+
end
|
296
|
+
|
297
|
+
class StartQueryMonitorTopContributorsInput
|
298
|
+
attr_accessor monitor_name: ::String
|
299
|
+
attr_accessor start_time: ::Time
|
300
|
+
attr_accessor end_time: ::Time
|
301
|
+
attr_accessor metric_name: ("ROUND_TRIP_TIME" | "TIMEOUTS" | "RETRANSMISSIONS" | "DATA_TRANSFERRED")
|
302
|
+
attr_accessor destination_category: ("INTRA_AZ" | "INTER_AZ" | "INTER_VPC" | "UNCLASSIFIED" | "AMAZON_S3" | "AMAZON_DYNAMODB")
|
303
|
+
attr_accessor limit: ::Integer
|
304
|
+
SENSITIVE: []
|
305
|
+
end
|
306
|
+
|
307
|
+
class StartQueryMonitorTopContributorsOutput
|
308
|
+
attr_accessor query_id: ::String
|
309
|
+
SENSITIVE: []
|
310
|
+
end
|
311
|
+
|
312
|
+
class StartQueryWorkloadInsightsTopContributorsDataInput
|
313
|
+
attr_accessor scope_id: ::String
|
314
|
+
attr_accessor start_time: ::Time
|
315
|
+
attr_accessor end_time: ::Time
|
316
|
+
attr_accessor metric_name: ("TIMEOUTS" | "RETRANSMISSIONS" | "DATA_TRANSFERRED")
|
317
|
+
attr_accessor destination_category: ("INTRA_AZ" | "INTER_AZ" | "INTER_VPC" | "UNCLASSIFIED" | "AMAZON_S3" | "AMAZON_DYNAMODB")
|
318
|
+
SENSITIVE: []
|
319
|
+
end
|
320
|
+
|
321
|
+
class StartQueryWorkloadInsightsTopContributorsDataOutput
|
322
|
+
attr_accessor query_id: ::String
|
323
|
+
SENSITIVE: []
|
324
|
+
end
|
325
|
+
|
326
|
+
class StartQueryWorkloadInsightsTopContributorsInput
|
327
|
+
attr_accessor scope_id: ::String
|
328
|
+
attr_accessor start_time: ::Time
|
329
|
+
attr_accessor end_time: ::Time
|
330
|
+
attr_accessor metric_name: ("TIMEOUTS" | "RETRANSMISSIONS" | "DATA_TRANSFERRED")
|
331
|
+
attr_accessor destination_category: ("INTRA_AZ" | "INTER_AZ" | "INTER_VPC" | "UNCLASSIFIED" | "AMAZON_S3" | "AMAZON_DYNAMODB")
|
332
|
+
attr_accessor limit: ::Integer
|
333
|
+
SENSITIVE: []
|
334
|
+
end
|
335
|
+
|
336
|
+
class StartQueryWorkloadInsightsTopContributorsOutput
|
337
|
+
attr_accessor query_id: ::String
|
338
|
+
SENSITIVE: []
|
339
|
+
end
|
340
|
+
|
341
|
+
class StopQueryMonitorTopContributorsInput
|
342
|
+
attr_accessor monitor_name: ::String
|
343
|
+
attr_accessor query_id: ::String
|
344
|
+
SENSITIVE: []
|
345
|
+
end
|
346
|
+
|
347
|
+
class StopQueryMonitorTopContributorsOutput < Aws::EmptyStructure
|
348
|
+
end
|
349
|
+
|
350
|
+
class StopQueryWorkloadInsightsTopContributorsDataInput
|
351
|
+
attr_accessor scope_id: ::String
|
352
|
+
attr_accessor query_id: ::String
|
353
|
+
SENSITIVE: []
|
354
|
+
end
|
355
|
+
|
356
|
+
class StopQueryWorkloadInsightsTopContributorsDataOutput < Aws::EmptyStructure
|
357
|
+
end
|
358
|
+
|
359
|
+
class StopQueryWorkloadInsightsTopContributorsInput
|
360
|
+
attr_accessor scope_id: ::String
|
361
|
+
attr_accessor query_id: ::String
|
362
|
+
SENSITIVE: []
|
363
|
+
end
|
364
|
+
|
365
|
+
class StopQueryWorkloadInsightsTopContributorsOutput < Aws::EmptyStructure
|
366
|
+
end
|
367
|
+
|
368
|
+
class TagResourceInput
|
369
|
+
attr_accessor resource_arn: ::String
|
370
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
371
|
+
SENSITIVE: []
|
372
|
+
end
|
373
|
+
|
374
|
+
class TagResourceOutput < Aws::EmptyStructure
|
375
|
+
end
|
376
|
+
|
377
|
+
class TargetId
|
378
|
+
attr_accessor account_id: ::String
|
379
|
+
attr_accessor unknown: untyped
|
380
|
+
SENSITIVE: []
|
381
|
+
|
382
|
+
class AccountId < TargetId
|
383
|
+
end
|
384
|
+
class Unknown < TargetId
|
385
|
+
end
|
386
|
+
end
|
387
|
+
|
388
|
+
class TargetIdentifier
|
389
|
+
attr_accessor target_id: Types::TargetId
|
390
|
+
attr_accessor target_type: ("ACCOUNT")
|
391
|
+
SENSITIVE: []
|
392
|
+
end
|
393
|
+
|
394
|
+
class TargetResource
|
395
|
+
attr_accessor target_identifier: Types::TargetIdentifier
|
396
|
+
attr_accessor region: ::String
|
397
|
+
SENSITIVE: []
|
398
|
+
end
|
399
|
+
|
400
|
+
class ThrottlingException
|
401
|
+
attr_accessor message: ::String
|
402
|
+
SENSITIVE: []
|
403
|
+
end
|
404
|
+
|
405
|
+
class TraversedComponent
|
406
|
+
attr_accessor component_id: ::String
|
407
|
+
attr_accessor component_type: ::String
|
408
|
+
attr_accessor component_arn: ::String
|
409
|
+
attr_accessor service_name: ::String
|
410
|
+
SENSITIVE: []
|
411
|
+
end
|
412
|
+
|
413
|
+
class UntagResourceInput
|
414
|
+
attr_accessor resource_arn: ::String
|
415
|
+
attr_accessor tag_keys: ::Array[::String]
|
416
|
+
SENSITIVE: []
|
417
|
+
end
|
418
|
+
|
419
|
+
class UntagResourceOutput < Aws::EmptyStructure
|
420
|
+
end
|
421
|
+
|
422
|
+
class UpdateMonitorInput
|
423
|
+
attr_accessor monitor_name: ::String
|
424
|
+
attr_accessor local_resources_to_add: ::Array[Types::MonitorLocalResource]
|
425
|
+
attr_accessor local_resources_to_remove: ::Array[Types::MonitorLocalResource]
|
426
|
+
attr_accessor remote_resources_to_add: ::Array[Types::MonitorRemoteResource]
|
427
|
+
attr_accessor remote_resources_to_remove: ::Array[Types::MonitorRemoteResource]
|
428
|
+
attr_accessor client_token: ::String
|
429
|
+
SENSITIVE: []
|
430
|
+
end
|
431
|
+
|
432
|
+
class UpdateMonitorOutput
|
433
|
+
attr_accessor monitor_arn: ::String
|
434
|
+
attr_accessor monitor_name: ::String
|
435
|
+
attr_accessor monitor_status: ("PENDING" | "ACTIVE" | "INACTIVE" | "ERROR" | "DELETING")
|
436
|
+
attr_accessor local_resources: ::Array[Types::MonitorLocalResource]
|
437
|
+
attr_accessor remote_resources: ::Array[Types::MonitorRemoteResource]
|
438
|
+
attr_accessor created_at: ::Time
|
439
|
+
attr_accessor modified_at: ::Time
|
440
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
441
|
+
SENSITIVE: []
|
442
|
+
end
|
443
|
+
|
444
|
+
class UpdateScopeInput
|
445
|
+
attr_accessor scope_id: ::String
|
446
|
+
attr_accessor resources_to_add: ::Array[Types::TargetResource]
|
447
|
+
attr_accessor resources_to_delete: ::Array[Types::TargetResource]
|
448
|
+
SENSITIVE: []
|
449
|
+
end
|
450
|
+
|
451
|
+
class UpdateScopeOutput
|
452
|
+
attr_accessor scope_id: ::String
|
453
|
+
attr_accessor status: ("SUCCEEDED" | "IN_PROGRESS" | "FAILED")
|
454
|
+
attr_accessor scope_arn: ::String
|
455
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
456
|
+
SENSITIVE: []
|
457
|
+
end
|
458
|
+
|
459
|
+
class ValidationException
|
460
|
+
attr_accessor message: ::String
|
461
|
+
SENSITIVE: []
|
462
|
+
end
|
463
|
+
|
464
|
+
class WorkloadInsightsTopContributorsDataPoint
|
465
|
+
attr_accessor timestamps: ::Array[::Time]
|
466
|
+
attr_accessor values: ::Array[::Float]
|
467
|
+
attr_accessor label: ::String
|
468
|
+
SENSITIVE: []
|
469
|
+
end
|
470
|
+
|
471
|
+
class WorkloadInsightsTopContributorsRow
|
472
|
+
attr_accessor account_id: ::String
|
473
|
+
attr_accessor local_subnet_id: ::String
|
474
|
+
attr_accessor local_az: ::String
|
475
|
+
attr_accessor local_vpc_id: ::String
|
476
|
+
attr_accessor local_region: ::String
|
477
|
+
attr_accessor remote_identifier: ::String
|
478
|
+
attr_accessor value: ::Integer
|
479
|
+
attr_accessor local_subnet_arn: ::String
|
480
|
+
attr_accessor local_vpc_arn: ::String
|
481
|
+
SENSITIVE: []
|
482
|
+
end
|
483
|
+
end
|
484
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,13 @@
|
|
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 NetworkFlowMonitor
|
10
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
metadata
ADDED
@@ -0,0 +1,100 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: aws-sdk-networkflowmonitor
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Amazon Web Services
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-12-02 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: aws-sdk-core
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3'
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 3.210.0
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '3'
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 3.210.0
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: aws-sigv4
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '1.5'
|
40
|
+
type: :runtime
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - "~>"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '1.5'
|
47
|
+
description: Official AWS Ruby gem for Network Flow Monitor. This gem is part of the
|
48
|
+
AWS SDK for Ruby.
|
49
|
+
email:
|
50
|
+
- aws-dr-rubygems@amazon.com
|
51
|
+
executables: []
|
52
|
+
extensions: []
|
53
|
+
extra_rdoc_files: []
|
54
|
+
files:
|
55
|
+
- CHANGELOG.md
|
56
|
+
- LICENSE.txt
|
57
|
+
- VERSION
|
58
|
+
- lib/aws-sdk-networkflowmonitor.rb
|
59
|
+
- lib/aws-sdk-networkflowmonitor/client.rb
|
60
|
+
- lib/aws-sdk-networkflowmonitor/client_api.rb
|
61
|
+
- lib/aws-sdk-networkflowmonitor/customizations.rb
|
62
|
+
- lib/aws-sdk-networkflowmonitor/endpoint_parameters.rb
|
63
|
+
- lib/aws-sdk-networkflowmonitor/endpoint_provider.rb
|
64
|
+
- lib/aws-sdk-networkflowmonitor/endpoints.rb
|
65
|
+
- lib/aws-sdk-networkflowmonitor/errors.rb
|
66
|
+
- lib/aws-sdk-networkflowmonitor/plugins/endpoints.rb
|
67
|
+
- lib/aws-sdk-networkflowmonitor/resource.rb
|
68
|
+
- lib/aws-sdk-networkflowmonitor/types.rb
|
69
|
+
- lib/aws-sdk-networkflowmonitor/waiters.rb
|
70
|
+
- sig/client.rbs
|
71
|
+
- sig/errors.rbs
|
72
|
+
- sig/resource.rbs
|
73
|
+
- sig/types.rbs
|
74
|
+
- sig/waiters.rbs
|
75
|
+
homepage: https://github.com/aws/aws-sdk-ruby
|
76
|
+
licenses:
|
77
|
+
- Apache-2.0
|
78
|
+
metadata:
|
79
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-networkflowmonitor
|
80
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-networkflowmonitor/CHANGELOG.md
|
81
|
+
post_install_message:
|
82
|
+
rdoc_options: []
|
83
|
+
require_paths:
|
84
|
+
- lib
|
85
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '2.5'
|
90
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - ">="
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: '0'
|
95
|
+
requirements: []
|
96
|
+
rubygems_version: 3.4.10
|
97
|
+
signing_key:
|
98
|
+
specification_version: 4
|
99
|
+
summary: AWS SDK for Ruby - Network Flow Monitor
|
100
|
+
test_files: []
|