aws-sdk-applicationsignals 1.29.0 → 1.31.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-applicationsignals/client.rb +81 -93
- data/lib/aws-sdk-applicationsignals/client_api.rb +6 -0
- data/lib/aws-sdk-applicationsignals/endpoint_parameters.rb +3 -3
- data/lib/aws-sdk-applicationsignals/types.rb +241 -253
- data/lib/aws-sdk-applicationsignals.rb +1 -1
- data/sig/client.rbs +3 -0
- data/sig/types.rbs +8 -0
- metadata +1 -1
data/sig/client.rbs
CHANGED
data/sig/types.rbs
CHANGED
|
@@ -39,6 +39,7 @@ module Aws::ApplicationSignals
|
|
|
39
39
|
attr_accessor service: Types::ServiceEntity
|
|
40
40
|
attr_accessor slo: Types::ServiceLevelObjectiveEntity
|
|
41
41
|
attr_accessor service_operation: Types::ServiceOperationEntity
|
|
42
|
+
attr_accessor canary: Types::CanaryEntity
|
|
42
43
|
attr_accessor unknown: untyped
|
|
43
44
|
SENSITIVE: []
|
|
44
45
|
|
|
@@ -48,6 +49,8 @@ module Aws::ApplicationSignals
|
|
|
48
49
|
end
|
|
49
50
|
class ServiceOperation < AuditTargetEntity
|
|
50
51
|
end
|
|
52
|
+
class Canary < AuditTargetEntity
|
|
53
|
+
end
|
|
51
54
|
class Unknown < AuditTargetEntity
|
|
52
55
|
end
|
|
53
56
|
end
|
|
@@ -104,6 +107,11 @@ module Aws::ApplicationSignals
|
|
|
104
107
|
SENSITIVE: []
|
|
105
108
|
end
|
|
106
109
|
|
|
110
|
+
class CanaryEntity
|
|
111
|
+
attr_accessor canary_name: ::String
|
|
112
|
+
SENSITIVE: []
|
|
113
|
+
end
|
|
114
|
+
|
|
107
115
|
class ChangeEvent
|
|
108
116
|
attr_accessor timestamp: ::Time
|
|
109
117
|
attr_accessor account_id: ::String
|