@aws-sdk/client-wellarchitected 3.552.0 → 3.556.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 (36) hide show
  1. package/README.md +16 -0
  2. package/dist-cjs/index.js +207 -9
  3. package/dist-es/WellArchitected.js +4 -0
  4. package/dist-es/commands/GetGlobalSettingsCommand.js +24 -0
  5. package/dist-es/commands/UpdateIntegrationCommand.js +24 -0
  6. package/dist-es/commands/index.js +2 -0
  7. package/dist-es/models/models_0.js +27 -4
  8. package/dist-es/protocols/Aws_restJson1.js +129 -4
  9. package/dist-types/WellArchitected.d.ts +15 -0
  10. package/dist-types/WellArchitectedClient.d.ts +4 -2
  11. package/dist-types/commands/CreateWorkloadCommand.d.ts +5 -0
  12. package/dist-types/commands/GetAnswerCommand.d.ts +4 -0
  13. package/dist-types/commands/GetGlobalSettingsCommand.d.ts +78 -0
  14. package/dist-types/commands/GetLensReviewCommand.d.ts +10 -0
  15. package/dist-types/commands/GetMilestoneCommand.d.ts +6 -0
  16. package/dist-types/commands/GetWorkloadCommand.d.ts +6 -0
  17. package/dist-types/commands/ListAnswersCommand.d.ts +4 -0
  18. package/dist-types/commands/ListLensReviewImprovementsCommand.d.ts +5 -1
  19. package/dist-types/commands/UpdateAnswerCommand.d.ts +4 -0
  20. package/dist-types/commands/UpdateGlobalSettingsCommand.d.ts +7 -1
  21. package/dist-types/commands/UpdateIntegrationCommand.d.ts +77 -0
  22. package/dist-types/commands/UpdateLensReviewCommand.d.ts +20 -0
  23. package/dist-types/commands/UpdateWorkloadCommand.d.ts +11 -0
  24. package/dist-types/commands/UpgradeLensReviewCommand.d.ts +3 -0
  25. package/dist-types/commands/UpgradeProfileVersionCommand.d.ts +3 -0
  26. package/dist-types/commands/index.d.ts +2 -0
  27. package/dist-types/models/models_0.d.ts +330 -12
  28. package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
  29. package/dist-types/ts3.4/WellArchitected.d.ts +35 -0
  30. package/dist-types/ts3.4/WellArchitectedClient.d.ts +12 -0
  31. package/dist-types/ts3.4/commands/GetGlobalSettingsCommand.d.ts +35 -0
  32. package/dist-types/ts3.4/commands/UpdateIntegrationCommand.d.ts +33 -0
  33. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  34. package/dist-types/ts3.4/models/models_0.d.ts +96 -6
  35. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
  36. package/package.json +4 -4
@@ -66,6 +66,11 @@ declare const UpdateWorkloadCommand_base: {
66
66
  * Applications: [ // WorkloadApplications
67
67
  * "STRING_VALUE",
68
68
  * ],
69
+ * JiraConfiguration: { // WorkloadJiraConfigurationInput
70
+ * IssueManagementStatus: "ENABLED" || "DISABLED" || "INHERIT",
71
+ * IssueManagementType: "AUTO" || "MANUAL",
72
+ * JiraProjectKey: "STRING_VALUE",
73
+ * },
69
74
  * };
70
75
  * const command = new UpdateWorkloadCommand(input);
71
76
  * const response = await client.send(command);
