@aws-sdk/client-wellarchitected 3.312.0 → 3.316.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.
@@ -43,454 +43,274 @@ import { UpdateWorkloadCommandInput, UpdateWorkloadCommandOutput } from "./comma
43
43
  import { UpdateWorkloadShareCommandInput, UpdateWorkloadShareCommandOutput } from "./commands/UpdateWorkloadShareCommand";
44
44
  import { UpgradeLensReviewCommandInput, UpgradeLensReviewCommandOutput } from "./commands/UpgradeLensReviewCommand";
45
45
  import { WellArchitectedClient } from "./WellArchitectedClient";
46
- /**
47
- * @public
48
- * <fullname>Well-Architected Tool</fullname>
49
- * <p>This is the <i>Well-Architected Tool API Reference</i>. The WA Tool API provides programmatic access to the
50
- * <a href="http://aws.amazon.com/well-architected-tool">Well-Architected Tool</a> in the
51
- * <a href="https://console.aws.amazon.com/wellarchitected">Amazon Web Services Management Console</a>. For information
52
- * about the Well-Architected Tool, see the
53
- * <a href="https://docs.aws.amazon.com/wellarchitected/latest/userguide/intro.html">Well-Architected Tool User Guide</a>.</p>
54
- */
55
- export declare class WellArchitected extends WellArchitectedClient {
56
- /**
57
- * @public
58
- * <p>Associate a lens to a workload.</p>
59
- * <p>Up to 10 lenses can be associated with a workload in a single API operation. A
60
- * maximum of 20 lenses can be associated with a workload.</p>
61
- * <note>
62
- * <p>
63
- * <b>Disclaimer</b>
64
- * </p>
65
- * <p>By accessing and/or applying custom lenses created by another Amazon Web Services user or account,
66
- * you acknowledge that custom lenses created by other users and shared with you are
67
- * Third Party Content as defined in the Amazon Web Services Customer Agreement. </p>
68
- * </note>
46
+ export interface WellArchitected {
47
+ /**
48
+ * @see {@link AssociateLensesCommand}
69
49
  */
70
50
  associateLenses(args: AssociateLensesCommandInput, options?: __HttpHandlerOptions): Promise<AssociateLensesCommandOutput>;
71
51
  associateLenses(args: AssociateLensesCommandInput, cb: (err: any, data?: AssociateLensesCommandOutput) => void): void;
72
52
  associateLenses(args: AssociateLensesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateLensesCommandOutput) => void): void;
73
53
  /**
74
- * @public
75
- * <p>Create a lens share.</p>
76
- * <p>The owner of a lens can share it with other Amazon Web Services accounts, users, an organization,
77
- * and organizational units (OUs) in the same Amazon Web Services Region.
78
- * Lenses provided by Amazon Web Services (Amazon Web Services Official Content) cannot be shared.</p>
79
- * <p>
80
- * Shared access to a lens is not removed until the lens invitation is deleted.</p>
81
- * <p>If you share a lens with an organization or OU, all accounts in the organization or OU
82
- * are granted access to the lens.</p>
83
- * <p>For more information, see <a href="https://docs.aws.amazon.com/wellarchitected/latest/userguide/lenses-sharing.html">Sharing a custom lens</a> in the
84
- * <i>Well-Architected Tool User Guide</i>.</p>
85
- * <note>
86
- * <p>
87
- * <b>Disclaimer</b>
88
- * </p>
89
- * <p>By sharing your custom lenses with other Amazon Web Services accounts,
90
- * you acknowledge that Amazon Web Services will make your custom lenses available to those
91
- * other accounts. Those other accounts may continue to access and use your
92
- * shared custom lenses even if you delete the custom lenses
93
- * from your own Amazon Web Services account or terminate
94
- * your Amazon Web Services account.</p>
95
- * </note>
54
+ * @see {@link CreateLensShareCommand}
96
55
  */
97
56
  createLensShare(args: CreateLensShareCommandInput, options?: __HttpHandlerOptions): Promise<CreateLensShareCommandOutput>;
98
57
  createLensShare(args: CreateLensShareCommandInput, cb: (err: any, data?: CreateLensShareCommandOutput) => void): void;
99
58
  createLensShare(args: CreateLensShareCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLensShareCommandOutput) => void): void;
100
59
  /**
101
- * @public
102
- * <p>Create a new lens version.</p>
103
- * <p>A lens can have up to 100 versions.</p>
104
- * <p>Use this operation to publish a new lens version after you have imported a lens. The <code>LensAlias</code>
105
- * is used to identify the lens to be published.
106
- * The owner of a lens can share the lens with other
107
- * Amazon Web Services accounts and users in the same Amazon Web Services Region. Only the owner of a lens can delete it.
108
- * </p>
60
+ * @see {@link CreateLensVersionCommand}
109
61
  */
