aws-sdk-applicationsignals 1.2.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-applicationsignals/client.rb +37 -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 +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: 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,16 @@
|
|
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
|
+
|
9
|
+
1.3.0 (2024-07-02)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.2.0 (2024-06-25)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.4.0
|
@@ -312,6 +312,15 @@ module Aws::ApplicationSignals
|
|
312
312
|
#
|
313
313
|
# @option options [String] :session_token
|
314
314
|
#
|
315
|
+
# @option options [Array] :sigv4a_signing_region_set
|
316
|
+
# A list of regions that should be signed with SigV4a signing. When
|
317
|
+
# not passed, a default `:sigv4a_signing_region_set` is searched for
|
318
|
+
# in the following locations:
|
319
|
+
#
|
320
|
+
# * `Aws.config[:sigv4a_signing_region_set]`
|
321
|
+
# * `ENV['AWS_SIGV4A_SIGNING_REGION_SET']`
|
322
|
+
# * `~/.aws/config`
|
323
|
+
#
|
315
324
|
# @option options [Boolean] :stub_responses (false)
|
316
325
|
# Causes the client to return stubbed responses. By default
|
317
326
|
# fake responses are generated and returned. You can specify
|
@@ -734,11 +743,15 @@ module Aws::ApplicationSignals
|
|
734
743
|
# in a raw HTTP Query API, it is formatted as be epoch time in seconds.
|
735
744
|
# For example: `1698778057`
|
736
745
|
#
|
746
|
+
# Your requested start time will be rounded to the nearest hour.
|
747
|
+
#
|
737
748
|
# @option params [required, Time,DateTime,Date,Integer,String] :end_time
|
738
749
|
# The end of the time period to retrieve information about. When used in
|
739
750
|
# a raw HTTP Query API, it is formatted as be epoch time in seconds. For
|
740
751
|
# example: `1698778057`
|
741
752
|
#
|
753
|
+
# Your requested start time will be rounded to the nearest hour.
|
754
|
+
#
|
742
755
|
# @option params [required, Hash<String,String>] :key_attributes
|
743
756
|
# Use this field to specify which service you want to retrieve
|
744
757
|
# information for. You must specify at least the `Type`, `Name`, and
|
@@ -768,6 +781,7 @@ module Aws::ApplicationSignals
|
|
768
781
|
# * {Types::GetServiceOutput#service #service} => Types::Service
|
769
782
|
# * {Types::GetServiceOutput#start_time #start_time} => Time
|
770
783
|
# * {Types::GetServiceOutput#end_time #end_time} => Time
|
784
|
+
# * {Types::GetServiceOutput#log_group_references #log_group_references} => Array<Hash<String,String>>
|
771
785
|
#
|
772
786
|
# @example Request syntax with placeholder values
|
773
787
|
#
|
@@ -793,8 +807,14 @@ module Aws::ApplicationSignals
|
|
793
807
|
# resp.service.metric_references[0].dimensions[0].name #=> String
|
794
808
|
# resp.service.metric_references[0].dimensions[0].value #=> String
|
795
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
|
796
813
|
# resp.start_time #=> Time
|
797
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
|
798
818
|
#
|
799
819
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/GetService AWS API Documentation
|
800
820
|
#
|
@@ -882,11 +902,15 @@ module Aws::ApplicationSignals
|
|
882
902
|
# in a raw HTTP Query API, it is formatted as be epoch time in seconds.
|
883
903
|
# For example: `1698778057`
|
884
904
|
#
|
905
|
+
# Your requested start time will be rounded to the nearest hour.
|
906
|
+
#
|
885
907
|
# @option params [required, Time,DateTime,Date,Integer,String] :end_time
|
886
908
|
# The end of the time period to retrieve information about. When used in
|
887
909
|
# a raw HTTP Query API, it is formatted as be epoch time in seconds. For
|
888
910
|
# example: `1698778057`
|
889
911
|
#
|
912
|
+
# Your requested end time will be rounded to the nearest hour.
|
913
|
+
#
|
890
914
|
# @option params [required, Hash<String,String>] :key_attributes
|
891
915
|
# Use this field to specify which service you want to retrieve
|
892
916
|
# information for. You must specify at least the `Type`, `Name`, and
|
@@ -977,11 +1001,15 @@ module Aws::ApplicationSignals
|
|
977
1001
|
# in a raw HTTP Query API, it is formatted as be epoch time in seconds.
|
978
1002
|
# For example: `1698778057`
|
979
1003
|
#
|
1004
|
+
# Your requested start time will be rounded to the nearest hour.
|
1005
|
+
#
|
980
1006
|
# @option params [required, Time,DateTime,Date,Integer,String] :end_time
|
981
1007
|
# The end of the time period to retrieve information about. When used in
|
982
1008
|
# a raw HTTP Query API, it is formatted as be epoch time in seconds. For
|
983
1009
|
# example: `1698778057`
|
984
1010
|
#
|
1011
|
+
# Your requested start time will be rounded to the nearest hour.
|
1012
|
+
#
|
985
1013
|
# @option params [required, Hash<String,String>] :key_attributes
|
986
1014
|
# Use this field to specify which service you want to retrieve
|
987
1015
|
# information for. You must specify at least the `Type`, `Name`, and
|
@@ -1145,11 +1173,15 @@ module Aws::ApplicationSignals
|
|
1145
1173
|
# in a raw HTTP Query API, it is formatted as be epoch time in seconds.
|
1146
1174
|
# For example: `1698778057`
|
1147
1175
|
#
|
1176
|
+
# Your requested start time will be rounded to the nearest hour.
|
1177
|
+
#
|
1148
1178
|
# @option params [required, Time,DateTime,Date,Integer,String] :end_time
|
1149
1179
|
# The end of the time period to retrieve information about. When used in
|
1150
1180
|
# a raw HTTP Query API, it is formatted as be epoch time in seconds. For
|
1151
1181
|
# example: `1698778057`
|
1152
1182
|
#
|
1183
|
+
# Your requested end time will be rounded to the nearest hour.
|
1184
|
+
#
|
1153
1185
|
# @option params [required, Hash<String,String>] :key_attributes
|
1154
1186
|
# Use this field to specify which service you want to retrieve
|
1155
1187
|
# information for. You must specify at least the `Type`, `Name`, and
|
@@ -1237,11 +1269,15 @@ module Aws::ApplicationSignals
|
|
1237
1269
|
# in a raw HTTP Query API, it is formatted as be epoch time in seconds.
|
1238
1270
|
# For example: `1698778057`
|
1239
1271
|
#
|
1272
|
+
# Your requested start time will be rounded to the nearest hour.
|
1273
|
+
#
|
1240
1274
|
# @option params [required, Time,DateTime,Date,Integer,String] :end_time
|
1241
1275
|
# The end of the time period to retrieve information about. When used in
|
1242
1276
|
# a raw HTTP Query API, it is formatted as be epoch time in seconds. For
|
1243
1277
|
# example: `1698778057`
|
1244
1278
|
#
|
1279
|
+
# Your requested start time will be rounded to the nearest hour.
|
1280
|
+
#
|
1245
1281
|
# @option params [Integer] :max_results
|
1246
1282
|
# The maximum number of results to return in one operation. If you omit
|
1247
1283
|
# this parameter, the default of 50 is used.
|
@@ -1612,7 +1648,7 @@ module Aws::ApplicationSignals
|
|
1612
1648
|
params: params,
|
1613
1649
|
config: config)
|
1614
1650
|
context[:gem_name] = 'aws-sdk-applicationsignals'
|
1615
|
-
context[:gem_version] = '1.
|
1651
|
+
context[:gem_version] = '1.4.0'
|
1616
1652
|
Seahorse::Client::Request.new(handlers, context)
|
1617
1653
|
end
|
1618
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
@@ -48,6 +48,7 @@ module Aws
|
|
48
48
|
?sdk_ua_app_id: String,
|
49
49
|
?secret_access_key: String,
|
50
50
|
?session_token: String,
|
51
|
+
?sigv4a_signing_region_set: Array[String],
|
51
52
|
?stub_responses: untyped,
|
52
53
|
?token_provider: untyped,
|
53
54
|
?use_dualstack_endpoint: bool,
|
@@ -167,6 +168,7 @@ module Aws
|
|
167
168
|
def service: () -> Types::Service
|
168
169
|
def start_time: () -> ::Time
|
169
170
|
def end_time: () -> ::Time
|
171
|
+
def log_group_references: () -> ::Array[::Hash[::String, ::String]]
|
170
172
|
end
|
171
173
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationSignals/Client.html#get_service-instance_method
|
172
174
|
def get_service: (
|
data/sig/resource.rbs
CHANGED
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-
|
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
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.201.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.201.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:
|