aws-sdk-applicationsignals 1.3.0 → 1.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-applicationsignals/client.rb +46 -2
- data/lib/aws-sdk-applicationsignals/client_api.rb +6 -0
- data/lib/aws-sdk-applicationsignals/types.rb +89 -3
- data/lib/aws-sdk-applicationsignals.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +2 -0
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2c8cad486ad7933bf0eb84660ee1d2c642357461f98c886e578474892697eda0
|
4
|
+
data.tar.gz: 8328a5872ed5d585bf7f3412e5cba9049d3b3ebcb5c7a6171797fba95711d2fe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 45f1bfab5ab3de94f69831579392f7e72a8b9b6160f0e05c70db0a77fbdfc769d94b79957678bafeae4b01452f745c15dceb66fed538d3b7c0b829e966e5962c
|
7
|
+
data.tar.gz: c051e581bcf54a26b04c8790936b0ea7fa8442474f1947007e28abe633608f80d0505f764055f1a33d8c0b8c7fb9b38726dec1cfa1d775e0eb2acedb7b4c50fe
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.5.0 (2024-09-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.4.0 (2024-07-25)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - CloudWatch Application Signals now supports application logs correlation with traces and operational health metrics of applications running on EC2 instances. Users can view the most relevant telemetry to troubleshoot application health anomalies such as spikes in latency, errors, and availability.
|
13
|
+
|
4
14
|
1.3.0 (2024-07-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.5.0
|
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
|
32
32
|
require 'aws-sdk-core/plugins/request_compression.rb'
|
33
33
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
34
34
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
35
|
+
require 'aws-sdk-core/plugins/telemetry.rb'
|
35
36
|
require 'aws-sdk-core/plugins/sign.rb'
|
36
37
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
37
38
|
|
@@ -83,6 +84,7 @@ module Aws::ApplicationSignals
|
|
83
84
|
add_plugin(Aws::Plugins::RequestCompression)
|
84
85
|
add_plugin(Aws::Plugins::DefaultsMode)
|
85
86
|
add_plugin(Aws::Plugins::RecursionDetection)
|
87
|
+
add_plugin(Aws::Plugins::Telemetry)
|
86
88
|
add_plugin(Aws::Plugins::Sign)
|
87
89
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
88
90
|
add_plugin(Aws::ApplicationSignals::Plugins::Endpoints)
|
@@ -330,6 +332,16 @@ module Aws::ApplicationSignals
|
|
330
332
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
331
333
|
# requests are made, and retries are disabled.
|
332
334
|
#
|
335
|
+
# @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
|
336
|
+
# Allows you to provide a telemetry provider, which is used to
|
337
|
+
# emit telemetry data. By default, uses `NoOpTelemetryProvider` which
|
338
|
+
# will not record or emit any telemetry data. The SDK supports the
|
339
|
+
# following telemetry providers:
|
340
|
+
#
|
341
|
+
# * OpenTelemetry (OTel) - To use the OTel provider, install and require the
|
342
|
+
# `opentelemetry-sdk` gem and then, pass in an instance of a
|
343
|
+
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
344
|
+
#
|
333
345
|
# @option options [Aws::TokenProvider] :token_provider
|
334
346
|
# A Bearer Token Provider. This can be an instance of any one of the
|
335
347
|
# following classes:
|
@@ -743,11 +755,15 @@ module Aws::ApplicationSignals
|
|
743
755
|
# in a raw HTTP Query API, it is formatted as be epoch time in seconds.
|
744
756
|
# For example: `1698778057`
|
745
757
|
#
|
758
|
+
# Your requested start time will be rounded to the nearest hour.
|
759
|
+
#
|
746
760
|
# @option params [required, Time,DateTime,Date,Integer,String] :end_time
|
747
761
|
# The end of the time period to retrieve information about. When used in
|
748
762
|
# a raw HTTP Query API, it is formatted as be epoch time in seconds. For
|
749
763
|
# example: `1698778057`
|
750
764
|
#
|
765
|
+
# Your requested start time will be rounded to the nearest hour.
|
766
|
+
#
|
751
767
|
# @option params [required, Hash<String,String>] :key_attributes
|
752
768
|
# Use this field to specify which service you want to retrieve
|
753
769
|
# information for. You must specify at least the `Type`, `Name`, and
|
@@ -777,6 +793,7 @@ module Aws::ApplicationSignals
|
|
777
793
|
# * {Types::GetServiceOutput#service #service} => Types::Service
|
778
794
|
# * {Types::GetServiceOutput#start_time #start_time} => Time
|
779
795
|
# * {Types::GetServiceOutput#end_time #end_time} => Time
|
796
|
+
# * {Types::GetServiceOutput#log_group_references #log_group_references} => Array<Hash<String,String>>
|
780
797
|
#
|
781
798
|
# @example Request syntax with placeholder values
|
782
799
|
#
|
@@ -802,8 +819,14 @@ module Aws::ApplicationSignals
|
|
802
819
|
# resp.service.metric_references[0].dimensions[0].name #=> String
|
803
820
|
# resp.service.metric_references[0].dimensions[0].value #=> String
|
804
821
|
# resp.service.metric_references[0].metric_name #=> String
|
822
|
+
# resp.service.log_group_references #=> Array
|
823
|
+
# resp.service.log_group_references[0] #=> Hash
|
824
|
+
# resp.service.log_group_references[0]["KeyAttributeName"] #=> String
|
805
825
|
# resp.start_time #=> Time
|
806
826
|
# resp.end_time #=> Time
|
827
|
+
# resp.log_group_references #=> Array
|
828
|
+
# resp.log_group_references[0] #=> Hash
|
829
|
+
# resp.log_group_references[0]["KeyAttributeName"] #=> String
|
807
830
|
#
|
808
831
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/GetService AWS API Documentation
|
809
832
|
#
|
@@ -891,11 +914,15 @@ module Aws::ApplicationSignals
|
|
891
914
|
# in a raw HTTP Query API, it is formatted as be epoch time in seconds.
|
892
915
|
# For example: `1698778057`
|
893
916
|
#
|
917
|
+
# Your requested start time will be rounded to the nearest hour.
|
918
|
+
#
|
894
919
|
# @option params [required, Time,DateTime,Date,Integer,String] :end_time
|
895
920
|
# The end of the time period to retrieve information about. When used in
|
896
921
|
# a raw HTTP Query API, it is formatted as be epoch time in seconds. For
|
897
922
|
# example: `1698778057`
|
898
923
|
#
|
924
|
+
# Your requested end time will be rounded to the nearest hour.
|
925
|
+
#
|
899
926
|
# @option params [required, Hash<String,String>] :key_attributes
|
900
927
|
# Use this field to specify which service you want to retrieve
|
901
928
|
# information for. You must specify at least the `Type`, `Name`, and
|
@@ -986,11 +1013,15 @@ module Aws::ApplicationSignals
|
|
986
1013
|
# in a raw HTTP Query API, it is formatted as be epoch time in seconds.
|
987
1014
|
# For example: `1698778057`
|
988
1015
|
#
|
1016
|
+
# Your requested start time will be rounded to the nearest hour.
|
1017
|
+
#
|
989
1018
|
# @option params [required, Time,DateTime,Date,Integer,String] :end_time
|
990
1019
|
# The end of the time period to retrieve information about. When used in
|
991
1020
|
# a raw HTTP Query API, it is formatted as be epoch time in seconds. For
|
992
1021
|
# example: `1698778057`
|
993
1022
|
#
|
1023
|
+
# Your requested start time will be rounded to the nearest hour.
|
1024
|
+
#
|
994
1025
|
# @option params [required, Hash<String,String>] :key_attributes
|
995
1026
|
# Use this field to specify which service you want to retrieve
|
996
1027
|
# information for. You must specify at least the `Type`, `Name`, and
|
@@ -1154,11 +1185,15 @@ module Aws::ApplicationSignals
|
|
1154
1185
|
# in a raw HTTP Query API, it is formatted as be epoch time in seconds.
|
1155
1186
|
# For example: `1698778057`
|
1156
1187
|
#
|
1188
|
+
# Your requested start time will be rounded to the nearest hour.
|
1189
|
+
#
|
1157
1190
|
# @option params [required, Time,DateTime,Date,Integer,String] :end_time
|
1158
1191
|
# The end of the time period to retrieve information about. When used in
|
1159
1192
|
# a raw HTTP Query API, it is formatted as be epoch time in seconds. For
|
1160
1193
|
# example: `1698778057`
|
1161
1194
|
#
|
1195
|
+
# Your requested end time will be rounded to the nearest hour.
|
1196
|
+
#
|
1162
1197
|
# @option params [required, Hash<String,String>] :key_attributes
|
1163
1198
|
# Use this field to specify which service you want to retrieve
|
1164
1199
|
# information for. You must specify at least the `Type`, `Name`, and
|
@@ -1246,11 +1281,15 @@ module Aws::ApplicationSignals
|
|
1246
1281
|
# in a raw HTTP Query API, it is formatted as be epoch time in seconds.
|
1247
1282
|
# For example: `1698778057`
|
1248
1283
|
#
|
1284
|
+
# Your requested start time will be rounded to the nearest hour.
|
1285
|
+
#
|
1249
1286
|
# @option params [required, Time,DateTime,Date,Integer,String] :end_time
|
1250
1287
|
# The end of the time period to retrieve information about. When used in
|
1251
1288
|
# a raw HTTP Query API, it is formatted as be epoch time in seconds. For
|
1252
1289
|
# example: `1698778057`
|
1253
1290
|
#
|
1291
|
+
# Your requested start time will be rounded to the nearest hour.
|
1292
|
+
#
|
1254
1293
|
# @option params [Integer] :max_results
|
1255
1294
|
# The maximum number of results to return in one operation. If you omit
|
1256
1295
|
# this parameter, the default of 50 is used.
|
@@ -1614,14 +1653,19 @@ module Aws::ApplicationSignals
|
|
1614
1653
|
# @api private
|
1615
1654
|
def build_request(operation_name, params = {})
|
1616
1655
|
handlers = @handlers.for(operation_name)
|
1656
|
+
tracer = config.telemetry_provider.tracer_provider.tracer(
|
1657
|
+
Aws::Telemetry.module_to_tracer_name('Aws::ApplicationSignals')
|
1658
|
+
)
|
1617
1659
|
context = Seahorse::Client::RequestContext.new(
|
1618
1660
|
operation_name: operation_name,
|
1619
1661
|
operation: config.api.operation(operation_name),
|
1620
1662
|
client: self,
|
1621
1663
|
params: params,
|
1622
|
-
config: config
|
1664
|
+
config: config,
|
1665
|
+
tracer: tracer
|
1666
|
+
)
|
1623
1667
|
context[:gem_name] = 'aws-sdk-applicationsignals'
|
1624
|
-
context[:gem_version] = '1.
|
1668
|
+
context[:gem_version] = '1.5.0'
|
1625
1669
|
Seahorse::Client::Request.new(handlers, context)
|
1626
1670
|
end
|
1627
1671
|
|
@@ -62,6 +62,7 @@ module Aws::ApplicationSignals
|
|
62
62
|
ListServicesOutput = Shapes::StructureShape.new(name: 'ListServicesOutput')
|
63
63
|
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
64
64
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
65
|
+
LogGroupReferences = Shapes::ListShape.new(name: 'LogGroupReferences')
|
65
66
|
Metric = Shapes::StructureShape.new(name: 'Metric')
|
66
67
|
MetricDataQueries = Shapes::ListShape.new(name: 'MetricDataQueries')
|
67
68
|
MetricDataQuery = Shapes::StructureShape.new(name: 'MetricDataQuery')
|
@@ -204,6 +205,7 @@ module Aws::ApplicationSignals
|
|
204
205
|
GetServiceOutput.add_member(:service, Shapes::ShapeRef.new(shape: Service, required: true, location_name: "Service"))
|
205
206
|
GetServiceOutput.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "StartTime"))
|
206
207
|
GetServiceOutput.add_member(:end_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "EndTime"))
|
208
|
+
GetServiceOutput.add_member(:log_group_references, Shapes::ShapeRef.new(shape: LogGroupReferences, location_name: "LogGroupReferences"))
|
207
209
|
GetServiceOutput.struct_class = Types::GetServiceOutput
|
208
210
|
|
209
211
|
Goal.add_member(:interval, Shapes::ShapeRef.new(shape: Interval, location_name: "Interval"))
|
@@ -286,6 +288,8 @@ module Aws::ApplicationSignals
|
|
286
288
|
ListTagsForResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
287
289
|
ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
|
288
290
|
|
291
|
+
LogGroupReferences.member = Shapes::ShapeRef.new(shape: Attributes)
|
292
|
+
|
289
293
|
Metric.add_member(:namespace, Shapes::ShapeRef.new(shape: Namespace, location_name: "Namespace"))
|
290
294
|
Metric.add_member(:metric_name, Shapes::ShapeRef.new(shape: MetricName, location_name: "MetricName"))
|
291
295
|
Metric.add_member(:dimensions, Shapes::ShapeRef.new(shape: Dimensions, location_name: "Dimensions"))
|
@@ -328,6 +332,7 @@ module Aws::ApplicationSignals
|
|
328
332
|
Service.add_member(:key_attributes, Shapes::ShapeRef.new(shape: Attributes, required: true, location_name: "KeyAttributes"))
|
329
333
|
Service.add_member(:attribute_maps, Shapes::ShapeRef.new(shape: AttributeMaps, location_name: "AttributeMaps"))
|
330
334
|
Service.add_member(:metric_references, Shapes::ShapeRef.new(shape: MetricReferences, required: true, location_name: "MetricReferences"))
|
335
|
+
Service.add_member(:log_group_references, Shapes::ShapeRef.new(shape: LogGroupReferences, location_name: "LogGroupReferences"))
|
331
336
|
Service.struct_class = Types::Service
|
332
337
|
|
333
338
|
ServiceDependencies.member = Shapes::ShapeRef.new(shape: ServiceDependency)
|
@@ -473,6 +478,7 @@ module Aws::ApplicationSignals
|
|
473
478
|
|
474
479
|
api.metadata = {
|
475
480
|
"apiVersion" => "2024-04-15",
|
481
|
+
"auth" => ["aws.auth#sigv4"],
|
476
482
|
"endpointPrefix" => "application-signals",
|
477
483
|
"protocol" => "rest-json",
|
478
484
|
"protocols" => ["rest-json"],
|
@@ -224,12 +224,16 @@ module Aws::ApplicationSignals
|
|
224
224
|
# The start of the time period to retrieve information about. When
|
225
225
|
# used in a raw HTTP Query API, it is formatted as be epoch time in
|
226
226
|
# seconds. For example: `1698778057`
|
227
|
+
#
|
228
|
+
# Your requested start time will be rounded to the nearest hour.
|
227
229
|
# @return [Time]
|
228
230
|
#
|
229
231
|
# @!attribute [rw] end_time
|
230
232
|
# The end of the time period to retrieve information about. When used
|
231
233
|
# in a raw HTTP Query API, it is formatted as be epoch time in
|
232
234
|
# seconds. For example: `1698778057`
|
235
|
+
#
|
236
|
+
# Your requested start time will be rounded to the nearest hour.
|
233
237
|
# @return [Time]
|
234
238
|
#
|
235
239
|
# @!attribute [rw] key_attributes
|
@@ -305,20 +309,41 @@ module Aws::ApplicationSignals
|
|
305
309
|
# The start time of the data included in the response. In a raw HTTP
|
306
310
|
# Query API, it is formatted as be epoch time in seconds. For example:
|
307
311
|
# `1698778057`.
|
312
|
+
#
|
313
|
+
# This displays the time that Application Signals used for the
|
314
|
+
# request. It might not match your request exactly, because it was
|
315
|
+
# rounded to the nearest hour.
|
308
316
|
# @return [Time]
|
309
317
|
#
|
310
318
|
# @!attribute [rw] end_time
|
311
319
|
# The end time of the data included in the response. In a raw HTTP
|
312
320
|
# Query API, it is formatted as be epoch time in seconds. For example:
|
313
321
|
# `1698778057`.
|
322
|
+
#
|
323
|
+
# This displays the time that Application Signals used for the
|
324
|
+
# request. It might not match your request exactly, because it was
|
325
|
+
# rounded to the nearest hour.
|
314
326
|
# @return [Time]
|
315
327
|
#
|
328
|
+
# @!attribute [rw] log_group_references
|
329
|
+
# An array of string-to-string maps that each contain information
|
330
|
+
# about one log group associated with this service. Each
|
331
|
+
# string-to-string map includes the following fields:
|
332
|
+
#
|
333
|
+
# * `"Type": "AWS::Resource"`
|
334
|
+
#
|
335
|
+
# * `"ResourceType": "AWS::Logs::LogGroup"`
|
336
|
+
#
|
337
|
+
# * `"Identifier": "name-of-log-group"`
|
338
|
+
# @return [Array<Hash<String,String>>]
|
339
|
+
#
|
316
340
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/GetServiceOutput AWS API Documentation
|
317
341
|
#
|
318
342
|
class GetServiceOutput < Struct.new(
|
319
343
|
:service,
|
320
344
|
:start_time,
|
321
|
-
:end_time
|
345
|
+
:end_time,
|
346
|
+
:log_group_references)
|
322
347
|
SENSITIVE = []
|
323
348
|
include Aws::Structure
|
324
349
|
end
|
@@ -398,12 +423,16 @@ module Aws::ApplicationSignals
|
|
398
423
|
# The start of the time period to retrieve information about. When
|
399
424
|
# used in a raw HTTP Query API, it is formatted as be epoch time in
|
400
425
|
# seconds. For example: `1698778057`
|
426
|
+
#
|
427
|
+
# Your requested start time will be rounded to the nearest hour.
|
401
428
|
# @return [Time]
|
402
429
|
#
|
403
430
|
# @!attribute [rw] end_time
|
404
431
|
# The end of the time period to retrieve information about. When used
|
405
432
|
# in a raw HTTP Query API, it is formatted as be epoch time in
|
406
433
|
# seconds. For example: `1698778057`
|
434
|
+
#
|
435
|
+
# Your requested end time will be rounded to the nearest hour.
|
407
436
|
# @return [Time]
|
408
437
|
#
|
409
438
|
# @!attribute [rw] key_attributes
|
@@ -457,12 +486,20 @@ module Aws::ApplicationSignals
|
|
457
486
|
# The start of the time period that the returned information applies
|
458
487
|
# to. When used in a raw HTTP Query API, it is formatted as be epoch
|
459
488
|
# time in seconds. For example: `1698778057`
|
489
|
+
#
|
490
|
+
# This displays the time that Application Signals used for the
|
491
|
+
# request. It might not match your request exactly, because it was
|
492
|
+
# rounded to the nearest hour.
|
460
493
|
# @return [Time]
|
461
494
|
#
|
462
495
|
# @!attribute [rw] end_time
|
463
496
|
# The end of the time period that the returned information applies to.
|
464
497
|
# When used in a raw HTTP Query API, it is formatted as be epoch time
|
465
498
|
# in seconds. For example: `1698778057`
|
499
|
+
#
|
500
|
+
# This displays the time that Application Signals used for the
|
501
|
+
# request. It might not match your request exactly, because it was
|
502
|
+
# rounded to the nearest hour.
|
466
503
|
# @return [Time]
|
467
504
|
#
|
468
505
|
# @!attribute [rw] service_dependencies
|
@@ -490,12 +527,16 @@ module Aws::ApplicationSignals
|
|
490
527
|
# The start of the time period to retrieve information about. When
|
491
528
|
# used in a raw HTTP Query API, it is formatted as be epoch time in
|
492
529
|
# seconds. For example: `1698778057`
|
530
|
+
#
|
531
|
+
# Your requested start time will be rounded to the nearest hour.
|
493
532
|
# @return [Time]
|
494
533
|
#
|
495
534
|
# @!attribute [rw] end_time
|
496
535
|
# The end of the time period to retrieve information about. When used
|
497
536
|
# in a raw HTTP Query API, it is formatted as be epoch time in
|
498
537
|
# seconds. For example: `1698778057`
|
538
|
+
#
|
539
|
+
# Your requested start time will be rounded to the nearest hour.
|
499
540
|
# @return [Time]
|
500
541
|
#
|
501
542
|
# @!attribute [rw] key_attributes
|
@@ -549,12 +590,20 @@ module Aws::ApplicationSignals
|
|
549
590
|
# The start of the time period that the returned information applies
|
550
591
|
# to. When used in a raw HTTP Query API, it is formatted as be epoch
|
551
592
|
# time in seconds. For example: `1698778057`
|
593
|
+
#
|
594
|
+
# This displays the time that Application Signals used for the
|
595
|
+
# request. It might not match your request exactly, because it was
|
596
|
+
# rounded to the nearest hour.
|
552
597
|
# @return [Time]
|
553
598
|
#
|
554
599
|
# @!attribute [rw] end_time
|
555
600
|
# The end of the time period that the returned information applies to.
|
556
601
|
# When used in a raw HTTP Query API, it is formatted as be epoch time
|
557
602
|
# in seconds. For example: `1698778057`
|
603
|
+
#
|
604
|
+
# This displays the time that Application Signals used for the
|
605
|
+
# request. It might not match your request exactly, because it was
|
606
|
+
# rounded to the nearest hour.
|
558
607
|
# @return [Time]
|
559
608
|
#
|
560
609
|
# @!attribute [rw] service_dependents
|
@@ -650,12 +699,16 @@ module Aws::ApplicationSignals
|
|
650
699
|
# The start of the time period to retrieve information about. When
|
651
700
|
# used in a raw HTTP Query API, it is formatted as be epoch time in
|
652
701
|
# seconds. For example: `1698778057`
|
702
|
+
#
|
703
|
+
# Your requested start time will be rounded to the nearest hour.
|
653
704
|
# @return [Time]
|
654
705
|
#
|
655
706
|
# @!attribute [rw] end_time
|
656
707
|
# The end of the time period to retrieve information about. When used
|
657
708
|
# in a raw HTTP Query API, it is formatted as be epoch time in
|
658
709
|
# seconds. For example: `1698778057`
|
710
|
+
#
|
711
|
+
# Your requested end time will be rounded to the nearest hour.
|
659
712
|
# @return [Time]
|
660
713
|
#
|
661
714
|
# @!attribute [rw] key_attributes
|
@@ -709,12 +762,20 @@ module Aws::ApplicationSignals
|
|
709
762
|
# The start of the time period that the returned information applies
|
710
763
|
# to. When used in a raw HTTP Query API, it is formatted as be epoch
|
711
764
|
# time in seconds. For example: `1698778057`
|
765
|
+
#
|
766
|
+
# This displays the time that Application Signals used for the
|
767
|
+
# request. It might not match your request exactly, because it was
|
768
|
+
# rounded to the nearest hour.
|
712
769
|
# @return [Time]
|
713
770
|
#
|
714
771
|
# @!attribute [rw] end_time
|
715
772
|
# The end of the time period that the returned information applies to.
|
716
773
|
# When used in a raw HTTP Query API, it is formatted as be epoch time
|
717
774
|
# in seconds. For example: `1698778057`
|
775
|
+
#
|
776
|
+
# This displays the time that Application Signals used for the
|
777
|
+
# request. It might not match your request exactly, because it was
|
778
|
+
# rounded to the nearest hour.
|
718
779
|
# @return [Time]
|
719
780
|
#
|
720
781
|
# @!attribute [rw] service_operations
|
@@ -742,12 +803,16 @@ module Aws::ApplicationSignals
|
|
742
803
|
# The start of the time period to retrieve information about. When
|
743
804
|
# used in a raw HTTP Query API, it is formatted as be epoch time in
|
744
805
|
# seconds. For example: `1698778057`
|
806
|
+
#
|
807
|
+
# Your requested start time will be rounded to the nearest hour.
|
745
808
|
# @return [Time]
|
746
809
|
#
|
747
810
|
# @!attribute [rw] end_time
|
748
811
|
# The end of the time period to retrieve information about. When used
|
749
812
|
# in a raw HTTP Query API, it is formatted as be epoch time in
|
750
813
|
# seconds. For example: `1698778057`
|
814
|
+
#
|
815
|
+
# Your requested start time will be rounded to the nearest hour.
|
751
816
|
# @return [Time]
|
752
817
|
#
|
753
818
|
# @!attribute [rw] max_results
|
@@ -775,12 +840,20 @@ module Aws::ApplicationSignals
|
|
775
840
|
# The start of the time period that the returned information applies
|
776
841
|
# to. When used in a raw HTTP Query API, it is formatted as be epoch
|
777
842
|
# time in seconds. For example: `1698778057`
|
843
|
+
#
|
844
|
+
# This displays the time that Application Signals used for the
|
845
|
+
# request. It might not match your request exactly, because it was
|
846
|
+
# rounded to the nearest hour.
|
778
847
|
# @return [Time]
|
779
848
|
#
|
780
849
|
# @!attribute [rw] end_time
|
781
850
|
# The end of the time period that the returned information applies to.
|
782
851
|
# When used in a raw HTTP Query API, it is formatted as be epoch time
|
783
852
|
# in seconds. For example: `1698778057`
|
853
|
+
#
|
854
|
+
# This displays the time that Application Signals used for the
|
855
|
+
# request. It might not match your request exactly, because it was
|
856
|
+
# rounded to the nearest hour.
|
784
857
|
# @return [Time]
|
785
858
|
#
|
786
859
|
# @!attribute [rw] service_summaries
|
@@ -1105,7 +1178,7 @@ module Aws::ApplicationSignals
|
|
1105
1178
|
# @return [String]
|
1106
1179
|
#
|
1107
1180
|
# @!attribute [rw] resource_id
|
1108
|
-
#
|
1181
|
+
# Can't find the resource id.
|
1109
1182
|
# @return [String]
|
1110
1183
|
#
|
1111
1184
|
# @!attribute [rw] message
|
@@ -1225,12 +1298,25 @@ module Aws::ApplicationSignals
|
|
1225
1298
|
# metric associated with this service.
|
1226
1299
|
# @return [Array<Types::MetricReference>]
|
1227
1300
|
#
|
1301
|
+
# @!attribute [rw] log_group_references
|
1302
|
+
# An array of string-to-string maps that each contain information
|
1303
|
+
# about one log group associated with this service. Each
|
1304
|
+
# string-to-string map includes the following fields:
|
1305
|
+
#
|
1306
|
+
# * `"Type": "AWS::Resource"`
|
1307
|
+
#
|
1308
|
+
# * `"ResourceType": "AWS::Logs::LogGroup"`
|
1309
|
+
#
|
1310
|
+
# * `"Identifier": "name-of-log-group"`
|
1311
|
+
# @return [Array<Hash<String,String>>]
|
1312
|
+
#
|
1228
1313
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/Service AWS API Documentation
|
1229
1314
|
#
|
1230
1315
|
class Service < Struct.new(
|
1231
1316
|
:key_attributes,
|
1232
1317
|
:attribute_maps,
|
1233
|
-
:metric_references
|
1318
|
+
:metric_references,
|
1319
|
+
:log_group_references)
|
1234
1320
|
SENSITIVE = []
|
1235
1321
|
include Aws::Structure
|
1236
1322
|
end
|
data/sig/client.rbs
CHANGED
@@ -50,6 +50,7 @@ module Aws
|
|
50
50
|
?session_token: String,
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
52
52
|
?stub_responses: untyped,
|
53
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
53
54
|
?token_provider: untyped,
|
54
55
|
?use_dualstack_endpoint: bool,
|
55
56
|
?use_fips_endpoint: bool,
|
@@ -168,6 +169,7 @@ module Aws
|
|
168
169
|
def service: () -> Types::Service
|
169
170
|
def start_time: () -> ::Time
|
170
171
|
def end_time: () -> ::Time
|
172
|
+
def log_group_references: () -> ::Array[::Hash[::String, ::String]]
|
171
173
|
end
|
172
174
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationSignals/Client.html#get_service-instance_method
|
173
175
|
def get_service: (
|
data/sig/resource.rbs
CHANGED
@@ -50,6 +50,7 @@ module Aws
|
|
50
50
|
?session_token: String,
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
52
52
|
?stub_responses: untyped,
|
53
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
53
54
|
?token_provider: untyped,
|
54
55
|
?use_dualstack_endpoint: bool,
|
55
56
|
?use_fips_endpoint: bool,
|
data/sig/types.rbs
CHANGED
@@ -87,6 +87,7 @@ module Aws::ApplicationSignals
|
|
87
87
|
attr_accessor service: Types::Service
|
88
88
|
attr_accessor start_time: ::Time
|
89
89
|
attr_accessor end_time: ::Time
|
90
|
+
attr_accessor log_group_references: ::Array[::Hash[::String, ::String]]
|
90
91
|
SENSITIVE: []
|
91
92
|
end
|
92
93
|
|
@@ -253,6 +254,7 @@ module Aws::ApplicationSignals
|
|
253
254
|
attr_accessor key_attributes: ::Hash[::String, ::String]
|
254
255
|
attr_accessor attribute_maps: ::Array[::Hash[::String, ::String]]
|
255
256
|
attr_accessor metric_references: ::Array[Types::MetricReference]
|
257
|
+
attr_accessor log_group_references: ::Array[::Hash[::String, ::String]]
|
256
258
|
SENSITIVE: []
|
257
259
|
end
|
258
260
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-applicationsignals
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-09-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.203.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,21 +29,21 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.203.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '1.
|
39
|
+
version: '1.5'
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '1.
|
46
|
+
version: '1.5'
|
47
47
|
description: Official AWS Ruby gem for Amazon CloudWatch Application Signals. This
|
48
48
|
gem is part of the AWS SDK for Ruby.
|
49
49
|
email:
|