110
62
  createLensVersion(args: CreateLensVersionCommandInput, options?: __HttpHandlerOptions): Promise<CreateLensVersionCommandOutput>;
111
63
  createLensVersion(args: CreateLensVersionCommandInput, cb: (err: any, data?: CreateLensVersionCommandOutput) => void): void;
112
64
  createLensVersion(args: CreateLensVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLensVersionCommandOutput) => void): void;
113
65
  /**
114
- * @public
115
- * <p>Create a milestone for an existing workload.</p>
66
+ * @see {@link CreateMilestoneCommand}
116
67
  */
117
68
  createMilestone(args: CreateMilestoneCommandInput, options?: __HttpHandlerOptions): Promise<CreateMilestoneCommandOutput>;
118
69
  createMilestone(args: CreateMilestoneCommandInput, cb: (err: any, data?: CreateMilestoneCommandOutput) => void): void;
119
70
  createMilestone(args: CreateMilestoneCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMilestoneCommandOutput) => void): void;
120
71
  /**
121
- * @public
122
- * <p>Create a new workload.</p>
123
- * <p>The owner of a workload can share the workload with other Amazon Web Services accounts, users,
124
- * an organization, and organizational units (OUs)
125
- * in the same Amazon Web Services Region. Only the owner of a workload can delete it.</p>
126
- * <p>For more information, see <a href="https://docs.aws.amazon.com/wellarchitected/latest/userguide/define-workload.html">Defining a Workload</a> in the
127
- * <i>Well-Architected Tool User Guide</i>.</p>
128
- * <important>
129
- * <p>Either <code>AwsRegions</code>, <code>NonAwsRegions</code>, or both must be specified when
130
- * creating a workload.</p>
131
- * <p>You also must specify <code>ReviewOwner</code>, even though the
132
- * parameter is listed as not being required in the following section.
133
- * </p>
134
- * </important>
72
+ * @see {@link CreateWorkloadCommand}
135
73
  */
136
74
  createWorkload(args: CreateWorkloadCommandInput, options?: __HttpHandlerOptions): Promise<CreateWorkloadCommandOutput>;
137
75
  createWorkload(args: CreateWorkloadCommandInput, cb: (err: any, data?: CreateWorkloadCommandOutput) => void): void;
138
76
  createWorkload(args: CreateWorkloadCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWorkloadCommandOutput) => void): void;
139
77
  /**
140
- * @public
141
- * <p>Create a workload share.</p>
142
- * <p>The owner of a workload can share it with other Amazon Web Services accounts and users in the same
143
- * Amazon Web Services Region. Shared access to a workload is not removed until the workload invitation is
144
- * deleted.</p>
145
- * <p>If you share a workload with an organization or OU, all accounts in the organization or OU
146
- * are granted access to the workload.</p>
147
- * <p>For more information, see <a href="https://docs.aws.amazon.com/wellarchitected/latest/userguide/workloads-sharing.html">Sharing a workload</a> in the
148
- * <i>Well-Architected Tool User Guide</i>.</p>
78
+ * @see {@link CreateWorkloadShareCommand}
149
79
  */
150
80
  createWorkloadShare(args: CreateWorkloadShareCommandInput, options?: __HttpHandlerOptions): Promise<CreateWorkloadShareCommandOutput>;
151
81
  createWorkloadShare(args: CreateWorkloadShareCommandInput, cb: (err: any, data?: CreateWorkloadShareCommandOutput) => void): void;
152
82
  createWorkloadShare(args: CreateWorkloadShareCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWorkloadShareCommandOutput) => void): void;
153
83
  /**
154
- * @public
155
- * <p>Delete an existing lens.</p>
156
- * <p>Only the owner of a lens can delete it. After the lens is deleted, Amazon Web Services accounts and users
157
- * that you shared the lens with can continue to use it, but they will no longer be able to apply it to new workloads.
158
- * </p>
159
- * <note>
160
- * <p>
161
- * <b>Disclaimer</b>
162
- * </p>
163
- * <p>By sharing your custom lenses with other Amazon Web Services accounts,
164
- * you acknowledge that Amazon Web Services will make your custom lenses available to those
165
- * other accounts. Those other accounts may continue to access and use your
166
- * shared custom lenses even if you delete the custom lenses
167
- * from your own Amazon Web Services account or terminate
168
- * your Amazon Web Services account.</p>
169
- * </note>
84
+ * @see {@link DeleteLensCommand}
170
85
  */
