@aws-sdk/client-wellarchitected 3.296.0 → 3.297.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.
Files changed (60) hide show
  1. package/dist-types/WellArchitected.d.ts +43 -0
  2. package/dist-types/WellArchitectedClient.d.ts +24 -4
  3. package/dist-types/commands/AssociateLensesCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateLensShareCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateLensVersionCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateMilestoneCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateWorkloadCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateWorkloadShareCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteLensCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteLensShareCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteWorkloadCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteWorkloadShareCommand.d.ts +16 -0
  13. package/dist-types/commands/DisassociateLensesCommand.d.ts +16 -0
  14. package/dist-types/commands/ExportLensCommand.d.ts +16 -0
  15. package/dist-types/commands/GetAnswerCommand.d.ts +16 -0
  16. package/dist-types/commands/GetLensCommand.d.ts +16 -0
  17. package/dist-types/commands/GetLensReviewCommand.d.ts +16 -0
  18. package/dist-types/commands/GetLensReviewReportCommand.d.ts +16 -0
  19. package/dist-types/commands/GetLensVersionDifferenceCommand.d.ts +16 -0
  20. package/dist-types/commands/GetMilestoneCommand.d.ts +16 -0
  21. package/dist-types/commands/GetWorkloadCommand.d.ts +16 -0
  22. package/dist-types/commands/ImportLensCommand.d.ts +16 -0
  23. package/dist-types/commands/ListAnswersCommand.d.ts +16 -0
  24. package/dist-types/commands/ListCheckDetailsCommand.d.ts +16 -0
  25. package/dist-types/commands/ListCheckSummariesCommand.d.ts +16 -0
  26. package/dist-types/commands/ListLensReviewImprovementsCommand.d.ts +16 -0
  27. package/dist-types/commands/ListLensReviewsCommand.d.ts +16 -0
  28. package/dist-types/commands/ListLensSharesCommand.d.ts +16 -0
  29. package/dist-types/commands/ListLensesCommand.d.ts +16 -0
  30. package/dist-types/commands/ListMilestonesCommand.d.ts +16 -0
  31. package/dist-types/commands/ListNotificationsCommand.d.ts +16 -0
  32. package/dist-types/commands/ListShareInvitationsCommand.d.ts +16 -0
  33. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  34. package/dist-types/commands/ListWorkloadSharesCommand.d.ts +16 -0
  35. package/dist-types/commands/ListWorkloadsCommand.d.ts +16 -0
  36. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  37. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  38. package/dist-types/commands/UpdateAnswerCommand.d.ts +16 -0
  39. package/dist-types/commands/UpdateGlobalSettingsCommand.d.ts +16 -0
  40. package/dist-types/commands/UpdateLensReviewCommand.d.ts +16 -0
  41. package/dist-types/commands/UpdateShareInvitationCommand.d.ts +16 -0
  42. package/dist-types/commands/UpdateWorkloadCommand.d.ts +16 -0
  43. package/dist-types/commands/UpdateWorkloadShareCommand.d.ts +16 -0
  44. package/dist-types/commands/UpgradeLensReviewCommand.d.ts +16 -0
  45. package/dist-types/models/WellArchitectedServiceException.d.ts +2 -0
  46. package/dist-types/models/models_0.d.ts +248 -0
  47. package/dist-types/pagination/Interfaces.d.ts +3 -0
  48. package/dist-types/pagination/ListAnswersPaginator.d.ts +3 -0
  49. package/dist-types/pagination/ListCheckDetailsPaginator.d.ts +3 -0
  50. package/dist-types/pagination/ListCheckSummariesPaginator.d.ts +3 -0
  51. package/dist-types/pagination/ListLensReviewImprovementsPaginator.d.ts +3 -0
  52. package/dist-types/pagination/ListLensReviewsPaginator.d.ts +3 -0
  53. package/dist-types/pagination/ListLensSharesPaginator.d.ts +3 -0
  54. package/dist-types/pagination/ListLensesPaginator.d.ts +3 -0
  55. package/dist-types/pagination/ListMilestonesPaginator.d.ts +3 -0
  56. package/dist-types/pagination/ListNotificationsPaginator.d.ts +3 -0
  57. package/dist-types/pagination/ListShareInvitationsPaginator.d.ts +3 -0
  58. package/dist-types/pagination/ListWorkloadSharesPaginator.d.ts +3 -0
  59. package/dist-types/pagination/ListWorkloadsPaginator.d.ts +3 -0
  60. package/package.json +3 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListWorkloadSharesInput, ListWorkloadSharesOutput } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListWorkloadSharesCommand}.
8
10
  */
9
11
  export interface ListWorkloadSharesCommandInput extends ListWorkloadSharesInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListWorkloadSharesCommand}.
13
17
  */