@@ -126,6 +131,12 @@ declare const UpdateWorkloadCommand_base: {
126
131
  * // PrioritizedRiskCounts: {
127
132
  * // "<keys>": Number("int"),
128
133
  * // },
134
+ * // JiraConfiguration: { // WorkloadJiraConfigurationOutput
135
+ * // IssueManagementStatus: "ENABLED" || "DISABLED" || "INHERIT",
136
+ * // IssueManagementType: "AUTO" || "MANUAL",
137
+ * // JiraProjectKey: "STRING_VALUE",
138
+ * // StatusMessage: "STRING_VALUE",
139
+ * // },
129
140
  * // },
130
141
  * // };
131
142
  *
@@ -63,6 +63,9 @@ declare const UpgradeLensReviewCommand_base: {
63
63
  * @throws {@link ResourceNotFoundException} (client fault)
64
64
  * <p>The requested resource was not found.</p>
65
65
  *
66
+ * @throws {@link ServiceQuotaExceededException} (client fault)
67
+ * <p>The user has reached their resource quota.</p>
68
+ *
66
69
  * @throws {@link ThrottlingException} (client fault)
67
70
  * <p>Request was denied due to request throttling.</p>
68
71
  *
@@ -63,6 +63,9 @@ declare const UpgradeProfileVersionCommand_base: {
63
63
  * @throws {@link ResourceNotFoundException} (client fault)
64
64
  * <p>The requested resource was not found.</p>
65
65
  *
66
+ * @throws {@link ServiceQuotaExceededException} (client fault)
67
+ * <p>The user has reached their resource quota.</p>
68
+ *
66
69
  * @throws {@link ThrottlingException} (client fault)
67
70
  * <p>Request was denied due to request throttling.</p>
68
71
  *
@@ -22,6 +22,7 @@ export * from "./DisassociateProfilesCommand";
22
22
  export * from "./ExportLensCommand";
23
23
  export * from "./GetAnswerCommand";
24
24
  export * from "./GetConsolidatedReportCommand";
25
+ export * from "./GetGlobalSettingsCommand";
25
26
  export * from "./GetLensCommand";
26
27
  export * from "./GetLensReviewCommand";
27
28
  export * from "./GetLensReviewReportCommand";
@@ -57,6 +58,7 @@ export * from "./TagResourceCommand";
57
58
  export * from "./UntagResourceCommand";
58
59
  export * from "./UpdateAnswerCommand";
59
60
  export * from "./UpdateGlobalSettingsCommand";
61
+ export * from "./UpdateIntegrationCommand";
60
62
  export * from "./UpdateLensReviewCommand";
61
63
  export * from "./UpdateProfileCommand";
62
64
  export * from "./UpdateReviewTemplateAnswerCommand";
@@ -17,6 +17,115 @@ export declare class AccessDeniedException extends __BaseException {
17
17
  */
18
18
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
19
19
  }
20
+ /**
21
+ * @public
22
+ * @enum
23
+ */
24
+ export declare const IntegrationStatusInput: {
25
+ readonly NOT_CONFIGURED: "NOT_CONFIGURED";
26
+ };
27
+ /**
28
+ * @public
29
+ */
30
+ export type IntegrationStatusInput = (typeof IntegrationStatusInput)[keyof typeof IntegrationStatusInput];
31
+ /**
32
+ * @public
33
+ * @enum
34
+ */
35
+ export declare const AccountJiraIssueManagementStatus: {
36
+ readonly DISABLED: "DISABLED";
37
+ readonly ENABLED: "ENABLED";
38
+ };
39
+ /**
40
+ * @public
41
+ */
42
+ export type AccountJiraIssueManagementStatus = (typeof AccountJiraIssueManagementStatus)[keyof typeof AccountJiraIssueManagementStatus];
43
+ /**
44
+ * @public
45
+ * @enum
46
+ */
47
+ export declare const IssueManagementType: {
48
+ readonly AUTO: "AUTO";
49
+ readonly MANUAL: "MANUAL";
50
+ };
51
+ /**
52
+ * @public
53
+ */
54
+ export type IssueManagementType = (typeof IssueManagementType)[keyof typeof IssueManagementType];
55
+ /**
56
+ * <p>Account-level: Input for the Jira configuration.</p>
57
+ * @public
58
+ */
59
+ export interface AccountJiraConfigurationInput {
60
+ /**
61
+ * <p>Account-level: Jira issue management status.</p>
62
+ * @public
63
+ */
64
+ IssueManagementStatus?: AccountJiraIssueManagementStatus;
65
+ /**
66
+ * <p>Account-level: Jira issue management type.</p>
67
+ * @public
68
+ */
69
+ IssueManagementType?: IssueManagementType;
70
+ /**
71
+ * <p>Account-level: Jira project key to sync workloads to.</p>
72
+ * @public
73
+ */
74
+ JiraProjectKey?: string;
75
+ /**
76
+ * <p>Account-level: Configuration status of the Jira integration.</p>
77
+ * @public
78
+ */
79
+ IntegrationStatus?: IntegrationStatusInput;
80
+ }
81
+ /**
82
+ * @public
83
+ * @enum
84
+ */
85
+ export declare const IntegrationStatus: {
86
+ readonly CONFIGURED: "CONFIGURED";
87
+ readonly NOT_CONFIGURED: "NOT_CONFIGURED";
88
+ };
89
+ /**
90
+ * @public
91
+ */
92
+ export type IntegrationStatus = (typeof IntegrationStatus)[keyof typeof IntegrationStatus];
93
+ /**
94
+ * <p>Account-level: Output configuration of the Jira integration.</p>
95
+ * @public
96
+ */
97
+ export interface AccountJiraConfigurationOutput {
98
+ /**
99
+ * <p>Account-level: Configuration status of the Jira integration.</p>
100
+ * @public
101
+ */
102
+ IntegrationStatus?: IntegrationStatus;
103
+ /**
104
+ * <p>Account-level: Jira issue management status.</p>
105
+ * @public
106
+ */
107
+ IssueManagementStatus?: AccountJiraIssueManagementStatus;
108
+ /**
109
+ * <p>Account-level: Jira issue management type.</p>
110
+ * @public
111
+ */
112
+ IssueManagementType?: IssueManagementType;
113
+ /**
114
+ * <p>Account-level: Jira subdomain URL.</p>
115
+ * @public
116
+ */
117
+ Subdomain?: string;
118
+ /**
119
+ * <p>Account-level: Jira project key to sync workloads to.</p>
120
+ * @public
121
+ */
122
+ JiraProjectKey?: string;
123
+ /**
124
+ * <p>Account-level: Status message on configuration of the Jira integration.</p>
125
+ * @public
126
+ */
127
+ StatusMessage?: string;
128
+ }
20
129
  /**
21
130
  * @public
22
131
  * @enum
@@ -171,6 +280,22 @@ export interface Choice {
171
280
  */
172
281
  AdditionalResources?: AdditionalResources[];
173
282
  }
283
+ /**
284
+ * <p>Configuration of the Jira integration.</p>
285
+ * @public
286
+ */
287
+ export interface JiraConfiguration {
288
+ /**
289
+ * <p>The URL of the associated Jira issue.</p>
290
+ * @public
291
+ */
292
+ JiraIssueUrl?: string;
293
+ /**
294
+ * <p>The date and time recorded.</p>
295
+ * @public
296
+ */
297
+ LastSyncedTime?: Date;
298
+ }
174
299
  /**
175
300
  * @public
176
301
  * @enum
@@ -285,6 +410,11 @@ export interface Answer {
285
410
  * @public
286
411
  */
287
412
  Reason?: AnswerReason;
413
+ /**
414
+ * <p>Configuration of the Jira integration.</p>
415
+ * @public
416
+ */
417
+ JiraConfiguration?: JiraConfiguration;
288
418
  }
289
419
  /**
290
420
  * <p>A choice summary that has been answered on a question in your workload.</p>
@@ -376,6 +506,11 @@ export interface AnswerSummary {
376
506
  * @public
377
507
  */
378
508
  QuestionType?: QuestionType;
509
+ /**
510
+ * <p>Configuration of the Jira integration.</p>
511
+ * @public
512
+ */
513
+ JiraConfiguration?: JiraConfiguration;
379
514
  }
