@aws-sdk/client-ssm-sap 3.214.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (147) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +207 -0
  3. package/dist-cjs/SsmSap.js +247 -0
  4. package/dist-cjs/SsmSapClient.js +40 -0
  5. package/dist-cjs/commands/DeleteResourcePermissionCommand.js +46 -0
  6. package/dist-cjs/commands/DeregisterApplicationCommand.js +46 -0
  7. package/dist-cjs/commands/GetApplicationCommand.js +46 -0
  8. package/dist-cjs/commands/GetComponentCommand.js +46 -0
  9. package/dist-cjs/commands/GetDatabaseCommand.js +46 -0
  10. package/dist-cjs/commands/GetOperationCommand.js +46 -0
  11. package/dist-cjs/commands/GetResourcePermissionCommand.js +46 -0
  12. package/dist-cjs/commands/ListApplicationsCommand.js +46 -0
  13. package/dist-cjs/commands/ListComponentsCommand.js +46 -0
  14. package/dist-cjs/commands/ListDatabasesCommand.js +46 -0
  15. package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
  16. package/dist-cjs/commands/PutResourcePermissionCommand.js +46 -0
  17. package/dist-cjs/commands/RegisterApplicationCommand.js +46 -0
  18. package/dist-cjs/commands/TagResourceCommand.js +46 -0
  19. package/dist-cjs/commands/UntagResourceCommand.js +46 -0
  20. package/dist-cjs/commands/UpdateApplicationSettingsCommand.js +46 -0
  21. package/dist-cjs/commands/index.js +19 -0
  22. package/dist-cjs/endpoint/EndpointParameters.js +12 -0
  23. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  24. package/dist-cjs/endpoint/ruleset.js +312 -0
  25. package/dist-cjs/index.js +11 -0
  26. package/dist-cjs/models/SsmSapServiceException.js +11 -0
  27. package/dist-cjs/models/index.js +4 -0
  28. package/dist-cjs/models/models_0.js +293 -0
  29. package/dist-cjs/pagination/Interfaces.js +2 -0
  30. package/dist-cjs/pagination/ListApplicationsPaginator.js +36 -0
  31. package/dist-cjs/pagination/ListComponentsPaginator.js +36 -0
  32. package/dist-cjs/pagination/ListDatabasesPaginator.js +36 -0
  33. package/dist-cjs/pagination/index.js +7 -0
  34. package/dist-cjs/protocols/Aws_restJson1.js +1356 -0
  35. package/dist-cjs/runtimeConfig.browser.js +42 -0
  36. package/dist-cjs/runtimeConfig.js +50 -0
  37. package/dist-cjs/runtimeConfig.native.js +15 -0
  38. package/dist-cjs/runtimeConfig.shared.js +18 -0
  39. package/dist-es/SsmSap.js +243 -0
  40. package/dist-es/SsmSapClient.js +36 -0
  41. package/dist-es/commands/DeleteResourcePermissionCommand.js +42 -0
  42. package/dist-es/commands/DeregisterApplicationCommand.js +42 -0
  43. package/dist-es/commands/GetApplicationCommand.js +42 -0
  44. package/dist-es/commands/GetComponentCommand.js +42 -0
  45. package/dist-es/commands/GetDatabaseCommand.js +42 -0
  46. package/dist-es/commands/GetOperationCommand.js +42 -0
  47. package/dist-es/commands/GetResourcePermissionCommand.js +42 -0
  48. package/dist-es/commands/ListApplicationsCommand.js +42 -0
  49. package/dist-es/commands/ListComponentsCommand.js +42 -0
  50. package/dist-es/commands/ListDatabasesCommand.js +42 -0
  51. package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
  52. package/dist-es/commands/PutResourcePermissionCommand.js +42 -0
  53. package/dist-es/commands/RegisterApplicationCommand.js +42 -0
  54. package/dist-es/commands/TagResourceCommand.js +42 -0
  55. package/dist-es/commands/UntagResourceCommand.js +42 -0
  56. package/dist-es/commands/UpdateApplicationSettingsCommand.js +42 -0
  57. package/dist-es/commands/index.js +16 -0
  58. package/dist-es/endpoint/EndpointParameters.js +8 -0
  59. package/dist-es/endpoint/endpointResolver.js +8 -0
  60. package/dist-es/endpoint/ruleset.js +309 -0
  61. package/dist-es/index.js +6 -0
  62. package/dist-es/models/SsmSapServiceException.js +7 -0
  63. package/dist-es/models/index.js +1 -0
  64. package/dist-es/models/models_0.js +244 -0
  65. package/dist-es/pagination/Interfaces.js +1 -0
  66. package/dist-es/pagination/ListApplicationsPaginator.js +32 -0
  67. package/dist-es/pagination/ListComponentsPaginator.js +32 -0
  68. package/dist-es/pagination/ListDatabasesPaginator.js +32 -0
  69. package/dist-es/pagination/index.js +4 -0
  70. package/dist-es/protocols/Aws_restJson1.js +1321 -0
  71. package/dist-es/runtimeConfig.browser.js +37 -0
  72. package/dist-es/runtimeConfig.js +45 -0
  73. package/dist-es/runtimeConfig.native.js +11 -0
  74. package/dist-es/runtimeConfig.shared.js +14 -0
  75. package/dist-types/SsmSap.d.ts +134 -0
  76. package/dist-types/SsmSapClient.d.ts +159 -0
  77. package/dist-types/commands/DeleteResourcePermissionCommand.d.ts +37 -0
  78. package/dist-types/commands/DeregisterApplicationCommand.d.ts +38 -0
  79. package/dist-types/commands/GetApplicationCommand.d.ts +38 -0
  80. package/dist-types/commands/GetComponentCommand.d.ts +38 -0
  81. package/dist-types/commands/GetDatabaseCommand.d.ts +38 -0
  82. package/dist-types/commands/GetOperationCommand.d.ts +37 -0
  83. package/dist-types/commands/GetResourcePermissionCommand.d.ts +37 -0
  84. package/dist-types/commands/ListApplicationsCommand.d.ts +37 -0
  85. package/dist-types/commands/ListComponentsCommand.d.ts +37 -0
  86. package/dist-types/commands/ListDatabasesCommand.d.ts +38 -0
  87. package/dist-types/commands/ListTagsForResourceCommand.d.ts +38 -0
  88. package/dist-types/commands/PutResourcePermissionCommand.d.ts +37 -0
  89. package/dist-types/commands/RegisterApplicationCommand.d.ts +44 -0
  90. package/dist-types/commands/TagResourceCommand.d.ts +37 -0
  91. package/dist-types/commands/UntagResourceCommand.d.ts +37 -0
  92. package/dist-types/commands/UpdateApplicationSettingsCommand.d.ts +37 -0
  93. package/dist-types/commands/index.d.ts +16 -0
  94. package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
  95. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  96. package/dist-types/endpoint/ruleset.d.ts +2 -0
  97. package/dist-types/index.d.ts +6 -0
  98. package/dist-types/models/SsmSapServiceException.d.ts +10 -0
  99. package/dist-types/models/index.d.ts +1 -0
  100. package/dist-types/models/models_0.d.ts +854 -0
  101. package/dist-types/pagination/Interfaces.d.ts +6 -0
  102. package/dist-types/pagination/ListApplicationsPaginator.d.ts +4 -0
  103. package/dist-types/pagination/ListComponentsPaginator.d.ts +4 -0
  104. package/dist-types/pagination/ListDatabasesPaginator.d.ts +4 -0
  105. package/dist-types/pagination/index.d.ts +4 -0
  106. package/dist-types/protocols/Aws_restJson1.d.ts +50 -0
  107. package/dist-types/runtimeConfig.browser.d.ts +42 -0
  108. package/dist-types/runtimeConfig.d.ts +42 -0
  109. package/dist-types/runtimeConfig.native.d.ts +41 -0
  110. package/dist-types/runtimeConfig.shared.d.ts +16 -0
  111. package/dist-types/ts3.4/SsmSap.d.ts +276 -0
  112. package/dist-types/ts3.4/SsmSapClient.d.ts +207 -0
  113. package/dist-types/ts3.4/commands/DeleteResourcePermissionCommand.d.ts +41 -0
  114. package/dist-types/ts3.4/commands/DeregisterApplicationCommand.d.ts +41 -0
  115. package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +34 -0
  116. package/dist-types/ts3.4/commands/GetComponentCommand.d.ts +34 -0
  117. package/dist-types/ts3.4/commands/GetDatabaseCommand.d.ts +34 -0
  118. package/dist-types/ts3.4/commands/GetOperationCommand.d.ts +34 -0
  119. package/dist-types/ts3.4/commands/GetResourcePermissionCommand.d.ts +41 -0
  120. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +37 -0
  121. package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +34 -0
  122. package/dist-types/ts3.4/commands/ListDatabasesCommand.d.ts +34 -0
  123. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
  124. package/dist-types/ts3.4/commands/PutResourcePermissionCommand.d.ts +41 -0
  125. package/dist-types/ts3.4/commands/RegisterApplicationCommand.d.ts +38 -0
  126. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
  127. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -0
  128. package/dist-types/ts3.4/commands/UpdateApplicationSettingsCommand.d.ts +41 -0
  129. package/dist-types/ts3.4/commands/index.d.ts +16 -0
  130. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
  131. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  132. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  133. package/dist-types/ts3.4/index.d.ts +6 -0
  134. package/dist-types/ts3.4/models/SsmSapServiceException.d.ts +7 -0
  135. package/dist-types/ts3.4/models/index.d.ts +1 -0
  136. package/dist-types/ts3.4/models/models_0.d.ts +392 -0
  137. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  138. package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -0
  139. package/dist-types/ts3.4/pagination/ListComponentsPaginator.d.ts +11 -0
  140. package/dist-types/ts3.4/pagination/ListDatabasesPaginator.d.ts +11 -0
  141. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  142. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +197 -0
  143. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +86 -0
  144. package/dist-types/ts3.4/runtimeConfig.d.ts +86 -0
  145. package/dist-types/ts3.4/runtimeConfig.native.d.ts +75 -0
  146. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +16 -0
  147. package/package.json +101 -0
