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/client.rbs
ADDED
|
@@ -0,0 +1,990 @@
|
|
|
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
|
|
9
|
+
module CloudWatchOmni
|
|
10
|
+
class Client < ::Seahorse::Client::Base
|
|
11
|
+
include ::Aws::ClientStubs
|
|
12
|
+
|
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#initialize-instance_method
|
|
14
|
+
def self.new: (
|
|
15
|
+
?credentials: untyped,
|
|
16
|
+
?region: String,
|
|
17
|
+
?access_key_id: String,
|
|
18
|
+
?account_id: String,
|
|
19
|
+
?active_endpoint_cache: bool,
|
|
20
|
+
?adaptive_retry_wait_to_fill: bool,
|
|
21
|
+
?auth_scheme_preference: Array[String],
|
|
22
|
+
?client_side_monitoring: bool,
|
|
23
|
+
?client_side_monitoring_client_id: String,
|
|
24
|
+
?client_side_monitoring_host: String,
|
|
25
|
+
?client_side_monitoring_port: Integer,
|
|
26
|
+
?client_side_monitoring_publisher: untyped,
|
|
27
|
+
?convert_params: bool,
|
|
28
|
+
?correct_clock_skew: bool,
|
|
29
|
+
?defaults_mode: String,
|
|
30
|
+
?disable_host_prefix_injection: bool,
|
|
31
|
+
?disable_request_compression: bool,
|
|
32
|
+
?endpoint: String,
|
|
33
|
+
?endpoint_cache_max_entries: Integer,
|
|
34
|
+
?endpoint_cache_max_threads: Integer,
|
|
35
|
+
?endpoint_cache_poll_interval: Integer,
|
|
36
|
+
?endpoint_discovery: bool,
|
|
37
|
+
?ignore_configured_endpoint_urls: bool,
|
|
38
|
+
?log_formatter: untyped,
|
|
39
|
+
?log_level: Symbol,
|
|
40
|
+
?logger: untyped,
|
|
41
|
+
?max_attempts: Integer,
|
|
42
|
+
?profile: String,
|
|
43
|
+
?request_checksum_calculation: String,
|
|
44
|
+
?request_min_compression_size_bytes: Integer,
|
|
45
|
+
?response_checksum_validation: String,
|
|
46
|
+
?retry_backoff: Proc,
|
|
47
|
+
?retry_base_delay: Float,
|
|
48
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
|
49
|
+
?retry_limit: Integer,
|
|
50
|
+
?retry_max_delay: Integer,
|
|
51
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
|
52
|
+
?sdk_ua_app_id: String,
|
|
53
|
+
?secret_access_key: String,
|
|
54
|
+
?session_token: String,
|
|
55
|
+
?sigv4a_signing_region_set: Array[String],
|
|
56
|
+
?stub_responses: untyped,
|
|
57
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
|
58
|
+
?token_provider: untyped,
|
|
59
|
+
?use_dualstack_endpoint: bool,
|
|
60
|
+
?use_fips_endpoint: bool,
|
|
61
|
+
?validate_params: bool,
|
|
62
|
+
?endpoint_provider: untyped,
|
|
63
|
+
?http_proxy: String,
|
|
64
|
+
?http_open_timeout: (Float | Integer),
|
|
65
|
+
?http_read_timeout: (Float | Integer),
|
|
66
|
+
?http_idle_timeout: (Float | Integer),
|
|
67
|
+
?http_continue_timeout: (Float | Integer),
|
|
68
|
+
?ssl_timeout: (Float | Integer | nil),
|
|
69
|
+
?http_wire_trace: bool,
|
|
70
|
+
?ssl_verify_peer: bool,
|
|
71
|
+
?ssl_ca_bundle: String,
|
|
72
|
+
?ssl_ca_directory: String,
|
|
73
|
+
?ssl_ca_store: String,
|
|
74
|
+
?on_chunk_received: Proc,
|
|
75
|
+
?on_chunk_sent: Proc,
|
|
76
|
+
?raise_response_errors: bool
|
|
77
|
+
) -> instance
|
|
78
|
+
| (?Hash[Symbol, untyped]) -> instance
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
interface _CreateAccessGrantResponseSuccess
|
|
82
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateAccessGrantOutput]
|
|
83
|
+
def access_grant: () -> Types::AccessGrant
|
|
84
|
+
end
|
|
85
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#create_access_grant-instance_method
|
|
86
|
+
def create_access_grant: (
|
|
87
|
+
domain_id: ::String,
|
|
88
|
+
space_id: ::String,
|
|
89
|
+
name: ::String,
|
|
90
|
+
principal: {
|
|
91
|
+
principal_type: ("IDC_USER" | "IDC_GROUP" | "IAM_USER" | "IAM_ROLE" | "IAM_ROOT" | "ACCESS_PROFILE" | "ALERT" | "AGENT"),
|
|
92
|
+
principal_id: ::String?,
|
|
93
|
+
principal_attributes: Array[
|
|
94
|
+
{
|
|
95
|
+
key: ::String,
|
|
96
|
+
value: ::String
|
|
97
|
+
}
|
|
98
|
+
]?
|
|
99
|
+
},
|
|
100
|
+
permission: ("SPACE_ADMIN" | "READ" | "READ_WRITE_DELETE" | "CUSTOM"),
|
|
101
|
+
?scoped_actions: Array[
|
|
102
|
+
{
|
|
103
|
+
actions: Array[::String],
|
|
104
|
+
resources: Array[
|
|
105
|
+
{
|
|
106
|
+
resource_type: ::String,
|
|
107
|
+
resource_arns: Array[::String]?,
|
|
108
|
+
tags: Hash[::String, ::String]?,
|
|
109
|
+
signal_types: Array[("LOGS" | "TRACES")]?,
|
|
110
|
+
row_scope_groups: Array[
|
|
111
|
+
Array[
|
|
112
|
+
{
|
|
113
|
+
field: ::String,
|
|
114
|
+
operator: ("IN"),
|
|
115
|
+
values: Array[::String]
|
|
116
|
+
}
|
|
117
|
+
]
|
|
118
|
+
]?
|
|
119
|
+
}
|
|
120
|
+
]?,
|
|
121
|
+
context_conditions: Hash[::String, Array[::String]]?
|
|
122
|
+
}
|
|
123
|
+
],
|
|
124
|
+
?tags: Hash[::String, ::String],
|
|
125
|
+
?client_token: ::String
|
|
126
|
+
) -> _CreateAccessGrantResponseSuccess
|
|
127
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAccessGrantResponseSuccess
|
|
128
|
+
|
|
129
|
+
interface _CreateAccessProfileResponseSuccess
|
|
130
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateAccessProfileOutput]
|
|
131
|
+
def access_profile: () -> Types::AccessProfile
|
|
132
|
+
end
|
|
133
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#create_access_profile-instance_method
|
|
134
|
+
def create_access_profile: (
|
|
135
|
+
space_id: ::String,
|
|
136
|
+
name: ::String,
|
|
137
|
+
?description: ::String,
|
|
138
|
+
?tags: Hash[::String, ::String],
|
|
139
|
+
?client_token: ::String
|
|
140
|
+
) -> _CreateAccessProfileResponseSuccess
|
|
141
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAccessProfileResponseSuccess
|
|
142
|
+
|
|
143
|
+
interface _CreateAlertResponseSuccess
|
|
144
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateAlertOutput]
|
|
145
|
+
def alert_arn: () -> ::String
|
|
146
|
+
def alert: () -> Types::Alert
|
|
147
|
+
end
|
|
148
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#create_alert-instance_method
|
|
149
|
+
def create_alert: (
|
|
150
|
+
space_id: ::String,
|
|
151
|
+
profile_id: ::String,
|
|
152
|
+
name: ::String,
|
|
153
|
+
?description: ::String,
|
|
154
|
+
rule: Params::rule,
|
|
155
|
+
?notifications_enabled: bool,
|
|
156
|
+
?tags: Hash[::String, ::String],
|
|
157
|
+
?notification_rules: Array[
|
|
158
|
+
Params::notification_rule
|
|
159
|
+
],
|
|
160
|
+
?client_token: ::String
|
|
161
|
+
) -> _CreateAlertResponseSuccess
|
|
162
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAlertResponseSuccess
|
|
163
|
+
|
|
164
|
+
interface _CreateDomainResponseSuccess
|
|
165
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDomainOutput]
|
|
166
|
+
def domain: () -> Types::Domain
|
|
167
|
+
end
|
|
168
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#create_domain-instance_method
|
|
169
|
+
def create_domain: (
|
|
170
|
+
name: ::String,
|
|
171
|
+
identity_providers: Array[("IAM" | "IDC")],
|
|
172
|
+
?identity_provider_configuration: {
|
|
173
|
+
identity_center_configuration: {
|
|
174
|
+
identity_center_instance_arn: ::String?
|
|
175
|
+
}?
|
|
176
|
+
},
|
|
177
|
+
?tags: Hash[::String, ::String],
|
|
178
|
+
?client_token: ::String
|
|
179
|
+
) -> _CreateDomainResponseSuccess
|
|
180
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDomainResponseSuccess
|
|
181
|
+
|
|
182
|
+
interface _CreateDomainAccessGrantForOrganizationResponseSuccess
|
|
183
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDomainAccessGrantForOrganizationOutput]
|
|
184
|
+
def access_grant: () -> Types::OrganizationAccessGrant
|
|
185
|
+
end
|
|
186
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#create_domain_access_grant_for_organization-instance_method
|
|
187
|
+
def create_domain_access_grant_for_organization: (
|
|
188
|
+
domain_id: ::String,
|
|
189
|
+
name: ::String,
|
|
190
|
+
principal: {
|
|
191
|
+
principal_type: ("IDC_USER" | "IDC_GROUP" | "IAM_USER" | "IAM_ROLE" | "IAM_ROOT"),
|
|
192
|
+
principal_id: ::String?,
|
|
193
|
+
principal_attributes: Array[
|
|
194
|
+
{
|
|
195
|
+
key: ::String,
|
|
196
|
+
value: ::String
|
|
197
|
+
}
|
|
198
|
+
]?
|
|
199
|
+
},
|
|
200
|
+
permission: ("ADMIN"),
|
|
201
|
+
?tags: Hash[::String, ::String],
|
|
202
|
+
?client_token: ::String
|
|
203
|
+
) -> _CreateDomainAccessGrantForOrganizationResponseSuccess
|
|
204
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDomainAccessGrantForOrganizationResponseSuccess
|
|
205
|
+
|
|
206
|
+
interface _CreateDomainForOrganizationResponseSuccess
|
|
207
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDomainForOrganizationOutput]
|
|
208
|
+
def organization_domain: () -> Types::OrganizationDomain
|
|
209
|
+
end
|
|
210
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#create_domain_for_organization-instance_method
|
|
211
|
+
def create_domain_for_organization: (
|
|
212
|
+
name: ::String,
|
|
213
|
+
identity_providers: Array[("IAM" | "IDC")],
|
|
214
|
+
?identity_provider_configuration: {
|
|
215
|
+
identity_center_configuration: {
|
|
216
|
+
identity_center_instance_arn: ::String?
|
|
217
|
+
}?
|
|
218
|
+
},
|
|
219
|
+
domain_access_role_arn: ::String,
|
|
220
|
+
?tags: Hash[::String, ::String],
|
|
221
|
+
?client_token: ::String
|
|
222
|
+
) -> _CreateDomainForOrganizationResponseSuccess
|
|
223
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDomainForOrganizationResponseSuccess
|
|
224
|
+
|
|
225
|
+
interface _CreateIntegrationResponseSuccess
|
|
226
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateIntegrationOutput]
|
|
227
|
+
def integration: () -> Types::Integration
|
|
228
|
+
end
|
|
229
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#create_integration-instance_method
|
|
230
|
+
def create_integration: (
|
|
231
|
+
integration_type: ("AWS_CONFIG_SLREC" | "SLACK" | "EXTERNAL_AGENT" | "AWS_INTEGRATION"),
|
|
232
|
+
name: ::String,
|
|
233
|
+
?credential: Params::integration_credential,
|
|
234
|
+
?integration_attributes: Hash[::String, ::String],
|
|
235
|
+
?role_arn: ::String,
|
|
236
|
+
?tags: Hash[::String, ::String],
|
|
237
|
+
?client_token: ::String
|
|
238
|
+
) -> _CreateIntegrationResponseSuccess
|
|
239
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIntegrationResponseSuccess
|
|
240
|
+
|
|
241
|
+
interface _CreateOmniDashboardResponseSuccess
|
|
242
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateOmniDashboardOutput]
|
|
243
|
+
def omni_dashboard: () -> Types::OmniDashboard
|
|
244
|
+
end
|
|
245
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#create_omni_dashboard-instance_method
|
|
246
|
+
def create_omni_dashboard: (
|
|
247
|
+
space_id: ::String,
|
|
248
|
+
name: ::String,
|
|
249
|
+
body: ::String,
|
|
250
|
+
?description: ::String,
|
|
251
|
+
?tags: Hash[::String, ::String],
|
|
252
|
+
?client_token: ::String
|
|
253
|
+
) -> _CreateOmniDashboardResponseSuccess
|
|
254
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateOmniDashboardResponseSuccess
|
|
255
|
+
|
|
256
|
+
interface _CreateOneTimeDeepLinkCodeResponseSuccess
|
|
257
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateOneTimeDeepLinkCodeOutput]
|
|
258
|
+
def code: () -> ::String
|
|
259
|
+
def deep_link_url: () -> ::String
|
|
260
|
+
def expires_at: () -> ::Time
|
|
261
|
+
end
|
|
262
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#create_one_time_deep_link_code-instance_method
|
|
263
|
+
def create_one_time_deep_link_code: (
|
|
264
|
+
domain_id: ::String,
|
|
265
|
+
?ttl_seconds: ::Integer,
|
|
266
|
+
?redirect_url: ::String
|
|
267
|
+
) -> _CreateOneTimeDeepLinkCodeResponseSuccess
|
|
268
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateOneTimeDeepLinkCodeResponseSuccess
|
|
269
|
+
|
|
270
|
+
interface _CreateSpaceResponseSuccess
|
|
271
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateSpaceOutput]
|
|
272
|
+
def space: () -> Types::Space
|
|
273
|
+
end
|
|
274
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#create_space-instance_method
|
|
275
|
+
def create_space: (
|
|
276
|
+
name: ::String,
|
|
277
|
+
domain_id: ::String,
|
|
278
|
+
data_access_role_arn: ::String,
|
|
279
|
+
?agent_core_evaluation_role_arn: ::String,
|
|
280
|
+
?encryption_configuration: {
|
|
281
|
+
encryption_strategy: ("AWS_OWNED" | "CUSTOMER_MANAGED"),
|
|
282
|
+
kms_key_arn: ::String?
|
|
283
|
+
},
|
|
284
|
+
?tags: Hash[::String, ::String],
|
|
285
|
+
?client_token: ::String
|
|
286
|
+
) -> _CreateSpaceResponseSuccess
|
|
287
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSpaceResponseSuccess
|
|
288
|
+
|
|
289
|
+
interface _CreateViewResponseSuccess
|
|
290
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateViewResponse]
|
|
291
|
+
def name: () -> ::String
|
|
292
|
+
def type: () -> ("USER" | "MANAGED")
|
|
293
|
+
def description: () -> ::String
|
|
294
|
+
def definition: () -> ::String
|
|
295
|
+
def created_at: () -> ::Time
|
|
296
|
+
def updated_at: () -> ::Time
|
|
297
|
+
def arn: () -> ::String
|
|
298
|
+
end
|
|
299
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#create_view-instance_method
|
|
300
|
+
def create_view: (
|
|
301
|
+
name: ::String,
|
|
302
|
+
definition: ::String,
|
|
303
|
+
?description: ::String,
|
|
304
|
+
?tags: Hash[::String, ::String],
|
|
305
|
+
?client_token: ::String
|
|
306
|
+
) -> _CreateViewResponseSuccess
|
|
307
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateViewResponseSuccess
|
|
308
|
+
|
|
309
|
+
interface _DeleteAccessGrantResponseSuccess
|
|
310
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAccessGrantOutput]
|
|
311
|
+
end
|
|
312
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#delete_access_grant-instance_method
|
|
313
|
+
def delete_access_grant: (
|
|
314
|
+
grant_id: ::String
|
|
315
|
+
) -> _DeleteAccessGrantResponseSuccess
|
|
316
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAccessGrantResponseSuccess
|
|
317
|
+
|
|
318
|
+
interface _DeleteAccessProfileResponseSuccess
|
|
319
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAccessProfileOutput]
|
|
320
|
+
end
|
|
321
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#delete_access_profile-instance_method
|
|
322
|
+
def delete_access_profile: (
|
|
323
|
+
space_id: ::String,
|
|
324
|
+
profile_id: ::String
|
|
325
|
+
) -> _DeleteAccessProfileResponseSuccess
|
|
326
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAccessProfileResponseSuccess
|
|
327
|
+
|
|
328
|
+
interface _DeleteAlertResponseSuccess
|
|
329
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAlertOutput]
|
|
330
|
+
end
|
|
331
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#delete_alert-instance_method
|
|
332
|
+
def delete_alert: (
|
|
333
|
+
space_id: ::String,
|
|
334
|
+
alert_id: ::String
|
|
335
|
+
) -> _DeleteAlertResponseSuccess
|
|
336
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAlertResponseSuccess
|
|
337
|
+
|
|
338
|
+
interface _DeleteDomainResponseSuccess
|
|
339
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDomainOutput]
|
|
340
|
+
end
|
|
341
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#delete_domain-instance_method
|
|
342
|
+
def delete_domain: (
|
|
343
|
+
domain_id: ::String
|
|
344
|
+
) -> _DeleteDomainResponseSuccess
|
|
345
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDomainResponseSuccess
|
|
346
|
+
|
|
347
|
+
interface _DeleteDomainAccessGrantForOrganizationResponseSuccess
|
|
348
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDomainAccessGrantForOrganizationOutput]
|
|
349
|
+
end
|
|
350
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#delete_domain_access_grant_for_organization-instance_method
|
|
351
|
+
def delete_domain_access_grant_for_organization: (
|
|
352
|
+
grant_id: ::String
|
|
353
|
+
) -> _DeleteDomainAccessGrantForOrganizationResponseSuccess
|
|
354
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDomainAccessGrantForOrganizationResponseSuccess
|
|
355
|
+
|
|
356
|
+
interface _DeleteDomainForOrganizationResponseSuccess
|
|
357
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDomainForOrganizationOutput]
|
|
358
|
+
end
|
|
359
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#delete_domain_for_organization-instance_method
|
|
360
|
+
def delete_domain_for_organization: (
|
|
361
|
+
domain_id: ::String
|
|
362
|
+
) -> _DeleteDomainForOrganizationResponseSuccess
|
|
363
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDomainForOrganizationResponseSuccess
|
|
364
|
+
|
|
365
|
+
interface _DeleteIntegrationResponseSuccess
|
|
366
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteIntegrationOutput]
|
|
367
|
+
end
|
|
368
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#delete_integration-instance_method
|
|
369
|
+
def delete_integration: (
|
|
370
|
+
identifier: {
|
|
371
|
+
integration_id: ::String?,
|
|
372
|
+
integration_arn: ::String?,
|
|
373
|
+
integration_name: ::String?
|
|
374
|
+
}
|
|
375
|
+
) -> _DeleteIntegrationResponseSuccess
|
|
376
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteIntegrationResponseSuccess
|
|
377
|
+
|
|
378
|
+
interface _DeleteOmniDashboardResponseSuccess
|
|
379
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteOmniDashboardOutput]
|
|
380
|
+
end
|
|
381
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#delete_omni_dashboard-instance_method
|
|
382
|
+
def delete_omni_dashboard: (
|
|
383
|
+
space_id: ::String,
|
|
384
|
+
dashboard_id: ::String
|
|
385
|
+
) -> _DeleteOmniDashboardResponseSuccess
|
|
386
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteOmniDashboardResponseSuccess
|
|
387
|
+
|
|
388
|
+
interface _DeleteSpaceResponseSuccess
|
|
389
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSpaceOutput]
|
|
390
|
+
end
|
|
391
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#delete_space-instance_method
|
|
392
|
+
def delete_space: (
|
|
393
|
+
space_id: ::String
|
|
394
|
+
) -> _DeleteSpaceResponseSuccess
|
|
395
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSpaceResponseSuccess
|
|
396
|
+
|
|
397
|
+
interface _DeleteViewResponseSuccess
|
|
398
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteViewResponse]
|
|
399
|
+
end
|
|
400
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#delete_view-instance_method
|
|
401
|
+
def delete_view: (
|
|
402
|
+
name: ::String
|
|
403
|
+
) -> _DeleteViewResponseSuccess
|
|
404
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteViewResponseSuccess
|
|
405
|
+
|
|
406
|
+
interface _GetAccessGrantResponseSuccess
|
|
407
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetAccessGrantOutput]
|
|
408
|
+
def access_grant: () -> Types::AccessGrant
|
|
409
|
+
end
|
|
410
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#get_access_grant-instance_method
|
|
411
|
+
def get_access_grant: (
|
|
412
|
+
grant_id: ::String
|
|
413
|
+
) -> _GetAccessGrantResponseSuccess
|
|
414
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAccessGrantResponseSuccess
|
|
415
|
+
|
|
416
|
+
interface _GetAccessProfileResponseSuccess
|
|
417
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetAccessProfileOutput]
|
|
418
|
+
def access_profile: () -> Types::AccessProfile
|
|
419
|
+
end
|
|
420
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#get_access_profile-instance_method
|
|
421
|
+
def get_access_profile: (
|
|
422
|
+
space_id: ::String,
|
|
423
|
+
profile_id: ::String
|
|
424
|
+
) -> _GetAccessProfileResponseSuccess
|
|
425
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAccessProfileResponseSuccess
|
|
426
|
+
|
|
427
|
+
interface _GetAlertResponseSuccess
|
|
428
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetAlertOutput]
|
|
429
|
+
def alert: () -> Types::Alert
|
|
430
|
+
end
|
|
431
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#get_alert-instance_method
|
|
432
|
+
def get_alert: (
|
|
433
|
+
space_id: ::String,
|
|
434
|
+
alert_id: ::String
|
|
435
|
+
) -> _GetAlertResponseSuccess
|
|
436
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAlertResponseSuccess
|
|
437
|
+
|
|
438
|
+
interface _GetContextGraphResponseSuccess
|
|
439
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetContextGraphOutput]
|
|
440
|
+
def nodes: () -> ::Array[Types::Node]
|
|
441
|
+
def next_token: () -> ::String
|
|
442
|
+
end
|
|
443
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#get_context_graph-instance_method
|
|
444
|
+
def get_context_graph: (
|
|
445
|
+
?node_filters: {
|
|
446
|
+
node_id: ::String?,
|
|
447
|
+
node_type: ("SERVICE" | "RESOURCE" | "REMOTE_SERVICE")?,
|
|
448
|
+
name: ::String?,
|
|
449
|
+
tags: Array[
|
|
450
|
+
{
|
|
451
|
+
key: ::String,
|
|
452
|
+
values: Array[::String]?
|
|
453
|
+
}
|
|
454
|
+
]?,
|
|
455
|
+
telemetry_attributes: Array[
|
|
456
|
+
{
|
|
457
|
+
key: ::String,
|
|
458
|
+
values: Array[::String]?
|
|
459
|
+
}
|
|
460
|
+
]?,
|
|
461
|
+
region: Array[::String]?,
|
|
462
|
+
cloud_provider: Array[::String]?,
|
|
463
|
+
source_account_id: Array[::String]?,
|
|
464
|
+
namespace: Array[::String]?,
|
|
465
|
+
category: Array[("GEN_AI_AGENT" | "GEN_AI_MODEL" | "DATABASE" | "MESSAGING_QUEUE" | "COMPUTE" | "STORAGE" | "NETWORK")]?,
|
|
466
|
+
stage: Array[::String]?,
|
|
467
|
+
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")]?
|
|
468
|
+
},
|
|
469
|
+
?edge_filters: {
|
|
470
|
+
edge_id: ::String?,
|
|
471
|
+
from: ::String?,
|
|
472
|
+
to: ::String?,
|
|
473
|
+
edge_type: ("CALLS" | "ACCESSES" | "RUNS_ON")?,
|
|
474
|
+
operations: Array[::String]?,
|
|
475
|
+
telemetry_attributes: Array[
|
|
476
|
+
{
|
|
477
|
+
key: ::String,
|
|
478
|
+
values: Array[::String]?
|
|
479
|
+
}
|
|
480
|
+
]?,
|
|
481
|
+
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")]?
|
|
482
|
+
},
|
|
483
|
+
start_time: ::Time,
|
|
484
|
+
end_time: ::Time,
|
|
485
|
+
?depth: ::Integer,
|
|
486
|
+
?max_results: ::Integer,
|
|
487
|
+
?max_edges_per_node: ::Integer,
|
|
488
|
+
?include_metadata: bool,
|
|
489
|
+
?next_token: ::String
|
|
490
|
+
) -> _GetContextGraphResponseSuccess
|
|
491
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetContextGraphResponseSuccess
|
|
492
|
+
|
|
493
|
+
interface _GetDomainResponseSuccess
|
|
494
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDomainOutput]
|
|
495
|
+
def domain: () -> Types::Domain
|
|
496
|
+
end
|
|
497
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#get_domain-instance_method
|
|
498
|
+
def get_domain: (
|
|
499
|
+
domain_id: ::String
|
|
500
|
+
) -> _GetDomainResponseSuccess
|
|
501
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDomainResponseSuccess
|
|
502
|
+
|
|
503
|
+
interface _GetDomainAccessGrantForOrganizationResponseSuccess
|
|
504
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDomainAccessGrantForOrganizationOutput]
|
|
505
|
+
def access_grant: () -> Types::OrganizationAccessGrant
|
|
506
|
+
end
|
|
507
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#get_domain_access_grant_for_organization-instance_method
|
|
508
|
+
def get_domain_access_grant_for_organization: (
|
|
509
|
+
grant_id: ::String
|
|
510
|
+
) -> _GetDomainAccessGrantForOrganizationResponseSuccess
|
|
511
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDomainAccessGrantForOrganizationResponseSuccess
|
|
512
|
+
|
|
513
|
+
interface _GetDomainForOrganizationResponseSuccess
|
|
514
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDomainForOrganizationOutput]
|
|
515
|
+
def organization_domain: () -> Types::OrganizationDomain
|
|
516
|
+
end
|
|
517
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#get_domain_for_organization-instance_method
|
|
518
|
+
def get_domain_for_organization: (
|
|
519
|
+
domain_id: ::String
|
|
520
|
+
) -> _GetDomainForOrganizationResponseSuccess
|
|
521
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDomainForOrganizationResponseSuccess
|
|
522
|
+
|
|
523
|
+
interface _GetIntegrationResponseSuccess
|
|
524
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetIntegrationOutput]
|
|
525
|
+
def integration: () -> Types::Integration
|
|
526
|
+
end
|
|
527
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#get_integration-instance_method
|
|
528
|
+
def get_integration: (
|
|
529
|
+
identifier: {
|
|
530
|
+
integration_id: ::String?,
|
|
531
|
+
integration_arn: ::String?,
|
|
532
|
+
integration_name: ::String?
|
|
533
|
+
}
|
|
534
|
+
) -> _GetIntegrationResponseSuccess
|
|
535
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIntegrationResponseSuccess
|
|
536
|
+
|
|
537
|
+
interface _GetIntelligenceConfigurationResponseSuccess
|
|
538
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetIntelligenceConfigurationOutput]
|
|
539
|
+
def account_id: () -> ::String
|
|
540
|
+
def kms_key_arn: () -> ::String
|
|
541
|
+
def updated_at: () -> ::Time
|
|
542
|
+
def created_at: () -> ::Time
|
|
543
|
+
end
|
|
544
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#get_intelligence_configuration-instance_method
|
|
545
|
+
def get_intelligence_configuration: (
|
|
546
|
+
) -> _GetIntelligenceConfigurationResponseSuccess
|
|
547
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIntelligenceConfigurationResponseSuccess
|
|
548
|
+
|
|
549
|
+
interface _GetOmniDashboardResponseSuccess
|
|
550
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetOmniDashboardOutput]
|
|
551
|
+
def omni_dashboard: () -> Types::OmniDashboard
|
|
552
|
+
end
|
|
553
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#get_omni_dashboard-instance_method
|
|
554
|
+
def get_omni_dashboard: (
|
|
555
|
+
space_id: ::String,
|
|
556
|
+
dashboard_id: ::String
|
|
557
|
+
) -> _GetOmniDashboardResponseSuccess
|
|
558
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetOmniDashboardResponseSuccess
|
|
559
|
+
|
|
560
|
+
interface _GetSpaceResponseSuccess
|
|
561
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetSpaceOutput]
|
|
562
|
+
def space: () -> Types::Space
|
|
563
|
+
end
|
|
564
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#get_space-instance_method
|
|
565
|
+
def get_space: (
|
|
566
|
+
space_id: ::String
|
|
567
|
+
) -> _GetSpaceResponseSuccess
|
|
568
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSpaceResponseSuccess
|
|
569
|
+
|
|
570
|
+
interface _GetSpaceCredentialsForOrganizationResponseSuccess
|
|
571
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetSpaceCredentialsForOrganizationOutput]
|
|
572
|
+
def credentials: () -> Types::AwsCredentials
|
|
573
|
+
end
|
|
574
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#get_space_credentials_for_organization-instance_method
|
|
575
|
+
def get_space_credentials_for_organization: (
|
|
576
|
+
context: {
|
|
577
|
+
space_id: ::String?,
|
|
578
|
+
domain_id: ::String?,
|
|
579
|
+
target_account_id: ::String?
|
|
580
|
+
},
|
|
581
|
+
credential_type: ("SPACE_OPERATION")
|
|
582
|
+
) -> _GetSpaceCredentialsForOrganizationResponseSuccess
|
|
583
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSpaceCredentialsForOrganizationResponseSuccess
|
|
584
|
+
|
|
585
|
+
interface _GetTelemetryQueryResultsResponseSuccess
|
|
586
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetTelemetryQueryResultsResponse]
|
|
587
|
+
def status: () -> ("Running" | "Failed" | "Complete" | "Cancelled")
|
|
588
|
+
def rows: () -> ::Array[::Hash[::String, ::String]]
|
|
589
|
+
def next_token: () -> ::String
|
|
590
|
+
def statistics: () -> Types::QueryStatistics
|
|
591
|
+
end
|
|
592
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#get_telemetry_query_results-instance_method
|
|
593
|
+
def get_telemetry_query_results: (
|
|
594
|
+
query_id: ::String,
|
|
595
|
+
?next_token: ::String,
|
|
596
|
+
?max_results: ::Integer
|
|
597
|
+
) -> _GetTelemetryQueryResultsResponseSuccess
|
|
598
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTelemetryQueryResultsResponseSuccess
|
|
599
|
+
|
|
600
|
+
interface _GetViewResponseSuccess
|
|
601
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetViewResponse]
|
|
602
|
+
def name: () -> ::String
|
|
603
|
+
def type: () -> ("USER" | "MANAGED")
|
|
604
|
+
def description: () -> ::String
|
|
605
|
+
def definition: () -> ::String
|
|
606
|
+
def created_at: () -> ::Time
|
|
607
|
+
def updated_at: () -> ::Time
|
|
608
|
+
def arn: () -> ::String
|
|
609
|
+
end
|
|
610
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#get_view-instance_method
|
|
611
|
+
def get_view: (
|
|
612
|
+
name: ::String
|
|
613
|
+
) -> _GetViewResponseSuccess
|
|
614
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetViewResponseSuccess
|
|
615
|
+
|
|
616
|
+
interface _ListAccessGrantsResponseSuccess
|
|
617
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAccessGrantsOutput]
|
|
618
|
+
def items: () -> ::Array[Types::AccessGrantSummary]
|
|
619
|
+
def next_token: () -> ::String
|
|
620
|
+
end
|
|
621
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#list_access_grants-instance_method
|
|
622
|
+
def list_access_grants: (
|
|
623
|
+
?domain_id: ::String,
|
|
624
|
+
?space_id: ::String,
|
|
625
|
+
?principal_id: ::String,
|
|
626
|
+
?principal_type: ("IDC_USER" | "IDC_GROUP" | "IAM_USER" | "IAM_ROLE" | "IAM_ROOT" | "ACCESS_PROFILE" | "ALERT" | "AGENT"),
|
|
627
|
+
?permission: ("SPACE_ADMIN" | "READ" | "READ_WRITE_DELETE" | "CUSTOM"),
|
|
628
|
+
?next_token: ::String,
|
|
629
|
+
?max_results: ::Integer
|
|
630
|
+
) -> _ListAccessGrantsResponseSuccess
|
|
631
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAccessGrantsResponseSuccess
|
|
632
|
+
|
|
633
|
+
interface _ListAccessProfilesResponseSuccess
|
|
634
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAccessProfilesOutput]
|
|
635
|
+
def items: () -> ::Array[Types::AccessProfileSummary]
|
|
636
|
+
def next_token: () -> ::String
|
|
637
|
+
end
|
|
638
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#list_access_profiles-instance_method
|
|
639
|
+
def list_access_profiles: (
|
|
640
|
+
space_id: ::String,
|
|
641
|
+
?next_token: ::String,
|
|
642
|
+
?max_results: ::Integer
|
|
643
|
+
) -> _ListAccessProfilesResponseSuccess
|
|
644
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAccessProfilesResponseSuccess
|
|
645
|
+
|
|
646
|
+
interface _ListAlertsResponseSuccess
|
|
647
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAlertsOutput]
|
|
648
|
+
def items: () -> ::Array[Types::AlertSummary]
|
|
649
|
+
def next_token: () -> ::String
|
|
650
|
+
end
|
|
651
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#list_alerts-instance_method
|
|
652
|
+
def list_alerts: (
|
|
653
|
+
space_id: ::String,
|
|
654
|
+
?filter_criteria: {
|
|
655
|
+
names: Array[::String]?,
|
|
656
|
+
name_prefix: ::String?,
|
|
657
|
+
ids: Array[::String]?,
|
|
658
|
+
state_value: Array[("OK" | "WARNING" | "CRITICAL" | "NODATA")]?,
|
|
659
|
+
notifications_enabled: bool?
|
|
660
|
+
},
|
|
661
|
+
?sort_by: ("NAME" | "STATE"),
|
|
662
|
+
?sort_order: ("ASC" | "DESC"),
|
|
663
|
+
?next_token: ::String,
|
|
664
|
+
?max_results: ::Integer
|
|
665
|
+
) -> _ListAlertsResponseSuccess
|
|
666
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAlertsResponseSuccess
|
|
667
|
+
|
|
668
|
+
interface _ListDomainAccessGrantsForOrganizationResponseSuccess
|
|
669
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDomainAccessGrantsForOrganizationOutput]
|
|
670
|
+
def items: () -> ::Array[Types::OrganizationAccessGrantSummary]
|
|
671
|
+
def next_token: () -> ::String
|
|
672
|
+
end
|
|
673
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#list_domain_access_grants_for_organization-instance_method
|
|
674
|
+
def list_domain_access_grants_for_organization: (
|
|
675
|
+
?domain_id: ::String,
|
|
676
|
+
?principal_id: ::String,
|
|
677
|
+
?principal_type: ("IDC_USER" | "IDC_GROUP" | "IAM_USER" | "IAM_ROLE" | "IAM_ROOT"),
|
|
678
|
+
?permission: ("ADMIN"),
|
|
679
|
+
?next_token: ::String,
|
|
680
|
+
?max_results: ::Integer
|
|
681
|
+
) -> _ListDomainAccessGrantsForOrganizationResponseSuccess
|
|
682
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDomainAccessGrantsForOrganizationResponseSuccess
|
|
683
|
+
|
|
684
|
+
interface _ListDomainsResponseSuccess
|
|
685
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDomainsOutput]
|
|
686
|
+
def items: () -> ::Array[Types::DomainSummary]
|
|
687
|
+
def next_token: () -> ::String
|
|
688
|
+
end
|
|
689
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#list_domains-instance_method
|
|
690
|
+
def list_domains: (
|
|
691
|
+
?next_token: ::String,
|
|
692
|
+
?max_results: ::Integer
|
|
693
|
+
) -> _ListDomainsResponseSuccess
|
|
694
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDomainsResponseSuccess
|
|
695
|
+
|
|
696
|
+
interface _ListIntegrationsResponseSuccess
|
|
697
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListIntegrationsOutput]
|
|
698
|
+
def items: () -> ::Array[Types::Integration]
|
|
699
|
+
def next_token: () -> ::String
|
|
700
|
+
end
|
|
701
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#list_integrations-instance_method
|
|
702
|
+
def list_integrations: (
|
|
703
|
+
?integration_type: ("AWS_CONFIG_SLREC" | "SLACK" | "EXTERNAL_AGENT" | "AWS_INTEGRATION"),
|
|
704
|
+
?status: ("ACTIVE" | "DELETED" | "PENDING" | "PENDING_OAUTH" | "ERROR" | "FAILED"),
|
|
705
|
+
?name: ::String,
|
|
706
|
+
?next_token: ::String,
|
|
707
|
+
?max_results: ::Integer
|
|
708
|
+
) -> _ListIntegrationsResponseSuccess
|
|
709
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIntegrationsResponseSuccess
|
|
710
|
+
|
|
711
|
+
interface _ListOmniDashboardsResponseSuccess
|
|
712
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListOmniDashboardsOutput]
|
|
713
|
+
def items: () -> ::Array[Types::OmniDashboardSummary]
|
|
714
|
+
def next_token: () -> ::String
|
|
715
|
+
end
|
|
716
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#list_omni_dashboards-instance_method
|
|
717
|
+
def list_omni_dashboards: (
|
|
718
|
+
space_id: ::String,
|
|
719
|
+
?name_prefix: ::String,
|
|
720
|
+
?next_token: ::String,
|
|
721
|
+
?max_results: ::Integer
|
|
722
|
+
) -> _ListOmniDashboardsResponseSuccess
|
|
723
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListOmniDashboardsResponseSuccess
|
|
724
|
+
|
|
725
|
+
interface _ListSpacesResponseSuccess
|
|
726
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListSpacesOutput]
|
|
727
|
+
def items: () -> ::Array[Types::SpaceSummary]
|
|
728
|
+
def next_token: () -> ::String
|
|
729
|
+
end
|
|
730
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#list_spaces-instance_method
|
|
731
|
+
def list_spaces: (
|
|
732
|
+
?domain_id: ::String,
|
|
733
|
+
?next_token: ::String,
|
|
734
|
+
?max_results: ::Integer
|
|
735
|
+
) -> _ListSpacesResponseSuccess
|
|
736
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSpacesResponseSuccess
|
|
737
|
+
|
|
738
|
+
interface _ListSpacesForOrganizationResponseSuccess
|
|
739
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListSpacesForOrganizationOutput]
|
|
740
|
+
def items: () -> ::Array[Types::SpaceSummary]
|
|
741
|
+
def next_token: () -> ::String
|
|
742
|
+
end
|
|
743
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#list_spaces_for_organization-instance_method
|
|
744
|
+
def list_spaces_for_organization: (
|
|
745
|
+
?next_token: ::String,
|
|
746
|
+
?max_results: ::Integer
|
|
747
|
+
) -> _ListSpacesForOrganizationResponseSuccess
|
|
748
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSpacesForOrganizationResponseSuccess
|
|
749
|
+
|
|
750
|
+
interface _ListTelemetryFieldsResponseSuccess
|
|
751
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTelemetryFieldsResponse]
|
|
752
|
+
def fields: () -> ::Array[Types::Field]
|
|
753
|
+
def next_token: () -> ::String
|
|
754
|
+
end
|
|
755
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#list_telemetry_fields-instance_method
|
|
756
|
+
def list_telemetry_fields: (
|
|
757
|
+
data_set_name: ::String,
|
|
758
|
+
?telemetry_type: ("LOGS" | "TRACES"),
|
|
759
|
+
?start_time: ::Time,
|
|
760
|
+
?end_time: ::Time,
|
|
761
|
+
?next_token: ::String
|
|
762
|
+
) -> _ListTelemetryFieldsResponseSuccess
|
|
763
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTelemetryFieldsResponseSuccess
|
|
764
|
+
|
|
765
|
+
interface _ListTelemetryQuerySessionsResponseSuccess
|
|
766
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTelemetryQuerySessionsResponse]
|
|
767
|
+
def sessions: () -> ::Array[Types::SessionSummary]
|
|
768
|
+
def next_token: () -> ::String
|
|
769
|
+
end
|
|
770
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#list_telemetry_query_sessions-instance_method
|
|
771
|
+
def list_telemetry_query_sessions: (
|
|
772
|
+
?next_token: ::String,
|
|
773
|
+
?max_results: ::Integer
|
|
774
|
+
) -> _ListTelemetryQuerySessionsResponseSuccess
|
|
775
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTelemetryQuerySessionsResponseSuccess
|
|
776
|
+
|
|
777
|
+
interface _ListViewsResponseSuccess
|
|
778
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListViewsResponse]
|
|
779
|
+
def items: () -> ::Array[Types::ViewSummary]
|
|
780
|
+
def next_token: () -> ::String
|
|
781
|
+
end
|
|
782
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#list_views-instance_method
|
|
783
|
+
def list_views: (
|
|
784
|
+
?type: ("USER" | "MANAGED"),
|
|
785
|
+
?max_results: ::Integer,
|
|
786
|
+
?next_token: ::String
|
|
787
|
+
) -> _ListViewsResponseSuccess
|
|
788
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListViewsResponseSuccess
|
|
789
|
+
|
|
790
|
+
interface _PutIntelligenceConfigurationResponseSuccess
|
|
791
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutIntelligenceConfigurationOutput]
|
|
792
|
+
def account_id: () -> ::String
|
|
793
|
+
def kms_key_arn: () -> ::String
|
|
794
|
+
def updated_at: () -> ::Time
|
|
795
|
+
def created_at: () -> ::Time
|
|
796
|
+
end
|
|
797
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#put_intelligence_configuration-instance_method
|
|
798
|
+
def put_intelligence_configuration: (
|
|
799
|
+
?kms_key_arn: ::String,
|
|
800
|
+
?remove_kms_key: bool,
|
|
801
|
+
?client_token: ::String
|
|
802
|
+
) -> _PutIntelligenceConfigurationResponseSuccess
|
|
803
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutIntelligenceConfigurationResponseSuccess
|
|
804
|
+
|
|
805
|
+
interface _SearchPrincipalsResponseSuccess
|
|
806
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SearchPrincipalsOutput]
|
|
807
|
+
def results: () -> ::Array[Types::PrincipalSearchResult]
|
|
808
|
+
def next_token: () -> ::String
|
|
809
|
+
end
|
|
810
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#search_principals-instance_method
|
|
811
|
+
def search_principals: (
|
|
812
|
+
domain_id: ::String,
|
|
813
|
+
search_query: ::String,
|
|
814
|
+
?max_results: ::Integer,
|
|
815
|
+
?next_token: ::String
|
|
816
|
+
) -> _SearchPrincipalsResponseSuccess
|
|
817
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchPrincipalsResponseSuccess
|
|
818
|
+
|
|
819
|
+
interface _StartTelemetryQueryResponseSuccess
|
|
820
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartTelemetryQueryResponse]
|
|
821
|
+
def query_id: () -> ::String
|
|
822
|
+
def session_id: () -> ::String
|
|
823
|
+
end
|
|
824
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#start_telemetry_query-instance_method
|
|
825
|
+
def start_telemetry_query: (
|
|
826
|
+
query_string: ::String,
|
|
827
|
+
session_id: ::String
|
|
828
|
+
) -> _StartTelemetryQueryResponseSuccess
|
|
829
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartTelemetryQueryResponseSuccess
|
|
830
|
+
|
|
831
|
+
interface _StartTelemetryQuerySessionResponseSuccess
|
|
832
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartTelemetryQuerySessionResponse]
|
|
833
|
+
def session_id: () -> ::String
|
|
834
|
+
end
|
|
835
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#start_telemetry_query_session-instance_method
|
|
836
|
+
def start_telemetry_query_session: (
|
|
837
|
+
?session_name: ::String
|
|
838
|
+
) -> _StartTelemetryQuerySessionResponseSuccess
|
|
839
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartTelemetryQuerySessionResponseSuccess
|
|
840
|
+
|
|
841
|
+
interface _StopTelemetryQueryResponseSuccess
|
|
842
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopTelemetryQueryResponse]
|
|
843
|
+
end
|
|
844
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#stop_telemetry_query-instance_method
|
|
845
|
+
def stop_telemetry_query: (
|
|
846
|
+
query_id: ::String
|
|
847
|
+
) -> _StopTelemetryQueryResponseSuccess
|
|
848
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopTelemetryQueryResponseSuccess
|
|
849
|
+
|
|
850
|
+
interface _StopTelemetryQuerySessionResponseSuccess
|
|
851
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopTelemetryQuerySessionResponse]
|
|
852
|
+
end
|
|
853
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#stop_telemetry_query_session-instance_method
|
|
854
|
+
def stop_telemetry_query_session: (
|
|
855
|
+
session_id: ::String
|
|
856
|
+
) -> _StopTelemetryQuerySessionResponseSuccess
|
|
857
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopTelemetryQuerySessionResponseSuccess
|
|
858
|
+
|
|
859
|
+
interface _UpdateAccessProfileResponseSuccess
|
|
860
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAccessProfileOutput]
|
|
861
|
+
def access_profile: () -> Types::AccessProfile
|
|
862
|
+
end
|
|
863
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#update_access_profile-instance_method
|
|
864
|
+
def update_access_profile: (
|
|
865
|
+
space_id: ::String,
|
|
866
|
+
profile_id: ::String,
|
|
867
|
+
?name: ::String,
|
|
868
|
+
?description: ::String
|
|
869
|
+
) -> _UpdateAccessProfileResponseSuccess
|
|
870
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAccessProfileResponseSuccess
|
|
871
|
+
|
|
872
|
+
interface _UpdateAlertResponseSuccess
|
|
873
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAlertOutput]
|
|
874
|
+
end
|
|
875
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#update_alert-instance_method
|
|
876
|
+
def update_alert: (
|
|
877
|
+
space_id: ::String,
|
|
878
|
+
alert_id: ::String,
|
|
879
|
+
?profile_id: ::String,
|
|
880
|
+
?name: ::String,
|
|
881
|
+
?description: ::String,
|
|
882
|
+
?rule: Params::rule,
|
|
883
|
+
?notifications_enabled: bool,
|
|
884
|
+
?notification_rules: Array[
|
|
885
|
+
Params::notification_rule
|
|
886
|
+
]
|
|
887
|
+
) -> _UpdateAlertResponseSuccess
|
|
888
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAlertResponseSuccess
|
|
889
|
+
|
|
890
|
+
interface _UpdateDomainResponseSuccess
|
|
891
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDomainOutput]
|
|
892
|
+
def domain: () -> Types::Domain
|
|
893
|
+
end
|
|
894
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#update_domain-instance_method
|
|
895
|
+
def update_domain: (
|
|
896
|
+
domain_id: ::String,
|
|
897
|
+
?name: ::String,
|
|
898
|
+
?identity_providers: Array[("IAM" | "IDC")],
|
|
899
|
+
?identity_provider_configuration: {
|
|
900
|
+
identity_center_configuration: {
|
|
901
|
+
identity_center_instance_arn: ::String?
|
|
902
|
+
}?
|
|
903
|
+
}
|
|
904
|
+
) -> _UpdateDomainResponseSuccess
|
|
905
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDomainResponseSuccess
|
|
906
|
+
|
|
907
|
+
interface _UpdateDomainForOrganizationResponseSuccess
|
|
908
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDomainForOrganizationOutput]
|
|
909
|
+
def organization_domain: () -> Types::OrganizationDomain
|
|
910
|
+
end
|
|
911
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#update_domain_for_organization-instance_method
|
|
912
|
+
def update_domain_for_organization: (
|
|
913
|
+
domain_id: ::String,
|
|
914
|
+
?name: ::String,
|
|
915
|
+
?identity_providers: Array[("IAM" | "IDC")],
|
|
916
|
+
?identity_provider_configuration: {
|
|
917
|
+
identity_center_configuration: {
|
|
918
|
+
identity_center_instance_arn: ::String?
|
|
919
|
+
}?
|
|
920
|
+
}
|
|
921
|
+
) -> _UpdateDomainForOrganizationResponseSuccess
|
|
922
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDomainForOrganizationResponseSuccess
|
|
923
|
+
|
|
924
|
+
interface _UpdateIntegrationResponseSuccess
|
|
925
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateIntegrationOutput]
|
|
926
|
+
def integration: () -> Types::Integration
|
|
927
|
+
end
|
|
928
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#update_integration-instance_method
|
|
929
|
+
def update_integration: (
|
|
930
|
+
identifier: {
|
|
931
|
+
integration_id: ::String?,
|
|
932
|
+
integration_arn: ::String?,
|
|
933
|
+
integration_name: ::String?
|
|
934
|
+
},
|
|
935
|
+
?credential: Params::integration_credential,
|
|
936
|
+
?integration_attributes: Hash[::String, ::String],
|
|
937
|
+
?role_arn: ::String
|
|
938
|
+
) -> _UpdateIntegrationResponseSuccess
|
|
939
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateIntegrationResponseSuccess
|
|
940
|
+
|
|
941
|
+
interface _UpdateOmniDashboardResponseSuccess
|
|
942
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateOmniDashboardOutput]
|
|
943
|
+
def omni_dashboard: () -> Types::OmniDashboard
|
|
944
|
+
end
|
|
945
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#update_omni_dashboard-instance_method
|
|
946
|
+
def update_omni_dashboard: (
|
|
947
|
+
space_id: ::String,
|
|
948
|
+
dashboard_id: ::String,
|
|
949
|
+
?body: ::String,
|
|
950
|
+
?name: ::String,
|
|
951
|
+
?description: ::String
|
|
952
|
+
) -> _UpdateOmniDashboardResponseSuccess
|
|
953
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateOmniDashboardResponseSuccess
|
|
954
|
+
|
|
955
|
+
interface _UpdateSpaceResponseSuccess
|
|
956
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSpaceOutput]
|
|
957
|
+
def space: () -> Types::Space
|
|
958
|
+
end
|
|
959
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#update_space-instance_method
|
|
960
|
+
def update_space: (
|
|
961
|
+
space_id: ::String,
|
|
962
|
+
?name: ::String,
|
|
963
|
+
?encryption_configuration: {
|
|
964
|
+
encryption_strategy: ("AWS_OWNED" | "CUSTOMER_MANAGED"),
|
|
965
|
+
kms_key_arn: ::String?
|
|
966
|
+
}
|
|
967
|
+
) -> _UpdateSpaceResponseSuccess
|
|
968
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSpaceResponseSuccess
|
|
969
|
+
|
|
970
|
+
interface _UpdateViewResponseSuccess
|
|
971
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateViewResponse]
|
|
972
|
+
def name: () -> ::String
|
|
973
|
+
def type: () -> ("USER" | "MANAGED")
|
|
974
|
+
def description: () -> ::String
|
|
975
|
+
def definition: () -> ::String
|
|
976
|
+
def created_at: () -> ::Time
|
|
977
|
+
def updated_at: () -> ::Time
|
|
978
|
+
def arn: () -> ::String
|
|
979
|
+
end
|
|
980
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchOmni/Client.html#update_view-instance_method
|
|
981
|
+
def update_view: (
|
|
982
|
+
name: ::String,
|
|
983
|
+
?definition: ::String,
|
|
984
|
+
?description: ::String
|
|
985
|
+
) -> _UpdateViewResponseSuccess
|
|
986
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateViewResponseSuccess
|
|
987
|
+
end
|
|
988
|
+
end
|
|
989
|
+
end
|
|
990
|
+
|