@aws-sdk/client-ssm-sap 3.533.0 → 3.535.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 +6 -1
- package/dist-types/SsmSapClient.d.ts +1 -1
- package/dist-types/commands/DeleteResourcePermissionCommand.d.ts +2 -1
- package/dist-types/commands/DeregisterApplicationCommand.d.ts +2 -1
- package/dist-types/commands/GetApplicationCommand.d.ts +2 -1
- package/dist-types/commands/GetComponentCommand.d.ts +2 -1
- package/dist-types/commands/GetDatabaseCommand.d.ts +2 -1
- package/dist-types/commands/GetOperationCommand.d.ts +2 -1
- package/dist-types/commands/GetResourcePermissionCommand.d.ts +2 -1
- package/dist-types/commands/ListApplicationsCommand.d.ts +2 -1
- package/dist-types/commands/ListComponentsCommand.d.ts +2 -1
- package/dist-types/commands/ListDatabasesCommand.d.ts +2 -1
- package/dist-types/commands/ListOperationsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/PutResourcePermissionCommand.d.ts +2 -1
- package/dist-types/commands/RegisterApplicationCommand.d.ts +2 -1
- package/dist-types/commands/StartApplicationRefreshCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateApplicationSettingsCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +192 -192
- package/dist-types/ts3.4/SsmSap.d.ts +5 -0
- package/dist-types/ts3.4/commands/DeleteResourcePermissionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeregisterApplicationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetComponentCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetDatabaseCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetOperationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetResourcePermissionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListDatabasesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListOperationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PutResourcePermissionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/RegisterApplicationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StartApplicationRefreshCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateApplicationSettingsCommand.d.ts +9 -0
- package/package.json +40 -40
package/dist-types/SsmSap.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ export interface SsmSap {
|
|
|
34
34
|
/**
|
|
35
35
|
* @see {@link GetApplicationCommand}
|
|
36
36
|
*/
|
|
37
|
+
getApplication(): Promise<GetApplicationCommandOutput>;
|
|
37
38
|
getApplication(args: GetApplicationCommandInput, options?: __HttpHandlerOptions): Promise<GetApplicationCommandOutput>;
|
|
38
39
|
getApplication(args: GetApplicationCommandInput, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
|
|
39
40
|
getApplication(args: GetApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
|
|
@@ -46,6 +47,7 @@ export interface SsmSap {
|
|
|
46
47
|
/**
|
|
47
48
|
* @see {@link GetDatabaseCommand}
|
|
48
49
|
*/
|
|
50
|
+
getDatabase(): Promise<GetDatabaseCommandOutput>;
|
|
49
51
|
getDatabase(args: GetDatabaseCommandInput, options?: __HttpHandlerOptions): Promise<GetDatabaseCommandOutput>;
|
|
50
52
|
getDatabase(args: GetDatabaseCommandInput, cb: (err: any, data?: GetDatabaseCommandOutput) => void): void;
|
|
51
53
|
getDatabase(args: GetDatabaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDatabaseCommandOutput) => void): void;
|
|
@@ -64,18 +66,21 @@ export interface SsmSap {
|
|
|
64
66
|
/**
|
|
65
67
|
* @see {@link ListApplicationsCommand}
|
|
66
68
|
*/
|
|
69
|
+
listApplications(): Promise<ListApplicationsCommandOutput>;
|
|
67
70
|
listApplications(args: ListApplicationsCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationsCommandOutput>;
|
|
68
71
|
listApplications(args: ListApplicationsCommandInput, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
69
72
|
listApplications(args: ListApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
70
73
|
/**
|
|
71
74
|
* @see {@link ListComponentsCommand}
|
|
72
75
|
*/
|
|
76
|
+
listComponents(): Promise<ListComponentsCommandOutput>;
|
|
73
77
|
listComponents(args: ListComponentsCommandInput, options?: __HttpHandlerOptions): Promise<ListComponentsCommandOutput>;
|
|
74
78
|
listComponents(args: ListComponentsCommandInput, cb: (err: any, data?: ListComponentsCommandOutput) => void): void;
|
|
75
79
|
listComponents(args: ListComponentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListComponentsCommandOutput) => void): void;
|
|
76
80
|
/**
|
|
77
81
|
* @see {@link ListDatabasesCommand}
|
|
78
82
|
*/
|
|
83
|
+
listDatabases(): Promise<ListDatabasesCommandOutput>;
|
|
79
84
|
listDatabases(args: ListDatabasesCommandInput, options?: __HttpHandlerOptions): Promise<ListDatabasesCommandOutput>;
|
|
80
85
|
listDatabases(args: ListDatabasesCommandInput, cb: (err: any, data?: ListDatabasesCommandOutput) => void): void;
|
|
81
86
|
listDatabases(args: ListDatabasesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDatabasesCommandOutput) => void): void;
|
|
@@ -129,10 +134,10 @@ export interface SsmSap {
|
|
|
129
134
|
updateApplicationSettings(args: UpdateApplicationSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateApplicationSettingsCommandOutput) => void): void;
|
|
130
135
|
}
|
|
131
136
|
/**
|
|
132
|
-
* @public
|
|
133
137
|
* <p>This API reference provides descriptions, syntax, and other details about each of the
|
|
134
138
|
* actions and data types for AWS Systems Manager for SAP. The topic for each action shows
|
|
135
139
|
* the API request parameters and responses. </p>
|
|
140
|
+
* @public
|
|
136
141
|
*/
|
|
137
142
|
export declare class SsmSap extends SsmSapClient implements SsmSap {
|
|
138
143
|
}
|
|
@@ -169,10 +169,10 @@ export type SsmSapClientResolvedConfigType = __SmithyResolvedConfiguration<__Htt
|
|
|
169
169
|
export interface SsmSapClientResolvedConfig extends SsmSapClientResolvedConfigType {
|
|
170
170
|
}
|
|
171
171
|
/**
|
|
172
|
-
* @public
|
|
173
172
|
* <p>This API reference provides descriptions, syntax, and other details about each of the
|
|
174
173
|
* actions and data types for AWS Systems Manager for SAP. The topic for each action shows
|
|
175
174
|
* the API request parameters and responses. </p>
|
|
175
|
+
* @public
|
|
176
176
|
*/
|
|
177
177
|
export declare class SsmSapClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig> {
|
|
178
178
|
/**
|
|
@@ -22,10 +22,10 @@ export interface DeleteResourcePermissionCommandOutput extends DeleteResourcePer
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteResourcePermissionCommand_base: {
|
|
24
24
|
new (input: DeleteResourcePermissionCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteResourcePermissionCommandInput, DeleteResourcePermissionCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteResourcePermissionCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteResourcePermissionCommandInput, DeleteResourcePermissionCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Removes permissions associated with the target database.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -64,6 +64,7 @@ declare const DeleteResourcePermissionCommand_base: {
|
|
|
64
64
|
* @throws {@link SsmSapServiceException}
|
|
65
65
|
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
66
66
|
*
|
|
67
|
+
* @public
|
|
67
68
|
*/
|
|
68
69
|
export declare class DeleteResourcePermissionCommand extends DeleteResourcePermissionCommand_base {
|
|
69
70
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeregisterApplicationCommandOutput extends DeregisterApplicatio
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeregisterApplicationCommand_base: {
|
|
24
24
|
new (input: DeregisterApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<DeregisterApplicationCommandInput, DeregisterApplicationCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeregisterApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<DeregisterApplicationCommandInput, DeregisterApplicationCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deregister an SAP application with AWS Systems Manager for SAP. This action does not
|
|
30
30
|
* affect the existing setup of your SAP workloads on Amazon EC2.</p>
|
|
31
31
|
* @example
|
|
@@ -61,6 +61,7 @@ declare const DeregisterApplicationCommand_base: {
|
|
|
61
61
|
* @throws {@link SsmSapServiceException}
|
|
62
62
|
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
63
63
|
*
|
|
64
|
+
* @public
|
|
64
65
|
*/
|
|
65
66
|
export declare class DeregisterApplicationCommand extends DeregisterApplicationCommand_base {
|
|
66
67
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetApplicationCommandOutput extends GetApplicationOutput, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetApplicationCommand_base: {
|
|
24
24
|
new (input: GetApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<GetApplicationCommandInput, GetApplicationCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [GetApplicationCommandInput]): import("@smithy/smithy-client").CommandImpl<GetApplicationCommandInput, GetApplicationCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Gets an application registered with AWS Systems Manager for SAP. It also returns the
|
|
30
30
|
* components of the application.</p>
|
|
31
31
|
* @example
|
|
@@ -77,6 +77,7 @@ declare const GetApplicationCommand_base: {
|
|
|
77
77
|
* @throws {@link SsmSapServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
79
79
|
*
|
|
80
|
+
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class GetApplicationCommand extends GetApplicationCommand_base {
|
|
82
83
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetComponentCommandOutput extends GetComponentOutput, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetComponentCommand_base: {
|
|
24
24
|
new (input: GetComponentCommandInput): import("@smithy/smithy-client").CommandImpl<GetComponentCommandInput, GetComponentCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetComponentCommandInput): import("@smithy/smithy-client").CommandImpl<GetComponentCommandInput, GetComponentCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Gets the component of an application registered with AWS Systems Manager for
|
|
30
30
|
* SAP.</p>
|
|
31
31
|
* @example
|
|
@@ -122,6 +122,7 @@ declare const GetComponentCommand_base: {
|
|
|
122
122
|
* @throws {@link SsmSapServiceException}
|
|
123
123
|
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
124
124
|
*
|
|
125
|
+
* @public
|
|
125
126
|
*/
|
|
126
127
|
export declare class GetComponentCommand extends GetComponentCommand_base {
|
|
127
128
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetDatabaseCommandOutput extends GetDatabaseOutput, __MetadataB
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetDatabaseCommand_base: {
|
|
24
24
|
new (input: GetDatabaseCommandInput): import("@smithy/smithy-client").CommandImpl<GetDatabaseCommandInput, GetDatabaseCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [GetDatabaseCommandInput]): import("@smithy/smithy-client").CommandImpl<GetDatabaseCommandInput, GetDatabaseCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Gets the SAP HANA database of an application registered with AWS Systems Manager for
|
|
30
30
|
* SAP.</p>
|
|
31
31
|
* @example
|
|
@@ -84,6 +84,7 @@ declare const GetDatabaseCommand_base: {
|
|
|
84
84
|
* @throws {@link SsmSapServiceException}
|
|
85
85
|
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
86
86
|
*
|
|
87
|
+
* @public
|
|
87
88
|
*/
|
|
88
89
|
export declare class GetDatabaseCommand extends GetDatabaseCommand_base {
|
|
89
90
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetOperationCommandOutput extends GetOperationOutput, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetOperationCommand_base: {
|
|
24
24
|
new (input: GetOperationCommandInput): import("@smithy/smithy-client").CommandImpl<GetOperationCommandInput, GetOperationCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetOperationCommandInput): import("@smithy/smithy-client").CommandImpl<GetOperationCommandInput, GetOperationCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Gets the details of an operation by specifying the operation ID.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -73,6 +73,7 @@ declare const GetOperationCommand_base: {
|
|
|
73
73
|
* @throws {@link SsmSapServiceException}
|
|
74
74
|
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
75
75
|
*
|
|
76
|
+
* @public
|
|
76
77
|
*/
|
|
77
78
|
export declare class GetOperationCommand extends GetOperationCommand_base {
|
|
78
79
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetResourcePermissionCommandOutput extends GetResourcePermissio
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetResourcePermissionCommand_base: {
|
|
24
24
|
new (input: GetResourcePermissionCommandInput): import("@smithy/smithy-client").CommandImpl<GetResourcePermissionCommandInput, GetResourcePermissionCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetResourcePermissionCommandInput): import("@smithy/smithy-client").CommandImpl<GetResourcePermissionCommandInput, GetResourcePermissionCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Gets permissions associated with the target database.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -63,6 +63,7 @@ declare const GetResourcePermissionCommand_base: {
|
|
|
63
63
|
* @throws {@link SsmSapServiceException}
|
|
64
64
|
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
65
65
|
*
|
|
66
|
+
* @public
|
|
66
67
|
*/
|
|
67
68
|
export declare class GetResourcePermissionCommand extends GetResourcePermissionCommand_base {
|
|
68
69
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListApplicationsCommandOutput extends ListApplicationsOutput, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListApplicationsCommand_base: {
|
|
24
24
|
new (input: ListApplicationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListApplicationsCommandInput, ListApplicationsCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListApplicationsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListApplicationsCommandInput, ListApplicationsCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists all the applications registered with AWS Systems Manager for SAP.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -81,6 +81,7 @@ declare const ListApplicationsCommand_base: {
|
|
|
81
81
|
* @throws {@link SsmSapServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
83
83
|
*
|
|
84
|
+
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class ListApplicationsCommand extends ListApplicationsCommand_base {
|
|
86
87
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListComponentsCommandOutput extends ListComponentsOutput, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListComponentsCommand_base: {
|
|
24
24
|
new (input: ListComponentsCommandInput): import("@smithy/smithy-client").CommandImpl<ListComponentsCommandInput, ListComponentsCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListComponentsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListComponentsCommandInput, ListComponentsCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists all the components registered with AWS Systems Manager for SAP.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -78,6 +78,7 @@ declare const ListComponentsCommand_base: {
|
|
|
78
78
|
* @throws {@link SsmSapServiceException}
|
|
79
79
|
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
80
80
|
*
|
|
81
|
+
* @public
|
|
81
82
|
*/
|
|
82
83
|
export declare class ListComponentsCommand extends ListComponentsCommand_base {
|
|
83
84
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListDatabasesCommandOutput extends ListDatabasesOutput, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListDatabasesCommand_base: {
|
|
24
24
|
new (input: ListDatabasesCommandInput): import("@smithy/smithy-client").CommandImpl<ListDatabasesCommandInput, ListDatabasesCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListDatabasesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListDatabasesCommandInput, ListDatabasesCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists the SAP HANA databases of an application registered with AWS Systems Manager for
|
|
30
30
|
* SAP.</p>
|
|
31
31
|
* @example
|
|
@@ -78,6 +78,7 @@ declare const ListDatabasesCommand_base: {
|
|
|
78
78
|
* @throws {@link SsmSapServiceException}
|
|
79
79
|
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
80
80
|
*
|
|
81
|
+
* @public
|
|
81
82
|
*/
|
|
82
83
|
export declare class ListDatabasesCommand extends ListDatabasesCommand_base {
|
|
83
84
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListOperationsCommandOutput extends ListOperationsOutput, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListOperationsCommand_base: {
|
|
24
24
|
new (input: ListOperationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListOperationsCommandInput, ListOperationsCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListOperationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListOperationsCommandInput, ListOperationsCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists the operations performed by AWS Systems Manager for SAP.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -85,6 +85,7 @@ declare const ListOperationsCommand_base: {
|
|
|
85
85
|
* @throws {@link SsmSapServiceException}
|
|
86
86
|
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
87
87
|
*
|
|
88
|
+
* @public
|
|
88
89
|
*/
|
|
89
90
|
export declare class ListOperationsCommand extends ListOperationsCommand_base {
|
|
90
91
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists all tags on an SAP HANA application and/or database registered with AWS Systems
|
|
30
30
|
* Manager for SAP.</p>
|
|
31
31
|
* @example
|
|
@@ -65,6 +65,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
65
65
|
* @throws {@link SsmSapServiceException}
|
|
66
66
|
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
67
67
|
*
|
|
68
|
+
* @public
|
|
68
69
|
*/
|
|
69
70
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
70
71
|
}
|
|
@@ -22,10 +22,10 @@ export interface PutResourcePermissionCommandOutput extends PutResourcePermissio
|
|
|
22
22
|
}
|
|
23
23
|
declare const PutResourcePermissionCommand_base: {
|
|
24
24
|
new (input: PutResourcePermissionCommandInput): import("@smithy/smithy-client").CommandImpl<PutResourcePermissionCommandInput, PutResourcePermissionCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: PutResourcePermissionCommandInput): import("@smithy/smithy-client").CommandImpl<PutResourcePermissionCommandInput, PutResourcePermissionCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Adds permissions to the target database.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -64,6 +64,7 @@ declare const PutResourcePermissionCommand_base: {
|
|
|
64
64
|
* @throws {@link SsmSapServiceException}
|
|
65
65
|
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
66
66
|
*
|
|
67
|
+
* @public
|
|
67
68
|
*/
|
|
68
69
|
export declare class PutResourcePermissionCommand extends PutResourcePermissionCommand_base {
|
|
69
70
|
}
|
|
@@ -22,10 +22,10 @@ export interface RegisterApplicationCommandOutput extends RegisterApplicationOut
|
|
|
22
22
|
}
|
|
23
23
|
declare const RegisterApplicationCommand_base: {
|
|
24
24
|
new (input: RegisterApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<RegisterApplicationCommandInput, RegisterApplicationCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: RegisterApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<RegisterApplicationCommandInput, RegisterApplicationCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Register an SAP application with AWS Systems Manager for SAP. You must meet the
|
|
30
30
|
* following requirements before registering. </p>
|
|
31
31
|
* <p>The SAP application you want to register with AWS Systems Manager for SAP is running
|
|
@@ -102,6 +102,7 @@ declare const RegisterApplicationCommand_base: {
|
|
|
102
102
|
* @throws {@link SsmSapServiceException}
|
|
103
103
|
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
104
104
|
*
|
|
105
|
+
* @public
|
|
105
106
|
*/
|
|
106
107
|
export declare class RegisterApplicationCommand extends RegisterApplicationCommand_base {
|
|
107
108
|
}
|
|
@@ -22,10 +22,10 @@ export interface StartApplicationRefreshCommandOutput extends StartApplicationRe
|
|
|
22
22
|
}
|
|
23
23
|
declare const StartApplicationRefreshCommand_base: {
|
|
24
24
|
new (input: StartApplicationRefreshCommandInput): import("@smithy/smithy-client").CommandImpl<StartApplicationRefreshCommandInput, StartApplicationRefreshCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StartApplicationRefreshCommandInput): import("@smithy/smithy-client").CommandImpl<StartApplicationRefreshCommandInput, StartApplicationRefreshCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Refreshes a registered application.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -68,6 +68,7 @@ declare const StartApplicationRefreshCommand_base: {
|
|
|
68
68
|
* @throws {@link SsmSapServiceException}
|
|
69
69
|
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
70
70
|
*
|
|
71
|
+
* @public
|
|
71
72
|
*/
|
|
72
73
|
export declare class StartApplicationRefreshCommand extends StartApplicationRefreshCommand_base {
|
|
73
74
|
}
|
|
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagResourceCommand_base: {
|
|
24
24
|
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates tag for a resource by specifying the ARN.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -63,6 +63,7 @@ declare const TagResourceCommand_base: {
|
|
|
63
63
|
* @throws {@link SsmSapServiceException}
|
|
64
64
|
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
65
65
|
*
|
|
66
|
+
* @public
|
|
66
67
|
*/
|
|
67
68
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
68
69
|
}
|
|
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagResourceCommand_base: {
|
|
24
24
|
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Delete the tags for a resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -63,6 +63,7 @@ declare const UntagResourceCommand_base: {
|
|
|
63
63
|
* @throws {@link SsmSapServiceException}
|
|
64
64
|
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
65
65
|
*
|
|
66
|
+
* @public
|
|
66
67
|
*/
|
|
67
68
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
68
69
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateApplicationSettingsCommandOutput extends UpdateApplicatio
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateApplicationSettingsCommand_base: {
|
|
24
24
|
new (input: UpdateApplicationSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateApplicationSettingsCommandInput, UpdateApplicationSettingsCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateApplicationSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateApplicationSettingsCommandInput, UpdateApplicationSettingsCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates the settings of an application registered with AWS Systems Manager for
|
|
30
30
|
* SAP.</p>
|
|
31
31
|
* @example
|
|
@@ -91,6 +91,7 @@ declare const UpdateApplicationSettingsCommand_base: {
|
|
|
91
91
|
* @throws {@link SsmSapServiceException}
|
|
92
92
|
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
93
93
|
*
|
|
94
|
+
* @public
|
|
94
95
|
*/
|
|
95
96
|
export declare class UpdateApplicationSettingsCommand extends UpdateApplicationSettingsCommand_base {
|
|
96
97
|
}
|