@aws-sdk/client-support 3.296.0 → 3.298.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.
- package/dist-cjs/commands/AddAttachmentsToSetCommand.js +2 -3
- package/dist-cjs/commands/AddCommunicationToCaseCommand.js +2 -3
- package/dist-cjs/commands/CreateCaseCommand.js +2 -3
- package/dist-cjs/commands/DescribeAttachmentCommand.js +2 -3
- package/dist-cjs/commands/DescribeCasesCommand.js +2 -3
- package/dist-cjs/commands/DescribeCommunicationsCommand.js +2 -3
- package/dist-cjs/commands/DescribeServicesCommand.js +2 -3
- package/dist-cjs/commands/DescribeSeverityLevelsCommand.js +2 -3
- package/dist-cjs/commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand.js +2 -3
- package/dist-cjs/commands/DescribeTrustedAdvisorCheckResultCommand.js +2 -3
- package/dist-cjs/commands/DescribeTrustedAdvisorCheckSummariesCommand.js +2 -3
- package/dist-cjs/commands/DescribeTrustedAdvisorChecksCommand.js +2 -3
- package/dist-cjs/commands/RefreshTrustedAdvisorCheckCommand.js +2 -3
- package/dist-cjs/commands/ResolveCaseCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -178
- package/dist-es/commands/AddAttachmentsToSetCommand.js +2 -3
- package/dist-es/commands/AddCommunicationToCaseCommand.js +2 -3
- package/dist-es/commands/CreateCaseCommand.js +2 -3
- package/dist-es/commands/DescribeAttachmentCommand.js +2 -3
- package/dist-es/commands/DescribeCasesCommand.js +2 -3
- package/dist-es/commands/DescribeCommunicationsCommand.js +2 -3
- package/dist-es/commands/DescribeServicesCommand.js +2 -3
- package/dist-es/commands/DescribeSeverityLevelsCommand.js +2 -3
- package/dist-es/commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand.js +2 -3
- package/dist-es/commands/DescribeTrustedAdvisorCheckResultCommand.js +2 -3
- package/dist-es/commands/DescribeTrustedAdvisorCheckSummariesCommand.js +2 -3
- package/dist-es/commands/DescribeTrustedAdvisorChecksCommand.js +2 -3
- package/dist-es/commands/RefreshTrustedAdvisorCheckCommand.js +2 -3
- package/dist-es/commands/ResolveCaseCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -132
- package/dist-types/Support.d.ts +15 -0
- package/dist-types/SupportClient.d.ts +24 -4
- package/dist-types/commands/AddAttachmentsToSetCommand.d.ts +16 -0
- package/dist-types/commands/AddCommunicationToCaseCommand.d.ts +16 -0
- package/dist-types/commands/CreateCaseCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAttachmentCommand.d.ts +16 -0
- package/dist-types/commands/DescribeCasesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeCommunicationsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeServicesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeSeverityLevelsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTrustedAdvisorCheckResultCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTrustedAdvisorCheckSummariesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTrustedAdvisorChecksCommand.d.ts +16 -0
- package/dist-types/commands/RefreshTrustedAdvisorCheckCommand.d.ts +16 -0
- package/dist-types/commands/ResolveCaseCommand.d.ts +16 -0
- package/dist-types/models/SupportServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +77 -176
- package/dist-types/pagination/DescribeCasesPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeCommunicationsPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -124
- package/package.json +4 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribeCasesRequest, DescribeCasesResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeCasesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeCasesCommandInput extends DescribeCasesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeCasesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeCasesCommandOutput extends DescribeCasesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of cases that you specify by passing one or more case IDs. You can use
|
|
18
23
|
* the <code>afterTime</code> and <code>beforeTime</code> parameters to filter the cases by
|
|
19
24
|
* date. You can set values for the <code>includeResolvedCases</code> and
|
|
@@ -55,6 +60,8 @@ export interface DescribeCasesCommandOutput extends DescribeCasesResponse, __Met
|
|
|
55
60
|
* const response = await client.send(command);
|
|
56
61
|
* ```
|
|
57
62
|
*
|
|
63
|
+
* @param DescribeCasesCommandInput - {@link DescribeCasesCommandInput}
|
|
64
|
+
* @returns {@link DescribeCasesCommandOutput}
|
|
58
65
|
* @see {@link DescribeCasesCommandInput} for command's `input` shape.
|
|
59
66
|
* @see {@link DescribeCasesCommandOutput} for command's `response` shape.
|
|
60
67
|
* @see {@link SupportClientResolvedConfig | config} for SupportClient's `config` shape.
|
|
@@ -70,11 +77,20 @@ export interface DescribeCasesCommandOutput extends DescribeCasesResponse, __Met
|
|
|
70
77
|
export declare class DescribeCasesCommand extends $Command<DescribeCasesCommandInput, DescribeCasesCommandOutput, SupportClientResolvedConfig> {
|
|
71
78
|
readonly input: DescribeCasesCommandInput;
|
|
72
79
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
80
|
+
/**
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
73
83
|
constructor(input: DescribeCasesCommandInput);
|
|
74
84
|
/**
|
|
75
85
|
* @internal
|
|
76
86
|
*/
|
|
77
87
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeCasesCommandInput, DescribeCasesCommandOutput>;
|
|
88
|
+
/**
|
|
89
|
+
* @internal
|
|
90
|
+
*/
|
|
78
91
|
private serialize;
|
|
92
|
+
/**
|
|
93
|
+
* @internal
|
|
94
|
+
*/
|
|
79
95
|
private deserialize;
|
|
80
96
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribeCommunicationsRequest, DescribeCommunicationsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeCommunicationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeCommunicationsCommandInput extends DescribeCommunicationsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeCommunicationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeCommunicationsCommandOutput extends DescribeCommunicationsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns communications and attachments for one or more support cases. Use the
|
|
18
23
|
* <code>afterTime</code> and <code>beforeTime</code> parameters to filter by date. You
|
|
19
24
|
* can use the <code>caseId</code> parameter to restrict the results to a specific
|
|
@@ -48,6 +53,8 @@ export interface DescribeCommunicationsCommandOutput extends DescribeCommunicati
|
|
|
48
53
|
* const response = await client.send(command);
|
|
49
54
|
* ```
|
|
50
55
|
*
|
|
56
|
+
* @param DescribeCommunicationsCommandInput - {@link DescribeCommunicationsCommandInput}
|
|
57
|
+
* @returns {@link DescribeCommunicationsCommandOutput}
|
|
51
58
|
* @see {@link DescribeCommunicationsCommandInput} for command's `input` shape.
|
|
52
59
|
* @see {@link DescribeCommunicationsCommandOutput} for command's `response` shape.
|
|
53
60
|
* @see {@link SupportClientResolvedConfig | config} for SupportClient's `config` shape.
|
|
@@ -63,11 +70,20 @@ export interface DescribeCommunicationsCommandOutput extends DescribeCommunicati
|
|
|
63
70
|
export declare class DescribeCommunicationsCommand extends $Command<DescribeCommunicationsCommandInput, DescribeCommunicationsCommandOutput, SupportClientResolvedConfig> {
|
|
64
71
|
readonly input: DescribeCommunicationsCommandInput;
|
|
65
72
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
66
76
|
constructor(input: DescribeCommunicationsCommandInput);
|
|
67
77
|
/**
|
|
68
78
|
* @internal
|
|
69
79
|
*/
|
|
70
80
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeCommunicationsCommandInput, DescribeCommunicationsCommandOutput>;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
71
84
|
private serialize;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
72
88
|
private deserialize;
|
|
73
89
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribeServicesRequest, DescribeServicesResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeServicesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeServicesCommandInput extends DescribeServicesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeServicesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeServicesCommandOutput extends DescribeServicesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the current list of Amazon Web Services services and a list of service categories for each
|
|
18
23
|
* service. You then use service names and categories in your <a>CreateCase</a>
|
|
19
24
|
* requests. Each Amazon Web Services service has its own set of categories.</p>
|
|
@@ -47,6 +52,8 @@ export interface DescribeServicesCommandOutput extends DescribeServicesResponse,
|
|
|
47
52
|
* const response = await client.send(command);
|
|
48
53
|
* ```
|
|
49
54
|
*
|
|
55
|
+
* @param DescribeServicesCommandInput - {@link DescribeServicesCommandInput}
|
|
56
|
+
* @returns {@link DescribeServicesCommandOutput}
|
|
50
57
|
* @see {@link DescribeServicesCommandInput} for command's `input` shape.
|
|
51
58
|
* @see {@link DescribeServicesCommandOutput} for command's `response` shape.
|
|
52
59
|
* @see {@link SupportClientResolvedConfig | config} for SupportClient's `config` shape.
|
|
@@ -59,11 +66,20 @@ export interface DescribeServicesCommandOutput extends DescribeServicesResponse,
|
|
|
59
66
|
export declare class DescribeServicesCommand extends $Command<DescribeServicesCommandInput, DescribeServicesCommandOutput, SupportClientResolvedConfig> {
|
|
60
67
|
readonly input: DescribeServicesCommandInput;
|
|
61
68
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
62
72
|
constructor(input: DescribeServicesCommandInput);
|
|
63
73
|
/**
|
|
64
74
|
* @internal
|
|
65
75
|
*/
|
|
66
76
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeServicesCommandInput, DescribeServicesCommandOutput>;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
67
80
|
private serialize;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
68
84
|
private deserialize;
|
|
69
85
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribeSeverityLevelsRequest, DescribeSeverityLevelsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeSeverityLevelsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeSeverityLevelsCommandInput extends DescribeSeverityLevelsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeSeverityLevelsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeSeverityLevelsCommandOutput extends DescribeSeverityLevelsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the list of severity levels that you can assign to a support case. The
|
|
18
23
|
* severity level for a case is also a field in the <a>CaseDetails</a> data type
|
|
19
24
|
* that you include for a <a>CreateCase</a> request.</p>
|
|
@@ -41,6 +46,8 @@ export interface DescribeSeverityLevelsCommandOutput extends DescribeSeverityLev
|
|
|
41
46
|
* const response = await client.send(command);
|
|
42
47
|
* ```
|
|
43
48
|
*
|
|
49
|
+
* @param DescribeSeverityLevelsCommandInput - {@link DescribeSeverityLevelsCommandInput}
|
|
50
|
+
* @returns {@link DescribeSeverityLevelsCommandOutput}
|
|
44
51
|
* @see {@link DescribeSeverityLevelsCommandInput} for command's `input` shape.
|
|
45
52
|
* @see {@link DescribeSeverityLevelsCommandOutput} for command's `response` shape.
|
|
46
53
|
* @see {@link SupportClientResolvedConfig | config} for SupportClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface DescribeSeverityLevelsCommandOutput extends DescribeSeverityLev
|
|
|
53
60
|
export declare class DescribeSeverityLevelsCommand extends $Command<DescribeSeverityLevelsCommandInput, DescribeSeverityLevelsCommandOutput, SupportClientResolvedConfig> {
|
|
54
61
|
readonly input: DescribeSeverityLevelsCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: DescribeSeverityLevelsCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeSeverityLevelsCommandInput, DescribeSeverityLevelsCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribeTrustedAdvisorCheckRefreshStatusesRequest, DescribeTrustedAdvisorCheckRefreshStatusesResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeTrustedAdvisorCheckRefreshStatusesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeTrustedAdvisorCheckRefreshStatusesCommandInput extends DescribeTrustedAdvisorCheckRefreshStatusesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeTrustedAdvisorCheckRefreshStatusesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput extends DescribeTrustedAdvisorCheckRefreshStatusesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the refresh status of the Trusted Advisor checks that have the specified check
|
|
18
23
|
* IDs. You can get the check IDs by calling the <a>DescribeTrustedAdvisorChecks</a> operation.</p>
|
|
19
24
|
* <p>Some checks are refreshed automatically, and you can't return their refresh statuses
|
|
@@ -48,6 +53,8 @@ export interface DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput extends
|
|
|
48
53
|
* const response = await client.send(command);
|
|
49
54
|
* ```
|
|
50
55
|
*
|
|
56
|
+
* @param DescribeTrustedAdvisorCheckRefreshStatusesCommandInput - {@link DescribeTrustedAdvisorCheckRefreshStatusesCommandInput}
|
|
57
|
+
* @returns {@link DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput}
|
|
51
58
|
* @see {@link DescribeTrustedAdvisorCheckRefreshStatusesCommandInput} for command's `input` shape.
|
|
52
59
|
* @see {@link DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput} for command's `response` shape.
|
|
53
60
|
* @see {@link SupportClientResolvedConfig | config} for SupportClient's `config` shape.
|
|
@@ -60,11 +67,20 @@ export interface DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput extends
|
|
|
60
67
|
export declare class DescribeTrustedAdvisorCheckRefreshStatusesCommand extends $Command<DescribeTrustedAdvisorCheckRefreshStatusesCommandInput, DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput, SupportClientResolvedConfig> {
|
|
61
68
|
readonly input: DescribeTrustedAdvisorCheckRefreshStatusesCommandInput;
|
|
62
69
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
70
|
+
/**
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
63
73
|
constructor(input: DescribeTrustedAdvisorCheckRefreshStatusesCommandInput);
|
|
64
74
|
/**
|
|
65
75
|
* @internal
|
|
66
76
|
*/
|
|
67
77
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeTrustedAdvisorCheckRefreshStatusesCommandInput, DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput>;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
68
81
|
private serialize;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
69
85
|
private deserialize;
|
|
70
86
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribeTrustedAdvisorCheckResultRequest, DescribeTrustedAdvisorCheckResultResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeTrustedAdvisorCheckResultCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeTrustedAdvisorCheckResultCommandInput extends DescribeTrustedAdvisorCheckResultRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeTrustedAdvisorCheckResultCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeTrustedAdvisorCheckResultCommandOutput extends DescribeTrustedAdvisorCheckResultResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the results of the Trusted Advisor check that has the specified check ID. You
|
|
18
23
|
* can get the check IDs by calling the <a>DescribeTrustedAdvisorChecks</a>
|
|
19
24
|
* operation.</p>
|
|
@@ -83,6 +88,8 @@ export interface DescribeTrustedAdvisorCheckResultCommandOutput extends Describe
|
|
|
83
88
|
* const response = await client.send(command);
|
|
84
89
|
* ```
|
|
85
90
|
*
|
|
91
|
+
* @param DescribeTrustedAdvisorCheckResultCommandInput - {@link DescribeTrustedAdvisorCheckResultCommandInput}
|
|
92
|
+
* @returns {@link DescribeTrustedAdvisorCheckResultCommandOutput}
|
|
86
93
|
* @see {@link DescribeTrustedAdvisorCheckResultCommandInput} for command's `input` shape.
|
|
87
94
|
* @see {@link DescribeTrustedAdvisorCheckResultCommandOutput} for command's `response` shape.
|
|
88
95
|
* @see {@link SupportClientResolvedConfig | config} for SupportClient's `config` shape.
|
|
@@ -95,11 +102,20 @@ export interface DescribeTrustedAdvisorCheckResultCommandOutput extends Describe
|
|
|
95
102
|
export declare class DescribeTrustedAdvisorCheckResultCommand extends $Command<DescribeTrustedAdvisorCheckResultCommandInput, DescribeTrustedAdvisorCheckResultCommandOutput, SupportClientResolvedConfig> {
|
|
96
103
|
readonly input: DescribeTrustedAdvisorCheckResultCommandInput;
|
|
97
104
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
105
|
+
/**
|
|
106
|
+
* @public
|
|
107
|
+
*/
|
|
98
108
|
constructor(input: DescribeTrustedAdvisorCheckResultCommandInput);
|
|
99
109
|
/**
|
|
100
110
|
* @internal
|
|
101
111
|
*/
|
|
102
112
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeTrustedAdvisorCheckResultCommandInput, DescribeTrustedAdvisorCheckResultCommandOutput>;
|
|
113
|
+
/**
|
|
114
|
+
* @internal
|
|
115
|
+
*/
|
|
103
116
|
private serialize;
|
|
117
|
+
/**
|
|
118
|
+
* @internal
|
|
119
|
+
*/
|
|
104
120
|
private deserialize;
|
|
105
121
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribeTrustedAdvisorCheckSummariesRequest, DescribeTrustedAdvisorCheckSummariesResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeTrustedAdvisorCheckSummariesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeTrustedAdvisorCheckSummariesCommandInput extends DescribeTrustedAdvisorCheckSummariesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeTrustedAdvisorCheckSummariesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeTrustedAdvisorCheckSummariesCommandOutput extends DescribeTrustedAdvisorCheckSummariesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the results for the Trusted Advisor check summaries for the check IDs that you
|
|
18
23
|
* specified. You can get the check IDs by calling the <a>DescribeTrustedAdvisorChecks</a> operation.</p>
|
|
19
24
|
* <p>The response contains an array of <a>TrustedAdvisorCheckSummary</a>
|
|
@@ -46,6 +51,8 @@ export interface DescribeTrustedAdvisorCheckSummariesCommandOutput extends Descr
|
|
|
46
51
|
* const response = await client.send(command);
|
|
47
52
|
* ```
|
|
48
53
|
*
|
|
54
|
+
* @param DescribeTrustedAdvisorCheckSummariesCommandInput - {@link DescribeTrustedAdvisorCheckSummariesCommandInput}
|
|
55
|
+
* @returns {@link DescribeTrustedAdvisorCheckSummariesCommandOutput}
|
|
49
56
|
* @see {@link DescribeTrustedAdvisorCheckSummariesCommandInput} for command's `input` shape.
|
|
50
57
|
* @see {@link DescribeTrustedAdvisorCheckSummariesCommandOutput} for command's `response` shape.
|
|
51
58
|
* @see {@link SupportClientResolvedConfig | config} for SupportClient's `config` shape.
|
|
@@ -58,11 +65,20 @@ export interface DescribeTrustedAdvisorCheckSummariesCommandOutput extends Descr
|
|
|
58
65
|
export declare class DescribeTrustedAdvisorCheckSummariesCommand extends $Command<DescribeTrustedAdvisorCheckSummariesCommandInput, DescribeTrustedAdvisorCheckSummariesCommandOutput, SupportClientResolvedConfig> {
|
|
59
66
|
readonly input: DescribeTrustedAdvisorCheckSummariesCommandInput;
|
|
60
67
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
61
71
|
constructor(input: DescribeTrustedAdvisorCheckSummariesCommandInput);
|
|
62
72
|
/**
|
|
63
73
|
* @internal
|
|
64
74
|
*/
|
|
65
75
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeTrustedAdvisorCheckSummariesCommandInput, DescribeTrustedAdvisorCheckSummariesCommandOutput>;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
66
79
|
private serialize;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
67
83
|
private deserialize;
|
|
68
84
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribeTrustedAdvisorChecksRequest, DescribeTrustedAdvisorChecksResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeTrustedAdvisorChecksCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeTrustedAdvisorChecksCommandInput extends DescribeTrustedAdvisorChecksRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeTrustedAdvisorChecksCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeTrustedAdvisorChecksCommandOutput extends DescribeTrustedAdvisorChecksResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about all available Trusted Advisor checks, including the name, ID,
|
|
18
23
|
* category, description, and metadata. You must specify a language code.</p>
|
|
19
24
|
* <p>The response contains a <a>TrustedAdvisorCheckDescription</a> object for
|
|
@@ -50,6 +55,8 @@ export interface DescribeTrustedAdvisorChecksCommandOutput extends DescribeTrust
|
|
|
50
55
|
* const response = await client.send(command);
|
|
51
56
|
* ```
|
|
52
57
|
*
|
|
58
|
+
* @param DescribeTrustedAdvisorChecksCommandInput - {@link DescribeTrustedAdvisorChecksCommandInput}
|
|
59
|
+
* @returns {@link DescribeTrustedAdvisorChecksCommandOutput}
|
|
53
60
|
* @see {@link DescribeTrustedAdvisorChecksCommandInput} for command's `input` shape.
|
|
54
61
|
* @see {@link DescribeTrustedAdvisorChecksCommandOutput} for command's `response` shape.
|
|
55
62
|
* @see {@link SupportClientResolvedConfig | config} for SupportClient's `config` shape.
|
|
@@ -62,11 +69,20 @@ export interface DescribeTrustedAdvisorChecksCommandOutput extends DescribeTrust
|
|
|
62
69
|
export declare class DescribeTrustedAdvisorChecksCommand extends $Command<DescribeTrustedAdvisorChecksCommandInput, DescribeTrustedAdvisorChecksCommandOutput, SupportClientResolvedConfig> {
|
|
63
70
|
readonly input: DescribeTrustedAdvisorChecksCommandInput;
|
|
64
71
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
65
75
|
constructor(input: DescribeTrustedAdvisorChecksCommandInput);
|
|
66
76
|
/**
|
|
67
77
|
* @internal
|
|
68
78
|
*/
|
|
69
79
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeTrustedAdvisorChecksCommandInput, DescribeTrustedAdvisorChecksCommandOutput>;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
70
83
|
private serialize;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
71
87
|
private deserialize;
|
|
72
88
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { RefreshTrustedAdvisorCheckRequest, RefreshTrustedAdvisorCheckResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RefreshTrustedAdvisorCheckCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RefreshTrustedAdvisorCheckCommandInput extends RefreshTrustedAdvisorCheckRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RefreshTrustedAdvisorCheckCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RefreshTrustedAdvisorCheckCommandOutput extends RefreshTrustedAdvisorCheckResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Refreshes the Trusted Advisor check that you specify using the check ID. You can get the
|
|
18
23
|
* check IDs by calling the <a>DescribeTrustedAdvisorChecks</a>
|
|
19
24
|
* operation.</p>
|
|
@@ -50,6 +55,8 @@ export interface RefreshTrustedAdvisorCheckCommandOutput extends RefreshTrustedA
|
|
|
50
55
|
* const response = await client.send(command);
|
|
51
56
|
* ```
|
|
52
57
|
*
|
|
58
|
+
* @param RefreshTrustedAdvisorCheckCommandInput - {@link RefreshTrustedAdvisorCheckCommandInput}
|
|
59
|
+
* @returns {@link RefreshTrustedAdvisorCheckCommandOutput}
|
|
53
60
|
* @see {@link RefreshTrustedAdvisorCheckCommandInput} for command's `input` shape.
|
|
54
61
|
* @see {@link RefreshTrustedAdvisorCheckCommandOutput} for command's `response` shape.
|
|
55
62
|
* @see {@link SupportClientResolvedConfig | config} for SupportClient's `config` shape.
|
|
@@ -62,11 +69,20 @@ export interface RefreshTrustedAdvisorCheckCommandOutput extends RefreshTrustedA
|
|
|
62
69
|
export declare class RefreshTrustedAdvisorCheckCommand extends $Command<RefreshTrustedAdvisorCheckCommandInput, RefreshTrustedAdvisorCheckCommandOutput, SupportClientResolvedConfig> {
|
|
63
70
|
readonly input: RefreshTrustedAdvisorCheckCommandInput;
|
|
64
71
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
65
75
|
constructor(input: RefreshTrustedAdvisorCheckCommandInput);
|
|
66
76
|
/**
|
|
67
77
|
* @internal
|
|
68
78
|
*/
|
|
69
79
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RefreshTrustedAdvisorCheckCommandInput, RefreshTrustedAdvisorCheckCommandOutput>;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
70
83
|
private serialize;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
71
87
|
private deserialize;
|
|
72
88
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ResolveCaseRequest, ResolveCaseResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ResolveCaseCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ResolveCaseCommandInput extends ResolveCaseRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ResolveCaseCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ResolveCaseCommandOutput extends ResolveCaseResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Resolves a support case. This operation takes a <code>caseId</code> and returns the
|
|
18
23
|
* initial and final state of the case.</p>
|
|
19
24
|
* <note>
|
|
@@ -40,6 +45,8 @@ export interface ResolveCaseCommandOutput extends ResolveCaseResponse, __Metadat
|
|
|
40
45
|
* const response = await client.send(command);
|
|
41
46
|
* ```
|
|
42
47
|
*
|
|
48
|
+
* @param ResolveCaseCommandInput - {@link ResolveCaseCommandInput}
|
|
49
|
+
* @returns {@link ResolveCaseCommandOutput}
|
|
43
50
|
* @see {@link ResolveCaseCommandInput} for command's `input` shape.
|
|
44
51
|
* @see {@link ResolveCaseCommandOutput} for command's `response` shape.
|
|
45
52
|
* @see {@link SupportClientResolvedConfig | config} for SupportClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface ResolveCaseCommandOutput extends ResolveCaseResponse, __Metadat
|
|
|
55
62
|
export declare class ResolveCaseCommand extends $Command<ResolveCaseCommandInput, ResolveCaseCommandOutput, SupportClientResolvedConfig> {
|
|
56
63
|
readonly input: ResolveCaseCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: ResolveCaseCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SupportClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ResolveCaseCommandInput, ResolveCaseCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -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 Support service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class SupportServiceException extends __ServiceException {
|