aws-sdk-applicationsignals 1.3.0 → 1.4.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-applicationsignals/client.rb +28 -1
- 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 +1 -0
- data/sig/types.rbs +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e3c01e793d3a6c92aea898deb98cf95a9b72301058a54db90aab19b9933dea5f
|
4
|
+
data.tar.gz: 3da776c18e6162102d7ce6a3e35ce6a986ce7d35115a28a998b7f7a896784425
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b062ee412b83f73f388ca5fed6975e98bf441f67ff8a86abcf72dc3fa95b24f438290387cab5382dfdc83d8348e1a57fd2a1e5190384a3417956f08b8767acb
|
7
|
+
data.tar.gz: a09f18cdc5a2b606d46fea895d2f74020d9eb3008db864c7532361100d198dec4dfc27bf248b86ff1ab531f6a8c58d24daff8ec89b962ebd34b4a47d6ada1c7c
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.4.0 (2024-07-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* 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.
|
8
|
+
|
4
9
|
1.3.0 (2024-07-02)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.4.0
|
@@ -743,11 +743,15 @@ module Aws::ApplicationSignals
|
|
743
743
|
# in a raw HTTP Query API, it is formatted as be epoch time in seconds.
|
744
744
|
# For example: `1698778057`
|
745
745
|
#
|
746
|
+
# Your requested start time will be rounded to the nearest hour.
|
747
|
+
#
|
746
748
|
# @option params [required, Time,DateTime,Date,Integer,String] :end_time
|
747
749
|
# The end of the time period to retrieve information about. When used in
|
748
750
|
# a raw HTTP Query API, it is formatted as be epoch time in seconds. For
|
749
751
|
# example: `1698778057`
|
750
752
|
#
|
753
|
+
# Your requested start time will be rounded to the nearest hour.
|
754
|
+
#
|
751
755
|
# @option params [required, Hash<String,String>] :key_attributes
|
752
756
|
# Use this field to specify which service you want to retrieve
|
753
757
|
# information for. You must specify at least the `Type`, `Name`, and
|
@@ -777,6 +781,7 @@ module Aws::ApplicationSignals
|
|
777
781
|
# * {Types::GetServiceOutput#service #service} => Types::Service
|
778
782
|
# * {Types::GetServiceOutput#start_time #start_time} => Time
|
779
783
|
# * {Types::GetServiceOutput#end_time #end_time} => Time
|
784
|
+
# * {Types::GetServiceOutput#log_group_references #log_group_references} => Array<Hash<String,String>>
|
780
785
|
#
|
781
786
|
# @example Request syntax with placeholder values
|
782
787
|
#
|
@@ -802,8 +807,14 @@ module Aws::ApplicationSignals
|
|
802
807
|
# resp.service.metric_references[0].dimensions[0].name #=> String
|
803
808
|
# resp.service.metric_references[0].dimensions[0].value #=> String
|
804
809
|
# resp.service.metric_references[0].metric_name #=> String
|
810
|
+
# resp.service.log_group_references #=> Array
|
811
|
+
# resp.service.log_group_references[0] #=> Hash
|
812
|
+
# resp.service.log_group_references[0]["KeyAttributeName"] #=> String
|
805
813
|
# resp.start_time #=> Time
|
806
814
|
# resp.end_time #=> Time
|
815
|
+
# resp.log_group_references #=> Array
|
816
|
+
# resp.log_group_references[0] #=> Hash
|
817
|
+
# resp.log_group_references[0]["KeyAttributeName"] #=> String
|
807
818
|
#
|
808
819
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/GetService AWS API Documentation
|
809
820
|
#
|
@@ -891,11 +902,15 @@ module Aws::ApplicationSignals
|
|
891
902
|
# in a raw HTTP Query API, it is formatted as be epoch time in seconds.
|
892
903
|
# For example: `1698778057`
|
893
904
|
#
|
905
|
+
# Your requested start time will be rounded to the nearest hour.
|
906
|
+
#
|
894
907
|
# @option params [required, Time,DateTime,Date,Integer,String] :end_time
|
895
908
|
# The end of the time period to retrieve information about. When used in
|
896
909
|
# a raw HTTP Query API, it is formatted as be epoch time in seconds. For
|
897
910
|
# example: `1698778057`
|
898
911
|
#
|
912
|
+
# Your requested end time will be rounded to the nearest hour.
|
913
|
+
#
|
899
914
|
# @option params [required, Hash<String,String>] :key_attributes
|
900
915
|
# Use this field to specify which service you want to retrieve
|
901
916
|
# information for. You must specify at least the `Type`, `Name`, and
|
@@ -986,11 +1001,15 @@ module Aws::ApplicationSignals
|
|
986
1001
|
# in a raw HTTP Query API, it is formatted as be epoch time in seconds.
|
987
1002
|
# For example: `1698778057`
|
988
1003
|
#
|
1004
|
+
# Your requested start time will be rounded to the nearest hour.
|
1005
|
+
#
|
989
1006
|
# @option params [required, Time,DateTime,Date,Integer,String] :end_time
|
990
1007
|
# The end of the time period to retrieve information about. When used in
|
991
1008
|
# a raw HTTP Query API, it is formatted as be epoch time in seconds. For
|
992
1009
|
# example: `1698778057`
|
993
1010
|
#
|
1011
|
+
# Your requested start time will be rounded to the nearest hour.
|
1012
|
+
#
|
994
1013
|
# @option params [required, Hash<String,String>] :key_attributes
|
995
1014
|
# Use this field to specify which service you want to retrieve
|
996
1015
|
# information for. You must specify at least the `Type`, `Name`, and
|
@@ -1154,11 +1173,15 @@ module Aws::ApplicationSignals
|
|
1154
1173
|
# in a raw HTTP Query API, it is formatted as be epoch time in seconds.
|
1155
1174
|
# For example: `1698778057`
|
1156
1175
|
#
|
1176
|
+
# Your requested start time will be rounded to the nearest hour.
|
1177
|
+
#
|
1157
1178
|
# @option params [required, Time,DateTime,Date,Integer,String] :end_time
|
1158
1179
|
# The end of the time period to retrieve information about. When used in
|
1159
1180
|
# a raw HTTP Query API, it is formatted as be epoch time in seconds. For
|
1160
1181
|
# example: `1698778057`
|
1161
1182
|
#
|
1183
|
+
# Your requested end time will be rounded to the nearest hour.
|
1184
|
+
#
|
1162
1185
|
# @option params [required, Hash<String,String>] :key_attributes
|
1163
1186
|
# Use this field to specify which service you want to retrieve
|
1164
1187
|
# information for. You must specify at least the `Type`, `Name`, and
|
@@ -1246,11 +1269,15 @@ module Aws::ApplicationSignals
|
|
1246
1269
|
# in a raw HTTP Query API, it is formatted as be epoch time in seconds.
|
1247
1270
|
# For example: `1698778057`
|
1248
1271
|
#
|
1272
|
+
# Your requested start time will be rounded to the nearest hour.
|
1273
|
+
#
|
1249
1274
|
# @option params [required, Time,DateTime,Date,Integer,String] :end_time
|
1250
1275
|
# The end of the time period to retrieve information about. When used in
|
1251
1276
|
# a raw HTTP Query API, it is formatted as be epoch time in seconds. For
|
1252
1277
|
# example: `1698778057`
|
1253
1278
|
#
|
1279
|
+
# Your requested start time will be rounded to the nearest hour.
|
1280
|
+
#
|
1254
1281
|
# @option params [Integer] :max_results
|
1255
1282
|
# The maximum number of results to return in one operation. If you omit
|
1256
1283
|
# this parameter, the default of 50 is used.
|
@@ -1621,7 +1648,7 @@ module Aws::ApplicationSignals
|
|
1621
1648
|
params: params,
|
1622
1649
|
config: config)
|
1623
1650
|
context[:gem_name] = 'aws-sdk-applicationsignals'
|
1624
|
-
context[:gem_version] = '1.
|
1651
|
+
context[:gem_version] = '1.4.0'
|
1625
1652
|
Seahorse::Client::Request.new(handlers, context)
|
1626
1653
|
end
|
1627
1654
|
|
@@ -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
@@ -168,6 +168,7 @@ module Aws
|
|
168
168
|
def service: () -> Types::Service
|
169
169
|
def start_time: () -> ::Time
|
170
170
|
def end_time: () -> ::Time
|
171
|
+
def log_group_references: () -> ::Array[::Hash[::String, ::String]]
|
171
172
|
end
|
172
173
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationSignals/Client.html#get_service-instance_method
|
173
174
|
def get_service: (
|
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.4.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-07-
|
11
|
+
date: 2024-07-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -36,14 +36,14 @@ dependencies:
|
|
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:
|