380
515
  /**
381
516
  * <p>Input to associate lens reviews.</p>
@@ -1362,6 +1497,40 @@ export declare const WorkloadEnvironment: {
1362
1497
  * @public
1363
1498
  */
1364
1499
  export type WorkloadEnvironment = (typeof WorkloadEnvironment)[keyof typeof WorkloadEnvironment];
1500
+ /**
1501
+ * @public
1502
+ * @enum
1503
+ */
1504
+ export declare const WorkloadIssueManagementStatus: {
1505
+ readonly DISABLED: "DISABLED";
1506
+ readonly ENABLED: "ENABLED";
1507
+ readonly INHERIT: "INHERIT";
1508
+ };
1509
+ /**
1510
+ * @public
1511
+ */
1512
+ export type WorkloadIssueManagementStatus = (typeof WorkloadIssueManagementStatus)[keyof typeof WorkloadIssueManagementStatus];
1513
+ /**
1514
+ * <p>Workload-level: Input for the Jira configuration.</p>
1515
+ * @public
1516
+ */
1517
+ export interface WorkloadJiraConfigurationInput {
1518
+ /**
1519
+ * <p>Workload-level: Jira issue management status.</p>
1520
+ * @public
1521
+ */
1522
+ IssueManagementStatus?: WorkloadIssueManagementStatus;
1523
+ /**
1524
+ * <p>Workload-level: Jira issue management type.</p>
1525
+ * @public
1526
+ */
1527
+ IssueManagementType?: IssueManagementType;
1528
+ /**
1529
+ * <p>Workload-level: Jira project key to sync workloads to.</p>
1530
+ * @public
1531
+ */
1532
+ JiraProjectKey?: string;
1533
+ }
1365
1534
  /**
1366
1535
  * <p>Input for workload creation.</p>
1367
1536
  * @public
@@ -1617,6 +1786,11 @@ export interface CreateWorkloadInput {
1617
1786
  * @public
1618
1787
  */
