aws-sdk-applicationsignals 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-applicationsignals/client.rb +1634 -0
- data/lib/aws-sdk-applicationsignals/client_api.rb +676 -0
- data/lib/aws-sdk-applicationsignals/customizations.rb +0 -0
- data/lib/aws-sdk-applicationsignals/endpoint_parameters.rb +54 -0
- data/lib/aws-sdk-applicationsignals/endpoint_provider.rb +35 -0
- data/lib/aws-sdk-applicationsignals/endpoints.rb +211 -0
- data/lib/aws-sdk-applicationsignals/errors.rb +144 -0
- data/lib/aws-sdk-applicationsignals/plugins/endpoints.rb +100 -0
- data/lib/aws-sdk-applicationsignals/resource.rb +26 -0
- data/lib/aws-sdk-applicationsignals/types.rb +2043 -0
- data/lib/aws-sdk-applicationsignals.rb +57 -0
- data/sig/client.rbs +377 -0
- data/sig/errors.rbs +36 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +418 -0
- data/sig/waiters.rbs +13 -0
- metadata +99 -0
data/sig/types.rbs
ADDED
@@ -0,0 +1,418 @@
|
|
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::ApplicationSignals
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class BatchGetServiceLevelObjectiveBudgetReportInput
|
17
|
+
attr_accessor timestamp: ::Time
|
18
|
+
attr_accessor slo_ids: ::Array[::String]
|
19
|
+
SENSITIVE: []
|
20
|
+
end
|
21
|
+
|
22
|
+
class BatchGetServiceLevelObjectiveBudgetReportOutput
|
23
|
+
attr_accessor timestamp: ::Time
|
24
|
+
attr_accessor reports: ::Array[Types::ServiceLevelObjectiveBudgetReport]
|
25
|
+
attr_accessor errors: ::Array[Types::ServiceLevelObjectiveBudgetReportError]
|
26
|
+
SENSITIVE: []
|
27
|
+
end
|
28
|
+
|
29
|
+
class CalendarInterval
|
30
|
+
attr_accessor start_time: ::Time
|
31
|
+
attr_accessor duration_unit: ("DAY" | "MONTH")
|
32
|
+
attr_accessor duration: ::Integer
|
33
|
+
SENSITIVE: []
|
34
|
+
end
|
35
|
+
|
36
|
+
class ConflictException
|
37
|
+
attr_accessor message: ::String
|
38
|
+
SENSITIVE: []
|
39
|
+
end
|
40
|
+
|
41
|
+
class CreateServiceLevelObjectiveInput
|
42
|
+
attr_accessor name: ::String
|
43
|
+
attr_accessor description: ::String
|
44
|
+
attr_accessor sli_config: Types::ServiceLevelIndicatorConfig
|
45
|
+
attr_accessor goal: Types::Goal
|
46
|
+
attr_accessor tags: ::Array[Types::Tag]
|
47
|
+
SENSITIVE: []
|
48
|
+
end
|
49
|
+
|
50
|
+
class CreateServiceLevelObjectiveOutput
|
51
|
+
attr_accessor slo: Types::ServiceLevelObjective
|
52
|
+
SENSITIVE: []
|
53
|
+
end
|
54
|
+
|
55
|
+
class DeleteServiceLevelObjectiveInput
|
56
|
+
attr_accessor id: ::String
|
57
|
+
SENSITIVE: []
|
58
|
+
end
|
59
|
+
|
60
|
+
class DeleteServiceLevelObjectiveOutput < Aws::EmptyStructure
|
61
|
+
end
|
62
|
+
|
63
|
+
class Dimension
|
64
|
+
attr_accessor name: ::String
|
65
|
+
attr_accessor value: ::String
|
66
|
+
SENSITIVE: []
|
67
|
+
end
|
68
|
+
|
69
|
+
class GetServiceInput
|
70
|
+
attr_accessor start_time: ::Time
|
71
|
+
attr_accessor end_time: ::Time
|
72
|
+
attr_accessor key_attributes: ::Hash[::String, ::String]
|
73
|
+
SENSITIVE: []
|
74
|
+
end
|
75
|
+
|
76
|
+
class GetServiceLevelObjectiveInput
|
77
|
+
attr_accessor id: ::String
|
78
|
+
SENSITIVE: []
|
79
|
+
end
|
80
|
+
|
81
|
+
class GetServiceLevelObjectiveOutput
|
82
|
+
attr_accessor slo: Types::ServiceLevelObjective
|
83
|
+
SENSITIVE: []
|
84
|
+
end
|
85
|
+
|
86
|
+
class GetServiceOutput
|
87
|
+
attr_accessor service: Types::Service
|
88
|
+
attr_accessor start_time: ::Time
|
89
|
+
attr_accessor end_time: ::Time
|
90
|
+
SENSITIVE: []
|
91
|
+
end
|
92
|
+
|
93
|
+
class Goal
|
94
|
+
attr_accessor interval: Types::Interval
|
95
|
+
attr_accessor attainment_goal: ::Float
|
96
|
+
attr_accessor warning_threshold: ::Float
|
97
|
+
SENSITIVE: []
|
98
|
+
end
|
99
|
+
|
100
|
+
class Interval
|
101
|
+
attr_accessor rolling_interval: Types::RollingInterval
|
102
|
+
attr_accessor calendar_interval: Types::CalendarInterval
|
103
|
+
attr_accessor unknown: untyped
|
104
|
+
SENSITIVE: []
|
105
|
+
|
106
|
+
class RollingInterval < Interval
|
107
|
+
end
|
108
|
+
class CalendarInterval < Interval
|
109
|
+
end
|
110
|
+
class Unknown < Interval
|
111
|
+
end
|
112
|
+
end
|
113
|
+
|
114
|
+
class ListServiceDependenciesInput
|
115
|
+
attr_accessor start_time: ::Time
|
116
|
+
attr_accessor end_time: ::Time
|
117
|
+
attr_accessor key_attributes: ::Hash[::String, ::String]
|
118
|
+
attr_accessor max_results: ::Integer
|
119
|
+
attr_accessor next_token: ::String
|
120
|
+
SENSITIVE: []
|
121
|
+
end
|
122
|
+
|
123
|
+
class ListServiceDependenciesOutput
|
124
|
+
attr_accessor start_time: ::Time
|
125
|
+
attr_accessor end_time: ::Time
|
126
|
+
attr_accessor service_dependencies: ::Array[Types::ServiceDependency]
|
127
|
+
attr_accessor next_token: ::String
|
128
|
+
SENSITIVE: []
|
129
|
+
end
|
130
|
+
|
131
|
+
class ListServiceDependentsInput
|
132
|
+
attr_accessor start_time: ::Time
|
133
|
+
attr_accessor end_time: ::Time
|
134
|
+
attr_accessor key_attributes: ::Hash[::String, ::String]
|
135
|
+
attr_accessor max_results: ::Integer
|
136
|
+
attr_accessor next_token: ::String
|
137
|
+
SENSITIVE: []
|
138
|
+
end
|
139
|
+
|
140
|
+
class ListServiceDependentsOutput
|
141
|
+
attr_accessor start_time: ::Time
|
142
|
+
attr_accessor end_time: ::Time
|
143
|
+
attr_accessor service_dependents: ::Array[Types::ServiceDependent]
|
144
|
+
attr_accessor next_token: ::String
|
145
|
+
SENSITIVE: []
|
146
|
+
end
|
147
|
+
|
148
|
+
class ListServiceLevelObjectivesInput
|
149
|
+
attr_accessor key_attributes: ::Hash[::String, ::String]
|
150
|
+
attr_accessor operation_name: ::String
|
151
|
+
attr_accessor max_results: ::Integer
|
152
|
+
attr_accessor next_token: ::String
|
153
|
+
SENSITIVE: []
|
154
|
+
end
|
155
|
+
|
156
|
+
class ListServiceLevelObjectivesOutput
|
157
|
+
attr_accessor slo_summaries: ::Array[Types::ServiceLevelObjectiveSummary]
|
158
|
+
attr_accessor next_token: ::String
|
159
|
+
SENSITIVE: []
|
160
|
+
end
|
161
|
+
|
162
|
+
class ListServiceOperationsInput
|
163
|
+
attr_accessor start_time: ::Time
|
164
|
+
attr_accessor end_time: ::Time
|
165
|
+
attr_accessor key_attributes: ::Hash[::String, ::String]
|
166
|
+
attr_accessor max_results: ::Integer
|
167
|
+
attr_accessor next_token: ::String
|
168
|
+
SENSITIVE: []
|
169
|
+
end
|
170
|
+
|
171
|
+
class ListServiceOperationsOutput
|
172
|
+
attr_accessor start_time: ::Time
|
173
|
+
attr_accessor end_time: ::Time
|
174
|
+
attr_accessor service_operations: ::Array[Types::ServiceOperation]
|
175
|
+
attr_accessor next_token: ::String
|
176
|
+
SENSITIVE: []
|
177
|
+
end
|
178
|
+
|
179
|
+
class ListServicesInput
|
180
|
+
attr_accessor start_time: ::Time
|
181
|
+
attr_accessor end_time: ::Time
|
182
|
+
attr_accessor max_results: ::Integer
|
183
|
+
attr_accessor next_token: ::String
|
184
|
+
SENSITIVE: []
|
185
|
+
end
|
186
|
+
|
187
|
+
class ListServicesOutput
|
188
|
+
attr_accessor start_time: ::Time
|
189
|
+
attr_accessor end_time: ::Time
|
190
|
+
attr_accessor service_summaries: ::Array[Types::ServiceSummary]
|
191
|
+
attr_accessor next_token: ::String
|
192
|
+
SENSITIVE: []
|
193
|
+
end
|
194
|
+
|
195
|
+
class ListTagsForResourceRequest
|
196
|
+
attr_accessor resource_arn: ::String
|
197
|
+
SENSITIVE: []
|
198
|
+
end
|
199
|
+
|
200
|
+
class ListTagsForResourceResponse
|
201
|
+
attr_accessor tags: ::Array[Types::Tag]
|
202
|
+
SENSITIVE: []
|
203
|
+
end
|
204
|
+
|
205
|
+
class Metric
|
206
|
+
attr_accessor namespace: ::String
|
207
|
+
attr_accessor metric_name: ::String
|
208
|
+
attr_accessor dimensions: ::Array[Types::Dimension]
|
209
|
+
SENSITIVE: []
|
210
|
+
end
|
211
|
+
|
212
|
+
class MetricDataQuery
|
213
|
+
attr_accessor id: ::String
|
214
|
+
attr_accessor metric_stat: Types::MetricStat
|
215
|
+
attr_accessor expression: ::String
|
216
|
+
attr_accessor label: ::String
|
217
|
+
attr_accessor return_data: bool
|
218
|
+
attr_accessor period: ::Integer
|
219
|
+
attr_accessor account_id: ::String
|
220
|
+
SENSITIVE: []
|
221
|
+
end
|
222
|
+
|
223
|
+
class MetricReference
|
224
|
+
attr_accessor namespace: ::String
|
225
|
+
attr_accessor metric_type: ::String
|
226
|
+
attr_accessor dimensions: ::Array[Types::Dimension]
|
227
|
+
attr_accessor metric_name: ::String
|
228
|
+
SENSITIVE: []
|
229
|
+
end
|
230
|
+
|
231
|
+
class MetricStat
|
232
|
+
attr_accessor metric: Types::Metric
|
233
|
+
attr_accessor period: ::Integer
|
234
|
+
attr_accessor stat: ::String
|
235
|
+
attr_accessor unit: ("Microseconds" | "Milliseconds" | "Seconds" | "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")
|
236
|
+
SENSITIVE: []
|
237
|
+
end
|
238
|
+
|
239
|
+
class ResourceNotFoundException
|
240
|
+
attr_accessor resource_type: ::String
|
241
|
+
attr_accessor resource_id: ::String
|
242
|
+
attr_accessor message: ::String
|
243
|
+
SENSITIVE: []
|
244
|
+
end
|
245
|
+
|
246
|
+
class RollingInterval
|
247
|
+
attr_accessor duration_unit: ("DAY" | "MONTH")
|
248
|
+
attr_accessor duration: ::Integer
|
249
|
+
SENSITIVE: []
|
250
|
+
end
|
251
|
+
|
252
|
+
class Service
|
253
|
+
attr_accessor key_attributes: ::Hash[::String, ::String]
|
254
|
+
attr_accessor attribute_maps: ::Array[::Hash[::String, ::String]]
|
255
|
+
attr_accessor metric_references: ::Array[Types::MetricReference]
|
256
|
+
SENSITIVE: []
|
257
|
+
end
|
258
|
+
|
259
|
+
class ServiceDependency
|
260
|
+
attr_accessor operation_name: ::String
|
261
|
+
attr_accessor dependency_key_attributes: ::Hash[::String, ::String]
|
262
|
+
attr_accessor dependency_operation_name: ::String
|
263
|
+
attr_accessor metric_references: ::Array[Types::MetricReference]
|
264
|
+
SENSITIVE: []
|
265
|
+
end
|
266
|
+
|
267
|
+
class ServiceDependent
|
268
|
+
attr_accessor operation_name: ::String
|
269
|
+
attr_accessor dependent_key_attributes: ::Hash[::String, ::String]
|
270
|
+
attr_accessor dependent_operation_name: ::String
|
271
|
+
attr_accessor metric_references: ::Array[Types::MetricReference]
|
272
|
+
SENSITIVE: []
|
273
|
+
end
|
274
|
+
|
275
|
+
class ServiceLevelIndicator
|
276
|
+
attr_accessor sli_metric: Types::ServiceLevelIndicatorMetric
|
277
|
+
attr_accessor metric_threshold: ::Float
|
278
|
+
attr_accessor comparison_operator: ("GreaterThanOrEqualTo" | "GreaterThan" | "LessThan" | "LessThanOrEqualTo")
|
279
|
+
SENSITIVE: []
|
280
|
+
end
|
281
|
+
|
282
|
+
class ServiceLevelIndicatorConfig
|
283
|
+
attr_accessor sli_metric_config: Types::ServiceLevelIndicatorMetricConfig
|
284
|
+
attr_accessor metric_threshold: ::Float
|
285
|
+
attr_accessor comparison_operator: ("GreaterThanOrEqualTo" | "GreaterThan" | "LessThan" | "LessThanOrEqualTo")
|
286
|
+
SENSITIVE: []
|
287
|
+
end
|
288
|
+
|
289
|
+
class ServiceLevelIndicatorMetric
|
290
|
+
attr_accessor key_attributes: ::Hash[::String, ::String]
|
291
|
+
attr_accessor operation_name: ::String
|
292
|
+
attr_accessor metric_type: ("LATENCY" | "AVAILABILITY")
|
293
|
+
attr_accessor metric_data_queries: ::Array[Types::MetricDataQuery]
|
294
|
+
SENSITIVE: []
|
295
|
+
end
|
296
|
+
|
297
|
+
class ServiceLevelIndicatorMetricConfig
|
298
|
+
attr_accessor key_attributes: ::Hash[::String, ::String]
|
299
|
+
attr_accessor operation_name: ::String
|
300
|
+
attr_accessor metric_type: ("LATENCY" | "AVAILABILITY")
|
301
|
+
attr_accessor statistic: ::String
|
302
|
+
attr_accessor period_seconds: ::Integer
|
303
|
+
attr_accessor metric_data_queries: ::Array[Types::MetricDataQuery]
|
304
|
+
SENSITIVE: []
|
305
|
+
end
|
306
|
+
|
307
|
+
class ServiceLevelObjective
|
308
|
+
attr_accessor arn: ::String
|
309
|
+
attr_accessor name: ::String
|
310
|
+
attr_accessor description: ::String
|
311
|
+
attr_accessor created_time: ::Time
|
312
|
+
attr_accessor last_updated_time: ::Time
|
313
|
+
attr_accessor sli: Types::ServiceLevelIndicator
|
314
|
+
attr_accessor goal: Types::Goal
|
315
|
+
SENSITIVE: []
|
316
|
+
end
|
317
|
+
|
318
|
+
class ServiceLevelObjectiveBudgetReport
|
319
|
+
attr_accessor arn: ::String
|
320
|
+
attr_accessor name: ::String
|
321
|
+
attr_accessor budget_status: ("OK" | "WARNING" | "BREACHED" | "INSUFFICIENT_DATA")
|
322
|
+
attr_accessor attainment: ::Float
|
323
|
+
attr_accessor total_budget_seconds: ::Integer
|
324
|
+
attr_accessor budget_seconds_remaining: ::Integer
|
325
|
+
attr_accessor sli: Types::ServiceLevelIndicator
|
326
|
+
attr_accessor goal: Types::Goal
|
327
|
+
SENSITIVE: []
|
328
|
+
end
|
329
|
+
|
330
|
+
class ServiceLevelObjectiveBudgetReportError
|
331
|
+
attr_accessor name: ::String
|
332
|
+
attr_accessor arn: ::String
|
333
|
+
attr_accessor error_code: ::String
|
334
|
+
attr_accessor error_message: ::String
|
335
|
+
SENSITIVE: []
|
336
|
+
end
|
337
|
+
|
338
|
+
class ServiceLevelObjectiveSummary
|
339
|
+
attr_accessor arn: ::String
|
340
|
+
attr_accessor name: ::String
|
341
|
+
attr_accessor key_attributes: ::Hash[::String, ::String]
|
342
|
+
attr_accessor operation_name: ::String
|
343
|
+
attr_accessor created_time: ::Time
|
344
|
+
SENSITIVE: []
|
345
|
+
end
|
346
|
+
|
347
|
+
class ServiceOperation
|
348
|
+
attr_accessor name: ::String
|
349
|
+
attr_accessor metric_references: ::Array[Types::MetricReference]
|
350
|
+
SENSITIVE: []
|
351
|
+
end
|
352
|
+
|
353
|
+
class ServiceQuotaExceededException
|
354
|
+
attr_accessor message: ::String
|
355
|
+
SENSITIVE: []
|
356
|
+
end
|
357
|
+
|
358
|
+
class ServiceSummary
|
359
|
+
attr_accessor key_attributes: ::Hash[::String, ::String]
|
360
|
+
attr_accessor attribute_maps: ::Array[::Hash[::String, ::String]]
|
361
|
+
attr_accessor metric_references: ::Array[Types::MetricReference]
|
362
|
+
SENSITIVE: []
|
363
|
+
end
|
364
|
+
|
365
|
+
class StartDiscoveryInput < Aws::EmptyStructure
|
366
|
+
end
|
367
|
+
|
368
|
+
class StartDiscoveryOutput < Aws::EmptyStructure
|
369
|
+
end
|
370
|
+
|
371
|
+
class Tag
|
372
|
+
attr_accessor key: ::String
|
373
|
+
attr_accessor value: ::String
|
374
|
+
SENSITIVE: []
|
375
|
+
end
|
376
|
+
|
377
|
+
class TagResourceRequest
|
378
|
+
attr_accessor resource_arn: ::String
|
379
|
+
attr_accessor tags: ::Array[Types::Tag]
|
380
|
+
SENSITIVE: []
|
381
|
+
end
|
382
|
+
|
383
|
+
class TagResourceResponse < Aws::EmptyStructure
|
384
|
+
end
|
385
|
+
|
386
|
+
class ThrottlingException
|
387
|
+
attr_accessor message: ::String
|
388
|
+
SENSITIVE: []
|
389
|
+
end
|
390
|
+
|
391
|
+
class UntagResourceRequest
|
392
|
+
attr_accessor resource_arn: ::String
|
393
|
+
attr_accessor tag_keys: ::Array[::String]
|
394
|
+
SENSITIVE: []
|
395
|
+
end
|
396
|
+
|
397
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
398
|
+
end
|
399
|
+
|
400
|
+
class UpdateServiceLevelObjectiveInput
|
401
|
+
attr_accessor id: ::String
|
402
|
+
attr_accessor description: ::String
|
403
|
+
attr_accessor sli_config: Types::ServiceLevelIndicatorConfig
|
404
|
+
attr_accessor goal: Types::Goal
|
405
|
+
SENSITIVE: []
|
406
|
+
end
|
407
|
+
|
408
|
+
class UpdateServiceLevelObjectiveOutput
|
409
|
+
attr_accessor slo: Types::ServiceLevelObjective
|
410
|
+
SENSITIVE: []
|
411
|
+
end
|
412
|
+
|
413
|
+
class ValidationException
|
414
|
+
attr_accessor message: ::String
|
415
|
+
SENSITIVE: []
|
416
|
+
end
|
417
|
+
end
|
418
|
+
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 ApplicationSignals
|
10
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
metadata
ADDED
@@ -0,0 +1,99 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: aws-sdk-applicationsignals
|
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-06-10 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.197.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.197.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.1'
|
40
|
+
type: :runtime
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - "~>"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '1.1'
|
47
|
+
description: Official AWS Ruby gem for Amazon CloudWatch Application Signals. This
|
48
|
+
gem is part of the 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-applicationsignals.rb
|
59
|
+
- lib/aws-sdk-applicationsignals/client.rb
|
60
|
+
- lib/aws-sdk-applicationsignals/client_api.rb
|
61
|
+
- lib/aws-sdk-applicationsignals/customizations.rb
|
62
|
+
- lib/aws-sdk-applicationsignals/endpoint_parameters.rb
|
63
|
+
- lib/aws-sdk-applicationsignals/endpoint_provider.rb
|
64
|
+
- lib/aws-sdk-applicationsignals/endpoints.rb
|
65
|
+
- lib/aws-sdk-applicationsignals/errors.rb
|
66
|
+
- lib/aws-sdk-applicationsignals/plugins/endpoints.rb
|
67
|
+
- lib/aws-sdk-applicationsignals/resource.rb
|
68
|
+
- lib/aws-sdk-applicationsignals/types.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-applicationsignals
|
79
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-applicationsignals/CHANGELOG.md
|
80
|
+
post_install_message:
|
81
|
+
rdoc_options: []
|
82
|
+
require_paths:
|
83
|
+
- lib
|
84
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '2.5'
|
89
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
90
|
+
requirements:
|
91
|
+
- - ">="
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '0'
|
94
|
+
requirements: []
|
95
|
+
rubygems_version: 3.4.10
|
96
|
+
signing_key:
|
97
|
+
specification_version: 4
|
98
|
+
summary: AWS SDK for Ruby - Amazon CloudWatch Application Signals
|
99
|
+
test_files: []
|