171
86
  deleteLens(args: DeleteLensCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLensCommandOutput>;
172
87
  deleteLens(args: DeleteLensCommandInput, cb: (err: any, data?: DeleteLensCommandOutput) => void): void;
173
88
  deleteLens(args: DeleteLensCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLensCommandOutput) => void): void;
174
89
  /**
175
- * @public
176
- * <p>Delete a lens share.</p>
177
- * <p>After the lens share is deleted, Amazon Web Services accounts, users, organizations,
178
- * and organizational units (OUs)
179
- * that you shared the lens with can continue to use it, but they will no longer be able to apply it to new workloads.</p>
180
- * <note>
181
- * <p>
182
- * <b>Disclaimer</b>
183
- * </p>
184
- * <p>By sharing your custom lenses with other Amazon Web Services accounts,
185
- * you acknowledge that Amazon Web Services will make your custom lenses available to those
186
- * other accounts. Those other accounts may continue to access and use your
187
- * shared custom lenses even if you delete the custom lenses
188
- * from your own Amazon Web Services account or terminate
189
- * your Amazon Web Services account.</p>
190
- * </note>
90
+ * @see {@link DeleteLensShareCommand}
191
91
  */
192
92
  deleteLensShare(args: DeleteLensShareCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLensShareCommandOutput>;
193
93
  deleteLensShare(args: DeleteLensShareCommandInput, cb: (err: any, data?: DeleteLensShareCommandOutput) => void): void;
194
94
  deleteLensShare(args: DeleteLensShareCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLensShareCommandOutput) => void): void;
195
95
  /**
196
- * @public
197
- * <p>Delete an existing workload.</p>
96
+ * @see {@link DeleteWorkloadCommand}
198
97
  */
199
98
  deleteWorkload(args: DeleteWorkloadCommandInput, options?: __HttpHandlerOptions): Promise<DeleteWorkloadCommandOutput>;
200
99
  deleteWorkload(args: DeleteWorkloadCommandInput, cb: (err: any, data?: DeleteWorkloadCommandOutput) => void): void;
201
100
  deleteWorkload(args: DeleteWorkloadCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteWorkloadCommandOutput) => void): void;
202
101
  /**
203
- * @public
204
- * <p>Delete a workload share.</p>
102
+ * @see {@link DeleteWorkloadShareCommand}
205
103
  */
206
104
  deleteWorkloadShare(args: DeleteWorkloadShareCommandInput, options?: __HttpHandlerOptions): Promise<DeleteWorkloadShareCommandOutput>;
207
105
  deleteWorkloadShare(args: DeleteWorkloadShareCommandInput, cb: (err: any, data?: DeleteWorkloadShareCommandOutput) => void): void;
208
106
  deleteWorkloadShare(args: DeleteWorkloadShareCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteWorkloadShareCommandOutput) => void): void;
209
107
  /**
210
- * @public
211
- * <p>Disassociate a lens from a workload.</p>
212
- * <p>Up to 10 lenses can be disassociated from a workload in a single API operation.</p>
213
- * <note>
214
- * <p>The Amazon Web Services Well-Architected Framework lens (<code>wellarchitected</code>) cannot be
215
- * removed from a workload.</p>
216
- * </note>
108
+ * @see {@link DisassociateLensesCommand}
217
109
  */
218
110
  disassociateLenses(args: DisassociateLensesCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateLensesCommandOutput>;
219
111
  disassociateLenses(args: DisassociateLensesCommandInput, cb: (err: any, data?: DisassociateLensesCommandOutput) => void): void;
220
112
  disassociateLenses(args: DisassociateLensesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateLensesCommandOutput) => void): void;
221
113
  /**
222
- * @public
223
- * <p>Export an existing lens.</p>
224
- * <p>Only the owner of a lens can export it. Lenses provided by Amazon Web Services (Amazon Web Services Official Content)
225
- * cannot be exported.</p>
226
- * <p>Lenses are defined in JSON. For more information, see <a href="https://docs.aws.amazon.com/wellarchitected/latest/userguide/lenses-format-specification.html">JSON format specification</a>
227
- * in the <i>Well-Architected Tool User Guide</i>.</p>
228
- * <note>
229
- * <p>
230
- * <b>Disclaimer</b>
231
- * </p>
232
- * <p>Do not include or gather personal identifiable information (PII) of end users or
233
- * other identifiable individuals in or via your custom lenses. If your custom
234
- * lens or those shared with you and used in your account do include or collect
235
- * PII you are responsible for: ensuring that the included PII is processed in accordance
236
- * with applicable law, providing adequate privacy notices, and obtaining necessary
237
- * consents for processing such data.</p>
238
- * </note>
114
+ * @see {@link ExportLensCommand}
239
115
  */