1619
1788
  ReviewTemplateArns?: string[];
1789
+ /**
1790
+ * <p>Jira configuration settings when creating a workload.</p>
1791
+ * @public
1792
+ */
1793
+ JiraConfiguration?: WorkloadJiraConfigurationInput;
1620
1794
  }
1621
1795
  /**
1622
1796
  * <p>Output of a create workload call.</p>
@@ -2169,6 +2343,38 @@ export interface GetConsolidatedReportOutput {
2169
2343
  */
2170
2344
  Base64String?: string;
2171
2345
  }
2346
+ /**
2347
+ * @public
2348
+ * @enum
2349
+ */
2350
+ export declare const OrganizationSharingStatus: {
2351
+ readonly DISABLED: "DISABLED";
2352
+ readonly ENABLED: "ENABLED";
2353
+ };
2354
+ /**
2355
+ * @public
2356
+ */
2357
+ export type OrganizationSharingStatus = (typeof OrganizationSharingStatus)[keyof typeof OrganizationSharingStatus];
2358
+ /**
2359
+ * @public
2360
+ */
2361
+ export interface GetGlobalSettingsOutput {
2362
+ /**
2363
+ * <p>Amazon Web Services Organizations sharing status.</p>
2364
+ * @public
2365
+ */
2366
+ OrganizationSharingStatus?: OrganizationSharingStatus;
2367
+ /**
2368
+ * <p>Discovery integration status.</p>
2369
+ * @public
2370
+ */
2371
+ DiscoveryIntegrationStatus?: DiscoveryIntegrationStatus;
2372
+ /**
2373
+ * <p>Jira configuration status.</p>
2374
+ * @public
2375
+ */
2376
+ JiraConfiguration?: AccountJiraConfigurationOutput;
2377
+ }
2172
2378
  /**
2173
2379
  * @public
2174
2380
  */
@@ -2271,6 +2477,34 @@ export interface GetLensReviewInput {
2271
2477
  */
2272
2478
  MilestoneNumber?: number;
2273
2479
  }
2480
+ /**
2481
+ * <p>The selected pillar.</p>
2482
+ * @public
2483
+ */
2484
+ export interface SelectedPillar {
2485
+ /**
2486
+ * <p>The ID used to identify a pillar, for example, <code>security</code>.</p>
2487
+ * <p>A pillar is identified by its <a>PillarReviewSummary$PillarId</a>.</p>
2488
+ * @public
2489
+ */
2490
+ PillarId?: string;
2491
+ /**
2492
+ * <p>Selected question IDs in the selected pillar.</p>
2493
+ * @public
2494
+ */
2495
+ SelectedQuestionIds?: string[];
2496
+ }
2497
+ /**
2498
+ * <p>Selected questions in the workload.</p>
2499
+ * @public
2500
+ */
2501
+ export interface JiraSelectedQuestionConfiguration {
2502
+ /**
2503
+ * <p>Selected pillars in the workload.</p>
2504
+ * @public
2505
+ */
2506
+ SelectedPillars?: SelectedPillar[];
2507
+ }
2274
2508
  /**
2275
2509
  * @public
2276
2510
  * @enum
@@ -2377,6 +2611,11 @@ export interface LensReview {
2377
2611
  * @public
2378
2612
  */
2379
2613
  PillarReviewSummaries?: PillarReviewSummary[];