@@ -0,0 +1,207 @@
1
+ import {
2
+ RegionInputConfig,
3
+ RegionResolvedConfig,
4
+ } from "@aws-sdk/config-resolver";
5
+ import {
6
+ EndpointInputConfig,
7
+ EndpointResolvedConfig,
8
+ } from "@aws-sdk/middleware-endpoint";
9
+ import {
10
+ HostHeaderInputConfig,
11
+ HostHeaderResolvedConfig,
12
+ } from "@aws-sdk/middleware-host-header";
13
+ import {
14
+ RetryInputConfig,
15
+ RetryResolvedConfig,
16
+ } from "@aws-sdk/middleware-retry";
17
+ import {
18
+ AwsAuthInputConfig,
19
+ AwsAuthResolvedConfig,
20
+ } from "@aws-sdk/middleware-signing";
21
+ import {
22
+ UserAgentInputConfig,
23
+ UserAgentResolvedConfig,
24
+ } from "@aws-sdk/middleware-user-agent";
25
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
26
+ import {
27
+ Client as __Client,
28
+ DefaultsMode,
29
+ SmithyConfiguration as __SmithyConfiguration,
30
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
31
+ } from "@aws-sdk/smithy-client";
32
+ import {
33
+ BodyLengthCalculator as __BodyLengthCalculator,
34
+ Credentials as __Credentials,
35
+ Decoder as __Decoder,
36
+ Encoder as __Encoder,
37
+ HashConstructor as __HashConstructor,
38
+ HttpHandlerOptions as __HttpHandlerOptions,
39
+ Logger as __Logger,
40
+ Provider as __Provider,
41
+ Provider,
42
+ StreamCollector as __StreamCollector,
43
+ UrlParser as __UrlParser,
44
+ UserAgent as __UserAgent,
45
+ } from "@aws-sdk/types";
46
+ import {
47
+ DeleteResourcePermissionCommandInput,
48
+ DeleteResourcePermissionCommandOutput,
49
+ } from "./commands/DeleteResourcePermissionCommand";
50
+ import {
51
+ DeregisterApplicationCommandInput,
52
+ DeregisterApplicationCommandOutput,
53
+ } from "./commands/DeregisterApplicationCommand";
54
+ import {
55
+ GetApplicationCommandInput,
56
+ GetApplicationCommandOutput,
57
+ } from "./commands/GetApplicationCommand";
58
+ import {
59
+ GetComponentCommandInput,
60
+ GetComponentCommandOutput,
61
+ } from "./commands/GetComponentCommand";
62
+ import {
63
+ GetDatabaseCommandInput,
64
+ GetDatabaseCommandOutput,
65
+ } from "./commands/GetDatabaseCommand";
66
+ import {
67
+ GetOperationCommandInput,
68
+ GetOperationCommandOutput,
69
+ } from "./commands/GetOperationCommand";
70
+ import {
71
+ GetResourcePermissionCommandInput,
72
+ GetResourcePermissionCommandOutput,
73
+ } from "./commands/GetResourcePermissionCommand";
74
+ import {
75
+ ListApplicationsCommandInput,
76
+ ListApplicationsCommandOutput,
77
+ } from "./commands/ListApplicationsCommand";
78
+ import {
79
+ ListComponentsCommandInput,
80
+ ListComponentsCommandOutput,
81
+ } from "./commands/ListComponentsCommand";
82
+ import {
83
+ ListDatabasesCommandInput,
84
+ ListDatabasesCommandOutput,
85
+ } from "./commands/ListDatabasesCommand";
86
+ import {
87
+ ListTagsForResourceCommandInput,
88
+ ListTagsForResourceCommandOutput,
89
+ } from "./commands/ListTagsForResourceCommand";
90
+ import {
91
+ PutResourcePermissionCommandInput,
92
+ PutResourcePermissionCommandOutput,
93
+ } from "./commands/PutResourcePermissionCommand";
94
+ import {
95
+ RegisterApplicationCommandInput,
96
+ RegisterApplicationCommandOutput,
97
+ } from "./commands/RegisterApplicationCommand";
98
+ import {
99
+ TagResourceCommandInput,
100
+ TagResourceCommandOutput,
101
+ } from "./commands/TagResourceCommand";
102
+ import {
103
+ UntagResourceCommandInput,
104
+ UntagResourceCommandOutput,
105
+ } from "./commands/UntagResourceCommand";
106
+ import {
107
+ UpdateApplicationSettingsCommandInput,
108
+ UpdateApplicationSettingsCommandOutput,
109
+ } from "./commands/UpdateApplicationSettingsCommand";
110
+ import {
111
+ ClientInputEndpointParameters,
112
+ ClientResolvedEndpointParameters,
113
+ EndpointParameters,
114
+ } from "./endpoint/EndpointParameters";
115
+ export declare type ServiceInputTypes =
116
+ | DeleteResourcePermissionCommandInput
117
+ | DeregisterApplicationCommandInput
118
+ | GetApplicationCommandInput
119
+ | GetComponentCommandInput
120
+ | GetDatabaseCommandInput
121
+ | GetOperationCommandInput
122
+ | GetResourcePermissionCommandInput
123
+ | ListApplicationsCommandInput
124
+ | ListComponentsCommandInput
125
+ | ListDatabasesCommandInput
126
+ | ListTagsForResourceCommandInput
127
+ | PutResourcePermissionCommandInput
128
+ | RegisterApplicationCommandInput
129
+ | TagResourceCommandInput
130
+ | UntagResourceCommandInput
131
+ | UpdateApplicationSettingsCommandInput;
132
+ export declare type ServiceOutputTypes =
133
+ | DeleteResourcePermissionCommandOutput
134
+ | DeregisterApplicationCommandOutput
135
+ | GetApplicationCommandOutput
136
+ | GetComponentCommandOutput
137
+ | GetDatabaseCommandOutput
138
+ | GetOperationCommandOutput
139
+ | GetResourcePermissionCommandOutput
140
+ | ListApplicationsCommandOutput
141
+ | ListComponentsCommandOutput
142
+ | ListDatabasesCommandOutput
143
+ | ListTagsForResourceCommandOutput
144
+ | PutResourcePermissionCommandOutput
145
+ | RegisterApplicationCommandOutput
146
+ | TagResourceCommandOutput
147
+ | UntagResourceCommandOutput
148
+ | UpdateApplicationSettingsCommandOutput;
149
+ export interface ClientDefaults
150
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
151
+ requestHandler?: __HttpHandler;
152
+ sha256?: __HashConstructor;
153
+ urlParser?: __UrlParser;
154
+ bodyLengthChecker?: __BodyLengthCalculator;
155
+ streamCollector?: __StreamCollector;
156
+ base64Decoder?: __Decoder;
157
+ base64Encoder?: __Encoder;
158
+ utf8Decoder?: __Decoder;
159
+ utf8Encoder?: __Encoder;
160
+ runtime?: string;
161
+ disableHostPrefix?: boolean;
162
+ maxAttempts?: number | __Provider<number>;
163
+ retryMode?: string | __Provider<string>;
164
+ logger?: __Logger;
165
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
166
+ useFipsEndpoint?: boolean | __Provider<boolean>;
167
+ serviceId?: string;
168
+ region?: string | __Provider<string>;
169
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
170
+ defaultUserAgentProvider?: Provider<__UserAgent>;
171
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
172
+ }
173
+ declare type SsmSapClientConfigType = Partial<
174
+ __SmithyConfiguration<__HttpHandlerOptions>
175
+ > &
176
+ ClientDefaults &
177
+ RegionInputConfig &
178
+ EndpointInputConfig<EndpointParameters> &
179
+ RetryInputConfig &
180
+ HostHeaderInputConfig &
181
+ AwsAuthInputConfig &
182
+ UserAgentInputConfig &
183
+ ClientInputEndpointParameters;
184
+ export interface SsmSapClientConfig extends SsmSapClientConfigType {}
185
+ declare type SsmSapClientResolvedConfigType =
186
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
187
+ Required<ClientDefaults> &
188
+ RegionResolvedConfig &
189
+ EndpointResolvedConfig<EndpointParameters> &
190
+ RetryResolvedConfig &
191
+ HostHeaderResolvedConfig &
192
+ AwsAuthResolvedConfig &
193
+ UserAgentResolvedConfig &
194
+ ClientResolvedEndpointParameters;
195
+ export interface SsmSapClientResolvedConfig
196
+ extends SsmSapClientResolvedConfigType {}
197
+ export declare class SsmSapClient extends __Client<
198
+ __HttpHandlerOptions,
199
+ ServiceInputTypes,
200
+ ServiceOutputTypes,
201
+ SsmSapClientResolvedConfig
202
+ > {
203
+ readonly config: SsmSapClientResolvedConfig;
204
+ constructor(configuration: SsmSapClientConfig);
205
+ destroy(): void;
206
+ }
207
+ export {};
@@ -0,0 +1,41 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ DeleteResourcePermissionInput,
11
+ DeleteResourcePermissionOutput,
12
+ } from "../models/models_0";
13
+ import {
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ SsmSapClientResolvedConfig,
17
+ } from "../SsmSapClient";
18
+ export interface DeleteResourcePermissionCommandInput
19
+ extends DeleteResourcePermissionInput {}
20
+ export interface DeleteResourcePermissionCommandOutput
21
+ extends DeleteResourcePermissionOutput,
22
+ __MetadataBearer {}
23
+ export declare class DeleteResourcePermissionCommand extends $Command<
24
+ DeleteResourcePermissionCommandInput,
25
+ DeleteResourcePermissionCommandOutput,
26
+ SsmSapClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteResourcePermissionCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: DeleteResourcePermissionCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SsmSapClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DeleteResourcePermissionCommandInput,
37
+ DeleteResourcePermissionCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -0,0 +1,41 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ DeregisterApplicationInput,
11
+ DeregisterApplicationOutput,
12
+ } from "../models/models_0";
13
+ import {
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ SsmSapClientResolvedConfig,
17
+ } from "../SsmSapClient";
18
+ export interface DeregisterApplicationCommandInput
19
+ extends DeregisterApplicationInput {}
20
+ export interface DeregisterApplicationCommandOutput
21
+ extends DeregisterApplicationOutput,
22
+ __MetadataBearer {}
23
+ export declare class DeregisterApplicationCommand extends $Command<
24
+ DeregisterApplicationCommandInput,
25
+ DeregisterApplicationCommandOutput,
26
+ SsmSapClientResolvedConfig
27
+ > {
28
+ readonly input: DeregisterApplicationCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: DeregisterApplicationCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SsmSapClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DeregisterApplicationCommandInput,
37
+ DeregisterApplicationCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -0,0 +1,34 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import { GetApplicationInput, GetApplicationOutput } from "../models/models_0";
10
+ import {
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ SsmSapClientResolvedConfig,
14
+ } from "../SsmSapClient";
15
+ export interface GetApplicationCommandInput extends GetApplicationInput {}
16
+ export interface GetApplicationCommandOutput
17
+ extends GetApplicationOutput,
18
+ __MetadataBearer {}
19
+ export declare class GetApplicationCommand extends $Command<
20
+ GetApplicationCommandInput,
21
+ GetApplicationCommandOutput,
22
+ SsmSapClientResolvedConfig
23
+ > {
24
+ readonly input: GetApplicationCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
26
+ constructor(input: GetApplicationCommandInput);
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SsmSapClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetApplicationCommandInput, GetApplicationCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -0,0 +1,34 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import { GetComponentInput, GetComponentOutput } from "../models/models_0";
10
+ import {
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ SsmSapClientResolvedConfig,
14
+ } from "../SsmSapClient";
15
+ export interface GetComponentCommandInput extends GetComponentInput {}
16
+ export interface GetComponentCommandOutput
17
+ extends GetComponentOutput,
18
+ __MetadataBearer {}
19
+ export declare class GetComponentCommand extends $Command<
20
+ GetComponentCommandInput,
21
+ GetComponentCommandOutput,
22
+ SsmSapClientResolvedConfig
23
+ > {
24
+ readonly input: GetComponentCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
26
+ constructor(input: GetComponentCommandInput);
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SsmSapClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetComponentCommandInput, GetComponentCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -0,0 +1,34 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import { GetDatabaseInput, GetDatabaseOutput } from "../models/models_0";
10
+ import {
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ SsmSapClientResolvedConfig,
14
+ } from "../SsmSapClient";
15
+ export interface GetDatabaseCommandInput extends GetDatabaseInput {}
16
+ export interface GetDatabaseCommandOutput
17
+ extends GetDatabaseOutput,
18
+ __MetadataBearer {}
19
+ export declare class GetDatabaseCommand extends $Command<
20
+ GetDatabaseCommandInput,
21
+ GetDatabaseCommandOutput,
22
+ SsmSapClientResolvedConfig
23
+ > {
24
+ readonly input: GetDatabaseCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
26
+ constructor(input: GetDatabaseCommandInput);
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SsmSapClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetDatabaseCommandInput, GetDatabaseCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -0,0 +1,34 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import { GetOperationInput, GetOperationOutput } from "../models/models_0";
10
+ import {
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ SsmSapClientResolvedConfig,
14
+ } from "../SsmSapClient";
15
+ export interface GetOperationCommandInput extends GetOperationInput {}
16
+ export interface GetOperationCommandOutput
17
+ extends GetOperationOutput,
18
+ __MetadataBearer {}
19
+ export declare class GetOperationCommand extends $Command<
20
+ GetOperationCommandInput,
21
+ GetOperationCommandOutput,
22
+ SsmSapClientResolvedConfig
23
+ > {
24
+ readonly input: GetOperationCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
26
+ constructor(input: GetOperationCommandInput);
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SsmSapClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetOperationCommandInput, GetOperationCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -0,0 +1,41 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ GetResourcePermissionInput,
11
+ GetResourcePermissionOutput,
12
+ } from "../models/models_0";
13
+ import {
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ SsmSapClientResolvedConfig,
17
+ } from "../SsmSapClient";
18
+ export interface GetResourcePermissionCommandInput
19
+ extends GetResourcePermissionInput {}
20
+ export interface GetResourcePermissionCommandOutput
21
+ extends GetResourcePermissionOutput,
22
+ __MetadataBearer {}
23
+ export declare class GetResourcePermissionCommand extends $Command<
24
+ GetResourcePermissionCommandInput,
25
+ GetResourcePermissionCommandOutput,
26
+ SsmSapClientResolvedConfig
27
+ > {
28
+ readonly input: GetResourcePermissionCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: GetResourcePermissionCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SsmSapClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ GetResourcePermissionCommandInput,
37
+ GetResourcePermissionCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -0,0 +1,37 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ ListApplicationsInput,
11
+ ListApplicationsOutput,
12
+ } from "../models/models_0";
13
+ import {
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ SsmSapClientResolvedConfig,
17
+ } from "../SsmSapClient";
18
+ export interface ListApplicationsCommandInput extends ListApplicationsInput {}
19
+ export interface ListApplicationsCommandOutput
20
+ extends ListApplicationsOutput,
21
+ __MetadataBearer {}
22
+ export declare class ListApplicationsCommand extends $Command<
23
+ ListApplicationsCommandInput,
24
+ ListApplicationsCommandOutput,
25
+ SsmSapClientResolvedConfig
26
+ > {
27
+ readonly input: ListApplicationsCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
+ constructor(input: ListApplicationsCommandInput);
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: SsmSapClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListApplicationsCommandInput, ListApplicationsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -0,0 +1,34 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import { ListComponentsInput, ListComponentsOutput } from "../models/models_0";
10
+ import {
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ SsmSapClientResolvedConfig,
14
+ } from "../SsmSapClient";
15
+ export interface ListComponentsCommandInput extends ListComponentsInput {}
16
+ export interface ListComponentsCommandOutput
17
+ extends ListComponentsOutput,
18
+ __MetadataBearer {}
19
+ export declare class ListComponentsCommand extends $Command<
20
+ ListComponentsCommandInput,
21
+ ListComponentsCommandOutput,
22
+ SsmSapClientResolvedConfig
23
+ > {
24
+ readonly input: ListComponentsCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
26
+ constructor(input: ListComponentsCommandInput);
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SsmSapClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListComponentsCommandInput, ListComponentsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -0,0 +1,34 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import { ListDatabasesInput, ListDatabasesOutput } from "../models/models_0";
10
+ import {
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ SsmSapClientResolvedConfig,
14
+ } from "../SsmSapClient";
15
+ export interface ListDatabasesCommandInput extends ListDatabasesInput {}
16
+ export interface ListDatabasesCommandOutput
17
+ extends ListDatabasesOutput,
18
+ __MetadataBearer {}
19
+ export declare class ListDatabasesCommand extends $Command<
20
+ ListDatabasesCommandInput,
21
+ ListDatabasesCommandOutput,
22
+ SsmSapClientResolvedConfig
23
+ > {
24
+ readonly input: ListDatabasesCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
26
+ constructor(input: ListDatabasesCommandInput);
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SsmSapClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListDatabasesCommandInput, ListDatabasesCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ ListTagsForResourceRequest,
11
+ ListTagsForResourceResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ SsmSapClientResolvedConfig,
17
+ } from "../SsmSapClient";
18
+ export interface ListTagsForResourceCommandInput
19
+ extends ListTagsForResourceRequest {}
20
+ export interface ListTagsForResourceCommandOutput
21
+ extends ListTagsForResourceResponse,
22
+ __MetadataBearer {}
23
+ export declare class ListTagsForResourceCommand extends $Command<
24
+ ListTagsForResourceCommandInput,
25
+ ListTagsForResourceCommandOutput,
26
+ SsmSapClientResolvedConfig
27
+ > {
28
+ readonly input: ListTagsForResourceCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: ListTagsForResourceCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SsmSapClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,41 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ PutResourcePermissionInput,
11
+ PutResourcePermissionOutput,
12
+ } from "../models/models_0";
13
+ import {
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ SsmSapClientResolvedConfig,
17
+ } from "../SsmSapClient";
18
+ export interface PutResourcePermissionCommandInput
19
+ extends PutResourcePermissionInput {}
20
+ export interface PutResourcePermissionCommandOutput
21
+ extends PutResourcePermissionOutput,
22
+ __MetadataBearer {}
23
+ export declare class PutResourcePermissionCommand extends $Command<
24
+ PutResourcePermissionCommandInput,
25
+ PutResourcePermissionCommandOutput,
26
+ SsmSapClientResolvedConfig
27
+ > {
28
+ readonly input: PutResourcePermissionCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: PutResourcePermissionCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SsmSapClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ PutResourcePermissionCommandInput,
37
+ PutResourcePermissionCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }