aws-sdk-wellarchitected 1.32.0 → 1.34.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/client.rbs ADDED
@@ -0,0 +1,1051 @@
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
+ ?jira_configuration: {
219
+ issue_management_status: ("ENABLED" | "DISABLED" | "INHERIT")?,
220
+ issue_management_type: ("AUTO" | "MANUAL")?,
221
+ jira_project_key: ::String?
222
+ }
223
+ ) -> _CreateWorkloadResponseSuccess
224
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkloadResponseSuccess
225
+
226
+ interface _CreateWorkloadShareResponseSuccess
227
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateWorkloadShareOutput]
228
+ def workload_id: () -> ::String
229
+ def share_id: () -> ::String
230
+ end
231
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#create_workload_share-instance_method
232
+ def create_workload_share: (
233
+ workload_id: ::String,
234
+ shared_with: ::String,
235
+ permission_type: ("READONLY" | "CONTRIBUTOR"),
236
+ client_request_token: ::String
237
+ ) -> _CreateWorkloadShareResponseSuccess
238
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkloadShareResponseSuccess
239
+
240
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#delete_lens-instance_method
241
+ def delete_lens: (
242
+ lens_alias: ::String,
243
+ client_request_token: ::String,
244
+ lens_status: ("ALL" | "DRAFT" | "PUBLISHED")
245
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
246
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
247
+
248
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#delete_lens_share-instance_method
249
+ def delete_lens_share: (
250
+ share_id: ::String,
251
+ lens_alias: ::String,
252
+ client_request_token: ::String
253
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
254
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
255
+
256
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#delete_profile-instance_method
257
+ def delete_profile: (
258
+ profile_arn: ::String,
259
+ client_request_token: ::String
260
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
261
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
262
+
263
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#delete_profile_share-instance_method
264
+ def delete_profile_share: (
265
+ share_id: ::String,
266
+ profile_arn: ::String,
267
+ client_request_token: ::String
268
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
269
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
270
+
271
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#delete_review_template-instance_method
272
+ def delete_review_template: (
273
+ template_arn: ::String,
274
+ client_request_token: ::String
275
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
276
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
277
+
278
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#delete_template_share-instance_method
279
+ def delete_template_share: (
280
+ share_id: ::String,
281
+ template_arn: ::String,
282
+ client_request_token: ::String
283
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
284
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
285
+
286
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#delete_workload-instance_method
287
+ def delete_workload: (
288
+ workload_id: ::String,
289
+ client_request_token: ::String
290
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
291
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
292
+
293
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#delete_workload_share-instance_method
294
+ def delete_workload_share: (
295
+ share_id: ::String,
296
+ workload_id: ::String,
297
+ client_request_token: ::String
298
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
299
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
300
+
301
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#disassociate_lenses-instance_method
302
+ def disassociate_lenses: (
303
+ workload_id: ::String,
304
+ lens_aliases: Array[::String]
305
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
306
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
307
+
308
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#disassociate_profiles-instance_method
309
+ def disassociate_profiles: (
310
+ workload_id: ::String,
311
+ profile_arns: Array[::String]
312
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
313
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
314
+
315
+ interface _ExportLensResponseSuccess
316
+ include ::Seahorse::Client::_ResponseSuccess[Types::ExportLensOutput]
317
+ def lens_json: () -> ::String
318
+ end
319
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#export_lens-instance_method
320
+ def export_lens: (
321
+ lens_alias: ::String,
322
+ ?lens_version: ::String
323
+ ) -> _ExportLensResponseSuccess
324
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ExportLensResponseSuccess
325
+
326
+ interface _GetAnswerResponseSuccess
327
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAnswerOutput]
328
+ def workload_id: () -> ::String
329
+ def milestone_number: () -> ::Integer
330
+ def lens_alias: () -> ::String
331
+ def lens_arn: () -> ::String
332
+ def answer: () -> Types::Answer
333
+ end
334
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#get_answer-instance_method
335
+ def get_answer: (
336
+ workload_id: ::String,
337
+ lens_alias: ::String,
338
+ question_id: ::String,
339
+ ?milestone_number: ::Integer
340
+ ) -> _GetAnswerResponseSuccess
341
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAnswerResponseSuccess
342
+
343
+ interface _GetConsolidatedReportResponseSuccess
344
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetConsolidatedReportOutput]
345
+ def metrics: () -> ::Array[Types::ConsolidatedReportMetric]
346
+ def next_token: () -> ::String
347
+ def base_64_string: () -> ::String
348
+ end
349
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#get_consolidated_report-instance_method
350
+ def get_consolidated_report: (
351
+ format: ("PDF" | "JSON"),
352
+ ?include_shared_resources: bool,
353
+ ?next_token: ::String,
354
+ ?max_results: ::Integer
355
+ ) -> _GetConsolidatedReportResponseSuccess
356
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConsolidatedReportResponseSuccess
357
+
358
+ interface _GetGlobalSettingsResponseSuccess
359
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetGlobalSettingsOutput]
360
+ def organization_sharing_status: () -> ("ENABLED" | "DISABLED")
361
+ def discovery_integration_status: () -> ("ENABLED" | "DISABLED")
362
+ def jira_configuration: () -> Types::AccountJiraConfigurationOutput
363
+ end
364
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#get_global_settings-instance_method
365
+ def get_global_settings: () -> _GetGlobalSettingsResponseSuccess
366
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGlobalSettingsResponseSuccess
367
+
368
+ interface _GetLensResponseSuccess
369
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetLensOutput]
370
+ def lens: () -> Types::Lens
371
+ end
372
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#get_lens-instance_method
373
+ def get_lens: (
374
+ lens_alias: ::String,
375
+ ?lens_version: ::String
376
+ ) -> _GetLensResponseSuccess
377
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLensResponseSuccess
378
+
379
+ interface _GetLensReviewResponseSuccess
380
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetLensReviewOutput]
381
+ def workload_id: () -> ::String
382
+ def milestone_number: () -> ::Integer
383
+ def lens_review: () -> Types::LensReview
384
+ end
385
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#get_lens_review-instance_method
386
+ def get_lens_review: (
387
+ workload_id: ::String,
388
+ lens_alias: ::String,
389
+ ?milestone_number: ::Integer
390
+ ) -> _GetLensReviewResponseSuccess
391
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLensReviewResponseSuccess
392
+
393
+ interface _GetLensReviewReportResponseSuccess
394
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetLensReviewReportOutput]
395
+ def workload_id: () -> ::String
396
+ def milestone_number: () -> ::Integer
397
+ def lens_review_report: () -> Types::LensReviewReport
398
+ end
399
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#get_lens_review_report-instance_method
400
+ def get_lens_review_report: (
401
+ workload_id: ::String,
402
+ lens_alias: ::String,
403
+ ?milestone_number: ::Integer
404
+ ) -> _GetLensReviewReportResponseSuccess
405
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLensReviewReportResponseSuccess
406
+
407
+ interface _GetLensVersionDifferenceResponseSuccess
408
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetLensVersionDifferenceOutput]
409
+ def lens_alias: () -> ::String
410
+ def lens_arn: () -> ::String
411
+ def base_lens_version: () -> ::String
412
+ def target_lens_version: () -> ::String
413
+ def latest_lens_version: () -> ::String
414
+ def version_differences: () -> Types::VersionDifferences
415
+ end
416
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#get_lens_version_difference-instance_method
417
+ def get_lens_version_difference: (
418
+ lens_alias: ::String,
419
+ ?base_lens_version: ::String,
420
+ ?target_lens_version: ::String
421
+ ) -> _GetLensVersionDifferenceResponseSuccess
422
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLensVersionDifferenceResponseSuccess
423
+
424
+ interface _GetMilestoneResponseSuccess
425
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetMilestoneOutput]
426
+ def workload_id: () -> ::String
427
+ def milestone: () -> Types::Milestone
428
+ end
429
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#get_milestone-instance_method
430
+ def get_milestone: (
431
+ workload_id: ::String,
432
+ milestone_number: ::Integer
433
+ ) -> _GetMilestoneResponseSuccess
434
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMilestoneResponseSuccess
435
+
436
+ interface _GetProfileResponseSuccess
437
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetProfileOutput]
438
+ def profile: () -> Types::Profile
439
+ end
440
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#get_profile-instance_method
441
+ def get_profile: (
442
+ profile_arn: ::String,
443
+ ?profile_version: ::String
444
+ ) -> _GetProfileResponseSuccess
445
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetProfileResponseSuccess
446
+
447
+ interface _GetProfileTemplateResponseSuccess
448
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetProfileTemplateOutput]
449
+ def profile_template: () -> Types::ProfileTemplate
450
+ end
451
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#get_profile_template-instance_method
452
+ def get_profile_template: (
453
+ ) -> _GetProfileTemplateResponseSuccess
454
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetProfileTemplateResponseSuccess
455
+
456
+ interface _GetReviewTemplateResponseSuccess
457
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetReviewTemplateOutput]
458
+ def review_template: () -> Types::ReviewTemplate
459
+ end
460
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#get_review_template-instance_method
461
+ def get_review_template: (
462
+ template_arn: ::String
463
+ ) -> _GetReviewTemplateResponseSuccess
464
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetReviewTemplateResponseSuccess
465
+
466
+ interface _GetReviewTemplateAnswerResponseSuccess
467
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetReviewTemplateAnswerOutput]
468
+ def template_arn: () -> ::String
469
+ def lens_alias: () -> ::String
470
+ def answer: () -> Types::ReviewTemplateAnswer
471
+ end
472
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#get_review_template_answer-instance_method
473
+ def get_review_template_answer: (
474
+ template_arn: ::String,
475
+ lens_alias: ::String,
476
+ question_id: ::String
477
+ ) -> _GetReviewTemplateAnswerResponseSuccess
478
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetReviewTemplateAnswerResponseSuccess
479
+
480
+ interface _GetReviewTemplateLensReviewResponseSuccess
481
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetReviewTemplateLensReviewOutput]
482
+ def template_arn: () -> ::String
483
+ def lens_review: () -> Types::ReviewTemplateLensReview
484
+ end
485
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#get_review_template_lens_review-instance_method
486
+ def get_review_template_lens_review: (
487
+ template_arn: ::String,
488
+ lens_alias: ::String
489
+ ) -> _GetReviewTemplateLensReviewResponseSuccess
490
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetReviewTemplateLensReviewResponseSuccess
491
+
492
+ interface _GetWorkloadResponseSuccess
493
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetWorkloadOutput]
494
+ def workload: () -> Types::Workload
495
+ end
496
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#get_workload-instance_method
497
+ def get_workload: (
498
+ workload_id: ::String
499
+ ) -> _GetWorkloadResponseSuccess
500
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetWorkloadResponseSuccess
501
+
502
+ interface _ImportLensResponseSuccess
503
+ include ::Seahorse::Client::_ResponseSuccess[Types::ImportLensOutput]
504
+ def lens_arn: () -> ::String
505
+ def status: () -> ("IN_PROGRESS" | "COMPLETE" | "ERROR")
506
+ end
507
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#import_lens-instance_method
508
+ def import_lens: (
509
+ ?lens_alias: ::String,
510
+ json_string: ::String,
511
+ client_request_token: ::String,
512
+ ?tags: Hash[::String, ::String]
513
+ ) -> _ImportLensResponseSuccess
514
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportLensResponseSuccess
515
+
516
+ interface _ListAnswersResponseSuccess
517
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAnswersOutput]
518
+ def workload_id: () -> ::String
519
+ def milestone_number: () -> ::Integer
520
+ def lens_alias: () -> ::String
521
+ def lens_arn: () -> ::String
522
+ def answer_summaries: () -> ::Array[Types::AnswerSummary]
523
+ def next_token: () -> ::String
524
+ end
525
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_answers-instance_method
526
+ def list_answers: (
527
+ workload_id: ::String,
528
+ lens_alias: ::String,
529
+ ?pillar_id: ::String,
530
+ ?milestone_number: ::Integer,
531
+ ?next_token: ::String,
532
+ ?max_results: ::Integer,
533
+ ?question_priority: ("PRIORITIZED" | "NONE")
534
+ ) -> _ListAnswersResponseSuccess
535
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAnswersResponseSuccess
536
+
537
+ interface _ListCheckDetailsResponseSuccess
538
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListCheckDetailsOutput]
539
+ def check_details: () -> ::Array[Types::CheckDetail]
540
+ def next_token: () -> ::String
541
+ end
542
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_check_details-instance_method
543
+ def list_check_details: (
544
+ workload_id: ::String,
545
+ ?next_token: ::String,
546
+ ?max_results: ::Integer,
547
+ lens_arn: ::String,
548
+ pillar_id: ::String,
549
+ question_id: ::String,
550
+ choice_id: ::String
551
+ ) -> _ListCheckDetailsResponseSuccess
552
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCheckDetailsResponseSuccess
553
+
554
+ interface _ListCheckSummariesResponseSuccess
555
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListCheckSummariesOutput]
556
+ def check_summaries: () -> ::Array[Types::CheckSummary]
557
+ def next_token: () -> ::String
558
+ end
559
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_check_summaries-instance_method
560
+ def list_check_summaries: (
561
+ workload_id: ::String,
562
+ ?next_token: ::String,
563
+ ?max_results: ::Integer,
564
+ lens_arn: ::String,
565
+ pillar_id: ::String,
566
+ question_id: ::String,
567
+ choice_id: ::String
568
+ ) -> _ListCheckSummariesResponseSuccess
569
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCheckSummariesResponseSuccess
570
+
571
+ interface _ListLensReviewImprovementsResponseSuccess
572
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListLensReviewImprovementsOutput]
573
+ def workload_id: () -> ::String
574
+ def milestone_number: () -> ::Integer
575
+ def lens_alias: () -> ::String
576
+ def lens_arn: () -> ::String
577
+ def improvement_summaries: () -> ::Array[Types::ImprovementSummary]
578
+ def next_token: () -> ::String
579
+ end
580
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_lens_review_improvements-instance_method
581
+ def list_lens_review_improvements: (
582
+ workload_id: ::String,
583
+ lens_alias: ::String,
584
+ ?pillar_id: ::String,
585
+ ?milestone_number: ::Integer,
586
+ ?next_token: ::String,
587
+ ?max_results: ::Integer,
588
+ ?question_priority: ("PRIORITIZED" | "NONE")
589
+ ) -> _ListLensReviewImprovementsResponseSuccess
590
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLensReviewImprovementsResponseSuccess
591
+
592
+ interface _ListLensReviewsResponseSuccess
593
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListLensReviewsOutput]
594
+ def workload_id: () -> ::String
595
+ def milestone_number: () -> ::Integer
596
+ def lens_review_summaries: () -> ::Array[Types::LensReviewSummary]
597
+ def next_token: () -> ::String
598
+ end
599
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_lens_reviews-instance_method
600
+ def list_lens_reviews: (
601
+ workload_id: ::String,
602
+ ?milestone_number: ::Integer,
603
+ ?next_token: ::String,
604
+ ?max_results: ::Integer
605
+ ) -> _ListLensReviewsResponseSuccess
606
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLensReviewsResponseSuccess
607
+
608
+ interface _ListLensSharesResponseSuccess
609
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListLensSharesOutput]
610
+ def lens_share_summaries: () -> ::Array[Types::LensShareSummary]
611
+ def next_token: () -> ::String
612
+ end
613
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_lens_shares-instance_method
614
+ def list_lens_shares: (
615
+ lens_alias: ::String,
616
+ ?shared_with_prefix: ::String,
617
+ ?next_token: ::String,
618
+ ?max_results: ::Integer,
619
+ ?status: ("ACCEPTED" | "REJECTED" | "PENDING" | "REVOKED" | "EXPIRED" | "ASSOCIATING" | "ASSOCIATED" | "FAILED")
620
+ ) -> _ListLensSharesResponseSuccess
621
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLensSharesResponseSuccess
622
+
623
+ interface _ListLensesResponseSuccess
624
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListLensesOutput]
625
+ def lens_summaries: () -> ::Array[Types::LensSummary]
626
+ def next_token: () -> ::String
627
+ end
628
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_lenses-instance_method
629
+ def list_lenses: (
630
+ ?next_token: ::String,
631
+ ?max_results: ::Integer,
632
+ ?lens_type: ("AWS_OFFICIAL" | "CUSTOM_SHARED" | "CUSTOM_SELF"),
633
+ ?lens_status: ("ALL" | "DRAFT" | "PUBLISHED"),
634
+ ?lens_name: ::String
635
+ ) -> _ListLensesResponseSuccess
636
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLensesResponseSuccess
637
+
638
+ interface _ListMilestonesResponseSuccess
639
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListMilestonesOutput]
640
+ def workload_id: () -> ::String
641
+ def milestone_summaries: () -> ::Array[Types::MilestoneSummary]
642
+ def next_token: () -> ::String
643
+ end
644
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_milestones-instance_method
645
+ def list_milestones: (
646
+ workload_id: ::String,
647
+ ?next_token: ::String,
648
+ ?max_results: ::Integer
649
+ ) -> _ListMilestonesResponseSuccess
650
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListMilestonesResponseSuccess
651
+
652
+ interface _ListNotificationsResponseSuccess
653
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListNotificationsOutput]
654
+ def notification_summaries: () -> ::Array[Types::NotificationSummary]
655
+ def next_token: () -> ::String
656
+ end
657
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_notifications-instance_method
658
+ def list_notifications: (
659
+ ?workload_id: ::String,
660
+ ?next_token: ::String,
661
+ ?max_results: ::Integer,
662
+ ?resource_arn: ::String
663
+ ) -> _ListNotificationsResponseSuccess
664
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListNotificationsResponseSuccess
665
+
666
+ interface _ListProfileNotificationsResponseSuccess
667
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListProfileNotificationsOutput]
668
+ def notification_summaries: () -> ::Array[Types::ProfileNotificationSummary]
669
+ def next_token: () -> ::String
670
+ end
671
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_profile_notifications-instance_method
672
+ def list_profile_notifications: (
673
+ ?workload_id: ::String,
674
+ ?next_token: ::String,
675
+ ?max_results: ::Integer
676
+ ) -> _ListProfileNotificationsResponseSuccess
677
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProfileNotificationsResponseSuccess
678
+
679
+ interface _ListProfileSharesResponseSuccess
680
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListProfileSharesOutput]
681
+ def profile_share_summaries: () -> ::Array[Types::ProfileShareSummary]
682
+ def next_token: () -> ::String
683
+ end
684
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_profile_shares-instance_method
685
+ def list_profile_shares: (
686
+ profile_arn: ::String,
687
+ ?shared_with_prefix: ::String,
688
+ ?next_token: ::String,
689
+ ?max_results: ::Integer,
690
+ ?status: ("ACCEPTED" | "REJECTED" | "PENDING" | "REVOKED" | "EXPIRED" | "ASSOCIATING" | "ASSOCIATED" | "FAILED")
691
+ ) -> _ListProfileSharesResponseSuccess
692
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProfileSharesResponseSuccess
693
+
694
+ interface _ListProfilesResponseSuccess
695
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListProfilesOutput]
696
+ def profile_summaries: () -> ::Array[Types::ProfileSummary]
697
+ def next_token: () -> ::String
698
+ end
699
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_profiles-instance_method
700
+ def list_profiles: (
701
+ ?profile_name_prefix: ::String,
702
+ ?profile_owner_type: ("SELF" | "SHARED"),
703
+ ?next_token: ::String,
704
+ ?max_results: ::Integer
705
+ ) -> _ListProfilesResponseSuccess
706
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProfilesResponseSuccess
707
+
708
+ interface _ListReviewTemplateAnswersResponseSuccess
709
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListReviewTemplateAnswersOutput]
710
+ def template_arn: () -> ::String
711
+ def lens_alias: () -> ::String
712
+ def answer_summaries: () -> ::Array[Types::ReviewTemplateAnswerSummary]
713
+ def next_token: () -> ::String
714
+ end
715
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_review_template_answers-instance_method
716
+ def list_review_template_answers: (
717
+ template_arn: ::String,
718
+ lens_alias: ::String,
719
+ ?pillar_id: ::String,
720
+ ?next_token: ::String,
721
+ ?max_results: ::Integer
722
+ ) -> _ListReviewTemplateAnswersResponseSuccess
723
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReviewTemplateAnswersResponseSuccess
724
+
725
+ interface _ListReviewTemplatesResponseSuccess
726
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListReviewTemplatesOutput]
727
+ def review_templates: () -> ::Array[Types::ReviewTemplateSummary]
728
+ def next_token: () -> ::String
729
+ end
730
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_review_templates-instance_method
731
+ def list_review_templates: (
732
+ ?next_token: ::String,
733
+ ?max_results: ::Integer
734
+ ) -> _ListReviewTemplatesResponseSuccess
735
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReviewTemplatesResponseSuccess
736
+
737
+ interface _ListShareInvitationsResponseSuccess
738
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListShareInvitationsOutput]
739
+ def share_invitation_summaries: () -> ::Array[Types::ShareInvitationSummary]
740
+ def next_token: () -> ::String
741
+ end
742
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_share_invitations-instance_method
743
+ def list_share_invitations: (
744
+ ?workload_name_prefix: ::String,
745
+ ?lens_name_prefix: ::String,
746
+ ?share_resource_type: ("WORKLOAD" | "LENS" | "PROFILE" | "TEMPLATE"),
747
+ ?next_token: ::String,
748
+ ?max_results: ::Integer,
749
+ ?profile_name_prefix: ::String,
750
+ ?template_name_prefix: ::String
751
+ ) -> _ListShareInvitationsResponseSuccess
752
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListShareInvitationsResponseSuccess
753
+
754
+ interface _ListTagsForResourceResponseSuccess
755
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceOutput]
756
+ def tags: () -> ::Hash[::String, ::String]
757
+ end
758
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_tags_for_resource-instance_method
759
+ def list_tags_for_resource: (
760
+ workload_arn: ::String
761
+ ) -> _ListTagsForResourceResponseSuccess
762
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
763
+
764
+ interface _ListTemplateSharesResponseSuccess
765
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTemplateSharesOutput]
766
+ def template_arn: () -> ::String
767
+ def template_share_summaries: () -> ::Array[Types::TemplateShareSummary]
768
+ def next_token: () -> ::String
769
+ end
770
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_template_shares-instance_method
771
+ def list_template_shares: (
772
+ template_arn: ::String,
773
+ ?shared_with_prefix: ::String,
774
+ ?next_token: ::String,
775
+ ?max_results: ::Integer,
776
+ ?status: ("ACCEPTED" | "REJECTED" | "PENDING" | "REVOKED" | "EXPIRED" | "ASSOCIATING" | "ASSOCIATED" | "FAILED")
777
+ ) -> _ListTemplateSharesResponseSuccess
778
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTemplateSharesResponseSuccess
779
+
780
+ interface _ListWorkloadSharesResponseSuccess
781
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListWorkloadSharesOutput]
782
+ def workload_id: () -> ::String
783
+ def workload_share_summaries: () -> ::Array[Types::WorkloadShareSummary]
784
+ def next_token: () -> ::String
785
+ end
786
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_workload_shares-instance_method
787
+ def list_workload_shares: (
788
+ workload_id: ::String,
789
+ ?shared_with_prefix: ::String,
790
+ ?next_token: ::String,
791
+ ?max_results: ::Integer,
792
+ ?status: ("ACCEPTED" | "REJECTED" | "PENDING" | "REVOKED" | "EXPIRED" | "ASSOCIATING" | "ASSOCIATED" | "FAILED")
793
+ ) -> _ListWorkloadSharesResponseSuccess
794
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorkloadSharesResponseSuccess
795
+
796
+ interface _ListWorkloadsResponseSuccess
797
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListWorkloadsOutput]
798
+ def workload_summaries: () -> ::Array[Types::WorkloadSummary]
799
+ def next_token: () -> ::String
800
+ end
801
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#list_workloads-instance_method
802
+ def list_workloads: (
803
+ ?workload_name_prefix: ::String,
804
+ ?next_token: ::String,
805
+ ?max_results: ::Integer
806
+ ) -> _ListWorkloadsResponseSuccess
807
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorkloadsResponseSuccess
808
+
809
+ interface _TagResourceResponseSuccess
810
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceOutput]
811
+ end
812
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#tag_resource-instance_method
813
+ def tag_resource: (
814
+ workload_arn: ::String,
815
+ tags: Hash[::String, ::String]
816
+ ) -> _TagResourceResponseSuccess
817
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
818
+
819
+ interface _UntagResourceResponseSuccess
820
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceOutput]
821
+ end
822
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#untag_resource-instance_method
823
+ def untag_resource: (
824
+ workload_arn: ::String,
825
+ tag_keys: Array[::String]
826
+ ) -> _UntagResourceResponseSuccess
827
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
828
+
829
+ interface _UpdateAnswerResponseSuccess
830
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAnswerOutput]
831
+ def workload_id: () -> ::String
832
+ def lens_alias: () -> ::String
833
+ def lens_arn: () -> ::String
834
+ def answer: () -> Types::Answer
835
+ end
836
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#update_answer-instance_method
837
+ def update_answer: (
838
+ workload_id: ::String,
839
+ lens_alias: ::String,
840
+ question_id: ::String,
841
+ ?selected_choices: Array[::String],
842
+ ?choice_updates: Hash[::String, {
843
+ status: ("SELECTED" | "NOT_APPLICABLE" | "UNSELECTED"),
844
+ reason: ("OUT_OF_SCOPE" | "BUSINESS_PRIORITIES" | "ARCHITECTURE_CONSTRAINTS" | "OTHER" | "NONE")?,
845
+ notes: ::String?
846
+ }],
847
+ ?notes: ::String,
848
+ ?is_applicable: bool,
849
+ ?reason: ("OUT_OF_SCOPE" | "BUSINESS_PRIORITIES" | "ARCHITECTURE_CONSTRAINTS" | "OTHER" | "NONE")
850
+ ) -> _UpdateAnswerResponseSuccess
851
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAnswerResponseSuccess
852
+
853
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#update_global_settings-instance_method
854
+ def update_global_settings: (
855
+ ?organization_sharing_status: ("ENABLED" | "DISABLED"),
856
+ ?discovery_integration_status: ("ENABLED" | "DISABLED"),
857
+ ?jira_configuration: {
858
+ issue_management_status: ("ENABLED" | "DISABLED")?,
859
+ issue_management_type: ("AUTO" | "MANUAL")?,
860
+ jira_project_key: ::String?,
861
+ integration_status: ("NOT_CONFIGURED")?
862
+ }
863
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
864
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
865
+
866
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#update_integration-instance_method
867
+ def update_integration: (
868
+ workload_id: ::String,
869
+ client_request_token: ::String,
870
+ integrating_service: ("JIRA")
871
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
872
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
873
+
874
+ interface _UpdateLensReviewResponseSuccess
875
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateLensReviewOutput]
876
+ def workload_id: () -> ::String
877
+ def lens_review: () -> Types::LensReview
878
+ end
879
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#update_lens_review-instance_method
880
+ def update_lens_review: (
881
+ workload_id: ::String,
882
+ lens_alias: ::String,
883
+ ?lens_notes: ::String,
884
+ ?pillar_notes: Hash[::String, ::String],
885
+ ?jira_configuration: {
886
+ selected_pillars: Array[
887
+ {
888
+ pillar_id: ::String?,
889
+ selected_question_ids: Array[::String]?
890
+ },
891
+ ]?
892
+ }
893
+ ) -> _UpdateLensReviewResponseSuccess
894
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLensReviewResponseSuccess
895
+
896
+ interface _UpdateProfileResponseSuccess
897
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateProfileOutput]
898
+ def profile: () -> Types::Profile
899
+ end
900
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#update_profile-instance_method
901
+ def update_profile: (
902
+ profile_arn: ::String,
903
+ ?profile_description: ::String,
904
+ ?profile_questions: Array[
905
+ {
906
+ question_id: ::String?,
907
+ selected_choice_ids: Array[::String]?
908
+ },
909
+ ]
910
+ ) -> _UpdateProfileResponseSuccess
911
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateProfileResponseSuccess
912
+
913
+ interface _UpdateReviewTemplateResponseSuccess
914
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateReviewTemplateOutput]
915
+ def review_template: () -> Types::ReviewTemplate
916
+ end
917
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#update_review_template-instance_method
918
+ def update_review_template: (
919
+ template_arn: ::String,
920
+ ?template_name: ::String,
921
+ ?description: ::String,
922
+ ?notes: ::String,
923
+ ?lenses_to_associate: Array[::String],
924
+ ?lenses_to_disassociate: Array[::String]
925
+ ) -> _UpdateReviewTemplateResponseSuccess
926
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateReviewTemplateResponseSuccess
927
+
928
+ interface _UpdateReviewTemplateAnswerResponseSuccess
929
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateReviewTemplateAnswerOutput]
930
+ def template_arn: () -> ::String
931
+ def lens_alias: () -> ::String
932
+ def answer: () -> Types::ReviewTemplateAnswer
933
+ end
934
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#update_review_template_answer-instance_method
935
+ def update_review_template_answer: (
936
+ template_arn: ::String,
937
+ lens_alias: ::String,
938
+ question_id: ::String,
939
+ ?selected_choices: Array[::String],
940
+ ?choice_updates: Hash[::String, {
941
+ status: ("SELECTED" | "NOT_APPLICABLE" | "UNSELECTED"),
942
+ reason: ("OUT_OF_SCOPE" | "BUSINESS_PRIORITIES" | "ARCHITECTURE_CONSTRAINTS" | "OTHER" | "NONE")?,
943
+ notes: ::String?
944
+ }],
945
+ ?notes: ::String,
946
+ ?is_applicable: bool,
947
+ ?reason: ("OUT_OF_SCOPE" | "BUSINESS_PRIORITIES" | "ARCHITECTURE_CONSTRAINTS" | "OTHER" | "NONE")
948
+ ) -> _UpdateReviewTemplateAnswerResponseSuccess
949
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateReviewTemplateAnswerResponseSuccess
950
+
951
+ interface _UpdateReviewTemplateLensReviewResponseSuccess
952
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateReviewTemplateLensReviewOutput]
953
+ def template_arn: () -> ::String
954
+ def lens_review: () -> Types::ReviewTemplateLensReview
955
+ end
956
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#update_review_template_lens_review-instance_method
957
+ def update_review_template_lens_review: (
958
+ template_arn: ::String,
959
+ lens_alias: ::String,
960
+ ?lens_notes: ::String,
961
+ ?pillar_notes: Hash[::String, ::String]
962
+ ) -> _UpdateReviewTemplateLensReviewResponseSuccess
963
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateReviewTemplateLensReviewResponseSuccess
964
+
965
+ interface _UpdateShareInvitationResponseSuccess
966
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateShareInvitationOutput]
967
+ def share_invitation: () -> Types::ShareInvitation
968
+ end
969
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#update_share_invitation-instance_method
970
+ def update_share_invitation: (
971
+ share_invitation_id: ::String,
972
+ share_invitation_action: ("ACCEPT" | "REJECT")
973
+ ) -> _UpdateShareInvitationResponseSuccess
974
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateShareInvitationResponseSuccess
975
+
976
+ interface _UpdateWorkloadResponseSuccess
977
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateWorkloadOutput]
978
+ def workload: () -> Types::Workload
979
+ end
980
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#update_workload-instance_method
981
+ def update_workload: (
982
+ workload_id: ::String,
983
+ ?workload_name: ::String,
984
+ ?description: ::String,
985
+ ?environment: ("PRODUCTION" | "PREPRODUCTION"),
986
+ ?account_ids: Array[::String],
987
+ ?aws_regions: Array[::String],
988
+ ?non_aws_regions: Array[::String],
989
+ ?pillar_priorities: Array[::String],
990
+ ?architectural_design: ::String,
991
+ ?review_owner: ::String,
992
+ ?is_review_owner_update_acknowledged: bool,
993
+ ?industry_type: ::String,
994
+ ?industry: ::String,
995
+ ?notes: ::String,
996
+ ?improvement_status: ("NOT_APPLICABLE" | "NOT_STARTED" | "IN_PROGRESS" | "COMPLETE" | "RISK_ACKNOWLEDGED"),
997
+ ?discovery_config: {
998
+ trusted_advisor_integration_status: ("ENABLED" | "DISABLED")?,
999
+ workload_resource_definition: Array[("WORKLOAD_METADATA" | "APP_REGISTRY")]?
1000
+ },
1001
+ ?applications: Array[::String],
1002
+ ?jira_configuration: {
1003
+ issue_management_status: ("ENABLED" | "DISABLED" | "INHERIT")?,
1004
+ issue_management_type: ("AUTO" | "MANUAL")?,
1005
+ jira_project_key: ::String?
1006
+ }
1007
+ ) -> _UpdateWorkloadResponseSuccess
1008
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateWorkloadResponseSuccess
1009
+
1010
+ interface _UpdateWorkloadShareResponseSuccess
1011
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateWorkloadShareOutput]
1012
+ def workload_id: () -> ::String
1013
+ def workload_share: () -> Types::WorkloadShare
1014
+ end
1015
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#update_workload_share-instance_method
1016
+ def update_workload_share: (
1017
+ share_id: ::String,
1018
+ workload_id: ::String,
1019
+ permission_type: ("READONLY" | "CONTRIBUTOR")
1020
+ ) -> _UpdateWorkloadShareResponseSuccess
1021
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateWorkloadShareResponseSuccess
1022
+
1023
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#upgrade_lens_review-instance_method
1024
+ def upgrade_lens_review: (
1025
+ workload_id: ::String,
1026
+ lens_alias: ::String,
1027
+ milestone_name: ::String,
1028
+ ?client_request_token: ::String
1029
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1030
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1031
+
1032
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#upgrade_profile_version-instance_method
1033
+ def upgrade_profile_version: (
1034
+ workload_id: ::String,
1035
+ profile_arn: ::String,
1036
+ ?milestone_name: ::String,
1037
+ ?client_request_token: ::String
1038
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1039
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1040
+
1041
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#upgrade_review_template_lens_review-instance_method
1042
+ def upgrade_review_template_lens_review: (
1043
+ template_arn: ::String,
1044
+ lens_alias: ::String,
1045
+ ?client_request_token: ::String
1046
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1047
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1048
+ end
1049
+ end
1050
+ end
1051
+