aws-sdk-observabilityadmin 1.12.0 → 1.13.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-observabilityadmin/client.rb +275 -1
- data/lib/aws-sdk-observabilityadmin/client_api.rb +191 -0
- data/lib/aws-sdk-observabilityadmin/types.rb +454 -0
- data/lib/aws-sdk-observabilityadmin.rb +2 -2
- data/sig/client.rbs +109 -0
- data/sig/types.rbs +119 -0
- metadata +1 -1
data/sig/types.rbs
CHANGED
@@ -14,11 +14,57 @@ module Aws::ObservabilityAdmin
|
|
14
14
|
SENSITIVE: []
|
15
15
|
end
|
16
16
|
|
17
|
+
class CentralizationRule
|
18
|
+
attr_accessor source: Types::CentralizationRuleSource
|
19
|
+
attr_accessor destination: Types::CentralizationRuleDestination
|
20
|
+
SENSITIVE: []
|
21
|
+
end
|
22
|
+
|
23
|
+
class CentralizationRuleDestination
|
24
|
+
attr_accessor region: ::String
|
25
|
+
attr_accessor account: ::String
|
26
|
+
attr_accessor destination_logs_configuration: Types::DestinationLogsConfiguration
|
27
|
+
SENSITIVE: []
|
28
|
+
end
|
29
|
+
|
30
|
+
class CentralizationRuleSource
|
31
|
+
attr_accessor regions: ::Array[::String]
|
32
|
+
attr_accessor scope: ::String
|
33
|
+
attr_accessor source_logs_configuration: Types::SourceLogsConfiguration
|
34
|
+
SENSITIVE: []
|
35
|
+
end
|
36
|
+
|
37
|
+
class CentralizationRuleSummary
|
38
|
+
attr_accessor rule_name: ::String
|
39
|
+
attr_accessor rule_arn: ::String
|
40
|
+
attr_accessor creator_account_id: ::String
|
41
|
+
attr_accessor created_time_stamp: ::Integer
|
42
|
+
attr_accessor created_region: ::String
|
43
|
+
attr_accessor last_update_time_stamp: ::Integer
|
44
|
+
attr_accessor rule_health: ("Healthy" | "Unhealthy" | "Provisioning")
|
45
|
+
attr_accessor failure_reason: ("TRUSTED_ACCESS_NOT_ENABLED" | "DESTINATION_ACCOUNT_NOT_IN_ORGANIZATION" | "INTERNAL_SERVER_ERROR")
|
46
|
+
attr_accessor destination_account_id: ::String
|
47
|
+
attr_accessor destination_region: ::String
|
48
|
+
SENSITIVE: []
|
49
|
+
end
|
50
|
+
|
17
51
|
class ConflictException
|
18
52
|
attr_accessor message: ::String
|
19
53
|
SENSITIVE: []
|
20
54
|
end
|
21
55
|
|
56
|
+
class CreateCentralizationRuleForOrganizationInput
|
57
|
+
attr_accessor rule_name: ::String
|
58
|
+
attr_accessor rule: Types::CentralizationRule
|
59
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
60
|
+
SENSITIVE: []
|
61
|
+
end
|
62
|
+
|
63
|
+
class CreateCentralizationRuleForOrganizationOutput
|
64
|
+
attr_accessor rule_arn: ::String
|
65
|
+
SENSITIVE: []
|
66
|
+
end
|
67
|
+
|
22
68
|
class CreateTelemetryRuleForOrganizationInput
|
23
69
|
attr_accessor rule_name: ::String
|
24
70
|
attr_accessor rule: Types::TelemetryRule
|
@@ -43,6 +89,11 @@ module Aws::ObservabilityAdmin
|
|
43
89
|
SENSITIVE: []
|
44
90
|
end
|
45
91
|
|
92
|
+
class DeleteCentralizationRuleForOrganizationInput
|
93
|
+
attr_accessor rule_identifier: ::String
|
94
|
+
SENSITIVE: []
|
95
|
+
end
|
96
|
+
|
46
97
|
class DeleteTelemetryRuleForOrganizationInput
|
47
98
|
attr_accessor rule_identifier: ::String
|
48
99
|
SENSITIVE: []
|
@@ -53,6 +104,30 @@ module Aws::ObservabilityAdmin
|
|
53
104
|
SENSITIVE: []
|
54
105
|
end
|
55
106
|
|
107
|
+
class DestinationLogsConfiguration
|
108
|
+
attr_accessor logs_encryption_configuration: Types::LogsEncryptionConfiguration
|
109
|
+
attr_accessor backup_configuration: Types::LogsBackupConfiguration
|
110
|
+
SENSITIVE: []
|
111
|
+
end
|
112
|
+
|
113
|
+
class GetCentralizationRuleForOrganizationInput
|
114
|
+
attr_accessor rule_identifier: ::String
|
115
|
+
SENSITIVE: []
|
116
|
+
end
|
117
|
+
|
118
|
+
class GetCentralizationRuleForOrganizationOutput
|
119
|
+
attr_accessor rule_name: ::String
|
120
|
+
attr_accessor rule_arn: ::String
|
121
|
+
attr_accessor creator_account_id: ::String
|
122
|
+
attr_accessor created_time_stamp: ::Integer
|
123
|
+
attr_accessor created_region: ::String
|
124
|
+
attr_accessor last_update_time_stamp: ::Integer
|
125
|
+
attr_accessor rule_health: ("Healthy" | "Unhealthy" | "Provisioning")
|
126
|
+
attr_accessor failure_reason: ("TRUSTED_ACCESS_NOT_ENABLED" | "DESTINATION_ACCOUNT_NOT_IN_ORGANIZATION" | "INTERNAL_SERVER_ERROR")
|
127
|
+
attr_accessor centralization_rule: Types::CentralizationRule
|
128
|
+
SENSITIVE: []
|
129
|
+
end
|
130
|
+
|
56
131
|
class GetTelemetryEvaluationStatusForOrganizationOutput
|
57
132
|
attr_accessor status: ("NOT_STARTED" | "STARTING" | "FAILED_START" | "RUNNING" | "STOPPING" | "FAILED_STOP" | "STOPPED")
|
58
133
|
attr_accessor failure_reason: ::String
|
@@ -99,6 +174,20 @@ module Aws::ObservabilityAdmin
|
|
99
174
|
SENSITIVE: []
|
100
175
|
end
|
101
176
|
|
177
|
+
class ListCentralizationRulesForOrganizationInput
|
178
|
+
attr_accessor rule_name_prefix: ::String
|
179
|
+
attr_accessor all_regions: bool
|
180
|
+
attr_accessor max_results: ::Integer
|
181
|
+
attr_accessor next_token: ::String
|
182
|
+
SENSITIVE: []
|
183
|
+
end
|
184
|
+
|
185
|
+
class ListCentralizationRulesForOrganizationOutput
|
186
|
+
attr_accessor centralization_rule_summaries: ::Array[Types::CentralizationRuleSummary]
|
187
|
+
attr_accessor next_token: ::String
|
188
|
+
SENSITIVE: []
|
189
|
+
end
|
190
|
+
|
102
191
|
class ListResourceTelemetryForOrganizationInput
|
103
192
|
attr_accessor account_identifiers: ::Array[::String]
|
104
193
|
attr_accessor resource_identifier_prefix: ::String
|
@@ -170,6 +259,19 @@ module Aws::ObservabilityAdmin
|
|
170
259
|
SENSITIVE: []
|
171
260
|
end
|
172
261
|
|
262
|
+
class LogsBackupConfiguration
|
263
|
+
attr_accessor region: ::String
|
264
|
+
attr_accessor kms_key_arn: ::String
|
265
|
+
SENSITIVE: []
|
266
|
+
end
|
267
|
+
|
268
|
+
class LogsEncryptionConfiguration
|
269
|
+
attr_accessor encryption_strategy: ("CUSTOMER_MANAGED" | "AWS_OWNED")
|
270
|
+
attr_accessor kms_key_arn: ::String
|
271
|
+
attr_accessor encryption_conflict_resolution_strategy: ("ALLOW" | "SKIP")
|
272
|
+
SENSITIVE: []
|
273
|
+
end
|
274
|
+
|
173
275
|
class ResourceNotFoundException
|
174
276
|
attr_accessor message: ::String
|
175
277
|
SENSITIVE: []
|
@@ -181,6 +283,12 @@ module Aws::ObservabilityAdmin
|
|
181
283
|
SENSITIVE: []
|
182
284
|
end
|
183
285
|
|
286
|
+
class SourceLogsConfiguration
|
287
|
+
attr_accessor log_group_selection_criteria: ::String
|
288
|
+
attr_accessor encrypted_log_group_strategy: ("ALLOW" | "SKIP")
|
289
|
+
SENSITIVE: []
|
290
|
+
end
|
291
|
+
|
184
292
|
class TagResourceInput
|
185
293
|
attr_accessor resource_arn: ::String
|
186
294
|
attr_accessor tags: ::Hash[::String, ::String]
|
@@ -235,6 +343,17 @@ module Aws::ObservabilityAdmin
|
|
235
343
|
SENSITIVE: []
|
236
344
|
end
|
237
345
|
|
346
|
+
class UpdateCentralizationRuleForOrganizationInput
|
347
|
+
attr_accessor rule_identifier: ::String
|
348
|
+
attr_accessor rule: Types::CentralizationRule
|
349
|
+
SENSITIVE: []
|
350
|
+
end
|
351
|
+
|
352
|
+
class UpdateCentralizationRuleForOrganizationOutput
|
353
|
+
attr_accessor rule_arn: ::String
|
354
|
+
SENSITIVE: []
|
355
|
+
end
|
356
|
+
|
238
357
|
class UpdateTelemetryRuleForOrganizationInput
|
239
358
|
attr_accessor rule_identifier: ::String
|
240
359
|
attr_accessor rule: Types::TelemetryRule
|