240
116
  exportLens(args: ExportLensCommandInput, options?: __HttpHandlerOptions): Promise<ExportLensCommandOutput>;
241
117
  exportLens(args: ExportLensCommandInput, cb: (err: any, data?: ExportLensCommandOutput) => void): void;
242
118
  exportLens(args: ExportLensCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExportLensCommandOutput) => void): void;
243
119
  /**
244
- * @public
245
- * <p>Get the answer to a specific question in a workload review.</p>
120
+ * @see {@link GetAnswerCommand}
246
121
  */
247
122
  getAnswer(args: GetAnswerCommandInput, options?: __HttpHandlerOptions): Promise<GetAnswerCommandOutput>;
248
123
  getAnswer(args: GetAnswerCommandInput, cb: (err: any, data?: GetAnswerCommandOutput) => void): void;
249
124
  getAnswer(args: GetAnswerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAnswerCommandOutput) => void): void;
250
125
  /**
251
- * @public
252
- * <p>Get a consolidated report of your workloads.</p>
253
- * <p>You can optionally choose to include workloads that have been shared with you.</p>
126
+ * @see {@link GetConsolidatedReportCommand}
254
127
  */
255
128
  getConsolidatedReport(args: GetConsolidatedReportCommandInput, options?: __HttpHandlerOptions): Promise<GetConsolidatedReportCommandOutput>;
256
129
  getConsolidatedReport(args: GetConsolidatedReportCommandInput, cb: (err: any, data?: GetConsolidatedReportCommandOutput) => void): void;
257
130
  getConsolidatedReport(args: GetConsolidatedReportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConsolidatedReportCommandOutput) => void): void;
258
131
  /**
259
- * @public
260
- * <p>Get an existing lens.</p>
132
+ * @see {@link GetLensCommand}
261
133
  */
262
134
  getLens(args: GetLensCommandInput, options?: __HttpHandlerOptions): Promise<GetLensCommandOutput>;
263
135
  getLens(args: GetLensCommandInput, cb: (err: any, data?: GetLensCommandOutput) => void): void;
264
136
  getLens(args: GetLensCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLensCommandOutput) => void): void;
265
137
  /**
266
- * @public
267
- * <p>Get lens review.</p>
138
+ * @see {@link GetLensReviewCommand}
268
139
  */
269
140
  getLensReview(args: GetLensReviewCommandInput, options?: __HttpHandlerOptions): Promise<GetLensReviewCommandOutput>;
270
141
  getLensReview(args: GetLensReviewCommandInput, cb: (err: any, data?: GetLensReviewCommandOutput) => void): void;
271
142
  getLensReview(args: GetLensReviewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLensReviewCommandOutput) => void): void;
272
143
  /**
273
- * @public
274
- * <p>Get lens review report.</p>
144
+ * @see {@link GetLensReviewReportCommand}
275
145
  */
276
146
  getLensReviewReport(args: GetLensReviewReportCommandInput, options?: __HttpHandlerOptions): Promise<GetLensReviewReportCommandOutput>;
277
147
  getLensReviewReport(args: GetLensReviewReportCommandInput, cb: (err: any, data?: GetLensReviewReportCommandOutput) => void): void;
278
148
  getLensReviewReport(args: GetLensReviewReportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLensReviewReportCommandOutput) => void): void;
279
149
  /**
280
- * @public
281
- * <p>Get lens version differences.</p>
150
+ * @see {@link GetLensVersionDifferenceCommand}
282
151
  */
283
152
  getLensVersionDifference(args: GetLensVersionDifferenceCommandInput, options?: __HttpHandlerOptions): Promise<GetLensVersionDifferenceCommandOutput>;
284
153
  getLensVersionDifference(args: GetLensVersionDifferenceCommandInput, cb: (err: any, data?: GetLensVersionDifferenceCommandOutput) => void): void;
285
154
  getLensVersionDifference(args: GetLensVersionDifferenceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLensVersionDifferenceCommandOutput) => void): void;
286
155
  /**
287
- * @public
288
- * <p>Get a milestone for an existing workload.</p>
156
+ * @see {@link GetMilestoneCommand}
289
157
  */
290
158
  getMilestone(args: GetMilestoneCommandInput, options?: __HttpHandlerOptions): Promise<GetMilestoneCommandOutput>;
291
159
  getMilestone(args: GetMilestoneCommandInput, cb: (err: any, data?: GetMilestoneCommandOutput) => void): void;
