@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,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
+ RegisterApplicationInput,
11
+ RegisterApplicationOutput,
12
+ } from "../models/models_0";
13
+ import {
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ SsmSapClientResolvedConfig,
17
+ } from "../SsmSapClient";
18
+ export interface RegisterApplicationCommandInput
19
+ extends RegisterApplicationInput {}
20
+ export interface RegisterApplicationCommandOutput
21
+ extends RegisterApplicationOutput,
22
+ __MetadataBearer {}
23
+ export declare class RegisterApplicationCommand extends $Command<
24
+ RegisterApplicationCommandInput,
25
+ RegisterApplicationCommandOutput,
26
+ SsmSapClientResolvedConfig
27
+ > {
28
+ readonly input: RegisterApplicationCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: RegisterApplicationCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SsmSapClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<RegisterApplicationCommandInput, RegisterApplicationCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
10
+ import {
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ SsmSapClientResolvedConfig,
14
+ } from "../SsmSapClient";
15
+ export interface TagResourceCommandInput extends TagResourceRequest {}
16
+ export interface TagResourceCommandOutput
17
+ extends TagResourceResponse,
18
+ __MetadataBearer {}
19
+ export declare class TagResourceCommand extends $Command<
20
+ TagResourceCommandInput,
21
+ TagResourceCommandOutput,
22
+ SsmSapClientResolvedConfig
23
+ > {
24
+ readonly input: TagResourceCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
26
+ constructor(input: TagResourceCommandInput);
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SsmSapClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -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
+ UntagResourceRequest,
11
+ UntagResourceResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ SsmSapClientResolvedConfig,
17
+ } from "../SsmSapClient";
18
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
19
+ export interface UntagResourceCommandOutput
20
+ extends UntagResourceResponse,
21
+ __MetadataBearer {}
22
+ export declare class UntagResourceCommand extends $Command<
23
+ UntagResourceCommandInput,
24
+ UntagResourceCommandOutput,
25
+ SsmSapClientResolvedConfig
26
+ > {
27
+ readonly input: UntagResourceCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
+ constructor(input: UntagResourceCommandInput);
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: SsmSapClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -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
+ UpdateApplicationSettingsInput,
11
+ UpdateApplicationSettingsOutput,
12
+ } from "../models/models_0";
13
+ import {
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ SsmSapClientResolvedConfig,
17
+ } from "../SsmSapClient";
18
+ export interface UpdateApplicationSettingsCommandInput
19
+ extends UpdateApplicationSettingsInput {}
20
+ export interface UpdateApplicationSettingsCommandOutput
21
+ extends UpdateApplicationSettingsOutput,
22
+ __MetadataBearer {}
23
+ export declare class UpdateApplicationSettingsCommand extends $Command<
24
+ UpdateApplicationSettingsCommandInput,
25
+ UpdateApplicationSettingsCommandOutput,
26
+ SsmSapClientResolvedConfig
27
+ > {
28
+ readonly input: UpdateApplicationSettingsCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: UpdateApplicationSettingsCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SsmSapClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ UpdateApplicationSettingsCommandInput,
37
+ UpdateApplicationSettingsCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -0,0 +1,16 @@
1
+ export * from "./DeleteResourcePermissionCommand";
2
+ export * from "./DeregisterApplicationCommand";
3
+ export * from "./GetApplicationCommand";
4
+ export * from "./GetComponentCommand";
5
+ export * from "./GetDatabaseCommand";
6
+ export * from "./GetOperationCommand";
7
+ export * from "./GetResourcePermissionCommand";
8
+ export * from "./ListApplicationsCommand";
9
+ export * from "./ListComponentsCommand";
10
+ export * from "./ListDatabasesCommand";
11
+ export * from "./ListTagsForResourceCommand";
12
+ export * from "./PutResourcePermissionCommand";
13
+ export * from "./RegisterApplicationCommand";
14
+ export * from "./TagResourceCommand";
15
+ export * from "./UntagResourceCommand";
16
+ export * from "./UpdateApplicationSettingsCommand";
@@ -0,0 +1,34 @@
1
+ import {
2
+ Endpoint,
3
+ EndpointParameters as __EndpointParameters,
4
+ EndpointV2,
5
+ Provider,
6
+ } from "@aws-sdk/types";
7
+ export interface ClientInputEndpointParameters {
8
+ region?: string | Provider<string>;
9
+ useDualstackEndpoint?: boolean | Provider<boolean>;
10
+ useFipsEndpoint?: boolean | Provider<boolean>;
11
+ endpoint?:
12
+ | string
13
+ | Provider<string>
14
+ | Endpoint
15
+ | Provider<Endpoint>
16
+ | EndpointV2
17
+ | Provider<EndpointV2>;
18
+ }
19
+ export declare type ClientResolvedEndpointParameters =
20
+ ClientInputEndpointParameters & {
21
+ defaultSigningName: string;
22
+ };
23
+ export declare const resolveClientEndpointParameters: <T>(
24
+ options: T & ClientInputEndpointParameters
25
+ ) => T &
26
+ ClientInputEndpointParameters & {
27
+ defaultSigningName: string;
28
+ };
29
+ export interface EndpointParameters extends __EndpointParameters {
30
+ Region: string;
31
+ UseDualStack?: boolean;
32
+ UseFIPS?: boolean;
33
+ Endpoint?: string;
34
+ }
@@ -0,0 +1,8 @@
1
+ import { EndpointV2, Logger } from "@aws-sdk/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (
4
+ endpointParams: EndpointParameters,
5
+ context?: {
6
+ logger?: Logger;
7
+ }
8
+ ) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@aws-sdk/util-endpoints";
2
+ export declare const ruleSet: RuleSetObject;
@@ -0,0 +1,6 @@
1
+ export * from "./SsmSap";
2
+ export * from "./SsmSapClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { SsmSapServiceException } from "./models/SsmSapServiceException";
@@ -0,0 +1,7 @@
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+ export declare class SsmSapServiceException extends __ServiceException {
6
+ constructor(options: __ServiceExceptionOptions);
7
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";
@@ -0,0 +1,392 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { SsmSapServiceException as __BaseException } from "./SsmSapServiceException";
3
+ export declare enum ApplicationStatus {
4
+ ACTIVATED = "ACTIVATED",
5
+ DELETING = "DELETING",
6
+ FAILED = "FAILED",
7
+ REGISTERING = "REGISTERING",
8
+ STARTING = "STARTING",
9
+ STOPPED = "STOPPED",
10
+ STOPPING = "STOPPING",
11
+ UNKNOWN = "UNKNOWN",
12
+ }
13
+ export declare enum ApplicationType {
14
+ HANA = "HANA",
15
+ }
16
+ export interface Application {
17
+ Id?: string;
18
+ Type?: ApplicationType | string;
19
+ Arn?: string;
20
+ AppRegistryArn?: string;
21
+ Status?: ApplicationStatus | string;
22
+ Components?: string[];
23
+ LastUpdated?: Date;
24
+ StatusMessage?: string;
25
+ }
26
+ export declare enum CredentialType {
27
+ ADMIN = "ADMIN",
28
+ }
29
+ export interface ApplicationCredential {
30
+ DatabaseName: string | undefined;
31
+ CredentialType: CredentialType | string | undefined;
32
+ SecretId: string | undefined;
33
+ }
34
+ export interface ApplicationSummary {
35
+ Id?: string;
36
+ Type?: ApplicationType | string;
37
+ Arn?: string;
38
+ Tags?: Record<string, string>;
39
+ }
40
+ export declare enum ComponentType {
41
+ HANA = "HANA",
42
+ }
43
+ export declare enum HostRole {
44
+ LEADER = "LEADER",
45
+ STANDBY = "STANDBY",
46
+ UNKNOWN = "UNKNOWN",
47
+ WORKER = "WORKER",
48
+ }
49
+ export interface Host {
50
+ HostName?: string;
51
+ HostRole?: HostRole | string;
52
+ HostIp?: string;
53
+ InstanceId?: string;
54
+ }
55
+ export declare enum ComponentStatus {
56
+ ACTIVATED = "ACTIVATED",
57
+ }
58
+ export interface Component {
59
+ ComponentId?: string;
60
+ ApplicationId?: string;
61
+ ComponentType?: ComponentType | string;
62
+ Status?: ComponentStatus | string;
63
+ Databases?: string[];
64
+ Hosts?: Host[];
65
+ PrimaryHost?: string;
66
+ LastUpdated?: Date;
67
+ }
68
+ export interface ComponentSummary {
69
+ ApplicationId?: string;
70
+ ComponentId?: string;
71
+ ComponentType?: ComponentType | string;
72
+ Tags?: Record<string, string>;
73
+ }
74
+ export declare class ConflictException extends __BaseException {
75
+ readonly name: "ConflictException";
76
+ readonly $fault: "client";
77
+ Message?: string;
78
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
79
+ }
80
+ export declare enum DatabaseType {
81
+ SYSTEM = "SYSTEM",
82
+ TENANT = "TENANT",
83
+ }
84
+ export declare enum DatabaseStatus {
85
+ RUNNING = "RUNNING",
86
+ STARTING = "STARTING",
87
+ STOPPED = "STOPPED",
88
+ UNKNOWN = "UNKNOWN",
89
+ WARNING = "WARNING",
90
+ }
91
+ export interface Database {
92
+ ApplicationId?: string;
93
+ ComponentId?: string;
94
+ Credentials?: ApplicationCredential[];
95
+ DatabaseId?: string;
96
+ DatabaseName?: string;
97
+ DatabaseType?: DatabaseType | string;
98
+ Arn?: string;
99
+ Status?: DatabaseStatus | string;
100
+ PrimaryHost?: string;
101
+ SQLPort?: number;
102
+ LastUpdated?: Date;
103
+ }
104
+ export interface DatabaseSummary {
105
+ ApplicationId?: string;
106
+ ComponentId?: string;
107
+ DatabaseId?: string;
108
+ DatabaseType?: DatabaseType | string;
109
+ Arn?: string;
110
+ Tags?: Record<string, string>;
111
+ }
112
+ export declare enum PermissionActionType {
113
+ RESTORE = "RESTORE",
114
+ }
115
+ export interface DeleteResourcePermissionInput {
116
+ ActionType?: PermissionActionType | string;
117
+ SourceResourceArn?: string;
118
+ ResourceArn: string | undefined;
119
+ }
120
+ export interface DeleteResourcePermissionOutput {
121
+ Policy?: string;
122
+ }
123
+ export declare class InternalServerException extends __BaseException {
124
+ readonly name: "InternalServerException";
125
+ readonly $fault: "server";
126
+ Message?: string;
127
+ constructor(
128
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
129
+ );
130
+ }
131
+ export declare class ResourceNotFoundException extends __BaseException {
132
+ readonly name: "ResourceNotFoundException";
133
+ readonly $fault: "client";
134
+ Message?: string;
135
+ constructor(
136
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
137
+ );
138
+ }
139
+ export declare class ValidationException extends __BaseException {
140
+ readonly name: "ValidationException";
141
+ readonly $fault: "client";
142
+ Message?: string;
143
+ constructor(
144
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
145
+ );
146
+ }
147
+ export interface DeregisterApplicationInput {
148
+ ApplicationId: string | undefined;
149
+ }
150
+ export interface DeregisterApplicationOutput {}
151
+ export interface GetApplicationInput {
152
+ ApplicationId?: string;
153
+ ApplicationArn?: string;
154
+ }
155
+ export interface GetApplicationOutput {
156
+ Application?: Application;
157
+ Tags?: Record<string, string>;
158
+ }
159
+ export interface GetComponentInput {
160
+ ApplicationId: string | undefined;
161
+ ComponentId: string | undefined;
162
+ }
163
+ export interface GetComponentOutput {
164
+ Component?: Component;
165
+ }
166
+ export interface GetDatabaseInput {
167
+ ApplicationId?: string;
168
+ ComponentId?: string;
169
+ DatabaseId?: string;
170
+ DatabaseArn?: string;
171
+ }
172
+ export interface GetDatabaseOutput {
173
+ Database?: Database;
174
+ Tags?: Record<string, string>;
175
+ }
176
+ export interface GetOperationInput {
177
+ OperationId: string | undefined;
178
+ }
179
+ export declare enum OperationStatus {
180
+ ERROR = "ERROR",
181
+ INPROGRESS = "INPROGRESS",
182
+ SUCCESS = "SUCCESS",
183
+ }
184
+ export interface Operation {
185
+ Id?: string;
186
+ Type?: string;
187
+ Status?: OperationStatus | string;
188
+ StatusMessage?: string;
189
+ Properties?: Record<string, string>;
190
+ ResourceType?: string;
191
+ ResourceId?: string;
192
+ ResourceArn?: string;
193
+ StartTime?: Date;
194
+ EndTime?: Date;
195
+ LastUpdatedTime?: Date;
196
+ }
197
+ export interface GetOperationOutput {
198
+ Operation?: Operation;
199
+ }
200
+ export interface GetResourcePermissionInput {
201
+ ActionType?: PermissionActionType | string;
202
+ ResourceArn: string | undefined;
203
+ }
204
+ export interface GetResourcePermissionOutput {
205
+ Policy?: string;
206
+ }
207
+ export interface ListApplicationsInput {
208
+ NextToken?: string;
209
+ MaxResults?: number;
210
+ }
211
+ export interface ListApplicationsOutput {
212
+ Applications?: ApplicationSummary[];
213
+ NextToken?: string;
214
+ }
215
+ export interface ListComponentsInput {
216
+ ApplicationId?: string;
217
+ NextToken?: string;
218
+ MaxResults?: number;
219
+ }
220
+ export interface ListComponentsOutput {
221
+ Components?: ComponentSummary[];
222
+ NextToken?: string;
223
+ }
224
+ export interface ListDatabasesInput {
225
+ ApplicationId?: string;
226
+ ComponentId?: string;
227
+ NextToken?: string;
228
+ MaxResults?: number;
229
+ }
230
+ export interface ListDatabasesOutput {
231
+ Databases?: DatabaseSummary[];
232
+ NextToken?: string;
233
+ }
234
+ export interface ListTagsForResourceRequest {
235
+ resourceArn: string | undefined;
236
+ }
237
+ export interface ListTagsForResourceResponse {
238
+ tags?: Record<string, string>;
239
+ }
240
+ export interface PutResourcePermissionInput {
241
+ ActionType: PermissionActionType | string | undefined;
242
+ SourceResourceArn: string | undefined;
243
+ ResourceArn: string | undefined;
244
+ }
245
+ export interface PutResourcePermissionOutput {
246
+ Policy?: string;
247
+ }
248
+ export interface RegisterApplicationInput {
249
+ ApplicationId: string | undefined;
250
+ ApplicationType: ApplicationType | string | undefined;
251
+ Instances: string[] | undefined;
252
+ SapInstanceNumber?: string;
253
+ Sid?: string;
254
+ Tags?: Record<string, string>;
255
+ Credentials: ApplicationCredential[] | undefined;
256
+ }
257
+ export interface RegisterApplicationOutput {
258
+ Application?: Application;
259
+ OperationId?: string;
260
+ }
261
+ export interface TagResourceRequest {
262
+ resourceArn: string | undefined;
263
+ tags: Record<string, string> | undefined;
264
+ }
265
+ export interface TagResourceResponse {}
266
+ export interface UntagResourceRequest {
267
+ resourceArn: string | undefined;
268
+ tagKeys: string[] | undefined;
269
+ }
270
+ export interface UntagResourceResponse {}
271
+ export interface UpdateApplicationSettingsInput {
272
+ ApplicationId: string | undefined;
273
+ CredentialsToAddOrUpdate?: ApplicationCredential[];
274
+ CredentialsToRemove?: ApplicationCredential[];
275
+ }
276
+ export interface UpdateApplicationSettingsOutput {
277
+ Message?: string;
278
+ OperationIds?: string[];
279
+ }
280
+ export declare const ApplicationFilterSensitiveLog: (obj: Application) => any;
281
+ export declare const ApplicationCredentialFilterSensitiveLog: (
282
+ obj: ApplicationCredential
283
+ ) => any;
284
+ export declare const ApplicationSummaryFilterSensitiveLog: (
285
+ obj: ApplicationSummary
286
+ ) => any;
287
+ export declare const HostFilterSensitiveLog: (obj: Host) => any;
288
+ export declare const ComponentFilterSensitiveLog: (obj: Component) => any;
289
+ export declare const ComponentSummaryFilterSensitiveLog: (
290
+ obj: ComponentSummary
291
+ ) => any;
292
+ export declare const DatabaseFilterSensitiveLog: (obj: Database) => any;
293
+ export declare const DatabaseSummaryFilterSensitiveLog: (
294
+ obj: DatabaseSummary
295
+ ) => any;
296
+ export declare const DeleteResourcePermissionInputFilterSensitiveLog: (
297
+ obj: DeleteResourcePermissionInput
298
+ ) => any;
299
+ export declare const DeleteResourcePermissionOutputFilterSensitiveLog: (
300
+ obj: DeleteResourcePermissionOutput
301
+ ) => any;
302
+ export declare const DeregisterApplicationInputFilterSensitiveLog: (
303
+ obj: DeregisterApplicationInput
304
+ ) => any;
305
+ export declare const DeregisterApplicationOutputFilterSensitiveLog: (
306
+ obj: DeregisterApplicationOutput
307
+ ) => any;
308
+ export declare const GetApplicationInputFilterSensitiveLog: (
309
+ obj: GetApplicationInput
310
+ ) => any;
311
+ export declare const GetApplicationOutputFilterSensitiveLog: (
312
+ obj: GetApplicationOutput
313
+ ) => any;
314
+ export declare const GetComponentInputFilterSensitiveLog: (
315
+ obj: GetComponentInput
316
+ ) => any;
317
+ export declare const GetComponentOutputFilterSensitiveLog: (
318
+ obj: GetComponentOutput
319
+ ) => any;
320
+ export declare const GetDatabaseInputFilterSensitiveLog: (
321
+ obj: GetDatabaseInput
322
+ ) => any;
323
+ export declare const GetDatabaseOutputFilterSensitiveLog: (
324
+ obj: GetDatabaseOutput
325
+ ) => any;
326
+ export declare const GetOperationInputFilterSensitiveLog: (
327
+ obj: GetOperationInput
328
+ ) => any;
329
+ export declare const OperationFilterSensitiveLog: (obj: Operation) => any;
330
+ export declare const GetOperationOutputFilterSensitiveLog: (
331
+ obj: GetOperationOutput
332
+ ) => any;
333
+ export declare const GetResourcePermissionInputFilterSensitiveLog: (
334
+ obj: GetResourcePermissionInput
335
+ ) => any;
336
+ export declare const GetResourcePermissionOutputFilterSensitiveLog: (
337
+ obj: GetResourcePermissionOutput
338
+ ) => any;
339
+ export declare const ListApplicationsInputFilterSensitiveLog: (
340
+ obj: ListApplicationsInput
341
+ ) => any;
342
+ export declare const ListApplicationsOutputFilterSensitiveLog: (
343
+ obj: ListApplicationsOutput
344
+ ) => any;
345
+ export declare const ListComponentsInputFilterSensitiveLog: (
346
+ obj: ListComponentsInput
347
+ ) => any;
348
+ export declare const ListComponentsOutputFilterSensitiveLog: (
349
+ obj: ListComponentsOutput
350
+ ) => any;
351
+ export declare const ListDatabasesInputFilterSensitiveLog: (
352
+ obj: ListDatabasesInput
353
+ ) => any;
354
+ export declare const ListDatabasesOutputFilterSensitiveLog: (
355
+ obj: ListDatabasesOutput
356
+ ) => any;
357
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
358
+ obj: ListTagsForResourceRequest
359
+ ) => any;
360
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
361
+ obj: ListTagsForResourceResponse
362
+ ) => any;
363
+ export declare const PutResourcePermissionInputFilterSensitiveLog: (
364
+ obj: PutResourcePermissionInput
365
+ ) => any;
366
+ export declare const PutResourcePermissionOutputFilterSensitiveLog: (
367
+ obj: PutResourcePermissionOutput
368
+ ) => any;
369
+ export declare const RegisterApplicationInputFilterSensitiveLog: (
370
+ obj: RegisterApplicationInput
371
+ ) => any;
372
+ export declare const RegisterApplicationOutputFilterSensitiveLog: (
373
+ obj: RegisterApplicationOutput
374
+ ) => any;
375
+ export declare const TagResourceRequestFilterSensitiveLog: (
376
+ obj: TagResourceRequest
377
+ ) => any;
378
+ export declare const TagResourceResponseFilterSensitiveLog: (
379
+ obj: TagResourceResponse
380
+ ) => any;
381
+ export declare const UntagResourceRequestFilterSensitiveLog: (
382
+ obj: UntagResourceRequest
383
+ ) => any;
384
+ export declare const UntagResourceResponseFilterSensitiveLog: (
385
+ obj: UntagResourceResponse
386
+ ) => any;
387
+ export declare const UpdateApplicationSettingsInputFilterSensitiveLog: (
388
+ obj: UpdateApplicationSettingsInput
389
+ ) => any;
390
+ export declare const UpdateApplicationSettingsOutputFilterSensitiveLog: (
391
+ obj: UpdateApplicationSettingsOutput
392
+ ) => any;
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { SsmSap } from "../SsmSap";
3
+ import { SsmSapClient } from "../SsmSapClient";
4
+ export interface SsmSapPaginationConfiguration extends PaginationConfiguration {
5
+ client: SsmSap | SsmSapClient;
6
+ }
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListApplicationsCommandInput,
4
+ ListApplicationsCommandOutput,
5
+ } from "../commands/ListApplicationsCommand";
6
+ import { SsmSapPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListApplications(
8
+ config: SsmSapPaginationConfiguration,
9
+ input: ListApplicationsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListApplicationsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListComponentsCommandInput,
4
+ ListComponentsCommandOutput,
5
+ } from "../commands/ListComponentsCommand";
6
+ import { SsmSapPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListComponents(
8
+ config: SsmSapPaginationConfiguration,
9
+ input: ListComponentsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListComponentsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListDatabasesCommandInput,
4
+ ListDatabasesCommandOutput,
5
+ } from "../commands/ListDatabasesCommand";
6
+ import { SsmSapPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListDatabases(
8
+ config: SsmSapPaginationConfiguration,
9
+ input: ListDatabasesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListDatabasesCommandOutput>;
@@ -0,0 +1,4 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListApplicationsPaginator";
3
+ export * from "./ListComponentsPaginator";
4
+ export * from "./ListDatabasesPaginator";