2614
+ /**
2615
+ * <p>Jira configuration status of the Lens review.</p>
2616
+ * @public
2617
+ */
2618
+ JiraConfiguration?: JiraSelectedQuestionConfiguration;
2380
2619
  /**
2381
2620
  * <p>The date and time recorded.</p>
2382
2621
  * @public
@@ -2673,6 +2912,32 @@ export declare const WorkloadImprovementStatus: {
2673
2912
  * @public
2674
2913
  */
2675
2914
  export type WorkloadImprovementStatus = (typeof WorkloadImprovementStatus)[keyof typeof WorkloadImprovementStatus];
2915
+ /**
2916
+ * <p>Workload-level: Output configuration of the Jira integration.</p>
2917
+ * @public
2918
+ */
2919
+ export interface WorkloadJiraConfigurationOutput {
2920
+ /**
2921
+ * <p>Workload-level: Jira issue management status.</p>
2922
+ * @public
2923
+ */
2924
+ IssueManagementStatus?: WorkloadIssueManagementStatus;
2925
+ /**
2926
+ * <p>Workload-level: Jira issue management type.</p>
2927
+ * @public
2928
+ */
2929
+ IssueManagementType?: IssueManagementType;
2930
+ /**
2931
+ * <p>Workload-level: Jira project key to sync workloads to.</p>
2932
+ * @public
2933
+ */
2934
+ JiraProjectKey?: string;
2935
+ /**
2936
+ * <p>Workload-level: Status message on configuration of the Jira integration.</p>
2937
+ * @public
2938
+ */
2939
+ StatusMessage?: string;
2940
+ }
2676
2941
  /**
2677
2942
  * <p>A workload return object.</p>
2678
2943
  * @public
@@ -2963,6 +3228,11 @@ export interface Workload {
2963
3228
  * @public
2964
3229
  */
2965
3230
  PrioritizedRiskCounts?: Partial<Record<Risk, number>>;
3231
+ /**
3232
+ * <p>Jira configuration for a specific workload.</p>
3233
+ * @public
3234
+ */
3235
+ JiraConfiguration?: WorkloadJiraConfigurationOutput;
2966
3236
  }
2967
3237
  /**
2968
3238
  * <p>A milestone return object.</p>
@@ -3766,7 +4036,23 @@ export interface ImprovementSummary {
3766
4036
  * @public
3767
4037
  */
3768
4038
  ImprovementPlans?: ChoiceImprovementPlan[];
4039
+ /**
4040
+ * <p>Configuration of the Jira integration.</p>
4041
+ * @public
4042
+ */
4043
+ JiraConfiguration?: JiraConfiguration;
3769
4044
  }
4045
+ /**
4046
+ * @public
4047
+ * @enum
4048
+ */
4049
+ export declare const IntegratingService: {
4050
+ readonly JIRA: "JIRA";
4051
+ };
4052
+ /**
4053
+ * @public
4054
+ */
4055
+ export type IntegratingService = (typeof IntegratingService)[keyof typeof IntegratingService];
3770
4056
  /**
3771
4057
  * <p>A lens review summary of a workload.</p>
3772
4058
  * @public
@@ -5493,18 +5779,6 @@ export interface ListWorkloadSharesOutput {
5493
5779
  */
5494
5780
  NextToken?: string;
5495
5781
  }
5496
- /**
5497
- * @public
5498
- * @enum
5499
- */
5500
- export declare const OrganizationSharingStatus: {
5501
- readonly DISABLED: "DISABLED";
5502
- readonly ENABLED: "ENABLED";
5503
- };
5504
- /**
5505
- * @public
5506
- */
5507
- export type OrganizationSharingStatus = (typeof OrganizationSharingStatus)[keyof typeof OrganizationSharingStatus];
5508
5782
  /**
5509
5783
  * <p>The share invitation.</p>
5510
5784
  * @public
@@ -5709,6 +5983,40 @@ export interface UpdateGlobalSettingsInput {
5709
5983
  * @public
5710
5984
  */
5711
5985
  DiscoveryIntegrationStatus?: DiscoveryIntegrationStatus;