292
160
  getMilestone(args: GetMilestoneCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMilestoneCommandOutput) => void): void;
293
161
  /**
294
- * @public
295
- * <p>Get an existing workload.</p>
162
+ * @see {@link GetWorkloadCommand}
296
163
  */
297
164
  getWorkload(args: GetWorkloadCommandInput, options?: __HttpHandlerOptions): Promise<GetWorkloadCommandOutput>;
298
165
  getWorkload(args: GetWorkloadCommandInput, cb: (err: any, data?: GetWorkloadCommandOutput) => void): void;
299
166
  getWorkload(args: GetWorkloadCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetWorkloadCommandOutput) => void): void;
300
167
  /**
301
- * @public
302
- * <p>Import a new custom lens or update an existing custom lens.</p>
303
- * <p>To update an existing custom lens, specify its ARN as the <code>LensAlias</code>. If
304
- * no ARN is specified, a new custom lens is created.</p>
305
- * <p>The new or updated lens will have a status of <code>DRAFT</code>. The lens cannot be
306
- * applied to workloads or shared with other Amazon Web Services accounts until it's
307
- * published with <a>CreateLensVersion</a>.</p>
308
- * <p>Lenses are defined in JSON. For more information, see <a href="https://docs.aws.amazon.com/wellarchitected/latest/userguide/lenses-format-specification.html">JSON format specification</a>
309
- * in the <i>Well-Architected Tool User Guide</i>.</p>
310
- * <p>A custom lens cannot exceed 500 KB in size.</p>
311
- * <note>
312
- * <p>
313
- * <b>Disclaimer</b>
314
- * </p>
315
- * <p>Do not include or gather personal identifiable information (PII) of end users or
316
- * other identifiable individuals in or via your custom lenses. If your custom
317
- * lens or those shared with you and used in your account do include or collect
318
- * PII you are responsible for: ensuring that the included PII is processed in accordance
319
- * with applicable law, providing adequate privacy notices, and obtaining necessary
320
- * consents for processing such data.</p>
321
- * </note>
168
+ * @see {@link ImportLensCommand}
322
169
  */
323
170
  importLens(args: ImportLensCommandInput, options?: __HttpHandlerOptions): Promise<ImportLensCommandOutput>;
324
171
  importLens(args: ImportLensCommandInput, cb: (err: any, data?: ImportLensCommandOutput) => void): void;
325
172
  importLens(args: ImportLensCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportLensCommandOutput) => void): void;
326
173
  /**
327
- * @public
328
- * <p>List of answers for a particular workload and lens.</p>
174
+ * @see {@link ListAnswersCommand}
329
175
  */
330
176
  listAnswers(args: ListAnswersCommandInput, options?: __HttpHandlerOptions): Promise<ListAnswersCommandOutput>;
331
177
  listAnswers(args: ListAnswersCommandInput, cb: (err: any, data?: ListAnswersCommandOutput) => void): void;
332
178
  listAnswers(args: ListAnswersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAnswersCommandOutput) => void): void;
333
179
  /**
334
- * @public
335
- * <p>List of Trusted Advisor check details by account related to the workload.</p>
180
+ * @see {@link ListCheckDetailsCommand}
336
181
  */
337
182
  listCheckDetails(args: ListCheckDetailsCommandInput, options?: __HttpHandlerOptions): Promise<ListCheckDetailsCommandOutput>;
338
183
  listCheckDetails(args: ListCheckDetailsCommandInput, cb: (err: any, data?: ListCheckDetailsCommandOutput) => void): void;
339
184
  listCheckDetails(args: ListCheckDetailsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCheckDetailsCommandOutput) => void): void;
340
185
  /**
341
- * @public
342
- * <p>List of Trusted Advisor checks summarized for all accounts related to the workload.</p>
186
+ * @see {@link ListCheckSummariesCommand}
343
187
  */
344
188
  listCheckSummaries(args: ListCheckSummariesCommandInput, options?: __HttpHandlerOptions): Promise<ListCheckSummariesCommandOutput>;
345
189
  listCheckSummaries(args: ListCheckSummariesCommandInput, cb: (err: any, data?: ListCheckSummariesCommandOutput) => void): void;
346
190
  listCheckSummaries(args: ListCheckSummariesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCheckSummariesCommandOutput) => void): void;
347
191
  /**
348
- * @public
349
- * <p>List the available lenses.</p>
192
+ * @see {@link ListLensesCommand}
350
193
  */
351
194
  listLenses(args: ListLensesCommandInput, options?: __HttpHandlerOptions): Promise<ListLensesCommandOutput>;
352
195
  listLenses(args: ListLensesCommandInput, cb: (err: any, data?: ListLensesCommandOutput) => void): void;
353
196
  listLenses(args: ListLensesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLensesCommandOutput) => void): void;
354
197
  /**
355
- * @public
356
- * <p>List lens review improvements.</p>
198
+ * @see {@link ListLensReviewImprovementsCommand}
357
199
  */
358
200
  listLensReviewImprovements(args: ListLensReviewImprovementsCommandInput, options?: __HttpHandlerOptions): Promise<ListLensReviewImprovementsCommandOutput>;
359
201
  listLensReviewImprovements(args: ListLensReviewImprovementsCommandInput, cb: (err: any, data?: ListLensReviewImprovementsCommandOutput) => void): void;
360
202
  listLensReviewImprovements(args: ListLensReviewImprovementsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLensReviewImprovementsCommandOutput) => void): void;
361
203
  /**
362
- * @public
363
- * <p>List lens reviews for a particular workload.</p>
204
+ * @see {@link ListLensReviewsCommand}
364
205
  */
365
206
  listLensReviews(args: ListLensReviewsCommandInput, options?: __HttpHandlerOptions): Promise<ListLensReviewsCommandOutput>;
366
207
  listLensReviews(args: ListLensReviewsCommandInput, cb: (err: any, data?: ListLensReviewsCommandOutput) => void): void;
367
208
  listLensReviews(args: ListLensReviewsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLensReviewsCommandOutput) => void): void;
368
209
  /**
369
- * @public
370
- * <p>List the lens shares associated with the lens.</p>
210
+ * @see {@link ListLensSharesCommand}
371
211
  */
372
212
  listLensShares(args: ListLensSharesCommandInput, options?: __HttpHandlerOptions): Promise<ListLensSharesCommandOutput>;
373
213
  listLensShares(args: ListLensSharesCommandInput, cb: (err: any, data?: ListLensSharesCommandOutput) => void): void;
374
214
  listLensShares(args: ListLensSharesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLensSharesCommandOutput) => void): void;
375
215
  /**
376
- * @public
377
- * <p>List all milestones for an existing workload.</p>
216
+ * @see {@link ListMilestonesCommand}
378
217
  */
379
218
  listMilestones(args: ListMilestonesCommandInput, options?: __HttpHandlerOptions): Promise<ListMilestonesCommandOutput>;
380
219
  listMilestones(args: ListMilestonesCommandInput, cb: (err: any, data?: ListMilestonesCommandOutput) => void): void;
381
220
  listMilestones(args: ListMilestonesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMilestonesCommandOutput) => void): void;
382
221
  /**
383
- * @public
384
- * <p>List lens notifications.</p>
222
+ * @see {@link ListNotificationsCommand}
385
223
  */
386
224
  listNotifications(args: ListNotificationsCommandInput, options?: __HttpHandlerOptions): Promise<ListNotificationsCommandOutput>;
387
225
  listNotifications(args: ListNotificationsCommandInput, cb: (err: any, data?: ListNotificationsCommandOutput) => void): void;
388
226
  listNotifications(args: ListNotificationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListNotificationsCommandOutput) => void): void;
389
227
  /**
390
- * @public
391
- * <p>List the workload invitations.</p>
228
+ * @see {@link ListShareInvitationsCommand}
392
229
  */
393
230
  listShareInvitations(args: ListShareInvitationsCommandInput, options?: __HttpHandlerOptions): Promise<ListShareInvitationsCommandOutput>;
394
231
  listShareInvitations(args: ListShareInvitationsCommandInput, cb: (err: any, data?: ListShareInvitationsCommandOutput) => void): void;
395
232
  listShareInvitations(args: ListShareInvitationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListShareInvitationsCommandOutput) => void): void;
396
233
  /**
397
- * @public
398
- * <p>List the tags for a resource.</p>
399
- * <note>
400
- * <p>The WorkloadArn parameter can be either a workload ARN or a custom lens ARN.</p>
401
- * </note>
234
+ * @see {@link ListTagsForResourceCommand}
402
235
  */
403
236
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
404
237
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
405
238
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
406
239
  /**
407
- * @public
408
- * <p>Paginated list of workloads.</p>
240
+ * @see {@link ListWorkloadsCommand}
409
241
  */
410
242
  listWorkloads(args: ListWorkloadsCommandInput, options?: __HttpHandlerOptions): Promise<ListWorkloadsCommandOutput>;
411
243
  listWorkloads(args: ListWorkloadsCommandInput, cb: (err: any, data?: ListWorkloadsCommandOutput) => void): void;
