@aws-sdk/client-ssm-sap 3.295.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.
- package/dist-types/SsmSap.d.ts +18 -0
- package/dist-types/SsmSapClient.d.ts +24 -4
- package/dist-types/commands/DeleteResourcePermissionCommand.d.ts +16 -0
- package/dist-types/commands/DeregisterApplicationCommand.d.ts +16 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +16 -0
- package/dist-types/commands/GetComponentCommand.d.ts +16 -0
- package/dist-types/commands/GetDatabaseCommand.d.ts +16 -0
- package/dist-types/commands/GetOperationCommand.d.ts +16 -0
- package/dist-types/commands/GetResourcePermissionCommand.d.ts +16 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/ListComponentsCommand.d.ts +16 -0
- package/dist-types/commands/ListDatabasesCommand.d.ts +16 -0
- package/dist-types/commands/ListOperationsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PutResourcePermissionCommand.d.ts +16 -0
- package/dist-types/commands/RegisterApplicationCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApplicationSettingsCommand.d.ts +16 -0
- package/dist-types/models/SsmSapServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +149 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListComponentsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDatabasesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListOperationsPaginator.d.ts +3 -0
- package/package.json +29 -29
package/dist-types/SsmSap.d.ts
CHANGED
|
@@ -18,18 +18,21 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
|
|
|
18
18
|
import { UpdateApplicationSettingsCommandInput, UpdateApplicationSettingsCommandOutput } from "./commands/UpdateApplicationSettingsCommand";
|
|
19
19
|
import { SsmSapClient } from "./SsmSapClient";
|
|
20
20
|
/**
|
|
21
|
+
* @public
|
|
21
22
|
* <p>This API reference provides descriptions, syntax, and other details about each of the
|
|
22
23
|
* actions and data types for AWS Systems Manager for SAP. The topic for each action shows
|
|
23
24
|
* the API request parameters and responses. </p>
|
|
24
25
|
*/
|
|
25
26
|
export declare class SsmSap extends SsmSapClient {
|
|
26
27
|
/**
|
|
28
|
+
* @public
|
|
27
29
|
* <p>Removes permissions associated with the target database.</p>
|
|
28
30
|
*/
|
|
29
31
|
deleteResourcePermission(args: DeleteResourcePermissionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteResourcePermissionCommandOutput>;
|
|
30
32
|
deleteResourcePermission(args: DeleteResourcePermissionCommandInput, cb: (err: any, data?: DeleteResourcePermissionCommandOutput) => void): void;
|
|
31
33
|
deleteResourcePermission(args: DeleteResourcePermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteResourcePermissionCommandOutput) => void): void;
|
|
32
34
|
/**
|
|
35
|
+
* @public
|
|
33
36
|
* <p>Deregister an SAP application with AWS Systems Manager for SAP. This action does not
|
|
34
37
|
* affect the existing setup of your SAP workloads on Amazon EC2.</p>
|
|
35
38
|
*/
|
|
@@ -37,6 +40,7 @@ export declare class SsmSap extends SsmSapClient {
|
|
|
37
40
|
deregisterApplication(args: DeregisterApplicationCommandInput, cb: (err: any, data?: DeregisterApplicationCommandOutput) => void): void;
|
|
38
41
|
deregisterApplication(args: DeregisterApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterApplicationCommandOutput) => void): void;
|
|
39
42
|
/**
|
|
43
|
+
* @public
|
|
40
44
|
* <p>Gets an application registered with AWS Systems Manager for SAP. It also returns the
|
|
41
45
|
* components of the application.</p>
|
|
42
46
|
*/
|
|
@@ -44,6 +48,7 @@ export declare class SsmSap extends SsmSapClient {
|
|
|
44
48
|
getApplication(args: GetApplicationCommandInput, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
|
|
45
49
|
getApplication(args: GetApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
|
|
46
50
|
/**
|
|
51
|
+
* @public
|
|
47
52
|
* <p>Gets the component of an application registered with AWS Systems Manager for
|
|
48
53
|
* SAP.</p>
|
|
49
54
|
*/
|
|
@@ -51,6 +56,7 @@ export declare class SsmSap extends SsmSapClient {
|
|
|
51
56
|
getComponent(args: GetComponentCommandInput, cb: (err: any, data?: GetComponentCommandOutput) => void): void;
|
|
52
57
|
getComponent(args: GetComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetComponentCommandOutput) => void): void;
|
|
53
58
|
/**
|
|
59
|
+
* @public
|
|
54
60
|
* <p>Gets the SAP HANA database of an application registered with AWS Systems Manager for
|
|
55
61
|
* SAP.</p>
|
|
56
62
|
*/
|
|
@@ -58,30 +64,35 @@ export declare class SsmSap extends SsmSapClient {
|
|
|
58
64
|
getDatabase(args: GetDatabaseCommandInput, cb: (err: any, data?: GetDatabaseCommandOutput) => void): void;
|
|
59
65
|
getDatabase(args: GetDatabaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDatabaseCommandOutput) => void): void;
|
|
60
66
|
/**
|
|
67
|
+
* @public
|
|
61
68
|
* <p>Gets the details of an operation by specifying the operation ID.</p>
|
|
62
69
|
*/
|
|
63
70
|
getOperation(args: GetOperationCommandInput, options?: __HttpHandlerOptions): Promise<GetOperationCommandOutput>;
|
|
64
71
|
getOperation(args: GetOperationCommandInput, cb: (err: any, data?: GetOperationCommandOutput) => void): void;
|
|
65
72
|
getOperation(args: GetOperationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOperationCommandOutput) => void): void;
|
|
66
73
|
/**
|
|
74
|
+
* @public
|
|
67
75
|
* <p>Gets permissions associated with the target database.</p>
|
|
68
76
|
*/
|
|
69
77
|
getResourcePermission(args: GetResourcePermissionCommandInput, options?: __HttpHandlerOptions): Promise<GetResourcePermissionCommandOutput>;
|
|
70
78
|
getResourcePermission(args: GetResourcePermissionCommandInput, cb: (err: any, data?: GetResourcePermissionCommandOutput) => void): void;
|
|
71
79
|
getResourcePermission(args: GetResourcePermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourcePermissionCommandOutput) => void): void;
|
|
72
80
|
/**
|
|
81
|
+
* @public
|
|
73
82
|
* <p>Lists all the applications registered with AWS Systems Manager for SAP.</p>
|
|
74
83
|
*/
|
|
75
84
|
listApplications(args: ListApplicationsCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationsCommandOutput>;
|
|
76
85
|
listApplications(args: ListApplicationsCommandInput, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
77
86
|
listApplications(args: ListApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
78
87
|
/**
|
|
88
|
+
* @public
|
|
79
89
|
* <p>Lists all the components registered with AWS Systems Manager for SAP.</p>
|
|
80
90
|
*/
|
|
81
91
|
listComponents(args: ListComponentsCommandInput, options?: __HttpHandlerOptions): Promise<ListComponentsCommandOutput>;
|
|
82
92
|
listComponents(args: ListComponentsCommandInput, cb: (err: any, data?: ListComponentsCommandOutput) => void): void;
|
|
83
93
|
listComponents(args: ListComponentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListComponentsCommandOutput) => void): void;
|
|
84
94
|
/**
|
|
95
|
+
* @public
|
|
85
96
|
* <p>Lists the SAP HANA databases of an application registered with AWS Systems Manager for
|
|
86
97
|
* SAP.</p>
|
|
87
98
|
*/
|
|
@@ -89,12 +100,14 @@ export declare class SsmSap extends SsmSapClient {
|
|
|
89
100
|
listDatabases(args: ListDatabasesCommandInput, cb: (err: any, data?: ListDatabasesCommandOutput) => void): void;
|
|
90
101
|
listDatabases(args: ListDatabasesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDatabasesCommandOutput) => void): void;
|
|
91
102
|
/**
|
|
103
|
+
* @public
|
|
92
104
|
* <p>Lists the operations performed by AWS Systems Manager for SAP.</p>
|
|
93
105
|
*/
|
|
94
106
|
listOperations(args: ListOperationsCommandInput, options?: __HttpHandlerOptions): Promise<ListOperationsCommandOutput>;
|
|
95
107
|
listOperations(args: ListOperationsCommandInput, cb: (err: any, data?: ListOperationsCommandOutput) => void): void;
|
|
96
108
|
listOperations(args: ListOperationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOperationsCommandOutput) => void): void;
|
|
97
109
|
/**
|
|
110
|
+
* @public
|
|
98
111
|
* <p>Lists all tags on an SAP HANA application and/or database registered with AWS Systems
|
|
99
112
|
* Manager for SAP.</p>
|
|
100
113
|
*/
|
|
@@ -102,12 +115,14 @@ export declare class SsmSap extends SsmSapClient {
|
|
|
102
115
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
103
116
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
104
117
|
/**
|
|
118
|
+
* @public
|
|
105
119
|
* <p>Adds permissions to the target database.</p>
|
|
106
120
|
*/
|
|
107
121
|
putResourcePermission(args: PutResourcePermissionCommandInput, options?: __HttpHandlerOptions): Promise<PutResourcePermissionCommandOutput>;
|
|
108
122
|
putResourcePermission(args: PutResourcePermissionCommandInput, cb: (err: any, data?: PutResourcePermissionCommandOutput) => void): void;
|
|
109
123
|
putResourcePermission(args: PutResourcePermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutResourcePermissionCommandOutput) => void): void;
|
|
110
124
|
/**
|
|
125
|
+
* @public
|
|
111
126
|
* <p>Register an SAP application with AWS Systems Manager for SAP. You must meet the
|
|
112
127
|
* following requirements before registering. </p>
|
|
113
128
|
* <p>The SAP application you want to register with AWS Systems Manager for SAP is running
|
|
@@ -121,18 +136,21 @@ export declare class SsmSap extends SsmSapClient {
|
|
|
121
136
|
registerApplication(args: RegisterApplicationCommandInput, cb: (err: any, data?: RegisterApplicationCommandOutput) => void): void;
|
|
122
137
|
registerApplication(args: RegisterApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterApplicationCommandOutput) => void): void;
|
|
123
138
|
/**
|
|
139
|
+
* @public
|
|
124
140
|
* <p>Creates tag for a resource by specifying the ARN.</p>
|
|
125
141
|
*/
|
|
126
142
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
127
143
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
128
144
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
129
145
|
/**
|
|
146
|
+
* @public
|
|
130
147
|
* <p>Delete the tags for a resource.</p>
|
|
131
148
|
*/
|
|
132
149
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
133
150
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
134
151
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
135
152
|
/**
|
|
153
|
+
* @public
|
|
136
154
|
* <p>Updates the settings of an application registered with AWS Systems Manager for
|
|
137
155
|
* SAP.</p>
|
|
138
156
|
*/
|
|
@@ -25,15 +25,24 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
|
|
|
25
25
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
26
26
|
import { UpdateApplicationSettingsCommandInput, UpdateApplicationSettingsCommandOutput } from "./commands/UpdateApplicationSettingsCommand";
|
|
27
27
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
28
|
+
/**
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
28
31
|
export type ServiceInputTypes = DeleteResourcePermissionCommandInput | DeregisterApplicationCommandInput | GetApplicationCommandInput | GetComponentCommandInput | GetDatabaseCommandInput | GetOperationCommandInput | GetResourcePermissionCommandInput | ListApplicationsCommandInput | ListComponentsCommandInput | ListDatabasesCommandInput | ListOperationsCommandInput | ListTagsForResourceCommandInput | PutResourcePermissionCommandInput | RegisterApplicationCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateApplicationSettingsCommandInput;
|
|
32
|
+
/**
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
29
35
|
export type ServiceOutputTypes = DeleteResourcePermissionCommandOutput | DeregisterApplicationCommandOutput | GetApplicationCommandOutput | GetComponentCommandOutput | GetDatabaseCommandOutput | GetOperationCommandOutput | GetResourcePermissionCommandOutput | ListApplicationsCommandOutput | ListComponentsCommandOutput | ListDatabasesCommandOutput | ListOperationsCommandOutput | ListTagsForResourceCommandOutput | PutResourcePermissionCommandOutput | RegisterApplicationCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateApplicationSettingsCommandOutput;
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
30
39
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
31
40
|
/**
|
|
32
41
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
33
42
|
*/
|
|
34
43
|
requestHandler?: __HttpHandler;
|
|
35
44
|
/**
|
|
36
|
-
* A constructor for a class implementing the {@link
|
|
45
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
37
46
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
38
47
|
* @internal
|
|
39
48
|
*/
|
|
@@ -123,23 +132,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
123
132
|
*/
|
|
124
133
|
logger?: __Logger;
|
|
125
134
|
/**
|
|
126
|
-
* The {@link
|
|
135
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
127
136
|
*/
|
|
128
137
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
129
138
|
}
|
|
139
|
+
/**
|
|
140
|
+
* @public
|
|
141
|
+
*/
|
|
130
142
|
type SsmSapClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
131
143
|
/**
|
|
132
|
-
*
|
|
144
|
+
* @public
|
|
145
|
+
*
|
|
146
|
+
* The configuration interface of SsmSapClient class constructor that set the region, credentials and other options.
|
|
133
147
|
*/
|
|
134
148
|
export interface SsmSapClientConfig extends SsmSapClientConfigType {
|
|
135
149
|
}
|
|
150
|
+
/**
|
|
151
|
+
* @public
|
|
152
|
+
*/
|
|
136
153
|
type SsmSapClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
137
154
|
/**
|
|
138
|
-
*
|
|
155
|
+
* @public
|
|
156
|
+
*
|
|
157
|
+
* The resolved configuration interface of SsmSapClient class. This is resolved and normalized from the {@link SsmSapClientConfig | constructor configuration interface}.
|
|
139
158
|
*/
|
|
140
159
|
export interface SsmSapClientResolvedConfig extends SsmSapClientResolvedConfigType {
|
|
141
160
|
}
|
|
142
161
|
/**
|
|
162
|
+
* @public
|
|
143
163
|
* <p>This API reference provides descriptions, syntax, and other details about each of the
|
|
144
164
|
* actions and data types for AWS Systems Manager for SAP. The topic for each action shows
|
|
145
165
|
* the API request parameters and responses. </p>
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteResourcePermissionInput, DeleteResourcePermissionOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteResourcePermissionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteResourcePermissionCommandInput extends DeleteResourcePermissionInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteResourcePermissionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteResourcePermissionCommandOutput extends DeleteResourcePermissionOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes permissions associated with the target database.</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 DeleteResourcePermissionCommandOutput extends DeleteResourcePer
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteResourcePermissionCommandInput - {@link DeleteResourcePermissionCommandInput}
|
|
34
|
+
* @returns {@link DeleteResourcePermissionCommandOutput}
|
|
28
35
|
* @see {@link DeleteResourcePermissionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteResourcePermissionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DeleteResourcePermissionCommandOutput extends DeleteResourcePer
|
|
|
43
50
|
export declare class DeleteResourcePermissionCommand extends $Command<DeleteResourcePermissionCommandInput, DeleteResourcePermissionCommandOutput, SsmSapClientResolvedConfig> {
|
|
44
51
|
readonly input: DeleteResourcePermissionCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DeleteResourcePermissionCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteResourcePermissionCommandInput, DeleteResourcePermissionCommandOutput>;
|
|
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 { DeregisterApplicationInput, DeregisterApplicationOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeregisterApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeregisterApplicationCommandInput extends DeregisterApplicationInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeregisterApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeregisterApplicationCommandOutput extends DeregisterApplicationOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deregister an SAP application with AWS Systems Manager for SAP. This action does not
|
|
18
23
|
* affect the existing setup of your SAP workloads on Amazon EC2.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeregisterApplicationCommandOutput extends DeregisterApplicatio
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeregisterApplicationCommandInput - {@link DeregisterApplicationCommandInput}
|
|
35
|
+
* @returns {@link DeregisterApplicationCommandOutput}
|
|
29
36
|
* @see {@link DeregisterApplicationCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeregisterApplicationCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
|
|
@@ -41,11 +48,20 @@ export interface DeregisterApplicationCommandOutput extends DeregisterApplicatio
|
|
|
41
48
|
export declare class DeregisterApplicationCommand extends $Command<DeregisterApplicationCommandInput, DeregisterApplicationCommandOutput, SsmSapClientResolvedConfig> {
|
|
42
49
|
readonly input: DeregisterApplicationCommandInput;
|
|
43
50
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
44
54
|
constructor(input: DeregisterApplicationCommandInput);
|
|
45
55
|
/**
|
|
46
56
|
* @internal
|
|
47
57
|
*/
|
|
48
58
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeregisterApplicationCommandInput, DeregisterApplicationCommandOutput>;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
49
62
|
private serialize;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
50
66
|
private deserialize;
|
|
51
67
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetApplicationInput, GetApplicationOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetApplicationCommandInput extends GetApplicationInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetApplicationCommandOutput extends GetApplicationOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets an application registered with AWS Systems Manager for SAP. It also returns the
|
|
18
23
|
* components of the application.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetApplicationCommandOutput extends GetApplicationOutput, __Met
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetApplicationCommandInput - {@link GetApplicationCommandInput}
|
|
35
|
+
* @returns {@link GetApplicationCommandOutput}
|
|
29
36
|
* @see {@link GetApplicationCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetApplicationCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
|
|
@@ -41,11 +48,20 @@ export interface GetApplicationCommandOutput extends GetApplicationOutput, __Met
|
|
|
41
48
|
export declare class GetApplicationCommand extends $Command<GetApplicationCommandInput, GetApplicationCommandOutput, SsmSapClientResolvedConfig> {
|
|
42
49
|
readonly input: GetApplicationCommandInput;
|
|
43
50
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
44
54
|
constructor(input: GetApplicationCommandInput);
|
|
45
55
|
/**
|
|
46
56
|
* @internal
|
|
47
57
|
*/
|
|
48
58
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetApplicationCommandInput, GetApplicationCommandOutput>;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
49
62
|
private serialize;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
50
66
|
private deserialize;
|
|
51
67
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetComponentInput, GetComponentOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetComponentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetComponentCommandInput extends GetComponentInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetComponentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetComponentCommandOutput extends GetComponentOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the component of an application registered with AWS Systems Manager for
|
|
18
23
|
* SAP.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetComponentCommandOutput extends GetComponentOutput, __Metadat
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetComponentCommandInput - {@link GetComponentCommandInput}
|
|
35
|
+
* @returns {@link GetComponentCommandOutput}
|
|
29
36
|
* @see {@link GetComponentCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetComponentCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
|
|
@@ -41,11 +48,20 @@ export interface GetComponentCommandOutput extends GetComponentOutput, __Metadat
|
|
|
41
48
|
export declare class GetComponentCommand extends $Command<GetComponentCommandInput, GetComponentCommandOutput, SsmSapClientResolvedConfig> {
|
|
42
49
|
readonly input: GetComponentCommandInput;
|
|
43
50
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
44
54
|
constructor(input: GetComponentCommandInput);
|
|
45
55
|
/**
|
|
46
56
|
* @internal
|
|
47
57
|
*/
|
|
48
58
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetComponentCommandInput, GetComponentCommandOutput>;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
49
62
|
private serialize;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
50
66
|
private deserialize;
|
|
51
67
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetDatabaseInput, GetDatabaseOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetDatabaseCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetDatabaseCommandInput extends GetDatabaseInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetDatabaseCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetDatabaseCommandOutput extends GetDatabaseOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the SAP HANA database of an application registered with AWS Systems Manager for
|
|
18
23
|
* SAP.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetDatabaseCommandOutput extends GetDatabaseOutput, __MetadataB
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetDatabaseCommandInput - {@link GetDatabaseCommandInput}
|
|
35
|
+
* @returns {@link GetDatabaseCommandOutput}
|
|
29
36
|
* @see {@link GetDatabaseCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetDatabaseCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
|
|
@@ -41,11 +48,20 @@ export interface GetDatabaseCommandOutput extends GetDatabaseOutput, __MetadataB
|
|
|
41
48
|
export declare class GetDatabaseCommand extends $Command<GetDatabaseCommandInput, GetDatabaseCommandOutput, SsmSapClientResolvedConfig> {
|
|
42
49
|
readonly input: GetDatabaseCommandInput;
|
|
43
50
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
44
54
|
constructor(input: GetDatabaseCommandInput);
|
|
45
55
|
/**
|
|
46
56
|
* @internal
|
|
47
57
|
*/
|
|
48
58
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDatabaseCommandInput, GetDatabaseCommandOutput>;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
49
62
|
private serialize;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
50
66
|
private deserialize;
|
|
51
67
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetOperationInput, GetOperationOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetOperationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetOperationCommandInput extends GetOperationInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetOperationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetOperationCommandOutput extends GetOperationOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the details of an operation by specifying the operation ID.</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 GetOperationCommandOutput extends GetOperationOutput, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetOperationCommandInput - {@link GetOperationCommandInput}
|
|
34
|
+
* @returns {@link GetOperationCommandOutput}
|
|
28
35
|
* @see {@link GetOperationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetOperationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface GetOperationCommandOutput extends GetOperationOutput, __Metadat
|
|
|
40
47
|
export declare class GetOperationCommand extends $Command<GetOperationCommandInput, GetOperationCommandOutput, SsmSapClientResolvedConfig> {
|
|
41
48
|
readonly input: GetOperationCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: GetOperationCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetOperationCommandInput, GetOperationCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetResourcePermissionInput, GetResourcePermissionOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetResourcePermissionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetResourcePermissionCommandInput extends GetResourcePermissionInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetResourcePermissionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetResourcePermissionCommandOutput extends GetResourcePermissionOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets permissions associated with the target database.</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 GetResourcePermissionCommandOutput extends GetResourcePermissio
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetResourcePermissionCommandInput - {@link GetResourcePermissionCommandInput}
|
|
34
|
+
* @returns {@link GetResourcePermissionCommandOutput}
|
|
28
35
|
* @see {@link GetResourcePermissionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetResourcePermissionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface GetResourcePermissionCommandOutput extends GetResourcePermissio
|
|
|
43
50
|
export declare class GetResourcePermissionCommand extends $Command<GetResourcePermissionCommandInput, GetResourcePermissionCommandOutput, SsmSapClientResolvedConfig> {
|
|
44
51
|
readonly input: GetResourcePermissionCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: GetResourcePermissionCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetResourcePermissionCommandInput, GetResourcePermissionCommandOutput>;
|
|
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 { ListApplicationsInput, ListApplicationsOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListApplicationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListApplicationsCommandInput extends ListApplicationsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListApplicationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListApplicationsCommandOutput extends ListApplicationsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all the applications registered with AWS Systems Manager for SAP.</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 ListApplicationsCommandOutput extends ListApplicationsOutput, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListApplicationsCommandInput - {@link ListApplicationsCommandInput}
|
|
34
|
+
* @returns {@link ListApplicationsCommandOutput}
|
|
28
35
|
* @see {@link ListApplicationsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListApplicationsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface ListApplicationsCommandOutput extends ListApplicationsOutput, _
|
|
|
43
50
|
export declare class ListApplicationsCommand extends $Command<ListApplicationsCommandInput, ListApplicationsCommandOutput, SsmSapClientResolvedConfig> {
|
|
44
51
|
readonly input: ListApplicationsCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: ListApplicationsCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListApplicationsCommandInput, ListApplicationsCommandOutput>;
|
|
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 { ListComponentsInput, ListComponentsOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListComponentsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListComponentsCommandInput extends ListComponentsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListComponentsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListComponentsCommandOutput extends ListComponentsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all the components registered with AWS Systems Manager for SAP.</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 ListComponentsCommandOutput extends ListComponentsOutput, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListComponentsCommandInput - {@link ListComponentsCommandInput}
|
|
34
|
+
* @returns {@link ListComponentsCommandOutput}
|
|
28
35
|
* @see {@link ListComponentsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListComponentsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface ListComponentsCommandOutput extends ListComponentsOutput, __Met
|
|
|
43
50
|
export declare class ListComponentsCommand extends $Command<ListComponentsCommandInput, ListComponentsCommandOutput, SsmSapClientResolvedConfig> {
|
|
44
51
|
readonly input: ListComponentsCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: ListComponentsCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListComponentsCommandInput, ListComponentsCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|