aws-sdk-wellarchitected 1.32.0 → 1.33.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-wellarchitected/client.rb +1 -1
- data/lib/aws-sdk-wellarchitected/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-wellarchitected.rb +1 -1
- data/sig/client.rbs +1009 -0
- data/sig/errors.rbs +49 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +1535 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/client.rbs
ADDED
@@ -0,0 +1,1009 @@
|
|
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 WellArchitected
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> instance
|
72
|
+
| (?Hash[Symbol, untyped]) -> instance
|
73
|
+
|
74
|
+
|
75
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#associate_lenses-instance_method
|
76
|
+
def associate_lenses: (
|
77
|
+
workload_id: ::String,
|
78
|
+
lens_aliases: Array[::String]
|
79
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
80
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
81
|
+
|
82
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#associate_profiles-instance_method
|
83
|
+
def associate_profiles: (
|
84
|
+
workload_id: ::String,
|
85
|
+
profile_arns: Array[::String]
|
86
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
87
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
88
|
+
|
89
|
+
interface _CreateLensShareResponseSuccess
|
90
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateLensShareOutput]
|
91
|
+
def share_id: () -> ::String
|
92
|
+
end
|
93
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#create_lens_share-instance_method
|
94
|
+
def create_lens_share: (
|
95
|
+
lens_alias: ::String,
|
96
|
+
shared_with: ::String,
|
97
|
+
client_request_token: ::String
|
98
|
+
) -> _CreateLensShareResponseSuccess
|
99
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLensShareResponseSuccess
|
100
|
+
|
101
|
+
interface _CreateLensVersionResponseSuccess
|
102
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateLensVersionOutput]
|
103
|
+
def lens_arn: () -> ::String
|
104
|
+
def lens_version: () -> ::String
|
105
|
+
end
|
106
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#create_lens_version-instance_method
|
107
|
+
def create_lens_version: (
|
108
|
+
lens_alias: ::String,
|
109
|
+
lens_version: ::String,
|
110
|
+
?is_major_version: bool,
|
111
|
+
client_request_token: ::String
|
112
|
+
) -> _CreateLensVersionResponseSuccess
|
113
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLensVersionResponseSuccess
|
114
|
+
|
115
|
+
interface _CreateMilestoneResponseSuccess
|
116
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateMilestoneOutput]
|
117
|
+
def workload_id: () -> ::String
|
118
|
+
def milestone_number: () -> ::Integer
|
119
|
+
end
|
120
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#create_milestone-instance_method
|
121
|
+
def create_milestone: (
|
122
|
+
workload_id: ::String,
|
123
|
+
milestone_name: ::String,
|
124
|
+
client_request_token: ::String
|
125
|
+
) -> _CreateMilestoneResponseSuccess
|
126
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMilestoneResponseSuccess
|
127
|
+
|
128
|
+
interface _CreateProfileResponseSuccess
|
129
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateProfileOutput]
|
130
|
+
def profile_arn: () -> ::String
|
131
|
+
def profile_version: () -> ::String
|
132
|
+
end
|
133
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#create_profile-instance_method
|
134
|
+
def create_profile: (
|
135
|
+
profile_name: ::String,
|
136
|
+
profile_description: ::String,
|
137
|
+
profile_questions: Array[
|
138
|
+
{
|
139
|
+
question_id: ::String?,
|
140
|
+
selected_choice_ids: Array[::String]?
|
141
|
+
},
|
142
|
+
],
|
143
|
+
client_request_token: ::String,
|
144
|
+
?tags: Hash[::String, ::String]
|
145
|
+
) -> _CreateProfileResponseSuccess
|
146
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProfileResponseSuccess
|
147
|
+
|
148
|
+
interface _CreateProfileShareResponseSuccess
|
149
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateProfileShareOutput]
|
150
|
+
def share_id: () -> ::String
|
151
|
+
def profile_arn: () -> ::String
|
152
|
+
end
|
153
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#create_profile_share-instance_method
|
154
|
+
def create_profile_share: (
|
155
|
+
profile_arn: ::String,
|
156
|
+
shared_with: ::String,
|
157
|
+
client_request_token: ::String
|
158
|
+
) -> _CreateProfileShareResponseSuccess
|
159
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProfileShareResponseSuccess
|
160
|
+
|
161
|
+
interface _CreateReviewTemplateResponseSuccess
|
162
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateReviewTemplateOutput]
|
163
|
+
def template_arn: () -> ::String
|
164
|
+
end
|
165
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#create_review_template-instance_method
|
166
|
+
def create_review_template: (
|
167
|
+
template_name: ::String,
|
168
|
+
description: ::String,
|
169
|
+
lenses: Array[::String],
|
170
|
+
?notes: ::String,
|
171
|
+
?tags: Hash[::String, ::String],
|
172
|
+
client_request_token: ::String
|
173
|
+
) -> _CreateReviewTemplateResponseSuccess
|
174
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateReviewTemplateResponseSuccess
|
175
|
+
|
176
|
+
interface _CreateTemplateShareResponseSuccess
|
177
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateTemplateShareOutput]
|
178
|
+
def template_arn: () -> ::String
|
179
|
+
def share_id: () -> ::String
|
180
|
+
end
|
181
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#create_template_share-instance_method
|
182
|
+
def create_template_share: (
|
183
|
+
template_arn: ::String,
|
184
|
+
shared_with: ::String,
|
185
|
+
client_request_token: ::String
|
186
|
+
) -> _CreateTemplateShareResponseSuccess
|
187
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTemplateShareResponseSuccess
|
188
|
+
|
189
|
+
interface _CreateWorkloadResponseSuccess
|
190
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateWorkloadOutput]
|
191
|
+
def workload_id: () -> ::String
|
192
|
+
def workload_arn: () -> ::String
|
193
|
+
end
|
194
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#create_workload-instance_method
|
195
|
+
def create_workload: (
|
196
|
+
workload_name: ::String,
|
197
|
+
description: ::String,
|
198
|
+
environment: ("PRODUCTION" | "PREPRODUCTION"),
|
199
|
+
?account_ids: Array[::String],
|
200
|
+
?aws_regions: Array[::String],
|
201
|
+
?non_aws_regions: Array[::String],
|
202
|
+
?pillar_priorities: Array[::String],
|
203
|
+
?architectural_design: ::String,
|
204
|
+
?review_owner: ::String,
|
205
|
+
?industry_type: ::String,
|
206
|
+
?industry: ::String,
|
207
|
+
lenses: Array[::String],
|
208
|
+
?notes: ::String,
|
209
|
+
client_request_token: ::String,
|
210
|
+
?tags: Hash[::String, ::String],
|
211
|
+
?discovery_config: {
|
212
|
+
trusted_advisor_integration_status: ("ENABLED" | "DISABLED")?,
|
213
|
+
workload_resource_definition: Array[("WORKLOAD_METADATA" | "APP_REGISTRY")]?
|
214
|
+
},
|
215
|
+
?applications: Array[::String],
|
216
|
+
?profile_arns: Array[::String],
|
217
|
+
?review_template_arns: Array[::String]
|
218
|
+
) -> _CreateWorkloadResponseSuccess
|
219
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkloadResponseSuccess
|
220
|
+
|
221
|
+
interface _CreateWorkloadShareResponseSuccess
|
222
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateWorkloadShareOutput]
|
223
|
+
def workload_id: () -> ::String
|
224
|
+
def share_id: () -> ::String
|
225
|
+
end
|
226
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#create_workload_share-instance_method
|
227
|
+
def create_workload_share: (
|
228
|
+
workload_id: ::String,
|
229
|
+
shared_with: ::String,
|
230
|
+
permission_type: ("READONLY" | "CONTRIBUTOR"),
|
231
|
+
client_request_token: ::String
|
232
|
+
) -> _CreateWorkloadShareResponseSuccess
|
233
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkloadShareResponseSuccess
|
234
|
+
|
235
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#delete_lens-instance_method
|
236
|
+
def delete_lens: (
|
237
|
+
lens_alias: ::String,
|
238
|
+
client_request_token: ::String,
|
239
|
+
lens_status: ("ALL" | "DRAFT" | "PUBLISHED")
|
240
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
241
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
242
|
+
|
243
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#delete_lens_share-instance_method
|
244
|
+
def delete_lens_share: (
|
245
|
+
share_id: ::String,
|
246
|
+
lens_alias: ::String,
|
247
|
+
client_request_token: ::String
|
248
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
249
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
250
|
+
|
251
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#delete_profile-instance_method
|
252
|
+
def delete_profile: (
|
253
|
+
profile_arn: ::String,
|
254
|
+
client_request_token: ::String
|
255
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
256
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
257
|
+
|
258
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#delete_profile_share-instance_method
|
259
|
+
def delete_profile_share: (
|
260
|
+
share_id: ::String,
|
261
|
+
profile_arn: ::String,
|
262
|
+
client_request_token: ::String
|
263
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
264
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
265
|
+
|
266
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#delete_review_template-instance_method
|
267
|
+
def delete_review_template: (
|
268
|
+
template_arn: ::String,
|
269
|
+
client_request_token: ::String
|
270
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
271
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
272
|
+
|
273
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#delete_template_share-instance_method
|
274
|
+
def delete_template_share: (
|
275
|
+
share_id: ::String,
|
276
|
+
template_arn: ::String,
|
277
|
+
client_request_token: ::String
|
278
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
279
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
280
|
+
|
281
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#delete_workload-instance_method
|
282
|
+
def delete_workload: (
|
283
|
+
workload_id: ::String,
|
284
|
+
client_request_token: ::String
|
285
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
286
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
287
|
+
|
288
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#delete_workload_share-instance_method
|
289
|
+
def delete_workload_share: (
|
290
|
+
share_id: ::String,
|
291
|
+
workload_id: ::String,
|
292
|
+
client_request_token: ::String
|
293
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
294
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
295
|
+
|
296
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#disassociate_lenses-instance_method
|
297
|
+
def disassociate_lenses: (
|
298
|
+
workload_id: ::String,
|
299
|
+
lens_aliases: Array[::String]
|
300
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
301
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
302
|
+
|
303
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#disassociate_profiles-instance_method
|
304
|
+
def disassociate_profiles: (
|
305
|
+
workload_id: ::String,
|
306
|
+
profile_arns: Array[::String]
|
307
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
308
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
309
|
+
|
310
|
+
interface _ExportLensResponseSuccess
|
311
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ExportLensOutput]
|
312
|
+
def lens_json: () -> ::String
|
313
|
+
end
|
314
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#export_lens-instance_method
|
315
|
+
def export_lens: (
|
316
|
+
lens_alias: ::String,
|
317
|
+
?lens_version: ::String
|
318
|
+
) -> _ExportLensResponseSuccess
|
319
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ExportLensResponseSuccess
|
320
|
+
|
321
|
+
interface _GetAnswerResponseSuccess
|
322
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetAnswerOutput]
|
323
|
+
def workload_id: () -> ::String
|
324
|
+
def milestone_number: () -> ::Integer
|
325
|
+
def lens_alias: () -> ::String
|
326
|
+
def lens_arn: () -> ::String
|
327
|
+
def answer: () -> Types::Answer
|
328
|
+
end
|
329
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#get_answer-instance_method
|
330
|
+
def get_answer: (
|
331
|
+
workload_id: ::String,
|
332
|
+
lens_alias: ::String,
|
333
|
+
question_id: ::String,
|
334
|
+
?milestone_number: ::Integer
|
335
|
+
) -> _GetAnswerResponseSuccess
|
336
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAnswerResponseSuccess
|
337
|
+
|
338
|
+
interface _GetConsolidatedReportResponseSuccess
|
339
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetConsolidatedReportOutput]
|
340
|
+
def metrics: () -> ::Array[Types::ConsolidatedReportMetric]
|
341
|
+
def next_token: () -> ::String
|
342
|
+
def base_64_string: () -> ::String
|
343
|
+
end
|
344
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#get_consolidated_report-instance_method
|
345
|
+
def get_consolidated_report: (
|
346
|
+
format: ("PDF" | "JSON"),
|
347
|
+
?include_shared_resources: bool,
|
348
|
+
?next_token: ::String,
|
349
|
+
?max_results: ::Integer
|
350
|
+
) -> _GetConsolidatedReportResponseSuccess
|
351
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConsolidatedReportResponseSuccess
|
352
|
+
|
353
|
+
interface _GetLensResponseSuccess
|
354
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetLensOutput]
|
355
|
+
def lens: () -> Types::Lens
|
356
|
+
end
|
357
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#get_lens-instance_method
|
358
|
+
def get_lens: (
|
359
|
+
lens_alias: ::String,
|
360
|
+
?lens_version: ::String
|
361
|
+
) -> _GetLensResponseSuccess
|
362
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLensResponseSuccess
|
363
|
+
|
364
|
+
interface _GetLensReviewResponseSuccess
|
365
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetLensReviewOutput]
|
366
|
+
def workload_id: () -> ::String
|
367
|
+
def milestone_number: () -> ::Integer
|
368
|
+
def lens_review: () -> Types::LensReview
|
369
|
+
end
|
370
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#get_lens_review-instance_method
|
371
|
+
def get_lens_review: (
|
372
|
+
workload_id: ::String,
|
373
|
+
lens_alias: ::String,
|
374
|
+
?milestone_number: ::Integer
|
375
|
+
) -> _GetLensReviewResponseSuccess
|
376
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLensReviewResponseSuccess
|
377
|
+
|
378
|
+
interface _GetLensReviewReportResponseSuccess
|
379
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetLensReviewReportOutput]
|
380
|
+
def workload_id: () -> ::String
|
381
|
+
def milestone_number: () -> ::Integer
|
382
|
+
def lens_review_report: () -> Types::LensReviewReport
|
383
|
+
end
|
384
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#get_lens_review_report-instance_method
|
385
|
+
def get_lens_review_report: (
|
386
|
+
workload_id: ::String,
|
387
|
+
lens_alias: ::String,
|
388
|
+
?milestone_number: ::Integer
|
389
|
+
) -> _GetLensReviewReportResponseSuccess
|
390
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLensReviewReportResponseSuccess
|
391
|
+
|
392
|
+
interface _GetLensVersionDifferenceResponseSuccess
|
393
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetLensVersionDifferenceOutput]
|
394
|
+
def lens_alias: () -> ::String
|
395
|
+
def lens_arn: () -> ::String
|
396
|
+
def base_lens_version: () -> ::String
|
397
|
+
def target_lens_version: () -> ::String
|
398
|
+
def latest_lens_version: () -> ::String
|
399
|
+
def version_differences: () -> Types::VersionDifferences
|
400
|
+
end
|
401
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#get_lens_version_difference-instance_method
|
402
|
+
def get_lens_version_difference: (
|
403
|
+
lens_alias: ::String,
|
404
|
+
?base_lens_version: ::String,
|
405
|
+
?target_lens_version: ::String
|
406
|
+
) -> _GetLensVersionDifferenceResponseSuccess
|
407
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLensVersionDifferenceResponseSuccess
|
408
|
+
|
409
|
+
interface _GetMilestoneResponseSuccess
|
410
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetMilestoneOutput]
|
411
|
+
def workload_id: () -> ::String
|
412
|
+
def milestone: () -> Types::Milestone
|
413
|
+
end
|
414
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#get_milestone-instance_method
|
415
|
+
def get_milestone: (
|
416
|
+
workload_id: ::String,
|
417
|
+
milestone_number: ::Integer
|
418
|
+
) -> _GetMilestoneResponseSuccess
|
419
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMilestoneResponseSuccess
|
420
|
+
|
421
|
+
interface _GetProfileResponseSuccess
|
422
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetProfileOutput]
|
423
|
+
def profile: () -> Types::Profile
|
424
|
+
end
|
425
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#get_profile-instance_method
|
426
|
+
def get_profile: (
|
427
|
+
profile_arn: ::String,
|
428
|
+
?profile_version: ::String
|
429
|
+
) -> _GetProfileResponseSuccess
|
430
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetProfileResponseSuccess
|
431
|
+
|
432
|
+
interface _GetProfileTemplateResponseSuccess
|
433
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetProfileTemplateOutput]
|
434
|
+
def profile_template: () -> Types::ProfileTemplate
|
435
|
+
end
|
436
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#get_profile_template-instance_method
|
437
|
+
def get_profile_template: (
|
438
|
+
) -> _GetProfileTemplateResponseSuccess
|
439
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetProfileTemplateResponseSuccess
|
440
|
+
|
441
|
+
interface _GetReviewTemplateResponseSuccess
|
442
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetReviewTemplateOutput]
|
443
|
+
def review_template: () -> Types::ReviewTemplate
|
444
|
+
end
|
445
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#get_review_template-instance_method
|
446
|
+
def get_review_template: (
|
447
|
+
template_arn: ::String
|
448
|
+
) -> _GetReviewTemplateResponseSuccess
|
449
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetReviewTemplateResponseSuccess
|
450
|
+
|
451
|
+
interface _GetReviewTemplateAnswerResponseSuccess
|
452
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetReviewTemplateAnswerOutput]
|
453
|
+
def template_arn: () -> ::String
|
454
|
+
def lens_alias: () -> ::String
|
455
|
+
def answer: () -> Types::ReviewTemplateAnswer
|
456
|
+
end
|
457
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#get_review_template_answer-instance_method
|
458
|
+
def get_review_template_answer: (
|
459
|
+
template_arn: ::String,
|
460
|
+
lens_alias: ::String,
|
461
|
+
question_id: ::String
|
462
|
+
) -> _GetReviewTemplateAnswerResponseSuccess
|
463
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetReviewTemplateAnswerResponseSuccess
|
464
|
+
|
465
|
+
interface _GetReviewTemplateLensReviewResponseSuccess
|
466
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetReviewTemplateLensReviewOutput]
|
467
|
+
def template_arn: () -> ::String
|
468
|
+
def lens_review: () -> Types::ReviewTemplateLensReview
|
469
|
+
end
|
470
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#get_review_template_lens_review-instance_method
|
471
|
+
def get_review_template_lens_review: (
|
472
|
+
template_arn: ::String,
|
473
|
+
lens_alias: ::String
|
474
|
+
) -> _GetReviewTemplateLensReviewResponseSuccess
|
475
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetReviewTemplateLensReviewResponseSuccess
|
476
|
+
|
477
|
+
interface _GetWorkloadResponseSuccess
|
478
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetWorkloadOutput]
|
479
|
+
def workload: () -> Types::Workload
|
480
|
+
end
|
481
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#get_workload-instance_method
|
482
|
+
def get_workload: (
|
483
|
+
workload_id: ::String
|
484
|
+
) -> _GetWorkloadResponseSuccess
|
485
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetWorkloadResponseSuccess
|
486
|
+
|
487
|
+
interface _ImportLensResponseSuccess
|
488
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ImportLensOutput]
|
489
|
+
def lens_arn: () -> ::String
|
490
|
+
def status: () -> ("IN_PROGRESS" | "COMPLETE" | "ERROR")
|
491
|
+
end
|
492
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#import_lens-instance_method
|
493
|
+
def import_lens: (
|
494
|
+
?lens_alias: ::String,
|
495
|
+
json_string: ::String,
|
496
|
+
client_request_token: ::String,
|
497
|
+
?tags: Hash[::String, ::String]
|
498
|
+
) -> _ImportLensResponseSuccess
|
499
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportLensResponseSuccess
|
500
|
+
|
501
|
+
interface _ListAnswersResponseSuccess
|
502
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAnswersOutput]
|
503
|
+
def workload_id: () -> ::String
|
504
|
+
def milestone_number: () -> ::Integer
|
505
|
+
def lens_alias: () -> ::String
|
506
|
+
def lens_arn: () -> ::String
|
507
|
+
def answer_summaries: () -> ::Array[Types::AnswerSummary]
|
508
|
+
def next_token: () -> ::String
|
509
|
+
end
|
510
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_answers-instance_method
|
511
|
+
def list_answers: (
|
512
|
+
workload_id: ::String,
|
513
|
+
lens_alias: ::String,
|
514
|
+
?pillar_id: ::String,
|
515
|
+
?milestone_number: ::Integer,
|
516
|
+
?next_token: ::String,
|
517
|
+
?max_results: ::Integer,
|
518
|
+
?question_priority: ("PRIORITIZED" | "NONE")
|
519
|
+
) -> _ListAnswersResponseSuccess
|
520
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAnswersResponseSuccess
|
521
|
+
|
522
|
+
interface _ListCheckDetailsResponseSuccess
|
523
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListCheckDetailsOutput]
|
524
|
+
def check_details: () -> ::Array[Types::CheckDetail]
|
525
|
+
def next_token: () -> ::String
|
526
|
+
end
|
527
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_check_details-instance_method
|
528
|
+
def list_check_details: (
|
529
|
+
workload_id: ::String,
|
530
|
+
?next_token: ::String,
|
531
|
+
?max_results: ::Integer,
|
532
|
+
lens_arn: ::String,
|
533
|
+
pillar_id: ::String,
|
534
|
+
question_id: ::String,
|
535
|
+
choice_id: ::String
|
536
|
+
) -> _ListCheckDetailsResponseSuccess
|
537
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCheckDetailsResponseSuccess
|
538
|
+
|
539
|
+
interface _ListCheckSummariesResponseSuccess
|
540
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListCheckSummariesOutput]
|
541
|
+
def check_summaries: () -> ::Array[Types::CheckSummary]
|
542
|
+
def next_token: () -> ::String
|
543
|
+
end
|
544
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_check_summaries-instance_method
|
545
|
+
def list_check_summaries: (
|
546
|
+
workload_id: ::String,
|
547
|
+
?next_token: ::String,
|
548
|
+
?max_results: ::Integer,
|
549
|
+
lens_arn: ::String,
|
550
|
+
pillar_id: ::String,
|
551
|
+
question_id: ::String,
|
552
|
+
choice_id: ::String
|
553
|
+
) -> _ListCheckSummariesResponseSuccess
|
554
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCheckSummariesResponseSuccess
|
555
|
+
|
556
|
+
interface _ListLensReviewImprovementsResponseSuccess
|
557
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListLensReviewImprovementsOutput]
|
558
|
+
def workload_id: () -> ::String
|
559
|
+
def milestone_number: () -> ::Integer
|
560
|
+
def lens_alias: () -> ::String
|
561
|
+
def lens_arn: () -> ::String
|
562
|
+
def improvement_summaries: () -> ::Array[Types::ImprovementSummary]
|
563
|
+
def next_token: () -> ::String
|
564
|
+
end
|
565
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_lens_review_improvements-instance_method
|
566
|
+
def list_lens_review_improvements: (
|
567
|
+
workload_id: ::String,
|
568
|
+
lens_alias: ::String,
|
569
|
+
?pillar_id: ::String,
|
570
|
+
?milestone_number: ::Integer,
|
571
|
+
?next_token: ::String,
|
572
|
+
?max_results: ::Integer,
|
573
|
+
?question_priority: ("PRIORITIZED" | "NONE")
|
574
|
+
) -> _ListLensReviewImprovementsResponseSuccess
|
575
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLensReviewImprovementsResponseSuccess
|
576
|
+
|
577
|
+
interface _ListLensReviewsResponseSuccess
|
578
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListLensReviewsOutput]
|
579
|
+
def workload_id: () -> ::String
|
580
|
+
def milestone_number: () -> ::Integer
|
581
|
+
def lens_review_summaries: () -> ::Array[Types::LensReviewSummary]
|
582
|
+
def next_token: () -> ::String
|
583
|
+
end
|
584
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_lens_reviews-instance_method
|
585
|
+
def list_lens_reviews: (
|
586
|
+
workload_id: ::String,
|
587
|
+
?milestone_number: ::Integer,
|
588
|
+
?next_token: ::String,
|
589
|
+
?max_results: ::Integer
|
590
|
+
) -> _ListLensReviewsResponseSuccess
|
591
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLensReviewsResponseSuccess
|
592
|
+
|
593
|
+
interface _ListLensSharesResponseSuccess
|
594
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListLensSharesOutput]
|
595
|
+
def lens_share_summaries: () -> ::Array[Types::LensShareSummary]
|
596
|
+
def next_token: () -> ::String
|
597
|
+
end
|
598
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_lens_shares-instance_method
|
599
|
+
def list_lens_shares: (
|
600
|
+
lens_alias: ::String,
|
601
|
+
?shared_with_prefix: ::String,
|
602
|
+
?next_token: ::String,
|
603
|
+
?max_results: ::Integer,
|
604
|
+
?status: ("ACCEPTED" | "REJECTED" | "PENDING" | "REVOKED" | "EXPIRED" | "ASSOCIATING" | "ASSOCIATED" | "FAILED")
|
605
|
+
) -> _ListLensSharesResponseSuccess
|
606
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLensSharesResponseSuccess
|
607
|
+
|
608
|
+
interface _ListLensesResponseSuccess
|
609
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListLensesOutput]
|
610
|
+
def lens_summaries: () -> ::Array[Types::LensSummary]
|
611
|
+
def next_token: () -> ::String
|
612
|
+
end
|
613
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_lenses-instance_method
|
614
|
+
def list_lenses: (
|
615
|
+
?next_token: ::String,
|
616
|
+
?max_results: ::Integer,
|
617
|
+
?lens_type: ("AWS_OFFICIAL" | "CUSTOM_SHARED" | "CUSTOM_SELF"),
|
618
|
+
?lens_status: ("ALL" | "DRAFT" | "PUBLISHED"),
|
619
|
+
?lens_name: ::String
|
620
|
+
) -> _ListLensesResponseSuccess
|
621
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLensesResponseSuccess
|
622
|
+
|
623
|
+
interface _ListMilestonesResponseSuccess
|
624
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListMilestonesOutput]
|
625
|
+
def workload_id: () -> ::String
|
626
|
+
def milestone_summaries: () -> ::Array[Types::MilestoneSummary]
|
627
|
+
def next_token: () -> ::String
|
628
|
+
end
|
629
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_milestones-instance_method
|
630
|
+
def list_milestones: (
|
631
|
+
workload_id: ::String,
|
632
|
+
?next_token: ::String,
|
633
|
+
?max_results: ::Integer
|
634
|
+
) -> _ListMilestonesResponseSuccess
|
635
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListMilestonesResponseSuccess
|
636
|
+
|
637
|
+
interface _ListNotificationsResponseSuccess
|
638
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListNotificationsOutput]
|
639
|
+
def notification_summaries: () -> ::Array[Types::NotificationSummary]
|
640
|
+
def next_token: () -> ::String
|
641
|
+
end
|
642
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_notifications-instance_method
|
643
|
+
def list_notifications: (
|
644
|
+
?workload_id: ::String,
|
645
|
+
?next_token: ::String,
|
646
|
+
?max_results: ::Integer,
|
647
|
+
?resource_arn: ::String
|
648
|
+
) -> _ListNotificationsResponseSuccess
|
649
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListNotificationsResponseSuccess
|
650
|
+
|
651
|
+
interface _ListProfileNotificationsResponseSuccess
|
652
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListProfileNotificationsOutput]
|
653
|
+
def notification_summaries: () -> ::Array[Types::ProfileNotificationSummary]
|
654
|
+
def next_token: () -> ::String
|
655
|
+
end
|
656
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_profile_notifications-instance_method
|
657
|
+
def list_profile_notifications: (
|
658
|
+
?workload_id: ::String,
|
659
|
+
?next_token: ::String,
|
660
|
+
?max_results: ::Integer
|
661
|
+
) -> _ListProfileNotificationsResponseSuccess
|
662
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProfileNotificationsResponseSuccess
|
663
|
+
|
664
|
+
interface _ListProfileSharesResponseSuccess
|
665
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListProfileSharesOutput]
|
666
|
+
def profile_share_summaries: () -> ::Array[Types::ProfileShareSummary]
|
667
|
+
def next_token: () -> ::String
|
668
|
+
end
|
669
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_profile_shares-instance_method
|
670
|
+
def list_profile_shares: (
|
671
|
+
profile_arn: ::String,
|
672
|
+
?shared_with_prefix: ::String,
|
673
|
+
?next_token: ::String,
|
674
|
+
?max_results: ::Integer,
|
675
|
+
?status: ("ACCEPTED" | "REJECTED" | "PENDING" | "REVOKED" | "EXPIRED" | "ASSOCIATING" | "ASSOCIATED" | "FAILED")
|
676
|
+
) -> _ListProfileSharesResponseSuccess
|
677
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProfileSharesResponseSuccess
|
678
|
+
|
679
|
+
interface _ListProfilesResponseSuccess
|
680
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListProfilesOutput]
|
681
|
+
def profile_summaries: () -> ::Array[Types::ProfileSummary]
|
682
|
+
def next_token: () -> ::String
|
683
|
+
end
|
684
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_profiles-instance_method
|
685
|
+
def list_profiles: (
|
686
|
+
?profile_name_prefix: ::String,
|
687
|
+
?profile_owner_type: ("SELF" | "SHARED"),
|
688
|
+
?next_token: ::String,
|
689
|
+
?max_results: ::Integer
|
690
|
+
) -> _ListProfilesResponseSuccess
|
691
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProfilesResponseSuccess
|
692
|
+
|
693
|
+
interface _ListReviewTemplateAnswersResponseSuccess
|
694
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListReviewTemplateAnswersOutput]
|
695
|
+
def template_arn: () -> ::String
|
696
|
+
def lens_alias: () -> ::String
|
697
|
+
def answer_summaries: () -> ::Array[Types::ReviewTemplateAnswerSummary]
|
698
|
+
def next_token: () -> ::String
|
699
|
+
end
|
700
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_review_template_answers-instance_method
|
701
|
+
def list_review_template_answers: (
|
702
|
+
template_arn: ::String,
|
703
|
+
lens_alias: ::String,
|
704
|
+
?pillar_id: ::String,
|
705
|
+
?next_token: ::String,
|
706
|
+
?max_results: ::Integer
|
707
|
+
) -> _ListReviewTemplateAnswersResponseSuccess
|
708
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReviewTemplateAnswersResponseSuccess
|
709
|
+
|
710
|
+
interface _ListReviewTemplatesResponseSuccess
|
711
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListReviewTemplatesOutput]
|
712
|
+
def review_templates: () -> ::Array[Types::ReviewTemplateSummary]
|
713
|
+
def next_token: () -> ::String
|
714
|
+
end
|
715
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_review_templates-instance_method
|
716
|
+
def list_review_templates: (
|
717
|
+
?next_token: ::String,
|
718
|
+
?max_results: ::Integer
|
719
|
+
) -> _ListReviewTemplatesResponseSuccess
|
720
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReviewTemplatesResponseSuccess
|
721
|
+
|
722
|
+
interface _ListShareInvitationsResponseSuccess
|
723
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListShareInvitationsOutput]
|
724
|
+
def share_invitation_summaries: () -> ::Array[Types::ShareInvitationSummary]
|
725
|
+
def next_token: () -> ::String
|
726
|
+
end
|
727
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_share_invitations-instance_method
|
728
|
+
def list_share_invitations: (
|
729
|
+
?workload_name_prefix: ::String,
|
730
|
+
?lens_name_prefix: ::String,
|
731
|
+
?share_resource_type: ("WORKLOAD" | "LENS" | "PROFILE" | "TEMPLATE"),
|
732
|
+
?next_token: ::String,
|
733
|
+
?max_results: ::Integer,
|
734
|
+
?profile_name_prefix: ::String,
|
735
|
+
?template_name_prefix: ::String
|
736
|
+
) -> _ListShareInvitationsResponseSuccess
|
737
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListShareInvitationsResponseSuccess
|
738
|
+
|
739
|
+
interface _ListTagsForResourceResponseSuccess
|
740
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceOutput]
|
741
|
+
def tags: () -> ::Hash[::String, ::String]
|
742
|
+
end
|
743
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_tags_for_resource-instance_method
|
744
|
+
def list_tags_for_resource: (
|
745
|
+
workload_arn: ::String
|
746
|
+
) -> _ListTagsForResourceResponseSuccess
|
747
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
748
|
+
|
749
|
+
interface _ListTemplateSharesResponseSuccess
|
750
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTemplateSharesOutput]
|
751
|
+
def template_arn: () -> ::String
|
752
|
+
def template_share_summaries: () -> ::Array[Types::TemplateShareSummary]
|
753
|
+
def next_token: () -> ::String
|
754
|
+
end
|
755
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_template_shares-instance_method
|
756
|
+
def list_template_shares: (
|
757
|
+
template_arn: ::String,
|
758
|
+
?shared_with_prefix: ::String,
|
759
|
+
?next_token: ::String,
|
760
|
+
?max_results: ::Integer,
|
761
|
+
?status: ("ACCEPTED" | "REJECTED" | "PENDING" | "REVOKED" | "EXPIRED" | "ASSOCIATING" | "ASSOCIATED" | "FAILED")
|
762
|
+
) -> _ListTemplateSharesResponseSuccess
|
763
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTemplateSharesResponseSuccess
|
764
|
+
|
765
|
+
interface _ListWorkloadSharesResponseSuccess
|
766
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListWorkloadSharesOutput]
|
767
|
+
def workload_id: () -> ::String
|
768
|
+
def workload_share_summaries: () -> ::Array[Types::WorkloadShareSummary]
|
769
|
+
def next_token: () -> ::String
|
770
|
+
end
|
771
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_workload_shares-instance_method
|
772
|
+
def list_workload_shares: (
|
773
|
+
workload_id: ::String,
|
774
|
+
?shared_with_prefix: ::String,
|
775
|
+
?next_token: ::String,
|
776
|
+
?max_results: ::Integer,
|
777
|
+
?status: ("ACCEPTED" | "REJECTED" | "PENDING" | "REVOKED" | "EXPIRED" | "ASSOCIATING" | "ASSOCIATED" | "FAILED")
|
778
|
+
) -> _ListWorkloadSharesResponseSuccess
|
779
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorkloadSharesResponseSuccess
|
780
|
+
|
781
|
+
interface _ListWorkloadsResponseSuccess
|
782
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListWorkloadsOutput]
|
783
|
+
def workload_summaries: () -> ::Array[Types::WorkloadSummary]
|
784
|
+
def next_token: () -> ::String
|
785
|
+
end
|
786
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_workloads-instance_method
|
787
|
+
def list_workloads: (
|
788
|
+
?workload_name_prefix: ::String,
|
789
|
+
?next_token: ::String,
|
790
|
+
?max_results: ::Integer
|
791
|
+
) -> _ListWorkloadsResponseSuccess
|
792
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorkloadsResponseSuccess
|
793
|
+
|
794
|
+
interface _TagResourceResponseSuccess
|
795
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceOutput]
|
796
|
+
end
|
797
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#tag_resource-instance_method
|
798
|
+
def tag_resource: (
|
799
|
+
workload_arn: ::String,
|
800
|
+
tags: Hash[::String, ::String]
|
801
|
+
) -> _TagResourceResponseSuccess
|
802
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
803
|
+
|
804
|
+
interface _UntagResourceResponseSuccess
|
805
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceOutput]
|
806
|
+
end
|
807
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#untag_resource-instance_method
|
808
|
+
def untag_resource: (
|
809
|
+
workload_arn: ::String,
|
810
|
+
tag_keys: Array[::String]
|
811
|
+
) -> _UntagResourceResponseSuccess
|
812
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
813
|
+
|
814
|
+
interface _UpdateAnswerResponseSuccess
|
815
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAnswerOutput]
|
816
|
+
def workload_id: () -> ::String
|
817
|
+
def lens_alias: () -> ::String
|
818
|
+
def lens_arn: () -> ::String
|
819
|
+
def answer: () -> Types::Answer
|
820
|
+
end
|
821
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#update_answer-instance_method
|
822
|
+
def update_answer: (
|
823
|
+
workload_id: ::String,
|
824
|
+
lens_alias: ::String,
|
825
|
+
question_id: ::String,
|
826
|
+
?selected_choices: Array[::String],
|
827
|
+
?choice_updates: Hash[::String, {
|
828
|
+
status: ("SELECTED" | "NOT_APPLICABLE" | "UNSELECTED"),
|
829
|
+
reason: ("OUT_OF_SCOPE" | "BUSINESS_PRIORITIES" | "ARCHITECTURE_CONSTRAINTS" | "OTHER" | "NONE")?,
|
830
|
+
notes: ::String?
|
831
|
+
}],
|
832
|
+
?notes: ::String,
|
833
|
+
?is_applicable: bool,
|
834
|
+
?reason: ("OUT_OF_SCOPE" | "BUSINESS_PRIORITIES" | "ARCHITECTURE_CONSTRAINTS" | "OTHER" | "NONE")
|
835
|
+
) -> _UpdateAnswerResponseSuccess
|
836
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAnswerResponseSuccess
|
837
|
+
|
838
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#update_global_settings-instance_method
|
839
|
+
def update_global_settings: (
|
840
|
+
?organization_sharing_status: ("ENABLED" | "DISABLED"),
|
841
|
+
?discovery_integration_status: ("ENABLED" | "DISABLED")
|
842
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
843
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
844
|
+
|
845
|
+
interface _UpdateLensReviewResponseSuccess
|
846
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateLensReviewOutput]
|
847
|
+
def workload_id: () -> ::String
|
848
|
+
def lens_review: () -> Types::LensReview
|
849
|
+
end
|
850
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#update_lens_review-instance_method
|
851
|
+
def update_lens_review: (
|
852
|
+
workload_id: ::String,
|
853
|
+
lens_alias: ::String,
|
854
|
+
?lens_notes: ::String,
|
855
|
+
?pillar_notes: Hash[::String, ::String]
|
856
|
+
) -> _UpdateLensReviewResponseSuccess
|
857
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLensReviewResponseSuccess
|
858
|
+
|
859
|
+
interface _UpdateProfileResponseSuccess
|
860
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateProfileOutput]
|
861
|
+
def profile: () -> Types::Profile
|
862
|
+
end
|
863
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#update_profile-instance_method
|
864
|
+
def update_profile: (
|
865
|
+
profile_arn: ::String,
|
866
|
+
?profile_description: ::String,
|
867
|
+
?profile_questions: Array[
|
868
|
+
{
|
869
|
+
question_id: ::String?,
|
870
|
+
selected_choice_ids: Array[::String]?
|
871
|
+
},
|
872
|
+
]
|
873
|
+
) -> _UpdateProfileResponseSuccess
|
874
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateProfileResponseSuccess
|
875
|
+
|
876
|
+
interface _UpdateReviewTemplateResponseSuccess
|
877
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateReviewTemplateOutput]
|
878
|
+
def review_template: () -> Types::ReviewTemplate
|
879
|
+
end
|
880
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#update_review_template-instance_method
|
881
|
+
def update_review_template: (
|
882
|
+
template_arn: ::String,
|
883
|
+
?template_name: ::String,
|
884
|
+
?description: ::String,
|
885
|
+
?notes: ::String,
|
886
|
+
?lenses_to_associate: Array[::String],
|
887
|
+
?lenses_to_disassociate: Array[::String]
|
888
|
+
) -> _UpdateReviewTemplateResponseSuccess
|
889
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateReviewTemplateResponseSuccess
|
890
|
+
|
891
|
+
interface _UpdateReviewTemplateAnswerResponseSuccess
|
892
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateReviewTemplateAnswerOutput]
|
893
|
+
def template_arn: () -> ::String
|
894
|
+
def lens_alias: () -> ::String
|
895
|
+
def answer: () -> Types::ReviewTemplateAnswer
|
896
|
+
end
|
897
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#update_review_template_answer-instance_method
|
898
|
+
def update_review_template_answer: (
|
899
|
+
template_arn: ::String,
|
900
|
+
lens_alias: ::String,
|
901
|
+
question_id: ::String,
|
902
|
+
?selected_choices: Array[::String],
|
903
|
+
?choice_updates: Hash[::String, {
|
904
|
+
status: ("SELECTED" | "NOT_APPLICABLE" | "UNSELECTED"),
|
905
|
+
reason: ("OUT_OF_SCOPE" | "BUSINESS_PRIORITIES" | "ARCHITECTURE_CONSTRAINTS" | "OTHER" | "NONE")?,
|
906
|
+
notes: ::String?
|
907
|
+
}],
|
908
|
+
?notes: ::String,
|
909
|
+
?is_applicable: bool,
|
910
|
+
?reason: ("OUT_OF_SCOPE" | "BUSINESS_PRIORITIES" | "ARCHITECTURE_CONSTRAINTS" | "OTHER" | "NONE")
|
911
|
+
) -> _UpdateReviewTemplateAnswerResponseSuccess
|
912
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateReviewTemplateAnswerResponseSuccess
|
913
|
+
|
914
|
+
interface _UpdateReviewTemplateLensReviewResponseSuccess
|
915
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateReviewTemplateLensReviewOutput]
|
916
|
+
def template_arn: () -> ::String
|
917
|
+
def lens_review: () -> Types::ReviewTemplateLensReview
|
918
|
+
end
|
919
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#update_review_template_lens_review-instance_method
|
920
|
+
def update_review_template_lens_review: (
|
921
|
+
template_arn: ::String,
|
922
|
+
lens_alias: ::String,
|
923
|
+
?lens_notes: ::String,
|
924
|
+
?pillar_notes: Hash[::String, ::String]
|
925
|
+
) -> _UpdateReviewTemplateLensReviewResponseSuccess
|
926
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateReviewTemplateLensReviewResponseSuccess
|
927
|
+
|
928
|
+
interface _UpdateShareInvitationResponseSuccess
|
929
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateShareInvitationOutput]
|
930
|
+
def share_invitation: () -> Types::ShareInvitation
|
931
|
+
end
|
932
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#update_share_invitation-instance_method
|
933
|
+
def update_share_invitation: (
|
934
|
+
share_invitation_id: ::String,
|
935
|
+
share_invitation_action: ("ACCEPT" | "REJECT")
|
936
|
+
) -> _UpdateShareInvitationResponseSuccess
|
937
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateShareInvitationResponseSuccess
|
938
|
+
|
939
|
+
interface _UpdateWorkloadResponseSuccess
|
940
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateWorkloadOutput]
|
941
|
+
def workload: () -> Types::Workload
|
942
|
+
end
|
943
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#update_workload-instance_method
|
944
|
+
def update_workload: (
|
945
|
+
workload_id: ::String,
|
946
|
+
?workload_name: ::String,
|
947
|
+
?description: ::String,
|
948
|
+
?environment: ("PRODUCTION" | "PREPRODUCTION"),
|
949
|
+
?account_ids: Array[::String],
|
950
|
+
?aws_regions: Array[::String],
|
951
|
+
?non_aws_regions: Array[::String],
|
952
|
+
?pillar_priorities: Array[::String],
|
953
|
+
?architectural_design: ::String,
|
954
|
+
?review_owner: ::String,
|
955
|
+
?is_review_owner_update_acknowledged: bool,
|
956
|
+
?industry_type: ::String,
|
957
|
+
?industry: ::String,
|
958
|
+
?notes: ::String,
|
959
|
+
?improvement_status: ("NOT_APPLICABLE" | "NOT_STARTED" | "IN_PROGRESS" | "COMPLETE" | "RISK_ACKNOWLEDGED"),
|
960
|
+
?discovery_config: {
|
961
|
+
trusted_advisor_integration_status: ("ENABLED" | "DISABLED")?,
|
962
|
+
workload_resource_definition: Array[("WORKLOAD_METADATA" | "APP_REGISTRY")]?
|
963
|
+
},
|
964
|
+
?applications: Array[::String]
|
965
|
+
) -> _UpdateWorkloadResponseSuccess
|
966
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateWorkloadResponseSuccess
|
967
|
+
|
968
|
+
interface _UpdateWorkloadShareResponseSuccess
|
969
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateWorkloadShareOutput]
|
970
|
+
def workload_id: () -> ::String
|
971
|
+
def workload_share: () -> Types::WorkloadShare
|
972
|
+
end
|
973
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#update_workload_share-instance_method
|
974
|
+
def update_workload_share: (
|
975
|
+
share_id: ::String,
|
976
|
+
workload_id: ::String,
|
977
|
+
permission_type: ("READONLY" | "CONTRIBUTOR")
|
978
|
+
) -> _UpdateWorkloadShareResponseSuccess
|
979
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateWorkloadShareResponseSuccess
|
980
|
+
|
981
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#upgrade_lens_review-instance_method
|
982
|
+
def upgrade_lens_review: (
|
983
|
+
workload_id: ::String,
|
984
|
+
lens_alias: ::String,
|
985
|
+
milestone_name: ::String,
|
986
|
+
?client_request_token: ::String
|
987
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
988
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
989
|
+
|
990
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#upgrade_profile_version-instance_method
|
991
|
+
def upgrade_profile_version: (
|
992
|
+
workload_id: ::String,
|
993
|
+
profile_arn: ::String,
|
994
|
+
?milestone_name: ::String,
|
995
|
+
?client_request_token: ::String
|
996
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
997
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
998
|
+
|
999
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#upgrade_review_template_lens_review-instance_method
|
1000
|
+
def upgrade_review_template_lens_review: (
|
1001
|
+
template_arn: ::String,
|
1002
|
+
lens_alias: ::String,
|
1003
|
+
?client_request_token: ::String
|
1004
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1005
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1006
|
+
end
|
1007
|
+
end
|
1008
|
+
end
|
1009
|
+
|