412
244
  listWorkloads(args: ListWorkloadsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWorkloadsCommandOutput) => void): void;
413
245
  /**
414
- * @public
415
- * <p>List the workload shares associated with the workload.</p>
246
+ * @see {@link ListWorkloadSharesCommand}
416
247
  */
417
248
  listWorkloadShares(args: ListWorkloadSharesCommandInput, options?: __HttpHandlerOptions): Promise<ListWorkloadSharesCommandOutput>;
418
249
  listWorkloadShares(args: ListWorkloadSharesCommandInput, cb: (err: any, data?: ListWorkloadSharesCommandOutput) => void): void;
419
250
  listWorkloadShares(args: ListWorkloadSharesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWorkloadSharesCommandOutput) => void): void;
420
251
  /**
421
- * @public
422
- * <p>Adds one or more tags to the specified resource.</p>
423
- * <note>
424
- * <p>The WorkloadArn parameter can be either a workload ARN or a custom lens ARN.</p>
425
- * </note>
252
+ * @see {@link TagResourceCommand}
426
253
  */
427
254
  tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
428
255
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
429
256
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
430
257
  /**
431
- * @public
432
- * <p>Deletes specified tags from a resource.</p>
433
- * <note>
434
- * <p>The WorkloadArn parameter can be either a workload ARN or a custom lens ARN.</p>
435
- * </note>
436
- * <p>To specify multiple tags, use separate <b>tagKeys</b> parameters, for example:</p>
437
- * <p>
438
- * <code>DELETE /tags/WorkloadArn?tagKeys=key1&tagKeys=key2</code>
439
- * </p>
258
+ * @see {@link UntagResourceCommand}
440
259
  */
441
260
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
442
261
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
443
262
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
444
263
  /**
445
- * @public
446
- * <p>Update the answer to a specific question in a workload review.</p>
264
+ * @see {@link UpdateAnswerCommand}
447
265
  */
448
266
  updateAnswer(args: UpdateAnswerCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAnswerCommandOutput>;
449
267
  updateAnswer(args: UpdateAnswerCommandInput, cb: (err: any, data?: UpdateAnswerCommandOutput) => void): void;
450
268
  updateAnswer(args: UpdateAnswerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAnswerCommandOutput) => void): void;
451
269
  /**
452
- * @public
453
- * <p>Updates whether the Amazon Web Services account is opted into organization sharing features.</p>
270
+ * @see {@link UpdateGlobalSettingsCommand}
454
271
  */
455
272
  updateGlobalSettings(args: UpdateGlobalSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateGlobalSettingsCommandOutput>;
456
273
  updateGlobalSettings(args: UpdateGlobalSettingsCommandInput, cb: (err: any, data?: UpdateGlobalSettingsCommandOutput) => void): void;
457
274
  updateGlobalSettings(args: UpdateGlobalSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateGlobalSettingsCommandOutput) => void): void;
458
275
  /**
459
- * @public
460
- * <p>Update lens review for a particular workload.</p>
276
+ * @see {@link UpdateLensReviewCommand}
461
277
  */
462
278
  updateLensReview(args: UpdateLensReviewCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLensReviewCommandOutput>;
463
279
  updateLensReview(args: UpdateLensReviewCommandInput, cb: (err: any, data?: UpdateLensReviewCommandOutput) => void): void;
464
280
  updateLensReview(args: UpdateLensReviewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLensReviewCommandOutput) => void): void;
465
281
  /**
466
- * @public
467
- * <p>Update a workload or custom lens share invitation.</p>
468
- * <note>
469
- * <p>This API operation can be called independently of any resource. Previous documentation implied that a workload ARN must be specified.</p>
470
- * </note>
282
+ * @see {@link UpdateShareInvitationCommand}
471
283
  */
472
284
  updateShareInvitation(args: UpdateShareInvitationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateShareInvitationCommandOutput>;
473
285
  updateShareInvitation(args: UpdateShareInvitationCommandInput, cb: (err: any, data?: UpdateShareInvitationCommandOutput) => void): void;
474
286
  updateShareInvitation(args: UpdateShareInvitationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateShareInvitationCommandOutput) => void): void;
475
287
  /**
476
- * @public
477
- * <p>Update an existing workload.</p>
288
+ * @see {@link UpdateWorkloadCommand}
478
289
  */
479
290
  updateWorkload(args: UpdateWorkloadCommandInput, options?: __HttpHandlerOptions): Promise<UpdateWorkloadCommandOutput>;