14
18
  export interface ListWorkloadSharesCommandOutput extends ListWorkloadSharesOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>List the workload shares associated with the workload.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListWorkloadSharesCommandOutput extends ListWorkloadSharesOutpu
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListWorkloadSharesCommandInput - {@link ListWorkloadSharesCommandInput}
34
+ * @returns {@link ListWorkloadSharesCommandOutput}
28
35
  * @see {@link ListWorkloadSharesCommandInput} for command's `input` shape.
29
36
  * @see {@link ListWorkloadSharesCommandOutput} for command's `response` shape.
30
37
  * @see {@link WellArchitectedClientResolvedConfig | config} for WellArchitectedClient's `config` shape.
@@ -49,11 +56,20 @@ export interface ListWorkloadSharesCommandOutput extends ListWorkloadSharesOutpu
49
56
  export declare class ListWorkloadSharesCommand extends $Command<ListWorkloadSharesCommandInput, ListWorkloadSharesCommandOutput, WellArchitectedClientResolvedConfig> {
50
57
  readonly input: ListWorkloadSharesCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: ListWorkloadSharesCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WellArchitectedClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListWorkloadSharesCommandInput, ListWorkloadSharesCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListWorkloadsInput, ListWorkloadsOutput } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListWorkloadsCommand}.
8
10
  */
9
11
  export interface ListWorkloadsCommandInput extends ListWorkloadsInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListWorkloadsCommand}.
13
17
  */
14
18
  export interface ListWorkloadsCommandOutput extends ListWorkloadsOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>List workloads. Paginated.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListWorkloadsCommandOutput extends ListWorkloadsOutput, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListWorkloadsCommandInput - {@link ListWorkloadsCommandInput}
34
+ * @returns {@link ListWorkloadsCommandOutput}
28
35
  * @see {@link ListWorkloadsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListWorkloadsCommandOutput} for command's `response` shape.
30
37
  * @see {@link WellArchitectedClientResolvedConfig | config} for WellArchitectedClient's `config` shape.
