aws-sdk-cloudwatchomni 1.0.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 +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-cloudwatchomni/client.rb +6083 -0
- data/lib/aws-sdk-cloudwatchomni/client_api.rb +2526 -0
- data/lib/aws-sdk-cloudwatchomni/customizations.rb +0 -0
- data/lib/aws-sdk-cloudwatchomni/endpoint_parameters.rb +59 -0
- data/lib/aws-sdk-cloudwatchomni/endpoint_provider.rb +32 -0
- data/lib/aws-sdk-cloudwatchomni/endpoints.rb +20 -0
- data/lib/aws-sdk-cloudwatchomni/errors.rb +212 -0
- data/lib/aws-sdk-cloudwatchomni/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-cloudwatchomni/resource.rb +26 -0
- data/lib/aws-sdk-cloudwatchomni/types.rb +5254 -0
- data/lib/aws-sdk-cloudwatchomni.rb +61 -0
- data/sig/client.rbs +990 -0
- data/sig/errors.rbs +47 -0
- data/sig/params.rbs +64 -0
- data/sig/resource.rbs +85 -0
- data/sig/types.rbs +1459 -0
- metadata +96 -0
data/sig/types.rbs
ADDED
|
@@ -0,0 +1,1459 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws::CloudWatchOmni
|
|
9
|
+
module Types
|
|
10
|
+
|
|
11
|
+
class AccessDeniedException
|
|
12
|
+
attr_accessor message: ::String
|
|
13
|
+
SENSITIVE: []
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
class AccessGrant
|
|
17
|
+
attr_accessor grant_id: ::String
|
|
18
|
+
attr_accessor grant_arn: ::String
|
|
19
|
+
attr_accessor name: ::String
|
|
20
|
+
attr_accessor account_id: ::String
|
|
21
|
+
attr_accessor domain_id: ::String
|
|
22
|
+
attr_accessor principal: Types::AccessGrantPrincipal
|
|
23
|
+
attr_accessor permission: ("SPACE_ADMIN" | "READ" | "READ_WRITE_DELETE" | "CUSTOM")
|
|
24
|
+
attr_accessor grant_type: ("SERVICE_MANAGED" | "CUSTOMER_MANAGED")
|
|
25
|
+
attr_accessor created_by: ::String
|
|
26
|
+
attr_accessor created_at: ::Time
|
|
27
|
+
attr_accessor updated_at: ::Time
|
|
28
|
+
attr_accessor space_id: ::String
|
|
29
|
+
attr_accessor scoped_actions: ::Array[Types::ScopedActions]
|
|
30
|
+
SENSITIVE: []
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
class AccessGrantPrincipal
|
|
34
|
+
attr_accessor principal_type: ("IDC_USER" | "IDC_GROUP" | "IAM_USER" | "IAM_ROLE" | "IAM_ROOT" | "ACCESS_PROFILE" | "ALERT" | "AGENT")
|
|
35
|
+
attr_accessor principal_id: ::String
|
|
36
|
+
attr_accessor principal_attributes: ::Array[Types::AccessGrantPrincipalAttribute]
|
|
37
|
+
SENSITIVE: []
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
class AccessGrantPrincipalAttribute
|
|
41
|
+
attr_accessor key: ::String
|
|
42
|
+
attr_accessor value: ::String
|
|
43
|
+
SENSITIVE: []
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
class AccessGrantSummary
|
|
47
|
+
attr_accessor grant_id: ::String
|
|
48
|
+
attr_accessor grant_arn: ::String
|
|
49
|
+
attr_accessor name: ::String
|
|
50
|
+
attr_accessor domain_id: ::String
|
|
51
|
+
attr_accessor principal: Types::AccessGrantPrincipal
|
|
52
|
+
attr_accessor permission: ("SPACE_ADMIN" | "READ" | "READ_WRITE_DELETE" | "CUSTOM")
|
|
53
|
+
attr_accessor grant_type: ("SERVICE_MANAGED" | "CUSTOMER_MANAGED")
|
|
54
|
+
attr_accessor space_id: ::String
|
|
55
|
+
SENSITIVE: []
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
class AccessProfile
|
|
59
|
+
attr_accessor profile_id: ::String
|
|
60
|
+
attr_accessor space_id: ::String
|
|
61
|
+
attr_accessor arn: ::String
|
|
62
|
+
attr_accessor name: ::String
|
|
63
|
+
attr_accessor description: ::String
|
|
64
|
+
attr_accessor created_at: ::Time
|
|
65
|
+
attr_accessor updated_at: ::Time
|
|
66
|
+
attr_accessor assume_status: ("ALLOWED" | "DENIED")
|
|
67
|
+
attr_accessor profile_type: ("SERVICE_MANAGED" | "CUSTOMER_MANAGED")
|
|
68
|
+
SENSITIVE: []
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
class AccessProfileSummary
|
|
72
|
+
attr_accessor profile_id: ::String
|
|
73
|
+
attr_accessor arn: ::String
|
|
74
|
+
attr_accessor name: ::String
|
|
75
|
+
attr_accessor description: ::String
|
|
76
|
+
attr_accessor profile_type: ("SERVICE_MANAGED" | "CUSTOMER_MANAGED")
|
|
77
|
+
SENSITIVE: []
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
class Alert
|
|
81
|
+
attr_accessor name: ::String
|
|
82
|
+
attr_accessor alert_id: ::String
|
|
83
|
+
attr_accessor description: ::String
|
|
84
|
+
attr_accessor account_id: ::String
|
|
85
|
+
attr_accessor space_id: ::String
|
|
86
|
+
attr_accessor profile_id: ::String
|
|
87
|
+
attr_accessor rule: Types::Rule
|
|
88
|
+
attr_accessor notification_status: ("ENABLED" | "DISABLED")
|
|
89
|
+
attr_accessor state: Types::AlertStateInfo
|
|
90
|
+
attr_accessor notification_rules: ::Array[Types::NotificationRule]
|
|
91
|
+
attr_accessor created_at: ::Time
|
|
92
|
+
attr_accessor updated_at: ::Time
|
|
93
|
+
attr_accessor alert_arn: ::String
|
|
94
|
+
SENSITIVE: []
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
class AlertCondition
|
|
98
|
+
attr_accessor threshold_mode: ("COUNT_OF_RESULTS" | "FIELD_VALUE")
|
|
99
|
+
attr_accessor threshold_field: ::String
|
|
100
|
+
attr_accessor comparator: ("GT" | "LT" | "GTE" | "LTE")
|
|
101
|
+
attr_accessor warning_threshold: ::Float
|
|
102
|
+
attr_accessor critical_threshold: ::Float
|
|
103
|
+
SENSITIVE: []
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
class AlertEvaluation
|
|
107
|
+
attr_accessor interval_seconds: ::Integer
|
|
108
|
+
attr_accessor pending_duration_seconds: ::Integer
|
|
109
|
+
attr_accessor recovery_duration_seconds: ::Integer
|
|
110
|
+
SENSITIVE: []
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
class AlertFilterCriteria
|
|
114
|
+
attr_accessor names: ::Array[::String]
|
|
115
|
+
attr_accessor name_prefix: ::String
|
|
116
|
+
attr_accessor ids: ::Array[::String]
|
|
117
|
+
attr_accessor state_value: ::Array[("OK" | "WARNING" | "CRITICAL" | "NODATA")]
|
|
118
|
+
attr_accessor notifications_enabled: bool
|
|
119
|
+
SENSITIVE: []
|
|
120
|
+
end
|
|
121
|
+
|
|
122
|
+
class AlertRuleQuery
|
|
123
|
+
attr_accessor language: ("SQL" | "PROMQL")
|
|
124
|
+
attr_accessor expression: ::String
|
|
125
|
+
SENSITIVE: []
|
|
126
|
+
end
|
|
127
|
+
|
|
128
|
+
class AlertStateData
|
|
129
|
+
attr_accessor threshold_breached: ::Float
|
|
130
|
+
SENSITIVE: []
|
|
131
|
+
end
|
|
132
|
+
|
|
133
|
+
class AlertStateInfo
|
|
134
|
+
attr_accessor value: ("OK" | "WARNING" | "CRITICAL" | "NODATA")
|
|
135
|
+
attr_accessor transitioned_at: ::Time
|
|
136
|
+
attr_accessor contributor_summary: Types::ContributorSummary
|
|
137
|
+
attr_accessor data: Types::AlertStateData
|
|
138
|
+
SENSITIVE: []
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
class AlertSummary
|
|
142
|
+
attr_accessor name: ::String
|
|
143
|
+
attr_accessor alert_id: ::String
|
|
144
|
+
attr_accessor space_id: ::String
|
|
145
|
+
attr_accessor profile_id: ::String
|
|
146
|
+
attr_accessor notification_status: ("ENABLED" | "DISABLED")
|
|
147
|
+
attr_accessor state: Types::AlertStateInfo
|
|
148
|
+
attr_accessor created_at: ::Time
|
|
149
|
+
attr_accessor updated_at: ::Time
|
|
150
|
+
attr_accessor alert_arn: ::String
|
|
151
|
+
SENSITIVE: []
|
|
152
|
+
end
|
|
153
|
+
|
|
154
|
+
class ApiKeyCredential
|
|
155
|
+
attr_accessor api_key_value: ::String
|
|
156
|
+
SENSITIVE: [:api_key_value]
|
|
157
|
+
end
|
|
158
|
+
|
|
159
|
+
class AwsCredentials
|
|
160
|
+
attr_accessor access_key_id: ::String
|
|
161
|
+
attr_accessor secret_access_key: ::String
|
|
162
|
+
attr_accessor session_token: ::String
|
|
163
|
+
attr_accessor expiration: ::Time
|
|
164
|
+
SENSITIVE: [:access_key_id, :secret_access_key, :session_token]
|
|
165
|
+
end
|
|
166
|
+
|
|
167
|
+
class ConflictException
|
|
168
|
+
attr_accessor message: ::String
|
|
169
|
+
attr_accessor conflict_type: ::String
|
|
170
|
+
attr_accessor resource_id: ::String
|
|
171
|
+
attr_accessor resource_type: ::String
|
|
172
|
+
attr_accessor error_code: ::String
|
|
173
|
+
SENSITIVE: []
|
|
174
|
+
end
|
|
175
|
+
|
|
176
|
+
class ContributorSummary
|
|
177
|
+
attr_accessor warning_count: ::Integer
|
|
178
|
+
attr_accessor critical_count: ::Integer
|
|
179
|
+
SENSITIVE: []
|
|
180
|
+
end
|
|
181
|
+
|
|
182
|
+
class CreateAccessGrantInput
|
|
183
|
+
attr_accessor domain_id: ::String
|
|
184
|
+
attr_accessor space_id: ::String
|
|
185
|
+
attr_accessor name: ::String
|
|
186
|
+
attr_accessor principal: Types::AccessGrantPrincipal
|
|
187
|
+
attr_accessor permission: ("SPACE_ADMIN" | "READ" | "READ_WRITE_DELETE" | "CUSTOM")
|
|
188
|
+
attr_accessor scoped_actions: ::Array[Types::ScopedActions]
|
|
189
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
190
|
+
attr_accessor client_token: ::String
|
|
191
|
+
SENSITIVE: []
|
|
192
|
+
end
|
|
193
|
+
|
|
194
|
+
class CreateAccessGrantOutput
|
|
195
|
+
attr_accessor access_grant: Types::AccessGrant
|
|
196
|
+
SENSITIVE: []
|
|
197
|
+
end
|
|
198
|
+
|
|
199
|
+
class CreateAccessProfileInput
|
|
200
|
+
attr_accessor space_id: ::String
|
|
201
|
+
attr_accessor name: ::String
|
|
202
|
+
attr_accessor description: ::String
|
|
203
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
204
|
+
attr_accessor client_token: ::String
|
|
205
|
+
SENSITIVE: []
|
|
206
|
+
end
|
|
207
|
+
|
|
208
|
+
class CreateAccessProfileOutput
|
|
209
|
+
attr_accessor access_profile: Types::AccessProfile
|
|
210
|
+
SENSITIVE: []
|
|
211
|
+
end
|
|
212
|
+
|
|
213
|
+
class CreateAlertInput
|
|
214
|
+
attr_accessor space_id: ::String
|
|
215
|
+
attr_accessor profile_id: ::String
|
|
216
|
+
attr_accessor name: ::String
|
|
217
|
+
attr_accessor description: ::String
|
|
218
|
+
attr_accessor rule: Types::Rule
|
|
219
|
+
attr_accessor notifications_enabled: bool
|
|
220
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
221
|
+
attr_accessor notification_rules: ::Array[Types::NotificationRule]
|
|
222
|
+
attr_accessor client_token: ::String
|
|
223
|
+
SENSITIVE: []
|
|
224
|
+
end
|
|
225
|
+
|
|
226
|
+
class CreateAlertOutput
|
|
227
|
+
attr_accessor alert_arn: ::String
|
|
228
|
+
attr_accessor alert: Types::Alert
|
|
229
|
+
SENSITIVE: []
|
|
230
|
+
end
|
|
231
|
+
|
|
232
|
+
class CreateDomainAccessGrantForOrganizationInput
|
|
233
|
+
attr_accessor domain_id: ::String
|
|
234
|
+
attr_accessor name: ::String
|
|
235
|
+
attr_accessor principal: Types::OrganizationAccessGrantPrincipal
|
|
236
|
+
attr_accessor permission: ("ADMIN")
|
|
237
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
238
|
+
attr_accessor client_token: ::String
|
|
239
|
+
SENSITIVE: []
|
|
240
|
+
end
|
|
241
|
+
|
|
242
|
+
class CreateDomainAccessGrantForOrganizationOutput
|
|
243
|
+
attr_accessor access_grant: Types::OrganizationAccessGrant
|
|
244
|
+
SENSITIVE: []
|
|
245
|
+
end
|
|
246
|
+
|
|
247
|
+
class CreateDomainForOrganizationInput
|
|
248
|
+
attr_accessor name: ::String
|
|
249
|
+
attr_accessor identity_providers: ::Array[("IAM" | "IDC")]
|
|
250
|
+
attr_accessor identity_provider_configuration: Types::IdentityProviderConfiguration
|
|
251
|
+
attr_accessor domain_access_role_arn: ::String
|
|
252
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
253
|
+
attr_accessor client_token: ::String
|
|
254
|
+
SENSITIVE: []
|
|
255
|
+
end
|
|
256
|
+
|
|
257
|
+
class CreateDomainForOrganizationOutput
|
|
258
|
+
attr_accessor organization_domain: Types::OrganizationDomain
|
|
259
|
+
SENSITIVE: []
|
|
260
|
+
end
|
|
261
|
+
|
|
262
|
+
class CreateDomainInput
|
|
263
|
+
attr_accessor name: ::String
|
|
264
|
+
attr_accessor identity_providers: ::Array[("IAM" | "IDC")]
|
|
265
|
+
attr_accessor identity_provider_configuration: Types::IdentityProviderConfiguration
|
|
266
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
267
|
+
attr_accessor client_token: ::String
|
|
268
|
+
SENSITIVE: []
|
|
269
|
+
end
|
|
270
|
+
|
|
271
|
+
class CreateDomainOutput
|
|
272
|
+
attr_accessor domain: Types::Domain
|
|
273
|
+
SENSITIVE: []
|
|
274
|
+
end
|
|
275
|
+
|
|
276
|
+
class CreateIntegrationInput
|
|
277
|
+
attr_accessor integration_type: ("AWS_CONFIG_SLREC" | "SLACK" | "EXTERNAL_AGENT" | "AWS_INTEGRATION")
|
|
278
|
+
attr_accessor name: ::String
|
|
279
|
+
attr_accessor credential: Types::IntegrationCredential
|
|
280
|
+
attr_accessor integration_attributes: ::Hash[::String, ::String]
|
|
281
|
+
attr_accessor role_arn: ::String
|
|
282
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
283
|
+
attr_accessor client_token: ::String
|
|
284
|
+
SENSITIVE: []
|
|
285
|
+
end
|
|
286
|
+
|
|
287
|
+
class CreateIntegrationOutput
|
|
288
|
+
attr_accessor integration: Types::Integration
|
|
289
|
+
SENSITIVE: []
|
|
290
|
+
end
|
|
291
|
+
|
|
292
|
+
class CreateOmniDashboardInput
|
|
293
|
+
attr_accessor space_id: ::String
|
|
294
|
+
attr_accessor name: ::String
|
|
295
|
+
attr_accessor body: ::String
|
|
296
|
+
attr_accessor description: ::String
|
|
297
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
298
|
+
attr_accessor client_token: ::String
|
|
299
|
+
SENSITIVE: []
|
|
300
|
+
end
|
|
301
|
+
|
|
302
|
+
class CreateOmniDashboardOutput
|
|
303
|
+
attr_accessor omni_dashboard: Types::OmniDashboard
|
|
304
|
+
SENSITIVE: []
|
|
305
|
+
end
|
|
306
|
+
|
|
307
|
+
class CreateOneTimeDeepLinkCodeInput
|
|
308
|
+
attr_accessor domain_id: ::String
|
|
309
|
+
attr_accessor ttl_seconds: ::Integer
|
|
310
|
+
attr_accessor redirect_url: ::String
|
|
311
|
+
SENSITIVE: []
|
|
312
|
+
end
|
|
313
|
+
|
|
314
|
+
class CreateOneTimeDeepLinkCodeOutput
|
|
315
|
+
attr_accessor code: ::String
|
|
316
|
+
attr_accessor deep_link_url: ::String
|
|
317
|
+
attr_accessor expires_at: ::Time
|
|
318
|
+
SENSITIVE: [:code, :deep_link_url]
|
|
319
|
+
end
|
|
320
|
+
|
|
321
|
+
class CreateSpaceInput
|
|
322
|
+
attr_accessor name: ::String
|
|
323
|
+
attr_accessor domain_id: ::String
|
|
324
|
+
attr_accessor data_access_role_arn: ::String
|
|
325
|
+
attr_accessor agent_core_evaluation_role_arn: ::String
|
|
326
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
|
327
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
328
|
+
attr_accessor client_token: ::String
|
|
329
|
+
SENSITIVE: []
|
|
330
|
+
end
|
|
331
|
+
|
|
332
|
+
class CreateSpaceOutput
|
|
333
|
+
attr_accessor space: Types::Space
|
|
334
|
+
SENSITIVE: []
|
|
335
|
+
end
|
|
336
|
+
|
|
337
|
+
class CreateViewRequest
|
|
338
|
+
attr_accessor name: ::String
|
|
339
|
+
attr_accessor definition: ::String
|
|
340
|
+
attr_accessor description: ::String
|
|
341
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
342
|
+
attr_accessor client_token: ::String
|
|
343
|
+
SENSITIVE: []
|
|
344
|
+
end
|
|
345
|
+
|
|
346
|
+
class CreateViewResponse
|
|
347
|
+
attr_accessor name: ::String
|
|
348
|
+
attr_accessor type: ("USER" | "MANAGED")
|
|
349
|
+
attr_accessor description: ::String
|
|
350
|
+
attr_accessor definition: ::String
|
|
351
|
+
attr_accessor created_at: ::Time
|
|
352
|
+
attr_accessor updated_at: ::Time
|
|
353
|
+
attr_accessor arn: ::String
|
|
354
|
+
SENSITIVE: []
|
|
355
|
+
end
|
|
356
|
+
|
|
357
|
+
class DeleteAccessGrantInput
|
|
358
|
+
attr_accessor grant_id: ::String
|
|
359
|
+
SENSITIVE: []
|
|
360
|
+
end
|
|
361
|
+
|
|
362
|
+
class DeleteAccessGrantOutput < Aws::EmptyStructure
|
|
363
|
+
end
|
|
364
|
+
|
|
365
|
+
class DeleteAccessProfileInput
|
|
366
|
+
attr_accessor space_id: ::String
|
|
367
|
+
attr_accessor profile_id: ::String
|
|
368
|
+
SENSITIVE: []
|
|
369
|
+
end
|
|
370
|
+
|
|
371
|
+
class DeleteAccessProfileOutput < Aws::EmptyStructure
|
|
372
|
+
end
|
|
373
|
+
|
|
374
|
+
class DeleteAlertInput
|
|
375
|
+
attr_accessor space_id: ::String
|
|
376
|
+
attr_accessor alert_id: ::String
|
|
377
|
+
SENSITIVE: []
|
|
378
|
+
end
|
|
379
|
+
|
|
380
|
+
class DeleteAlertOutput < Aws::EmptyStructure
|
|
381
|
+
end
|
|
382
|
+
|
|
383
|
+
class DeleteDomainAccessGrantForOrganizationInput
|
|
384
|
+
attr_accessor grant_id: ::String
|
|
385
|
+
SENSITIVE: []
|
|
386
|
+
end
|
|
387
|
+
|
|
388
|
+
class DeleteDomainAccessGrantForOrganizationOutput < Aws::EmptyStructure
|
|
389
|
+
end
|
|
390
|
+
|
|
391
|
+
class DeleteDomainForOrganizationInput
|
|
392
|
+
attr_accessor domain_id: ::String
|
|
393
|
+
SENSITIVE: []
|
|
394
|
+
end
|
|
395
|
+
|
|
396
|
+
class DeleteDomainForOrganizationOutput < Aws::EmptyStructure
|
|
397
|
+
end
|
|
398
|
+
|
|
399
|
+
class DeleteDomainInput
|
|
400
|
+
attr_accessor domain_id: ::String
|
|
401
|
+
SENSITIVE: []
|
|
402
|
+
end
|
|
403
|
+
|
|
404
|
+
class DeleteDomainOutput < Aws::EmptyStructure
|
|
405
|
+
end
|
|
406
|
+
|
|
407
|
+
class DeleteIntegrationInput
|
|
408
|
+
attr_accessor identifier: Types::IntegrationIdentifier
|
|
409
|
+
SENSITIVE: []
|
|
410
|
+
end
|
|
411
|
+
|
|
412
|
+
class DeleteIntegrationOutput < Aws::EmptyStructure
|
|
413
|
+
end
|
|
414
|
+
|
|
415
|
+
class DeleteOmniDashboardInput
|
|
416
|
+
attr_accessor space_id: ::String
|
|
417
|
+
attr_accessor dashboard_id: ::String
|
|
418
|
+
SENSITIVE: []
|
|
419
|
+
end
|
|
420
|
+
|
|
421
|
+
class DeleteOmniDashboardOutput < Aws::EmptyStructure
|
|
422
|
+
end
|
|
423
|
+
|
|
424
|
+
class DeleteSpaceInput
|
|
425
|
+
attr_accessor space_id: ::String
|
|
426
|
+
SENSITIVE: []
|
|
427
|
+
end
|
|
428
|
+
|
|
429
|
+
class DeleteSpaceOutput < Aws::EmptyStructure
|
|
430
|
+
end
|
|
431
|
+
|
|
432
|
+
class DeleteViewRequest
|
|
433
|
+
attr_accessor name: ::String
|
|
434
|
+
SENSITIVE: []
|
|
435
|
+
end
|
|
436
|
+
|
|
437
|
+
class DeleteViewResponse < Aws::EmptyStructure
|
|
438
|
+
end
|
|
439
|
+
|
|
440
|
+
class Domain
|
|
441
|
+
attr_accessor domain_id: ::String
|
|
442
|
+
attr_accessor domain_arn: ::String
|
|
443
|
+
attr_accessor name: ::String
|
|
444
|
+
attr_accessor identity_providers: ::Array[("IAM" | "IDC")]
|
|
445
|
+
attr_accessor identity_provider_configuration: Types::IdentityProviderConfiguration
|
|
446
|
+
attr_accessor domain_endpoint_url: ::String
|
|
447
|
+
attr_accessor custom_endpoint_urls: ::Array[::String]
|
|
448
|
+
attr_accessor identity_center_application_arn: ::String
|
|
449
|
+
attr_accessor region: ::String
|
|
450
|
+
attr_accessor created_at: ::Time
|
|
451
|
+
attr_accessor updated_at: ::Time
|
|
452
|
+
attr_accessor status: ("ACTIVE")
|
|
453
|
+
SENSITIVE: []
|
|
454
|
+
end
|
|
455
|
+
|
|
456
|
+
class DomainSummary
|
|
457
|
+
attr_accessor domain_id: ::String
|
|
458
|
+
attr_accessor domain_arn: ::String
|
|
459
|
+
attr_accessor name: ::String
|
|
460
|
+
attr_accessor identity_center_instance_arn: ::String
|
|
461
|
+
attr_accessor region: ::String
|
|
462
|
+
attr_accessor created_at: ::Time
|
|
463
|
+
attr_accessor updated_at: ::Time
|
|
464
|
+
attr_accessor status: ("ACTIVE")
|
|
465
|
+
SENSITIVE: []
|
|
466
|
+
end
|
|
467
|
+
|
|
468
|
+
class Edge
|
|
469
|
+
attr_accessor edge_id: ::String
|
|
470
|
+
attr_accessor from: ::String
|
|
471
|
+
attr_accessor to: ::String
|
|
472
|
+
attr_accessor edge_type: ("CALLS" | "ACCESSES" | "RUNS_ON")
|
|
473
|
+
attr_accessor operations: ::Array[::String]
|
|
474
|
+
attr_accessor edge_properties: Types::EdgeProperties
|
|
475
|
+
attr_accessor telemetry_attributes: ::Hash[::String, ::String]
|
|
476
|
+
attr_accessor signal_types: ::Array[("LOGS" | "METRICS" | "TRACES" | "CONFIG" | "UNKNOWN")]
|
|
477
|
+
attr_accessor sources: ::Array[("VPC_FLOW_LOG" | "CLOUDTRAIL" | "IAM_POLICY" | "CODE_SEMANTICS" | "TELEMETRY" | "AZURE_VNET_FLOW_LOG" | "ELB_ACCESS_LOG" | "CLOUDFRONT_ACCESS_LOG" | "S3_ACCESS_LOG" | "WAF_ACCESS_LOG" | "AWS_INTEGRATION" | "CONFIG")]
|
|
478
|
+
attr_accessor metadata: Types::Metadata
|
|
479
|
+
attr_accessor first_observed_at: ::Time
|
|
480
|
+
attr_accessor last_observed_at: ::Time
|
|
481
|
+
SENSITIVE: []
|
|
482
|
+
end
|
|
483
|
+
|
|
484
|
+
class EdgeFilters
|
|
485
|
+
attr_accessor edge_id: ::String
|
|
486
|
+
attr_accessor from: ::String
|
|
487
|
+
attr_accessor to: ::String
|
|
488
|
+
attr_accessor edge_type: ("CALLS" | "ACCESSES" | "RUNS_ON")
|
|
489
|
+
attr_accessor operations: ::Array[::String]
|
|
490
|
+
attr_accessor telemetry_attributes: ::Array[Types::KeyFilter]
|
|
491
|
+
attr_accessor sources: ::Array[("VPC_FLOW_LOG" | "CLOUDTRAIL" | "IAM_POLICY" | "CODE_SEMANTICS" | "TELEMETRY" | "AZURE_VNET_FLOW_LOG" | "ELB_ACCESS_LOG" | "CLOUDFRONT_ACCESS_LOG" | "S3_ACCESS_LOG" | "WAF_ACCESS_LOG" | "AWS_INTEGRATION" | "CONFIG")]
|
|
492
|
+
SENSITIVE: []
|
|
493
|
+
end
|
|
494
|
+
|
|
495
|
+
class EdgeProperties
|
|
496
|
+
attr_accessor protocol: ::String
|
|
497
|
+
attr_accessor source_port: ::String
|
|
498
|
+
attr_accessor destination_port: ::String
|
|
499
|
+
attr_accessor blocked: bool
|
|
500
|
+
attr_accessor error_code: ::String
|
|
501
|
+
attr_accessor http_status_code: ::String
|
|
502
|
+
attr_accessor http_method: ::String
|
|
503
|
+
attr_accessor service_initiated: bool
|
|
504
|
+
attr_accessor traffic_stats: Types::EdgeTrafficStats
|
|
505
|
+
SENSITIVE: []
|
|
506
|
+
end
|
|
507
|
+
|
|
508
|
+
class EdgeTrafficStats
|
|
509
|
+
attr_accessor bytes: ::Integer
|
|
510
|
+
attr_accessor packets: ::Integer
|
|
511
|
+
attr_accessor flows: ::Integer
|
|
512
|
+
attr_accessor sent_bytes: ::Integer
|
|
513
|
+
attr_accessor received_bytes: ::Integer
|
|
514
|
+
SENSITIVE: []
|
|
515
|
+
end
|
|
516
|
+
|
|
517
|
+
class EncryptionConfiguration
|
|
518
|
+
attr_accessor encryption_strategy: ("AWS_OWNED" | "CUSTOMER_MANAGED")
|
|
519
|
+
attr_accessor kms_key_arn: ::String
|
|
520
|
+
SENSITIVE: []
|
|
521
|
+
end
|
|
522
|
+
|
|
523
|
+
class Field
|
|
524
|
+
attr_accessor name: ::String
|
|
525
|
+
attr_accessor children: ::Array[Types::Field]
|
|
526
|
+
SENSITIVE: []
|
|
527
|
+
end
|
|
528
|
+
|
|
529
|
+
class GetAccessGrantInput
|
|
530
|
+
attr_accessor grant_id: ::String
|
|
531
|
+
SENSITIVE: []
|
|
532
|
+
end
|
|
533
|
+
|
|
534
|
+
class GetAccessGrantOutput
|
|
535
|
+
attr_accessor access_grant: Types::AccessGrant
|
|
536
|
+
SENSITIVE: []
|
|
537
|
+
end
|
|
538
|
+
|
|
539
|
+
class GetAccessProfileInput
|
|
540
|
+
attr_accessor space_id: ::String
|
|
541
|
+
attr_accessor profile_id: ::String
|
|
542
|
+
SENSITIVE: []
|
|
543
|
+
end
|
|
544
|
+
|
|
545
|
+
class GetAccessProfileOutput
|
|
546
|
+
attr_accessor access_profile: Types::AccessProfile
|
|
547
|
+
SENSITIVE: []
|
|
548
|
+
end
|
|
549
|
+
|
|
550
|
+
class GetAlertInput
|
|
551
|
+
attr_accessor space_id: ::String
|
|
552
|
+
attr_accessor alert_id: ::String
|
|
553
|
+
SENSITIVE: []
|
|
554
|
+
end
|
|
555
|
+
|
|
556
|
+
class GetAlertOutput
|
|
557
|
+
attr_accessor alert: Types::Alert
|
|
558
|
+
SENSITIVE: []
|
|
559
|
+
end
|
|
560
|
+
|
|
561
|
+
class GetContextGraphInput
|
|
562
|
+
attr_accessor node_filters: Types::NodeFilters
|
|
563
|
+
attr_accessor edge_filters: Types::EdgeFilters
|
|
564
|
+
attr_accessor start_time: ::Time
|
|
565
|
+
attr_accessor end_time: ::Time
|
|
566
|
+
attr_accessor depth: ::Integer
|
|
567
|
+
attr_accessor max_results: ::Integer
|
|
568
|
+
attr_accessor max_edges_per_node: ::Integer
|
|
569
|
+
attr_accessor include_metadata: bool
|
|
570
|
+
attr_accessor next_token: ::String
|
|
571
|
+
SENSITIVE: []
|
|
572
|
+
end
|
|
573
|
+
|
|
574
|
+
class GetContextGraphOutput
|
|
575
|
+
attr_accessor nodes: ::Array[Types::Node]
|
|
576
|
+
attr_accessor next_token: ::String
|
|
577
|
+
SENSITIVE: []
|
|
578
|
+
end
|
|
579
|
+
|
|
580
|
+
class GetDomainAccessGrantForOrganizationInput
|
|
581
|
+
attr_accessor grant_id: ::String
|
|
582
|
+
SENSITIVE: []
|
|
583
|
+
end
|
|
584
|
+
|
|
585
|
+
class GetDomainAccessGrantForOrganizationOutput
|
|
586
|
+
attr_accessor access_grant: Types::OrganizationAccessGrant
|
|
587
|
+
SENSITIVE: []
|
|
588
|
+
end
|
|
589
|
+
|
|
590
|
+
class GetDomainForOrganizationInput
|
|
591
|
+
attr_accessor domain_id: ::String
|
|
592
|
+
SENSITIVE: []
|
|
593
|
+
end
|
|
594
|
+
|
|
595
|
+
class GetDomainForOrganizationOutput
|
|
596
|
+
attr_accessor organization_domain: Types::OrganizationDomain
|
|
597
|
+
SENSITIVE: []
|
|
598
|
+
end
|
|
599
|
+
|
|
600
|
+
class GetDomainInput
|
|
601
|
+
attr_accessor domain_id: ::String
|
|
602
|
+
SENSITIVE: []
|
|
603
|
+
end
|
|
604
|
+
|
|
605
|
+
class GetDomainOutput
|
|
606
|
+
attr_accessor domain: Types::Domain
|
|
607
|
+
SENSITIVE: []
|
|
608
|
+
end
|
|
609
|
+
|
|
610
|
+
class GetIntegrationInput
|
|
611
|
+
attr_accessor identifier: Types::IntegrationIdentifier
|
|
612
|
+
SENSITIVE: []
|
|
613
|
+
end
|
|
614
|
+
|
|
615
|
+
class GetIntegrationOutput
|
|
616
|
+
attr_accessor integration: Types::Integration
|
|
617
|
+
SENSITIVE: []
|
|
618
|
+
end
|
|
619
|
+
|
|
620
|
+
class GetIntelligenceConfigurationInput < Aws::EmptyStructure
|
|
621
|
+
end
|
|
622
|
+
|
|
623
|
+
class GetIntelligenceConfigurationOutput
|
|
624
|
+
attr_accessor account_id: ::String
|
|
625
|
+
attr_accessor kms_key_arn: ::String
|
|
626
|
+
attr_accessor updated_at: ::Time
|
|
627
|
+
attr_accessor created_at: ::Time
|
|
628
|
+
SENSITIVE: []
|
|
629
|
+
end
|
|
630
|
+
|
|
631
|
+
class GetOmniDashboardInput
|
|
632
|
+
attr_accessor space_id: ::String
|
|
633
|
+
attr_accessor dashboard_id: ::String
|
|
634
|
+
SENSITIVE: []
|
|
635
|
+
end
|
|
636
|
+
|
|
637
|
+
class GetOmniDashboardOutput
|
|
638
|
+
attr_accessor omni_dashboard: Types::OmniDashboard
|
|
639
|
+
SENSITIVE: []
|
|
640
|
+
end
|
|
641
|
+
|
|
642
|
+
class GetSpaceCredentialsForOrganizationInput
|
|
643
|
+
attr_accessor context: Types::SpaceCredentialRequestContext
|
|
644
|
+
attr_accessor credential_type: ("SPACE_OPERATION")
|
|
645
|
+
SENSITIVE: []
|
|
646
|
+
end
|
|
647
|
+
|
|
648
|
+
class GetSpaceCredentialsForOrganizationOutput
|
|
649
|
+
attr_accessor credentials: Types::AwsCredentials
|
|
650
|
+
SENSITIVE: [:credentials]
|
|
651
|
+
end
|
|
652
|
+
|
|
653
|
+
class GetSpaceInput
|
|
654
|
+
attr_accessor space_id: ::String
|
|
655
|
+
SENSITIVE: []
|
|
656
|
+
end
|
|
657
|
+
|
|
658
|
+
class GetSpaceOutput
|
|
659
|
+
attr_accessor space: Types::Space
|
|
660
|
+
SENSITIVE: []
|
|
661
|
+
end
|
|
662
|
+
|
|
663
|
+
class GetTelemetryQueryResultsRequest
|
|
664
|
+
attr_accessor query_id: ::String
|
|
665
|
+
attr_accessor next_token: ::String
|
|
666
|
+
attr_accessor max_results: ::Integer
|
|
667
|
+
SENSITIVE: []
|
|
668
|
+
end
|
|
669
|
+
|
|
670
|
+
class GetTelemetryQueryResultsResponse
|
|
671
|
+
attr_accessor status: ("Running" | "Failed" | "Complete" | "Cancelled")
|
|
672
|
+
attr_accessor rows: ::Array[::Hash[::String, ::String]]
|
|
673
|
+
attr_accessor next_token: ::String
|
|
674
|
+
attr_accessor statistics: Types::QueryStatistics
|
|
675
|
+
SENSITIVE: []
|
|
676
|
+
end
|
|
677
|
+
|
|
678
|
+
class GetViewRequest
|
|
679
|
+
attr_accessor name: ::String
|
|
680
|
+
SENSITIVE: []
|
|
681
|
+
end
|
|
682
|
+
|
|
683
|
+
class GetViewResponse
|
|
684
|
+
attr_accessor name: ::String
|
|
685
|
+
attr_accessor type: ("USER" | "MANAGED")
|
|
686
|
+
attr_accessor description: ::String
|
|
687
|
+
attr_accessor definition: ::String
|
|
688
|
+
attr_accessor created_at: ::Time
|
|
689
|
+
attr_accessor updated_at: ::Time
|
|
690
|
+
attr_accessor arn: ::String
|
|
691
|
+
SENSITIVE: []
|
|
692
|
+
end
|
|
693
|
+
|
|
694
|
+
class IdentityCenterConfiguration
|
|
695
|
+
attr_accessor identity_center_instance_arn: ::String
|
|
696
|
+
SENSITIVE: []
|
|
697
|
+
end
|
|
698
|
+
|
|
699
|
+
class IdentityProviderConfiguration
|
|
700
|
+
attr_accessor identity_center_configuration: Types::IdentityCenterConfiguration
|
|
701
|
+
SENSITIVE: []
|
|
702
|
+
end
|
|
703
|
+
|
|
704
|
+
class Integration
|
|
705
|
+
attr_accessor integration_id: ::String
|
|
706
|
+
attr_accessor integration_arn: ::String
|
|
707
|
+
attr_accessor integration_type: ("AWS_CONFIG_SLREC" | "SLACK" | "EXTERNAL_AGENT" | "AWS_INTEGRATION")
|
|
708
|
+
attr_accessor name: ::String
|
|
709
|
+
attr_accessor status: ("ACTIVE" | "DELETED" | "PENDING" | "PENDING_OAUTH" | "ERROR" | "FAILED")
|
|
710
|
+
attr_accessor auth_type: ("NONE" | "OAUTH2" | "API_KEY")
|
|
711
|
+
attr_accessor credential_arn: ::String
|
|
712
|
+
attr_accessor role_arn: ::String
|
|
713
|
+
attr_accessor integration_attributes: ::Hash[::String, ::String]
|
|
714
|
+
attr_accessor authorization_url: ::String
|
|
715
|
+
attr_accessor error_message: ::String
|
|
716
|
+
attr_accessor created_at: ::Time
|
|
717
|
+
attr_accessor updated_at: ::Time
|
|
718
|
+
attr_accessor scope: ("ACCOUNT" | "ORGANIZATION")
|
|
719
|
+
SENSITIVE: []
|
|
720
|
+
end
|
|
721
|
+
|
|
722
|
+
class IntegrationCredential
|
|
723
|
+
attr_accessor oauth_code_credential: Types::OAuthCodeCredential
|
|
724
|
+
attr_accessor oauth_client_credential: Types::OAuthClientCredential
|
|
725
|
+
attr_accessor api_key_credential: Types::ApiKeyCredential
|
|
726
|
+
attr_accessor unknown: untyped
|
|
727
|
+
SENSITIVE: [:oauth_code_credential, :oauth_client_credential, :api_key_credential]
|
|
728
|
+
|
|
729
|
+
class OauthCodeCredential < IntegrationCredential
|
|
730
|
+
end
|
|
731
|
+
class OauthClientCredential < IntegrationCredential
|
|
732
|
+
end
|
|
733
|
+
class ApiKeyCredential < IntegrationCredential
|
|
734
|
+
end
|
|
735
|
+
class Unknown < IntegrationCredential
|
|
736
|
+
end
|
|
737
|
+
end
|
|
738
|
+
|
|
739
|
+
class IntegrationIdentifier
|
|
740
|
+
attr_accessor integration_id: ::String
|
|
741
|
+
attr_accessor integration_arn: ::String
|
|
742
|
+
attr_accessor integration_name: ::String
|
|
743
|
+
attr_accessor unknown: untyped
|
|
744
|
+
SENSITIVE: []
|
|
745
|
+
|
|
746
|
+
class IntegrationId < IntegrationIdentifier
|
|
747
|
+
end
|
|
748
|
+
class IntegrationArn < IntegrationIdentifier
|
|
749
|
+
end
|
|
750
|
+
class IntegrationName < IntegrationIdentifier
|
|
751
|
+
end
|
|
752
|
+
class Unknown < IntegrationIdentifier
|
|
753
|
+
end
|
|
754
|
+
end
|
|
755
|
+
|
|
756
|
+
class InternalServerException
|
|
757
|
+
attr_accessor message: ::String
|
|
758
|
+
attr_accessor error_code: ::String
|
|
759
|
+
SENSITIVE: []
|
|
760
|
+
end
|
|
761
|
+
|
|
762
|
+
class KeyFilter
|
|
763
|
+
attr_accessor key: ::String
|
|
764
|
+
attr_accessor values: ::Array[::String]
|
|
765
|
+
SENSITIVE: []
|
|
766
|
+
end
|
|
767
|
+
|
|
768
|
+
class ListAccessGrantsInput
|
|
769
|
+
attr_accessor domain_id: ::String
|
|
770
|
+
attr_accessor space_id: ::String
|
|
771
|
+
attr_accessor principal_id: ::String
|
|
772
|
+
attr_accessor principal_type: ("IDC_USER" | "IDC_GROUP" | "IAM_USER" | "IAM_ROLE" | "IAM_ROOT" | "ACCESS_PROFILE" | "ALERT" | "AGENT")
|
|
773
|
+
attr_accessor permission: ("SPACE_ADMIN" | "READ" | "READ_WRITE_DELETE" | "CUSTOM")
|
|
774
|
+
attr_accessor next_token: ::String
|
|
775
|
+
attr_accessor max_results: ::Integer
|
|
776
|
+
SENSITIVE: []
|
|
777
|
+
end
|
|
778
|
+
|
|
779
|
+
class ListAccessGrantsOutput
|
|
780
|
+
attr_accessor items: ::Array[Types::AccessGrantSummary]
|
|
781
|
+
attr_accessor next_token: ::String
|
|
782
|
+
SENSITIVE: []
|
|
783
|
+
end
|
|
784
|
+
|
|
785
|
+
class ListAccessProfilesInput
|
|
786
|
+
attr_accessor space_id: ::String
|
|
787
|
+
attr_accessor next_token: ::String
|
|
788
|
+
attr_accessor max_results: ::Integer
|
|
789
|
+
SENSITIVE: []
|
|
790
|
+
end
|
|
791
|
+
|
|
792
|
+
class ListAccessProfilesOutput
|
|
793
|
+
attr_accessor items: ::Array[Types::AccessProfileSummary]
|
|
794
|
+
attr_accessor next_token: ::String
|
|
795
|
+
SENSITIVE: []
|
|
796
|
+
end
|
|
797
|
+
|
|
798
|
+
class ListAlertsInput
|
|
799
|
+
attr_accessor space_id: ::String
|
|
800
|
+
attr_accessor filter_criteria: Types::AlertFilterCriteria
|
|
801
|
+
attr_accessor sort_by: ("NAME" | "STATE")
|
|
802
|
+
attr_accessor sort_order: ("ASC" | "DESC")
|
|
803
|
+
attr_accessor next_token: ::String
|
|
804
|
+
attr_accessor max_results: ::Integer
|
|
805
|
+
SENSITIVE: []
|
|
806
|
+
end
|
|
807
|
+
|
|
808
|
+
class ListAlertsOutput
|
|
809
|
+
attr_accessor items: ::Array[Types::AlertSummary]
|
|
810
|
+
attr_accessor next_token: ::String
|
|
811
|
+
SENSITIVE: []
|
|
812
|
+
end
|
|
813
|
+
|
|
814
|
+
class ListDomainAccessGrantsForOrganizationInput
|
|
815
|
+
attr_accessor domain_id: ::String
|
|
816
|
+
attr_accessor principal_id: ::String
|
|
817
|
+
attr_accessor principal_type: ("IDC_USER" | "IDC_GROUP" | "IAM_USER" | "IAM_ROLE" | "IAM_ROOT")
|
|
818
|
+
attr_accessor permission: ("ADMIN")
|
|
819
|
+
attr_accessor next_token: ::String
|
|
820
|
+
attr_accessor max_results: ::Integer
|
|
821
|
+
SENSITIVE: []
|
|
822
|
+
end
|
|
823
|
+
|
|
824
|
+
class ListDomainAccessGrantsForOrganizationOutput
|
|
825
|
+
attr_accessor items: ::Array[Types::OrganizationAccessGrantSummary]
|
|
826
|
+
attr_accessor next_token: ::String
|
|
827
|
+
SENSITIVE: []
|
|
828
|
+
end
|
|
829
|
+
|
|
830
|
+
class ListDomainsInput
|
|
831
|
+
attr_accessor next_token: ::String
|
|
832
|
+
attr_accessor max_results: ::Integer
|
|
833
|
+
SENSITIVE: []
|
|
834
|
+
end
|
|
835
|
+
|
|
836
|
+
class ListDomainsOutput
|
|
837
|
+
attr_accessor items: ::Array[Types::DomainSummary]
|
|
838
|
+
attr_accessor next_token: ::String
|
|
839
|
+
SENSITIVE: []
|
|
840
|
+
end
|
|
841
|
+
|
|
842
|
+
class ListIntegrationsInput
|
|
843
|
+
attr_accessor integration_type: ("AWS_CONFIG_SLREC" | "SLACK" | "EXTERNAL_AGENT" | "AWS_INTEGRATION")
|
|
844
|
+
attr_accessor status: ("ACTIVE" | "DELETED" | "PENDING" | "PENDING_OAUTH" | "ERROR" | "FAILED")
|
|
845
|
+
attr_accessor name: ::String
|
|
846
|
+
attr_accessor next_token: ::String
|
|
847
|
+
attr_accessor max_results: ::Integer
|
|
848
|
+
SENSITIVE: []
|
|
849
|
+
end
|
|
850
|
+
|
|
851
|
+
class ListIntegrationsOutput
|
|
852
|
+
attr_accessor items: ::Array[Types::Integration]
|
|
853
|
+
attr_accessor next_token: ::String
|
|
854
|
+
SENSITIVE: []
|
|
855
|
+
end
|
|
856
|
+
|
|
857
|
+
class ListOmniDashboardsInput
|
|
858
|
+
attr_accessor space_id: ::String
|
|
859
|
+
attr_accessor name_prefix: ::String
|
|
860
|
+
attr_accessor next_token: ::String
|
|
861
|
+
attr_accessor max_results: ::Integer
|
|
862
|
+
SENSITIVE: []
|
|
863
|
+
end
|
|
864
|
+
|
|
865
|
+
class ListOmniDashboardsOutput
|
|
866
|
+
attr_accessor items: ::Array[Types::OmniDashboardSummary]
|
|
867
|
+
attr_accessor next_token: ::String
|
|
868
|
+
SENSITIVE: []
|
|
869
|
+
end
|
|
870
|
+
|
|
871
|
+
class ListSpacesForOrganizationInput
|
|
872
|
+
attr_accessor next_token: ::String
|
|
873
|
+
attr_accessor max_results: ::Integer
|
|
874
|
+
SENSITIVE: []
|
|
875
|
+
end
|
|
876
|
+
|
|
877
|
+
class ListSpacesForOrganizationOutput
|
|
878
|
+
attr_accessor items: ::Array[Types::SpaceSummary]
|
|
879
|
+
attr_accessor next_token: ::String
|
|
880
|
+
SENSITIVE: []
|
|
881
|
+
end
|
|
882
|
+
|
|
883
|
+
class ListSpacesInput
|
|
884
|
+
attr_accessor domain_id: ::String
|
|
885
|
+
attr_accessor next_token: ::String
|
|
886
|
+
attr_accessor max_results: ::Integer
|
|
887
|
+
SENSITIVE: []
|
|
888
|
+
end
|
|
889
|
+
|
|
890
|
+
class ListSpacesOutput
|
|
891
|
+
attr_accessor items: ::Array[Types::SpaceSummary]
|
|
892
|
+
attr_accessor next_token: ::String
|
|
893
|
+
SENSITIVE: []
|
|
894
|
+
end
|
|
895
|
+
|
|
896
|
+
class ListTelemetryFieldsRequest
|
|
897
|
+
attr_accessor data_set_name: ::String
|
|
898
|
+
attr_accessor telemetry_type: ("LOGS" | "TRACES")
|
|
899
|
+
attr_accessor start_time: ::Time
|
|
900
|
+
attr_accessor end_time: ::Time
|
|
901
|
+
attr_accessor next_token: ::String
|
|
902
|
+
SENSITIVE: []
|
|
903
|
+
end
|
|
904
|
+
|
|
905
|
+
class ListTelemetryFieldsResponse
|
|
906
|
+
attr_accessor fields: ::Array[Types::Field]
|
|
907
|
+
attr_accessor next_token: ::String
|
|
908
|
+
SENSITIVE: []
|
|
909
|
+
end
|
|
910
|
+
|
|
911
|
+
class ListTelemetryQuerySessionsRequest
|
|
912
|
+
attr_accessor next_token: ::String
|
|
913
|
+
attr_accessor max_results: ::Integer
|
|
914
|
+
SENSITIVE: []
|
|
915
|
+
end
|
|
916
|
+
|
|
917
|
+
class ListTelemetryQuerySessionsResponse
|
|
918
|
+
attr_accessor sessions: ::Array[Types::SessionSummary]
|
|
919
|
+
attr_accessor next_token: ::String
|
|
920
|
+
SENSITIVE: []
|
|
921
|
+
end
|
|
922
|
+
|
|
923
|
+
class ListViewsRequest
|
|
924
|
+
attr_accessor type: ("USER" | "MANAGED")
|
|
925
|
+
attr_accessor max_results: ::Integer
|
|
926
|
+
attr_accessor next_token: ::String
|
|
927
|
+
SENSITIVE: []
|
|
928
|
+
end
|
|
929
|
+
|
|
930
|
+
class ListViewsResponse
|
|
931
|
+
attr_accessor items: ::Array[Types::ViewSummary]
|
|
932
|
+
attr_accessor next_token: ::String
|
|
933
|
+
SENSITIVE: []
|
|
934
|
+
end
|
|
935
|
+
|
|
936
|
+
class LogMetadata
|
|
937
|
+
attr_accessor attributes: ::Hash[::String, ::String]
|
|
938
|
+
SENSITIVE: []
|
|
939
|
+
end
|
|
940
|
+
|
|
941
|
+
class Metadata
|
|
942
|
+
attr_accessor metrics: ::Array[Types::MetricMetadata]
|
|
943
|
+
attr_accessor semantics: Types::NodeSemantics
|
|
944
|
+
attr_accessor logs: ::Array[Types::LogMetadata]
|
|
945
|
+
attr_accessor traces: ::Array[Types::TraceMetadata]
|
|
946
|
+
SENSITIVE: []
|
|
947
|
+
end
|
|
948
|
+
|
|
949
|
+
class MetricMetadata
|
|
950
|
+
attr_accessor name: ::String
|
|
951
|
+
attr_accessor namespace: ::String
|
|
952
|
+
attr_accessor preferred_stat: ::String
|
|
953
|
+
attr_accessor metric_type: ::String
|
|
954
|
+
attr_accessor attributes: ::Hash[::String, ::String]
|
|
955
|
+
attr_accessor semantics: Types::MetricSemantics
|
|
956
|
+
SENSITIVE: []
|
|
957
|
+
end
|
|
958
|
+
|
|
959
|
+
class MetricSemantics
|
|
960
|
+
attr_accessor description: ::String
|
|
961
|
+
attr_accessor unit: ::String
|
|
962
|
+
SENSITIVE: []
|
|
963
|
+
end
|
|
964
|
+
|
|
965
|
+
class NoData
|
|
966
|
+
attr_accessor treat_as: ("OK" | "WARNING" | "CRITICAL" | "NODATA")
|
|
967
|
+
SENSITIVE: []
|
|
968
|
+
end
|
|
969
|
+
|
|
970
|
+
class Node
|
|
971
|
+
attr_accessor node_id: ::String
|
|
972
|
+
attr_accessor node_type: ("SERVICE" | "RESOURCE" | "REMOTE_SERVICE")
|
|
973
|
+
attr_accessor name: ::String
|
|
974
|
+
attr_accessor alternate_names: ::Array[::String]
|
|
975
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
976
|
+
attr_accessor node_properties: Types::NodeProperties
|
|
977
|
+
attr_accessor telemetry_attributes: ::Hash[::String, ::String]
|
|
978
|
+
attr_accessor operation_details: ::Hash[::String, ::Array[::Hash[::String, ::String]]]
|
|
979
|
+
attr_accessor signal_types: ::Array[("LOGS" | "METRICS" | "TRACES" | "CONFIG" | "UNKNOWN")]
|
|
980
|
+
attr_accessor sources: ::Array[("VPC_FLOW_LOG" | "CLOUDTRAIL" | "IAM_POLICY" | "CODE_SEMANTICS" | "TELEMETRY" | "AZURE_VNET_FLOW_LOG" | "ELB_ACCESS_LOG" | "CLOUDFRONT_ACCESS_LOG" | "S3_ACCESS_LOG" | "WAF_ACCESS_LOG" | "AWS_INTEGRATION" | "CONFIG")]
|
|
981
|
+
attr_accessor metadata: Types::Metadata
|
|
982
|
+
attr_accessor first_observed_at: ::Time
|
|
983
|
+
attr_accessor last_observed_at: ::Time
|
|
984
|
+
attr_accessor edges: ::Array[Types::Edge]
|
|
985
|
+
SENSITIVE: []
|
|
986
|
+
end
|
|
987
|
+
|
|
988
|
+
class NodeFilters
|
|
989
|
+
attr_accessor node_id: ::String
|
|
990
|
+
attr_accessor node_type: ("SERVICE" | "RESOURCE" | "REMOTE_SERVICE")
|
|
991
|
+
attr_accessor name: ::String
|
|
992
|
+
attr_accessor tags: ::Array[Types::KeyFilter]
|
|
993
|
+
attr_accessor telemetry_attributes: ::Array[Types::KeyFilter]
|
|
994
|
+
attr_accessor region: ::Array[::String]
|
|
995
|
+
attr_accessor cloud_provider: ::Array[::String]
|
|
996
|
+
attr_accessor source_account_id: ::Array[::String]
|
|
997
|
+
attr_accessor namespace: ::Array[::String]
|
|
998
|
+
attr_accessor category: ::Array[("GEN_AI_AGENT" | "GEN_AI_MODEL" | "DATABASE" | "MESSAGING_QUEUE" | "COMPUTE" | "STORAGE" | "NETWORK")]
|
|
999
|
+
attr_accessor stage: ::Array[::String]
|
|
1000
|
+
attr_accessor sources: ::Array[("VPC_FLOW_LOG" | "CLOUDTRAIL" | "IAM_POLICY" | "CODE_SEMANTICS" | "TELEMETRY" | "AZURE_VNET_FLOW_LOG" | "ELB_ACCESS_LOG" | "CLOUDFRONT_ACCESS_LOG" | "S3_ACCESS_LOG" | "WAF_ACCESS_LOG" | "AWS_INTEGRATION" | "CONFIG")]
|
|
1001
|
+
SENSITIVE: []
|
|
1002
|
+
end
|
|
1003
|
+
|
|
1004
|
+
class NodeProperties
|
|
1005
|
+
attr_accessor region: ::String
|
|
1006
|
+
attr_accessor cloud_provider: ::String
|
|
1007
|
+
attr_accessor source_account_id: ::String
|
|
1008
|
+
attr_accessor namespace: ::String
|
|
1009
|
+
attr_accessor category: ("GEN_AI_AGENT" | "GEN_AI_MODEL" | "DATABASE" | "MESSAGING_QUEUE" | "COMPUTE" | "STORAGE" | "NETWORK")
|
|
1010
|
+
attr_accessor stage: ::String
|
|
1011
|
+
SENSITIVE: []
|
|
1012
|
+
end
|
|
1013
|
+
|
|
1014
|
+
class NodeSemantics
|
|
1015
|
+
attr_accessor purpose: ::String
|
|
1016
|
+
attr_accessor language: ::String
|
|
1017
|
+
attr_accessor framework: ::String
|
|
1018
|
+
attr_accessor kind: ::String
|
|
1019
|
+
attr_accessor repository: ::String
|
|
1020
|
+
SENSITIVE: []
|
|
1021
|
+
end
|
|
1022
|
+
|
|
1023
|
+
class NotificationRule
|
|
1024
|
+
attr_accessor trigger: Types::NotificationTrigger
|
|
1025
|
+
attr_accessor target: Types::NotificationTarget
|
|
1026
|
+
SENSITIVE: []
|
|
1027
|
+
end
|
|
1028
|
+
|
|
1029
|
+
class NotificationTarget
|
|
1030
|
+
attr_accessor type: ("sns" | "slack" | "pagerduty")
|
|
1031
|
+
attr_accessor arn: ::String
|
|
1032
|
+
attr_accessor metadata: ::Hash[::String, ::String]
|
|
1033
|
+
SENSITIVE: []
|
|
1034
|
+
end
|
|
1035
|
+
|
|
1036
|
+
class NotificationTrigger
|
|
1037
|
+
attr_accessor state_values: ::Array[("OK" | "WARNING" | "CRITICAL" | "NODATA")]
|
|
1038
|
+
SENSITIVE: []
|
|
1039
|
+
end
|
|
1040
|
+
|
|
1041
|
+
class OAuthClientCredential
|
|
1042
|
+
attr_accessor client_id: ::String
|
|
1043
|
+
attr_accessor client_secret: ::String
|
|
1044
|
+
attr_accessor provider_id: ::String
|
|
1045
|
+
SENSITIVE: [:client_secret]
|
|
1046
|
+
end
|
|
1047
|
+
|
|
1048
|
+
class OAuthCodeCredential
|
|
1049
|
+
attr_accessor auth_code: ::String
|
|
1050
|
+
SENSITIVE: []
|
|
1051
|
+
end
|
|
1052
|
+
|
|
1053
|
+
class OmniDashboard
|
|
1054
|
+
attr_accessor dashboard_id: ::String
|
|
1055
|
+
attr_accessor arn: ::String
|
|
1056
|
+
attr_accessor name: ::String
|
|
1057
|
+
attr_accessor body: ::String
|
|
1058
|
+
attr_accessor created_by: ::String
|
|
1059
|
+
attr_accessor description: ::String
|
|
1060
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
1061
|
+
attr_accessor created_at: ::Time
|
|
1062
|
+
attr_accessor updated_at: ::Time
|
|
1063
|
+
SENSITIVE: []
|
|
1064
|
+
end
|
|
1065
|
+
|
|
1066
|
+
class OmniDashboardSummary
|
|
1067
|
+
attr_accessor dashboard_id: ::String
|
|
1068
|
+
attr_accessor arn: ::String
|
|
1069
|
+
attr_accessor name: ::String
|
|
1070
|
+
attr_accessor created_by: ::String
|
|
1071
|
+
attr_accessor description: ::String
|
|
1072
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
1073
|
+
attr_accessor created_at: ::Time
|
|
1074
|
+
attr_accessor updated_at: ::Time
|
|
1075
|
+
SENSITIVE: []
|
|
1076
|
+
end
|
|
1077
|
+
|
|
1078
|
+
class OrganizationAccessGrant
|
|
1079
|
+
attr_accessor grant_id: ::String
|
|
1080
|
+
attr_accessor grant_arn: ::String
|
|
1081
|
+
attr_accessor name: ::String
|
|
1082
|
+
attr_accessor domain_id: ::String
|
|
1083
|
+
attr_accessor principal: Types::OrganizationAccessGrantPrincipal
|
|
1084
|
+
attr_accessor permission: ("ADMIN")
|
|
1085
|
+
attr_accessor grant_type: ("SERVICE_MANAGED" | "CUSTOMER_MANAGED")
|
|
1086
|
+
attr_accessor created_by: ::String
|
|
1087
|
+
attr_accessor created_at: ::Time
|
|
1088
|
+
attr_accessor updated_at: ::Time
|
|
1089
|
+
SENSITIVE: []
|
|
1090
|
+
end
|
|
1091
|
+
|
|
1092
|
+
class OrganizationAccessGrantPrincipal
|
|
1093
|
+
attr_accessor principal_type: ("IDC_USER" | "IDC_GROUP" | "IAM_USER" | "IAM_ROLE" | "IAM_ROOT")
|
|
1094
|
+
attr_accessor principal_id: ::String
|
|
1095
|
+
attr_accessor principal_attributes: ::Array[Types::AccessGrantPrincipalAttribute]
|
|
1096
|
+
SENSITIVE: []
|
|
1097
|
+
end
|
|
1098
|
+
|
|
1099
|
+
class OrganizationAccessGrantSummary
|
|
1100
|
+
attr_accessor grant_id: ::String
|
|
1101
|
+
attr_accessor grant_arn: ::String
|
|
1102
|
+
attr_accessor name: ::String
|
|
1103
|
+
attr_accessor domain_id: ::String
|
|
1104
|
+
attr_accessor principal: Types::OrganizationAccessGrantPrincipal
|
|
1105
|
+
attr_accessor permission: ("ADMIN")
|
|
1106
|
+
attr_accessor grant_type: ("SERVICE_MANAGED" | "CUSTOMER_MANAGED")
|
|
1107
|
+
attr_accessor created_at: ::Time
|
|
1108
|
+
attr_accessor updated_at: ::Time
|
|
1109
|
+
SENSITIVE: []
|
|
1110
|
+
end
|
|
1111
|
+
|
|
1112
|
+
class OrganizationDomain
|
|
1113
|
+
attr_accessor domain_id: ::String
|
|
1114
|
+
attr_accessor domain_arn: ::String
|
|
1115
|
+
attr_accessor name: ::String
|
|
1116
|
+
attr_accessor domain_endpoint_url: ::String
|
|
1117
|
+
attr_accessor custom_endpoint_urls: ::Array[::String]
|
|
1118
|
+
attr_accessor organization_id: ::String
|
|
1119
|
+
attr_accessor owner_account_id: ::String
|
|
1120
|
+
attr_accessor identity_providers: ::Array[("IAM" | "IDC")]
|
|
1121
|
+
attr_accessor identity_provider_configuration: Types::IdentityProviderConfiguration
|
|
1122
|
+
attr_accessor identity_center_application_arn: ::String
|
|
1123
|
+
attr_accessor region: ::String
|
|
1124
|
+
attr_accessor status: ("ACTIVE")
|
|
1125
|
+
attr_accessor domain_access_role_arn: ::String
|
|
1126
|
+
attr_accessor created_at: ::Time
|
|
1127
|
+
attr_accessor updated_at: ::Time
|
|
1128
|
+
SENSITIVE: []
|
|
1129
|
+
end
|
|
1130
|
+
|
|
1131
|
+
class PartialResults
|
|
1132
|
+
attr_accessor partial_results_detected: bool
|
|
1133
|
+
SENSITIVE: []
|
|
1134
|
+
end
|
|
1135
|
+
|
|
1136
|
+
class PrincipalSearchResult
|
|
1137
|
+
attr_accessor principal_id: ::String
|
|
1138
|
+
attr_accessor principal_type: ("USER" | "GROUP")
|
|
1139
|
+
attr_accessor display_name: ::String
|
|
1140
|
+
attr_accessor user_name: ::String
|
|
1141
|
+
attr_accessor description: ::String
|
|
1142
|
+
SENSITIVE: []
|
|
1143
|
+
end
|
|
1144
|
+
|
|
1145
|
+
class PutIntelligenceConfigurationInput
|
|
1146
|
+
attr_accessor kms_key_arn: ::String
|
|
1147
|
+
attr_accessor remove_kms_key: bool
|
|
1148
|
+
attr_accessor client_token: ::String
|
|
1149
|
+
SENSITIVE: []
|
|
1150
|
+
end
|
|
1151
|
+
|
|
1152
|
+
class PutIntelligenceConfigurationOutput
|
|
1153
|
+
attr_accessor account_id: ::String
|
|
1154
|
+
attr_accessor kms_key_arn: ::String
|
|
1155
|
+
attr_accessor updated_at: ::Time
|
|
1156
|
+
attr_accessor created_at: ::Time
|
|
1157
|
+
SENSITIVE: []
|
|
1158
|
+
end
|
|
1159
|
+
|
|
1160
|
+
class QueryStatistics
|
|
1161
|
+
attr_accessor bytes_scanned: ::Float
|
|
1162
|
+
attr_accessor percent_complete: ::Integer
|
|
1163
|
+
attr_accessor records_scanned: ::Integer
|
|
1164
|
+
attr_accessor records_matched: ::Integer
|
|
1165
|
+
attr_accessor partial_results: Types::PartialResults
|
|
1166
|
+
SENSITIVE: []
|
|
1167
|
+
end
|
|
1168
|
+
|
|
1169
|
+
class ResourceNotFoundException
|
|
1170
|
+
attr_accessor message: ::String
|
|
1171
|
+
attr_accessor resource_type: ::String
|
|
1172
|
+
attr_accessor resource_id: ::String
|
|
1173
|
+
attr_accessor error_code: ::String
|
|
1174
|
+
SENSITIVE: []
|
|
1175
|
+
end
|
|
1176
|
+
|
|
1177
|
+
class ResourceScope
|
|
1178
|
+
attr_accessor resource_type: ::String
|
|
1179
|
+
attr_accessor resource_arns: ::Array[::String]
|
|
1180
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
1181
|
+
attr_accessor signal_types: ::Array[("LOGS" | "TRACES")]
|
|
1182
|
+
attr_accessor row_scope_groups: ::Array[::Array[Types::RowScope]]
|
|
1183
|
+
SENSITIVE: []
|
|
1184
|
+
end
|
|
1185
|
+
|
|
1186
|
+
class RowScope
|
|
1187
|
+
attr_accessor field: ::String
|
|
1188
|
+
attr_accessor operator: ("IN")
|
|
1189
|
+
attr_accessor values: ::Array[::String]
|
|
1190
|
+
SENSITIVE: []
|
|
1191
|
+
end
|
|
1192
|
+
|
|
1193
|
+
class Rule
|
|
1194
|
+
attr_accessor telemetry_rule: Types::TelemetryRule
|
|
1195
|
+
attr_accessor unknown: untyped
|
|
1196
|
+
SENSITIVE: []
|
|
1197
|
+
|
|
1198
|
+
class TelemetryRule < Rule
|
|
1199
|
+
end
|
|
1200
|
+
class Unknown < Rule
|
|
1201
|
+
end
|
|
1202
|
+
end
|
|
1203
|
+
|
|
1204
|
+
class ScopedActions
|
|
1205
|
+
attr_accessor actions: ::Array[::String]
|
|
1206
|
+
attr_accessor resources: ::Array[Types::ResourceScope]
|
|
1207
|
+
attr_accessor context_conditions: ::Hash[::String, ::Array[::String]]
|
|
1208
|
+
SENSITIVE: []
|
|
1209
|
+
end
|
|
1210
|
+
|
|
1211
|
+
class SearchPrincipalsInput
|
|
1212
|
+
attr_accessor domain_id: ::String
|
|
1213
|
+
attr_accessor search_query: ::String
|
|
1214
|
+
attr_accessor max_results: ::Integer
|
|
1215
|
+
attr_accessor next_token: ::String
|
|
1216
|
+
SENSITIVE: []
|
|
1217
|
+
end
|
|
1218
|
+
|
|
1219
|
+
class SearchPrincipalsOutput
|
|
1220
|
+
attr_accessor results: ::Array[Types::PrincipalSearchResult]
|
|
1221
|
+
attr_accessor next_token: ::String
|
|
1222
|
+
SENSITIVE: []
|
|
1223
|
+
end
|
|
1224
|
+
|
|
1225
|
+
class ServiceQuotaExceededException
|
|
1226
|
+
attr_accessor message: ::String
|
|
1227
|
+
SENSITIVE: []
|
|
1228
|
+
end
|
|
1229
|
+
|
|
1230
|
+
class SessionSummary
|
|
1231
|
+
attr_accessor session_id: ::String
|
|
1232
|
+
attr_accessor created_at: ::Time
|
|
1233
|
+
attr_accessor last_activity_at: ::Time
|
|
1234
|
+
attr_accessor session_name: ::String
|
|
1235
|
+
SENSITIVE: []
|
|
1236
|
+
end
|
|
1237
|
+
|
|
1238
|
+
class Space
|
|
1239
|
+
attr_accessor space_id: ::String
|
|
1240
|
+
attr_accessor name: ::String
|
|
1241
|
+
attr_accessor space_arn: ::String
|
|
1242
|
+
attr_accessor domain_arn: ::String
|
|
1243
|
+
attr_accessor region: ::String
|
|
1244
|
+
attr_accessor owner_account_id: ::String
|
|
1245
|
+
attr_accessor data_access_role_arn: ::String
|
|
1246
|
+
attr_accessor created_at: ::Time
|
|
1247
|
+
attr_accessor updated_at: ::Time
|
|
1248
|
+
attr_accessor agent_core_evaluation_role_arn: ::String
|
|
1249
|
+
attr_accessor status: ("ACTIVE" | "SUSPENDED" | "MOVING")
|
|
1250
|
+
attr_accessor status_reason: ::String
|
|
1251
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
|
1252
|
+
SENSITIVE: []
|
|
1253
|
+
end
|
|
1254
|
+
|
|
1255
|
+
class SpaceCredentialRequestContext
|
|
1256
|
+
attr_accessor space_id: ::String
|
|
1257
|
+
attr_accessor domain_id: ::String
|
|
1258
|
+
attr_accessor target_account_id: ::String
|
|
1259
|
+
SENSITIVE: []
|
|
1260
|
+
end
|
|
1261
|
+
|
|
1262
|
+
class SpaceSummary
|
|
1263
|
+
attr_accessor space_id: ::String
|
|
1264
|
+
attr_accessor name: ::String
|
|
1265
|
+
attr_accessor space_arn: ::String
|
|
1266
|
+
attr_accessor domain_arn: ::String
|
|
1267
|
+
attr_accessor region: ::String
|
|
1268
|
+
attr_accessor owner_account_id: ::String
|
|
1269
|
+
attr_accessor status: ("ACTIVE" | "SUSPENDED" | "MOVING")
|
|
1270
|
+
attr_accessor status_reason: ::String
|
|
1271
|
+
attr_accessor created_at: ::Time
|
|
1272
|
+
attr_accessor updated_at: ::Time
|
|
1273
|
+
SENSITIVE: []
|
|
1274
|
+
end
|
|
1275
|
+
|
|
1276
|
+
class StartTelemetryQueryRequest
|
|
1277
|
+
attr_accessor query_string: ::String
|
|
1278
|
+
attr_accessor session_id: ::String
|
|
1279
|
+
SENSITIVE: []
|
|
1280
|
+
end
|
|
1281
|
+
|
|
1282
|
+
class StartTelemetryQueryResponse
|
|
1283
|
+
attr_accessor query_id: ::String
|
|
1284
|
+
attr_accessor session_id: ::String
|
|
1285
|
+
SENSITIVE: []
|
|
1286
|
+
end
|
|
1287
|
+
|
|
1288
|
+
class StartTelemetryQuerySessionRequest
|
|
1289
|
+
attr_accessor session_name: ::String
|
|
1290
|
+
SENSITIVE: []
|
|
1291
|
+
end
|
|
1292
|
+
|
|
1293
|
+
class StartTelemetryQuerySessionResponse
|
|
1294
|
+
attr_accessor session_id: ::String
|
|
1295
|
+
SENSITIVE: []
|
|
1296
|
+
end
|
|
1297
|
+
|
|
1298
|
+
class StopTelemetryQueryRequest
|
|
1299
|
+
attr_accessor query_id: ::String
|
|
1300
|
+
SENSITIVE: []
|
|
1301
|
+
end
|
|
1302
|
+
|
|
1303
|
+
class StopTelemetryQueryResponse < Aws::EmptyStructure
|
|
1304
|
+
end
|
|
1305
|
+
|
|
1306
|
+
class StopTelemetryQuerySessionRequest
|
|
1307
|
+
attr_accessor session_id: ::String
|
|
1308
|
+
SENSITIVE: []
|
|
1309
|
+
end
|
|
1310
|
+
|
|
1311
|
+
class StopTelemetryQuerySessionResponse < Aws::EmptyStructure
|
|
1312
|
+
end
|
|
1313
|
+
|
|
1314
|
+
class TelemetryRule
|
|
1315
|
+
attr_accessor query: Types::AlertRuleQuery
|
|
1316
|
+
attr_accessor condition: Types::AlertCondition
|
|
1317
|
+
attr_accessor evaluation: Types::AlertEvaluation
|
|
1318
|
+
attr_accessor no_data: Types::NoData
|
|
1319
|
+
SENSITIVE: []
|
|
1320
|
+
end
|
|
1321
|
+
|
|
1322
|
+
class ThrottlingException
|
|
1323
|
+
attr_accessor message: ::String
|
|
1324
|
+
attr_accessor retry_after_seconds: ::Integer
|
|
1325
|
+
SENSITIVE: []
|
|
1326
|
+
end
|
|
1327
|
+
|
|
1328
|
+
class TraceMetadata
|
|
1329
|
+
attr_accessor attributes: ::Hash[::String, ::String]
|
|
1330
|
+
SENSITIVE: []
|
|
1331
|
+
end
|
|
1332
|
+
|
|
1333
|
+
class UpdateAccessProfileInput
|
|
1334
|
+
attr_accessor space_id: ::String
|
|
1335
|
+
attr_accessor profile_id: ::String
|
|
1336
|
+
attr_accessor name: ::String
|
|
1337
|
+
attr_accessor description: ::String
|
|
1338
|
+
SENSITIVE: []
|
|
1339
|
+
end
|
|
1340
|
+
|
|
1341
|
+
class UpdateAccessProfileOutput
|
|
1342
|
+
attr_accessor access_profile: Types::AccessProfile
|
|
1343
|
+
SENSITIVE: []
|
|
1344
|
+
end
|
|
1345
|
+
|
|
1346
|
+
class UpdateAlertInput
|
|
1347
|
+
attr_accessor space_id: ::String
|
|
1348
|
+
attr_accessor alert_id: ::String
|
|
1349
|
+
attr_accessor profile_id: ::String
|
|
1350
|
+
attr_accessor name: ::String
|
|
1351
|
+
attr_accessor description: ::String
|
|
1352
|
+
attr_accessor rule: Types::Rule
|
|
1353
|
+
attr_accessor notifications_enabled: bool
|
|
1354
|
+
attr_accessor notification_rules: ::Array[Types::NotificationRule]
|
|
1355
|
+
SENSITIVE: []
|
|
1356
|
+
end
|
|
1357
|
+
|
|
1358
|
+
class UpdateAlertOutput < Aws::EmptyStructure
|
|
1359
|
+
end
|
|
1360
|
+
|
|
1361
|
+
class UpdateDomainForOrganizationInput
|
|
1362
|
+
attr_accessor domain_id: ::String
|
|
1363
|
+
attr_accessor name: ::String
|
|
1364
|
+
attr_accessor identity_providers: ::Array[("IAM" | "IDC")]
|
|
1365
|
+
attr_accessor identity_provider_configuration: Types::IdentityProviderConfiguration
|
|
1366
|
+
SENSITIVE: []
|
|
1367
|
+
end
|
|
1368
|
+
|
|
1369
|
+
class UpdateDomainForOrganizationOutput
|
|
1370
|
+
attr_accessor organization_domain: Types::OrganizationDomain
|
|
1371
|
+
SENSITIVE: []
|
|
1372
|
+
end
|
|
1373
|
+
|
|
1374
|
+
class UpdateDomainInput
|
|
1375
|
+
attr_accessor domain_id: ::String
|
|
1376
|
+
attr_accessor name: ::String
|
|
1377
|
+
attr_accessor identity_providers: ::Array[("IAM" | "IDC")]
|
|
1378
|
+
attr_accessor identity_provider_configuration: Types::IdentityProviderConfiguration
|
|
1379
|
+
SENSITIVE: []
|
|
1380
|
+
end
|
|
1381
|
+
|
|
1382
|
+
class UpdateDomainOutput
|
|
1383
|
+
attr_accessor domain: Types::Domain
|
|
1384
|
+
SENSITIVE: []
|
|
1385
|
+
end
|
|
1386
|
+
|
|
1387
|
+
class UpdateIntegrationInput
|
|
1388
|
+
attr_accessor identifier: Types::IntegrationIdentifier
|
|
1389
|
+
attr_accessor credential: Types::IntegrationCredential
|
|
1390
|
+
attr_accessor integration_attributes: ::Hash[::String, ::String]
|
|
1391
|
+
attr_accessor role_arn: ::String
|
|
1392
|
+
SENSITIVE: []
|
|
1393
|
+
end
|
|
1394
|
+
|
|
1395
|
+
class UpdateIntegrationOutput
|
|
1396
|
+
attr_accessor integration: Types::Integration
|
|
1397
|
+
SENSITIVE: []
|
|
1398
|
+
end
|
|
1399
|
+
|
|
1400
|
+
class UpdateOmniDashboardInput
|
|
1401
|
+
attr_accessor space_id: ::String
|
|
1402
|
+
attr_accessor dashboard_id: ::String
|
|
1403
|
+
attr_accessor body: ::String
|
|
1404
|
+
attr_accessor name: ::String
|
|
1405
|
+
attr_accessor description: ::String
|
|
1406
|
+
SENSITIVE: []
|
|
1407
|
+
end
|
|
1408
|
+
|
|
1409
|
+
class UpdateOmniDashboardOutput
|
|
1410
|
+
attr_accessor omni_dashboard: Types::OmniDashboard
|
|
1411
|
+
SENSITIVE: []
|
|
1412
|
+
end
|
|
1413
|
+
|
|
1414
|
+
class UpdateSpaceInput
|
|
1415
|
+
attr_accessor space_id: ::String
|
|
1416
|
+
attr_accessor name: ::String
|
|
1417
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
|
1418
|
+
SENSITIVE: []
|
|
1419
|
+
end
|
|
1420
|
+
|
|
1421
|
+
class UpdateSpaceOutput
|
|
1422
|
+
attr_accessor space: Types::Space
|
|
1423
|
+
SENSITIVE: []
|
|
1424
|
+
end
|
|
1425
|
+
|
|
1426
|
+
class UpdateViewRequest
|
|
1427
|
+
attr_accessor name: ::String
|
|
1428
|
+
attr_accessor definition: ::String
|
|
1429
|
+
attr_accessor description: ::String
|
|
1430
|
+
SENSITIVE: []
|
|
1431
|
+
end
|
|
1432
|
+
|
|
1433
|
+
class UpdateViewResponse
|
|
1434
|
+
attr_accessor name: ::String
|
|
1435
|
+
attr_accessor type: ("USER" | "MANAGED")
|
|
1436
|
+
attr_accessor description: ::String
|
|
1437
|
+
attr_accessor definition: ::String
|
|
1438
|
+
attr_accessor created_at: ::Time
|
|
1439
|
+
attr_accessor updated_at: ::Time
|
|
1440
|
+
attr_accessor arn: ::String
|
|
1441
|
+
SENSITIVE: []
|
|
1442
|
+
end
|
|
1443
|
+
|
|
1444
|
+
class ValidationException
|
|
1445
|
+
attr_accessor message: ::String
|
|
1446
|
+
attr_accessor error_code: ::String
|
|
1447
|
+
SENSITIVE: []
|
|
1448
|
+
end
|
|
1449
|
+
|
|
1450
|
+
class ViewSummary
|
|
1451
|
+
attr_accessor name: ::String
|
|
1452
|
+
attr_accessor type: ("USER" | "MANAGED")
|
|
1453
|
+
attr_accessor description: ::String
|
|
1454
|
+
attr_accessor created_at: ::Time
|
|
1455
|
+
attr_accessor updated_at: ::Time
|
|
1456
|
+
SENSITIVE: []
|
|
1457
|
+
end
|
|
1458
|
+
end
|
|
1459
|
+
end
|