480
291
  updateWorkload(args: UpdateWorkloadCommandInput, cb: (err: any, data?: UpdateWorkloadCommandOutput) => void): void;
481
292
  updateWorkload(args: UpdateWorkloadCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateWorkloadCommandOutput) => void): void;
482
293
  /**
483
- * @public
484
- * <p>Update a workload share.</p>
294
+ * @see {@link UpdateWorkloadShareCommand}
485
295
  */
486
296
  updateWorkloadShare(args: UpdateWorkloadShareCommandInput, options?: __HttpHandlerOptions): Promise<UpdateWorkloadShareCommandOutput>;
487
297
  updateWorkloadShare(args: UpdateWorkloadShareCommandInput, cb: (err: any, data?: UpdateWorkloadShareCommandOutput) => void): void;
488
298
  updateWorkloadShare(args: UpdateWorkloadShareCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateWorkloadShareCommandOutput) => void): void;
489
299
  /**
490
- * @public
491
- * <p>Upgrade lens review for a particular workload.</p>
300
+ * @see {@link UpgradeLensReviewCommand}
492
301
  */
493
302
  upgradeLensReview(args: UpgradeLensReviewCommandInput, options?: __HttpHandlerOptions): Promise<UpgradeLensReviewCommandOutput>;
494
303
  upgradeLensReview(args: UpgradeLensReviewCommandInput, cb: (err: any, data?: UpgradeLensReviewCommandOutput) => void): void;
495
304
  upgradeLensReview(args: UpgradeLensReviewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpgradeLensReviewCommandOutput) => void): void;
496
305
  }
306
+ /**
307
+ * @public
308
+ * <fullname>Well-Architected Tool</fullname>
309
+ * <p>This is the <i>Well-Architected Tool API Reference</i>. The WA Tool API provides programmatic access to the
310
+ * <a href="http://aws.amazon.com/well-architected-tool">Well-Architected Tool</a> in the
311
+ * <a href="https://console.aws.amazon.com/wellarchitected">Amazon Web Services Management Console</a>. For information
312
+ * about the Well-Architected Tool, see the
313
+ * <a href="https://docs.aws.amazon.com/wellarchitected/latest/userguide/intro.html">Well-Architected Tool User Guide</a>.</p>
314
+ */
315
+ export declare class WellArchitected extends WellArchitectedClient implements WellArchitected {
316
+ }
@@ -172,7 +172,7 @@ import {
172
172
  UpgradeLensReviewCommandOutput,
173
173
  } from "./commands/UpgradeLensReviewCommand";
174
174
  import { WellArchitectedClient } from "./WellArchitectedClient";
175
- export declare class WellArchitected extends WellArchitectedClient {
175
+ export interface WellArchitected {
176
176
  associateLenses(
177
177
  args: AssociateLensesCommandInput,
178
178
  options?: __HttpHandlerOptions
@@ -733,3 +733,6 @@ export declare class WellArchitected extends WellArchitectedClient {
733
733
  cb: (err: any, data?: UpgradeLensReviewCommandOutput) => void
734
734
  ): void;
735
735
  }
736
+ export declare class WellArchitected
737
+ extends WellArchitectedClient
738
+ implements WellArchitected {}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-wellarchitected",
3
3
  "description": "AWS SDK for JavaScript Wellarchitected Client for Node.js, Browser and React Native",
4
- "version": "3.312.0",
4
+ "version": "3.316.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.312.0",
24
+ "@aws-sdk/client-sts": "3.316.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.310.0",
26
+ "@aws-sdk/credential-provider-node": "3.316.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.310.0",
28
28
  "@aws-sdk/hash-node": "3.310.0",
29
29
  "@aws-sdk/invalid-dependency": "3.310.0",
@@ -40,14 +40,14 @@
40
40
  "@aws-sdk/node-config-provider": "3.310.0",
41
41
  "@aws-sdk/node-http-handler": "3.310.0",
42
42
  "@aws-sdk/protocol-http": "3.310.0",
43
- "@aws-sdk/smithy-client": "3.310.0",
43
+ "@aws-sdk/smithy-client": "3.316.0",
44
44
  "@aws-sdk/types": "3.310.0",
45
45
  "@aws-sdk/url-parser": "3.310.0",
46
46
  "@aws-sdk/util-base64": "3.310.0",
47
47
  "@aws-sdk/util-body-length-browser": "3.310.0",
48
48
  "@aws-sdk/util-body-length-node": "3.310.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.310.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.310.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.316.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.316.0",
51
51
  "@aws-sdk/util-endpoints": "3.310.0",
52
52
  "@aws-sdk/util-retry": "3.310.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.310.0",