@@ -46,11 +53,20 @@ export interface ListWorkloadsCommandOutput extends ListWorkloadsOutput, __Metad
46
53
  export declare class ListWorkloadsCommand extends $Command<ListWorkloadsCommandInput, ListWorkloadsCommandOutput, WellArchitectedClientResolvedConfig> {
47
54
  readonly input: ListWorkloadsCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: ListWorkloadsCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WellArchitectedClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListWorkloadsCommandInput, ListWorkloadsCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { TagResourceInput, TagResourceOutput } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Adds one or more tags to the specified resource.</p>
18
23
  * <note>
19
24
  * <p>The WorkloadArn parameter can be either a workload ARN or a custom lens ARN.</p>
@@ -28,6 +33,8 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
37
+ * @returns {@link TagResourceCommandOutput}
31
38
  * @see {@link TagResourceCommandInput} for command's `input` shape.
32
39
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
33
40
  * @see {@link WellArchitectedClientResolvedConfig | config} for WellArchitectedClient's `config` shape.
@@ -43,11 +50,20 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
43
50
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, WellArchitectedClientResolvedConfig> {
44
51
  readonly input: TagResourceCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: TagResourceCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WellArchitectedClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends UntagResourceOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes specified tags from a resource.</p>
18
23
  * <note>
19
24
  * <p>The WorkloadArn parameter can be either a workload ARN or a custom lens ARN.</p>
@@ -33,6 +38,8 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
33
38
  * const response = await client.send(command);
34
39
  * ```
35
40
  *
41
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
42
+ * @returns {@link UntagResourceCommandOutput}
36
43
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
37
44
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
38
45
  * @see {@link WellArchitectedClientResolvedConfig | config} for WellArchitectedClient's `config` shape.
@@ -48,11 +55,20 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
48
55
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, WellArchitectedClientResolvedConfig> {
49
56
  readonly input: UntagResourceCommandInput;
50
57
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
58
+ /**
59
+ * @public
60
+ */
51
61
  constructor(input: UntagResourceCommandInput);
52
62
  /**
53
63
  * @internal
54
64
  */
55
65
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WellArchitectedClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
66
+ /**
67
+ * @internal
68
+ */
56
69
  private serialize;
70
+ /**
71
+ * @internal
72
+ */
57
73
  private deserialize;
58
74
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UpdateAnswerInput, UpdateAnswerOutput } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateAnswerCommand}.
8
10
  */
9
11
  export interface UpdateAnswerCommandInput extends UpdateAnswerInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateAnswerCommand}.
13
17
  */
14
18
  export interface UpdateAnswerCommandOutput extends UpdateAnswerOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Update the answer to a specific question in a workload review.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateAnswerCommandOutput extends UpdateAnswerOutput, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateAnswerCommandInput - {@link UpdateAnswerCommandInput}
34
+ * @returns {@link UpdateAnswerCommandOutput}
28
35
  * @see {@link UpdateAnswerCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateAnswerCommandOutput} for command's `response` shape.
30
37
  * @see {@link WellArchitectedClientResolvedConfig | config} for WellArchitectedClient's `config` shape.
@@ -52,11 +59,20 @@ export interface UpdateAnswerCommandOutput extends UpdateAnswerOutput, __Metadat
52
59
  export declare class UpdateAnswerCommand extends $Command<UpdateAnswerCommandInput, UpdateAnswerCommandOutput, WellArchitectedClientResolvedConfig> {
53
60
  readonly input: UpdateAnswerCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: UpdateAnswerCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WellArchitectedClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateAnswerCommandInput, UpdateAnswerCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UpdateGlobalSettingsInput } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateGlobalSettingsCommand}.
8
10
  */
9
11
  export interface UpdateGlobalSettingsCommandInput extends UpdateGlobalSettingsInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateGlobalSettingsCommand}.
13
17
  */
14
18
  export interface UpdateGlobalSettingsCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates whether the Amazon Web Services account is opted into organization sharing features.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateGlobalSettingsCommandOutput extends __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateGlobalSettingsCommandInput - {@link UpdateGlobalSettingsCommandInput}
34
+ * @returns {@link UpdateGlobalSettingsCommandOutput}
28
35
  * @see {@link UpdateGlobalSettingsCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateGlobalSettingsCommandOutput} for command's `response` shape.
30
37
  * @see {@link WellArchitectedClientResolvedConfig | config} for WellArchitectedClient's `config` shape.
@@ -49,11 +56,20 @@ export interface UpdateGlobalSettingsCommandOutput extends __MetadataBearer {
49
56
  export declare class UpdateGlobalSettingsCommand extends $Command<UpdateGlobalSettingsCommandInput, UpdateGlobalSettingsCommandOutput, WellArchitectedClientResolvedConfig> {
50
57
  readonly input: UpdateGlobalSettingsCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: UpdateGlobalSettingsCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WellArchitectedClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateGlobalSettingsCommandInput, UpdateGlobalSettingsCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UpdateLensReviewInput, UpdateLensReviewOutput } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateLensReviewCommand}.
8
10
  */
9
11
  export interface UpdateLensReviewCommandInput extends UpdateLensReviewInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateLensReviewCommand}.
13
17
  */
14
18
  export interface UpdateLensReviewCommandOutput extends UpdateLensReviewOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Update lens review.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateLensReviewCommandOutput extends UpdateLensReviewOutput, _
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateLensReviewCommandInput - {@link UpdateLensReviewCommandInput}
34
+ * @returns {@link UpdateLensReviewCommandOutput}
28
35
  * @see {@link UpdateLensReviewCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateLensReviewCommandOutput} for command's `response` shape.
30
37
  * @see {@link WellArchitectedClientResolvedConfig | config} for WellArchitectedClient's `config` shape.
@@ -52,11 +59,20 @@ export interface UpdateLensReviewCommandOutput extends UpdateLensReviewOutput, _
52
59
  export declare class UpdateLensReviewCommand extends $Command<UpdateLensReviewCommandInput, UpdateLensReviewCommandOutput, WellArchitectedClientResolvedConfig> {
53
60
  readonly input: UpdateLensReviewCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: UpdateLensReviewCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WellArchitectedClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateLensReviewCommandInput, UpdateLensReviewCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UpdateShareInvitationInput, UpdateShareInvitationOutput } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateShareInvitationCommand}.
8
10
  */
9
11
  export interface UpdateShareInvitationCommandInput extends UpdateShareInvitationInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateShareInvitationCommand}.
13
17
  */
14
18
  export interface UpdateShareInvitationCommandOutput extends UpdateShareInvitationOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Update a workload or custom lens share invitation.</p>
18
23
  * <note>
19
24
  * <p>This API operation can be called independently of any resource. Previous documentation implied that a workload ARN must be specified.</p>
@@ -28,6 +33,8 @@ export interface UpdateShareInvitationCommandOutput extends UpdateShareInvitatio
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param UpdateShareInvitationCommandInput - {@link UpdateShareInvitationCommandInput}
37
+ * @returns {@link UpdateShareInvitationCommandOutput}
31
38
  * @see {@link UpdateShareInvitationCommandInput} for command's `input` shape.
32
39
  * @see {@link UpdateShareInvitationCommandOutput} for command's `response` shape.
33
40
  * @see {@link WellArchitectedClientResolvedConfig | config} for WellArchitectedClient's `config` shape.
@@ -55,11 +62,20 @@ export interface UpdateShareInvitationCommandOutput extends UpdateShareInvitatio
55
62
  export declare class UpdateShareInvitationCommand extends $Command<UpdateShareInvitationCommandInput, UpdateShareInvitationCommandOutput, WellArchitectedClientResolvedConfig> {
56
63
  readonly input: UpdateShareInvitationCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: UpdateShareInvitationCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WellArchitectedClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateShareInvitationCommandInput, UpdateShareInvitationCommandOutput>;
73
+ /**
74
+ * @internal
75
+ */
63
76
  private serialize;
77
+ /**
78
+ * @internal
79
+ */
64
80
  private deserialize;
65
81
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UpdateWorkloadInput, UpdateWorkloadOutput } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateWorkloadCommand}.
8
10
  */
9
11
  export interface UpdateWorkloadCommandInput extends UpdateWorkloadInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateWorkloadCommand}.
13
17
  */
14
18
  export interface UpdateWorkloadCommandOutput extends UpdateWorkloadOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Update an existing workload.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateWorkloadCommandOutput extends UpdateWorkloadOutput, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateWorkloadCommandInput - {@link UpdateWorkloadCommandInput}
34
+ * @returns {@link UpdateWorkloadCommandOutput}
28
35
  * @see {@link UpdateWorkloadCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateWorkloadCommandOutput} for command's `response` shape.
30
37
  * @see {@link WellArchitectedClientResolvedConfig | config} for WellArchitectedClient's `config` shape.
@@ -52,11 +59,20 @@ export interface UpdateWorkloadCommandOutput extends UpdateWorkloadOutput, __Met
52
59
  export declare class UpdateWorkloadCommand extends $Command<UpdateWorkloadCommandInput, UpdateWorkloadCommandOutput, WellArchitectedClientResolvedConfig> {
53
60
  readonly input: UpdateWorkloadCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: UpdateWorkloadCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WellArchitectedClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateWorkloadCommandInput, UpdateWorkloadCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UpdateWorkloadShareInput, UpdateWorkloadShareOutput } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateWorkloadShareCommand}.
8
10
  */
9
11
  export interface UpdateWorkloadShareCommandInput extends UpdateWorkloadShareInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateWorkloadShareCommand}.
13
17
  */
14
18
  export interface UpdateWorkloadShareCommandOutput extends UpdateWorkloadShareOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Update a workload share.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateWorkloadShareCommandOutput extends UpdateWorkloadShareOut
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateWorkloadShareCommandInput - {@link UpdateWorkloadShareCommandInput}
34
+ * @returns {@link UpdateWorkloadShareCommandOutput}
28
35
  * @see {@link UpdateWorkloadShareCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateWorkloadShareCommandOutput} for command's `response` shape.
30
37
  * @see {@link WellArchitectedClientResolvedConfig | config} for WellArchitectedClient's `config` shape.
@@ -52,11 +59,20 @@ export interface UpdateWorkloadShareCommandOutput extends UpdateWorkloadShareOut
52
59
  export declare class UpdateWorkloadShareCommand extends $Command<UpdateWorkloadShareCommandInput, UpdateWorkloadShareCommandOutput, WellArchitectedClientResolvedConfig> {
53
60
  readonly input: UpdateWorkloadShareCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: UpdateWorkloadShareCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WellArchitectedClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateWorkloadShareCommandInput, UpdateWorkloadShareCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UpgradeLensReviewInput } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpgradeLensReviewCommand}.
8
10
  */
9
11
  export interface UpgradeLensReviewCommandInput extends UpgradeLensReviewInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpgradeLensReviewCommand}.
13
17
  */
14
18
  export interface UpgradeLensReviewCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Upgrade lens review.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpgradeLensReviewCommandOutput extends __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpgradeLensReviewCommandInput - {@link UpgradeLensReviewCommandInput}
34
+ * @returns {@link UpgradeLensReviewCommandOutput}
28
35
  * @see {@link UpgradeLensReviewCommandInput} for command's `input` shape.
29
36
  * @see {@link UpgradeLensReviewCommandOutput} for command's `response` shape.
30
37
  * @see {@link WellArchitectedClientResolvedConfig | config} for WellArchitectedClient's `config` shape.
@@ -52,11 +59,20 @@ export interface UpgradeLensReviewCommandOutput extends __MetadataBearer {
52
59
  export declare class UpgradeLensReviewCommand extends $Command<UpgradeLensReviewCommandInput, UpgradeLensReviewCommandOutput, WellArchitectedClientResolvedConfig> {
53
60
  readonly input: UpgradeLensReviewCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: UpgradeLensReviewCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WellArchitectedClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpgradeLensReviewCommandInput, UpgradeLensReviewCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from WellArchitected service.
4
6
  */
5
7
  export declare class WellArchitectedServiceException extends __ServiceException {