5986
+ /**
5987
+ * <p>The status of Jira integration settings.</p>
5988
+ * @public
5989
+ */
5990
+ JiraConfiguration?: AccountJiraConfigurationInput;
5991
+ }
5992
+ /**
5993
+ * @public
5994
+ */
5995
+ export interface UpdateIntegrationInput {
5996
+ /**
5997
+ * <p>The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.</p>
5998
+ * @public
5999
+ */
6000
+ WorkloadId: string | undefined;
6001
+ /**
6002
+ * <p>A unique case-sensitive string used to ensure that this request is idempotent
6003
+ * (executes only once).</p>
6004
+ * <p>You should not reuse the same token for other requests. If you retry a request with
6005
+ * the same client request token and the same parameters after the original request has completed
6006
+ * successfully, the result of the original request is returned.</p>
6007
+ * <important>
6008
+ * <p>This token is listed as required, however, if you do not specify it, the Amazon Web Services SDKs
6009
+ * automatically generate one for you. If you are not using the Amazon Web Services SDK or the CLI,
6010
+ * you must provide this token or the request will fail.</p>
6011
+ * </important>
6012
+ * @public
6013
+ */
6014
+ ClientRequestToken?: string;
6015
+ /**
6016
+ * <p>Which integrated service to update.</p>
6017
+ * @public
6018
+ */
6019
+ IntegratingService: IntegratingService | undefined;
5712
6020
  }
5713
6021
  /**
5714
6022
  * <p>Input for update lens review.</p>
@@ -5744,6 +6052,11 @@ export interface UpdateLensReviewInput {
5744
6052
  * @public
5745
6053
  */
5746
6054
  PillarNotes?: Record<string, string>;
6055
+ /**
6056
+ * <p>Configuration of the Jira integration.</p>
6057
+ * @public
6058
+ */
6059
+ JiraConfiguration?: JiraSelectedQuestionConfiguration;
5747
6060
  }
5748
6061
  /**
5749
6062
  * <p>Output of a update lens review call.</p>
@@ -6231,6 +6544,11 @@ export interface UpdateWorkloadInput {
6231
6544
  * @public
6232
6545
  */
6233
6546
  Applications?: string[];
6547
+ /**
6548
+ * <p>Configuration of the Jira integration.</p>
6549
+ * @public
6550
+ */
6551
+ JiraConfiguration?: WorkloadJiraConfigurationInput;
6234
6552
  }
6235
6553
  /**
6236
6554
  * <p>Output of an update workload call.</p>
@@ -24,6 +24,7 @@ import { DisassociateProfilesCommandInput, DisassociateProfilesCommandOutput } f
24
24
  import { ExportLensCommandInput, ExportLensCommandOutput } from "../commands/ExportLensCommand";
25
25
  import { GetAnswerCommandInput, GetAnswerCommandOutput } from "../commands/GetAnswerCommand";
26
26
  import { GetConsolidatedReportCommandInput, GetConsolidatedReportCommandOutput } from "../commands/GetConsolidatedReportCommand";
27
+ import { GetGlobalSettingsCommandInput, GetGlobalSettingsCommandOutput } from "../commands/GetGlobalSettingsCommand";
27
28
  import { GetLensCommandInput, GetLensCommandOutput } from "../commands/GetLensCommand";
28
29
  import { GetLensReviewCommandInput, GetLensReviewCommandOutput } from "../commands/GetLensReviewCommand";
29
30
  import { GetLensReviewReportCommandInput, GetLensReviewReportCommandOutput } from "../commands/GetLensReviewReportCommand";
@@ -59,6 +60,7 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/T
59
60
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
60
61
  import { UpdateAnswerCommandInput, UpdateAnswerCommandOutput } from "../commands/UpdateAnswerCommand";
61
62
  import { UpdateGlobalSettingsCommandInput, UpdateGlobalSettingsCommandOutput } from "../commands/UpdateGlobalSettingsCommand";
63
+ import { UpdateIntegrationCommandInput, UpdateIntegrationCommandOutput } from "../commands/UpdateIntegrationCommand";
62
64
  import { UpdateLensReviewCommandInput, UpdateLensReviewCommandOutput } from "../commands/UpdateLensReviewCommand";
63
65
  import { UpdateProfileCommandInput, UpdateProfileCommandOutput } from "../commands/UpdateProfileCommand";
64
66
  import { UpdateReviewTemplateAnswerCommandInput, UpdateReviewTemplateAnswerCommandOutput } from "../commands/UpdateReviewTemplateAnswerCommand";
@@ -166,6 +168,10 @@ export declare const se_GetAnswerCommand: (input: GetAnswerCommandInput, context
166
168
  * serializeAws_restJson1GetConsolidatedReportCommand
167
169
  */
