aws-sdk-applicationsignals 1.31.0 → 1.32.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-applicationsignals/client.rb +230 -78
- data/lib/aws-sdk-applicationsignals/client_api.rb +46 -0
- data/lib/aws-sdk-applicationsignals/types.rb +439 -222
- data/lib/aws-sdk-applicationsignals.rb +1 -1
- data/sig/client.rbs +23 -1
- data/sig/types.rbs +24 -1
- metadata +1 -1
data/sig/client.rbs
CHANGED
|
@@ -339,6 +339,8 @@ module Aws
|
|
|
339
339
|
|
|
340
340
|
interface _ListAuditFindingsResponseSuccess
|
|
341
341
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListAuditFindingsOutput]
|
|
342
|
+
def start_time: () -> ::Time
|
|
343
|
+
def end_time: () -> ::Time
|
|
342
344
|
def audit_findings: () -> ::Array[Types::AuditFinding]
|
|
343
345
|
def next_token: () -> ::String
|
|
344
346
|
end
|
|
@@ -377,11 +379,29 @@ module Aws
|
|
|
377
379
|
}
|
|
378
380
|
},
|
|
379
381
|
],
|
|
382
|
+
?detail_level: ("BRIEF" | "DETAILED"),
|
|
380
383
|
?next_token: ::String,
|
|
381
384
|
?max_results: ::Integer
|
|
382
385
|
) -> _ListAuditFindingsResponseSuccess
|
|
383
386
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAuditFindingsResponseSuccess
|
|
384
387
|
|
|
388
|
+
interface _ListEntityEventsResponseSuccess
|
|
389
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListEntityEventsOutput]
|
|
390
|
+
def start_time: () -> ::Time
|
|
391
|
+
def end_time: () -> ::Time
|
|
392
|
+
def change_events: () -> ::Array[Types::ChangeEvent]
|
|
393
|
+
def next_token: () -> ::String
|
|
394
|
+
end
|
|
395
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationSignals/Client.html#list_entity_events-instance_method
|
|
396
|
+
def list_entity_events: (
|
|
397
|
+
entity: Hash[::String, ::String],
|
|
398
|
+
start_time: ::Time,
|
|
399
|
+
end_time: ::Time,
|
|
400
|
+
?max_results: ::Integer,
|
|
401
|
+
?next_token: ::String
|
|
402
|
+
) -> _ListEntityEventsResponseSuccess
|
|
403
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEntityEventsResponseSuccess
|
|
404
|
+
|
|
385
405
|
interface _ListGroupingAttributeDefinitionsResponseSuccess
|
|
386
406
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListGroupingAttributeDefinitionsOutput]
|
|
387
407
|
def grouping_attribute_definitions: () -> ::Array[Types::GroupingAttributeDefinition]
|
|
@@ -390,7 +410,9 @@ module Aws
|
|
|
390
410
|
end
|
|
391
411
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationSignals/Client.html#list_grouping_attribute_definitions-instance_method
|
|
392
412
|
def list_grouping_attribute_definitions: (
|
|
393
|
-
?next_token: ::String
|
|
413
|
+
?next_token: ::String,
|
|
414
|
+
?aws_account_id: ::String,
|
|
415
|
+
?include_linked_accounts: bool
|
|
394
416
|
) -> _ListGroupingAttributeDefinitionsResponseSuccess
|
|
395
417
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListGroupingAttributeDefinitionsResponseSuccess
|
|
396
418
|
|
data/sig/types.rbs
CHANGED
|
@@ -58,6 +58,7 @@ module Aws::ApplicationSignals
|
|
|
58
58
|
class AuditorResult
|
|
59
59
|
attr_accessor auditor: ::String
|
|
60
60
|
attr_accessor description: ::String
|
|
61
|
+
attr_accessor data: ::Hash[::String, ::String]
|
|
61
62
|
attr_accessor severity: ("CRITICAL" | "HIGH" | "MEDIUM" | "LOW" | "NONE")
|
|
62
63
|
SENSITIVE: []
|
|
63
64
|
end
|
|
@@ -117,7 +118,7 @@ module Aws::ApplicationSignals
|
|
|
117
118
|
attr_accessor account_id: ::String
|
|
118
119
|
attr_accessor region: ::String
|
|
119
120
|
attr_accessor entity: ::Hash[::String, ::String]
|
|
120
|
-
attr_accessor change_event_type: ("DEPLOYMENT")
|
|
121
|
+
attr_accessor change_event_type: ("DEPLOYMENT" | "CONFIGURATION")
|
|
121
122
|
attr_accessor event_id: ::String
|
|
122
123
|
attr_accessor user_name: ::String
|
|
123
124
|
attr_accessor event_name: ::String
|
|
@@ -254,19 +255,41 @@ module Aws::ApplicationSignals
|
|
|
254
255
|
attr_accessor end_time: ::Time
|
|
255
256
|
attr_accessor auditors: ::Array[::String]
|
|
256
257
|
attr_accessor audit_targets: ::Array[Types::AuditTarget]
|
|
258
|
+
attr_accessor detail_level: ("BRIEF" | "DETAILED")
|
|
257
259
|
attr_accessor next_token: ::String
|
|
258
260
|
attr_accessor max_results: ::Integer
|
|
259
261
|
SENSITIVE: []
|
|
260
262
|
end
|
|
261
263
|
|
|
262
264
|
class ListAuditFindingsOutput
|
|
265
|
+
attr_accessor start_time: ::Time
|
|
266
|
+
attr_accessor end_time: ::Time
|
|
263
267
|
attr_accessor audit_findings: ::Array[Types::AuditFinding]
|
|
264
268
|
attr_accessor next_token: ::String
|
|
265
269
|
SENSITIVE: []
|
|
266
270
|
end
|
|
267
271
|
|
|
272
|
+
class ListEntityEventsInput
|
|
273
|
+
attr_accessor entity: ::Hash[::String, ::String]
|
|
274
|
+
attr_accessor start_time: ::Time
|
|
275
|
+
attr_accessor end_time: ::Time
|
|
276
|
+
attr_accessor max_results: ::Integer
|
|
277
|
+
attr_accessor next_token: ::String
|
|
278
|
+
SENSITIVE: []
|
|
279
|
+
end
|
|
280
|
+
|
|
281
|
+
class ListEntityEventsOutput
|
|
282
|
+
attr_accessor start_time: ::Time
|
|
283
|
+
attr_accessor end_time: ::Time
|
|
284
|
+
attr_accessor change_events: ::Array[Types::ChangeEvent]
|
|
285
|
+
attr_accessor next_token: ::String
|
|
286
|
+
SENSITIVE: []
|
|
287
|
+
end
|
|
288
|
+
|
|
268
289
|
class ListGroupingAttributeDefinitionsInput
|
|
269
290
|
attr_accessor next_token: ::String
|
|
291
|
+
attr_accessor aws_account_id: ::String
|
|
292
|
+
attr_accessor include_linked_accounts: bool
|
|
270
293
|
SENSITIVE: []
|
|
271
294
|
end
|
|
272
295
|
|