168
170
  export declare const se_GetConsolidatedReportCommand: (input: GetConsolidatedReportCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
171
+ /**
172
+ * serializeAws_restJson1GetGlobalSettingsCommand
173
+ */
174
+ export declare const se_GetGlobalSettingsCommand: (input: GetGlobalSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
169
175
  /**
170
176
  * serializeAws_restJson1GetLensCommand
171
177
  */
@@ -306,6 +312,10 @@ export declare const se_UpdateAnswerCommand: (input: UpdateAnswerCommandInput, c
306
312
  * serializeAws_restJson1UpdateGlobalSettingsCommand
307
313
  */
308
314
  export declare const se_UpdateGlobalSettingsCommand: (input: UpdateGlobalSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
315
+ /**
316
+ * serializeAws_restJson1UpdateIntegrationCommand
317
+ */
318
+ export declare const se_UpdateIntegrationCommand: (input: UpdateIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
309
319
  /**
310
320
  * serializeAws_restJson1UpdateLensReviewCommand
311
321
  */
@@ -446,6 +456,10 @@ export declare const de_GetAnswerCommand: (output: __HttpResponse, context: __Se
446
456
  * deserializeAws_restJson1GetConsolidatedReportCommand
447
457
  */
448
458
  export declare const de_GetConsolidatedReportCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConsolidatedReportCommandOutput>;
459
+ /**
460
+ * deserializeAws_restJson1GetGlobalSettingsCommand
461
+ */
462
+ export declare const de_GetGlobalSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetGlobalSettingsCommandOutput>;
449
463
  /**
450
464
  * deserializeAws_restJson1GetLensCommand
451
465
  */
@@ -586,6 +600,10 @@ export declare const de_UpdateAnswerCommand: (output: __HttpResponse, context: _
586
600
  * deserializeAws_restJson1UpdateGlobalSettingsCommand
587
601
  */
588
602
  export declare const de_UpdateGlobalSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateGlobalSettingsCommandOutput>;
603
+ /**
604
+ * deserializeAws_restJson1UpdateIntegrationCommand
605
+ */
606
+ export declare const de_UpdateIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateIntegrationCommandOutput>;
589
607
  /**
590
608
  * deserializeAws_restJson1UpdateLensReviewCommand
591
609
  */
@@ -95,6 +95,10 @@ import {
95
95
  GetConsolidatedReportCommandInput,
96
96
  GetConsolidatedReportCommandOutput,
97
97
  } from "./commands/GetConsolidatedReportCommand";
98
+ import {
99
+ GetGlobalSettingsCommandInput,
100
+ GetGlobalSettingsCommandOutput,
101
+ } from "./commands/GetGlobalSettingsCommand";
98
102
  import {
99
103
  GetLensCommandInput,
100
104
  GetLensCommandOutput,
@@ -235,6 +239,10 @@ import {
235
239
  UpdateGlobalSettingsCommandInput,
236
240
  UpdateGlobalSettingsCommandOutput,
237
241
  } from "./commands/UpdateGlobalSettingsCommand";
242
+ import {
243
+ UpdateIntegrationCommandInput,
244
+ UpdateIntegrationCommandOutput,
245
+ } from "./commands/UpdateIntegrationCommand";
238
246
  import {
239
247
  UpdateLensReviewCommandInput,
240
248
  UpdateLensReviewCommandOutput,
@@ -593,6 +601,20 @@ export interface WellArchitected {
593
601
  options: __HttpHandlerOptions,
594
602
  cb: (err: any, data?: GetConsolidatedReportCommandOutput) => void
595
603
  ): void;
604
+ getGlobalSettings(): Promise<GetGlobalSettingsCommandOutput>;
605
+ getGlobalSettings(
606
+ args: GetGlobalSettingsCommandInput,
607
+ options?: __HttpHandlerOptions
608
+ ): Promise<GetGlobalSettingsCommandOutput>;
609
+ getGlobalSettings(
610
+ args: GetGlobalSettingsCommandInput,
611
+ cb: (err: any, data?: GetGlobalSettingsCommandOutput) => void
612
+ ): void;
613
+ getGlobalSettings(
614
+ args: GetGlobalSettingsCommandInput,
615
+ options: __HttpHandlerOptions,
616
+ cb: (err: any, data?: GetGlobalSettingsCommandOutput) => void
617
+ ): void;
596
618
  getLens(
597
619
  args: GetLensCommandInput,
598
620
  options?: __HttpHandlerOptions
@@ -1057,6 +1079,19 @@ export interface WellArchitected {
1057
1079
  options: __HttpHandlerOptions,
1058
1080
  cb: (err: any, data?: UpdateGlobalSettingsCommandOutput) => void
1059
1081
  ): void;
1082
+ updateIntegration(
1083
+ args: UpdateIntegrationCommandInput,
1084
+ options?: __HttpHandlerOptions
1085
+ ): Promise<UpdateIntegrationCommandOutput>;
1086
+ updateIntegration(
1087
+ args: UpdateIntegrationCommandInput,
1088
+ cb: (err: any, data?: UpdateIntegrationCommandOutput) => void
1089
+ ): void;
1090
+ updateIntegration(
1091
+ args: UpdateIntegrationCommandInput,
1092
+ options: __HttpHandlerOptions,
1093
+ cb: (err: any, data?: UpdateIntegrationCommandOutput) => void
1094
+ ): void;
1060
1095
  updateLensReview(
1061
1096
  args: UpdateLensReviewCommandInput,
1062
1097
  options?: __HttpHandlerOptions
@@ -141,6 +141,10 @@ import {
141
141
  GetConsolidatedReportCommandInput,
142
142
  GetConsolidatedReportCommandOutput,
143
143
  } from "./commands/GetConsolidatedReportCommand";
144
+ import {
145
+ GetGlobalSettingsCommandInput,
146
+ GetGlobalSettingsCommandOutput,
147
+ } from "./commands/GetGlobalSettingsCommand";
144
148
  import {
145
149
  GetLensCommandInput,
146
150
  GetLensCommandOutput,
@@ -281,6 +285,10 @@ import {
281
285
  UpdateGlobalSettingsCommandInput,
282
286
  UpdateGlobalSettingsCommandOutput,
283
287
  } from "./commands/UpdateGlobalSettingsCommand";
288
+ import {
289
+ UpdateIntegrationCommandInput,
290
+ UpdateIntegrationCommandOutput,
291
+ } from "./commands/UpdateIntegrationCommand";
284
292
  import {
285
293
  UpdateLensReviewCommandInput,
286
294
  UpdateLensReviewCommandOutput,
@@ -357,6 +365,7 @@ export type ServiceInputTypes =
357
365
  | ExportLensCommandInput
358
366
  | GetAnswerCommandInput
359
367
  | GetConsolidatedReportCommandInput
368
+ | GetGlobalSettingsCommandInput
360
369
  | GetLensCommandInput
361
370
  | GetLensReviewCommandInput
362
371
  | GetLensReviewReportCommandInput
@@ -392,6 +401,7 @@ export type ServiceInputTypes =
392
401
  | UntagResourceCommandInput
393
402
  | UpdateAnswerCommandInput
394
403
  | UpdateGlobalSettingsCommandInput
404
+ | UpdateIntegrationCommandInput
395
405
  | UpdateLensReviewCommandInput
396
406
  | UpdateProfileCommandInput
397
407
  | UpdateReviewTemplateAnswerCommandInput
@@ -428,6 +438,7 @@ export type ServiceOutputTypes =
428
438
  | ExportLensCommandOutput
429
439
  | GetAnswerCommandOutput
430
440
  | GetConsolidatedReportCommandOutput
441
+ | GetGlobalSettingsCommandOutput
431
442
  | GetLensCommandOutput
432
443
  | GetLensReviewCommandOutput
433
444
  | GetLensReviewReportCommandOutput
@@ -463,6 +474,7 @@ export type ServiceOutputTypes =
463
474
  | UntagResourceCommandOutput
464
475
  | UpdateAnswerCommandOutput
465
476
  | UpdateGlobalSettingsCommandOutput
477
+ | UpdateIntegrationCommandOutput
466
478
  | UpdateLensReviewCommandOutput
467
479
  | UpdateProfileCommandOutput
468
480
  | UpdateReviewTemplateAnswerCommandOutput