@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.
- package/LICENSE +201 -0
- package/README.md +207 -0
- package/dist-cjs/SsmSap.js +247 -0
- package/dist-cjs/SsmSapClient.js +40 -0
- package/dist-cjs/commands/DeleteResourcePermissionCommand.js +46 -0
- package/dist-cjs/commands/DeregisterApplicationCommand.js +46 -0
- package/dist-cjs/commands/GetApplicationCommand.js +46 -0
- package/dist-cjs/commands/GetComponentCommand.js +46 -0
- package/dist-cjs/commands/GetDatabaseCommand.js +46 -0
- package/dist-cjs/commands/GetOperationCommand.js +46 -0
- package/dist-cjs/commands/GetResourcePermissionCommand.js +46 -0
- package/dist-cjs/commands/ListApplicationsCommand.js +46 -0
- package/dist-cjs/commands/ListComponentsCommand.js +46 -0
- package/dist-cjs/commands/ListDatabasesCommand.js +46 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
- package/dist-cjs/commands/PutResourcePermissionCommand.js +46 -0
- package/dist-cjs/commands/RegisterApplicationCommand.js +46 -0
- package/dist-cjs/commands/TagResourceCommand.js +46 -0
- package/dist-cjs/commands/UntagResourceCommand.js +46 -0
- package/dist-cjs/commands/UpdateApplicationSettingsCommand.js +46 -0
- package/dist-cjs/commands/index.js +19 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +312 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/SsmSapServiceException.js +11 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +293 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListApplicationsPaginator.js +36 -0
- package/dist-cjs/pagination/ListComponentsPaginator.js +36 -0
- package/dist-cjs/pagination/ListDatabasesPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +7 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1356 -0
- package/dist-cjs/runtimeConfig.browser.js +42 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +18 -0
- package/dist-es/SsmSap.js +243 -0
- package/dist-es/SsmSapClient.js +36 -0
- package/dist-es/commands/DeleteResourcePermissionCommand.js +42 -0
- package/dist-es/commands/DeregisterApplicationCommand.js +42 -0
- package/dist-es/commands/GetApplicationCommand.js +42 -0
- package/dist-es/commands/GetComponentCommand.js +42 -0
- package/dist-es/commands/GetDatabaseCommand.js +42 -0
- package/dist-es/commands/GetOperationCommand.js +42 -0
- package/dist-es/commands/GetResourcePermissionCommand.js +42 -0
- package/dist-es/commands/ListApplicationsCommand.js +42 -0
- package/dist-es/commands/ListComponentsCommand.js +42 -0
- package/dist-es/commands/ListDatabasesCommand.js +42 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
- package/dist-es/commands/PutResourcePermissionCommand.js +42 -0
- package/dist-es/commands/RegisterApplicationCommand.js +42 -0
- package/dist-es/commands/TagResourceCommand.js +42 -0
- package/dist-es/commands/UntagResourceCommand.js +42 -0
- package/dist-es/commands/UpdateApplicationSettingsCommand.js +42 -0
- package/dist-es/commands/index.js +16 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +309 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/SsmSapServiceException.js +7 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +244 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListApplicationsPaginator.js +32 -0
- package/dist-es/pagination/ListComponentsPaginator.js +32 -0
- package/dist-es/pagination/ListDatabasesPaginator.js +32 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +1321 -0
- package/dist-es/runtimeConfig.browser.js +37 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +14 -0
- package/dist-types/SsmSap.d.ts +134 -0
- package/dist-types/SsmSapClient.d.ts +159 -0
- package/dist-types/commands/DeleteResourcePermissionCommand.d.ts +37 -0
- package/dist-types/commands/DeregisterApplicationCommand.d.ts +38 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +38 -0
- package/dist-types/commands/GetComponentCommand.d.ts +38 -0
- package/dist-types/commands/GetDatabaseCommand.d.ts +38 -0
- package/dist-types/commands/GetOperationCommand.d.ts +37 -0
- package/dist-types/commands/GetResourcePermissionCommand.d.ts +37 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +37 -0
- package/dist-types/commands/ListComponentsCommand.d.ts +37 -0
- package/dist-types/commands/ListDatabasesCommand.d.ts +38 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +38 -0
- package/dist-types/commands/PutResourcePermissionCommand.d.ts +37 -0
- package/dist-types/commands/RegisterApplicationCommand.d.ts +44 -0
- package/dist-types/commands/TagResourceCommand.d.ts +37 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +37 -0
- package/dist-types/commands/UpdateApplicationSettingsCommand.d.ts +37 -0
- package/dist-types/commands/index.d.ts +16 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/index.d.ts +6 -0
- package/dist-types/models/SsmSapServiceException.d.ts +10 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +854 -0
- package/dist-types/pagination/Interfaces.d.ts +6 -0
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListComponentsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListDatabasesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +50 -0
- package/dist-types/runtimeConfig.browser.d.ts +42 -0
- package/dist-types/runtimeConfig.d.ts +42 -0
- package/dist-types/runtimeConfig.native.d.ts +41 -0
- package/dist-types/runtimeConfig.shared.d.ts +16 -0
- package/dist-types/ts3.4/SsmSap.d.ts +276 -0
- package/dist-types/ts3.4/SsmSapClient.d.ts +207 -0
- package/dist-types/ts3.4/commands/DeleteResourcePermissionCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DeregisterApplicationCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/GetComponentCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/GetDatabaseCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/GetOperationCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/GetResourcePermissionCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/ListDatabasesCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/PutResourcePermissionCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/RegisterApplicationCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/UpdateApplicationSettingsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/index.d.ts +16 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/SsmSapServiceException.d.ts +7 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +392 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListComponentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDatabasesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +197 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +86 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +86 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +75 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +16 -0
- package/package.json +101 -0
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "../commands/ListApplicationsCommand";
|
|
3
|
+
import { SsmSapPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListApplications(config: SsmSapPaginationConfiguration, input: ListApplicationsCommandInput, ...additionalArguments: any): Paginator<ListApplicationsCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListComponentsCommandInput, ListComponentsCommandOutput } from "../commands/ListComponentsCommand";
|
|
3
|
+
import { SsmSapPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListComponents(config: SsmSapPaginationConfiguration, input: ListComponentsCommandInput, ...additionalArguments: any): Paginator<ListComponentsCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListDatabasesCommandInput, ListDatabasesCommandOutput } from "../commands/ListDatabasesCommand";
|
|
3
|
+
import { SsmSapPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListDatabases(config: SsmSapPaginationConfiguration, input: ListDatabasesCommandInput, ...additionalArguments: any): Paginator<ListDatabasesCommandOutput>;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
+
import { DeleteResourcePermissionCommandInput, DeleteResourcePermissionCommandOutput } from "../commands/DeleteResourcePermissionCommand";
|
|
4
|
+
import { DeregisterApplicationCommandInput, DeregisterApplicationCommandOutput } from "../commands/DeregisterApplicationCommand";
|
|
5
|
+
import { GetApplicationCommandInput, GetApplicationCommandOutput } from "../commands/GetApplicationCommand";
|
|
6
|
+
import { GetComponentCommandInput, GetComponentCommandOutput } from "../commands/GetComponentCommand";
|
|
7
|
+
import { GetDatabaseCommandInput, GetDatabaseCommandOutput } from "../commands/GetDatabaseCommand";
|
|
8
|
+
import { GetOperationCommandInput, GetOperationCommandOutput } from "../commands/GetOperationCommand";
|
|
9
|
+
import { GetResourcePermissionCommandInput, GetResourcePermissionCommandOutput } from "../commands/GetResourcePermissionCommand";
|
|
10
|
+
import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "../commands/ListApplicationsCommand";
|
|
11
|
+
import { ListComponentsCommandInput, ListComponentsCommandOutput } from "../commands/ListComponentsCommand";
|
|
12
|
+
import { ListDatabasesCommandInput, ListDatabasesCommandOutput } from "../commands/ListDatabasesCommand";
|
|
13
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
14
|
+
import { PutResourcePermissionCommandInput, PutResourcePermissionCommandOutput } from "../commands/PutResourcePermissionCommand";
|
|
15
|
+
import { RegisterApplicationCommandInput, RegisterApplicationCommandOutput } from "../commands/RegisterApplicationCommand";
|
|
16
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
17
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
18
|
+
import { UpdateApplicationSettingsCommandInput, UpdateApplicationSettingsCommandOutput } from "../commands/UpdateApplicationSettingsCommand";
|
|
19
|
+
export declare const serializeAws_restJson1DeleteResourcePermissionCommand: (input: DeleteResourcePermissionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
20
|
+
export declare const serializeAws_restJson1DeregisterApplicationCommand: (input: DeregisterApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
21
|
+
export declare const serializeAws_restJson1GetApplicationCommand: (input: GetApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
22
|
+
export declare const serializeAws_restJson1GetComponentCommand: (input: GetComponentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
23
|
+
export declare const serializeAws_restJson1GetDatabaseCommand: (input: GetDatabaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
24
|
+
export declare const serializeAws_restJson1GetOperationCommand: (input: GetOperationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
25
|
+
export declare const serializeAws_restJson1GetResourcePermissionCommand: (input: GetResourcePermissionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
|
+
export declare const serializeAws_restJson1ListApplicationsCommand: (input: ListApplicationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
|
+
export declare const serializeAws_restJson1ListComponentsCommand: (input: ListComponentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
|
+
export declare const serializeAws_restJson1ListDatabasesCommand: (input: ListDatabasesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
29
|
+
export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
|
+
export declare const serializeAws_restJson1PutResourcePermissionCommand: (input: PutResourcePermissionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
|
+
export declare const serializeAws_restJson1RegisterApplicationCommand: (input: RegisterApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
|
+
export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
|
+
export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
|
+
export declare const serializeAws_restJson1UpdateApplicationSettingsCommand: (input: UpdateApplicationSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
|
+
export declare const deserializeAws_restJson1DeleteResourcePermissionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteResourcePermissionCommandOutput>;
|
|
36
|
+
export declare const deserializeAws_restJson1DeregisterApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeregisterApplicationCommandOutput>;
|
|
37
|
+
export declare const deserializeAws_restJson1GetApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetApplicationCommandOutput>;
|
|
38
|
+
export declare const deserializeAws_restJson1GetComponentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetComponentCommandOutput>;
|
|
39
|
+
export declare const deserializeAws_restJson1GetDatabaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDatabaseCommandOutput>;
|
|
40
|
+
export declare const deserializeAws_restJson1GetOperationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOperationCommandOutput>;
|
|
41
|
+
export declare const deserializeAws_restJson1GetResourcePermissionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourcePermissionCommandOutput>;
|
|
42
|
+
export declare const deserializeAws_restJson1ListApplicationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListApplicationsCommandOutput>;
|
|
43
|
+
export declare const deserializeAws_restJson1ListComponentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListComponentsCommandOutput>;
|
|
44
|
+
export declare const deserializeAws_restJson1ListDatabasesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDatabasesCommandOutput>;
|
|
45
|
+
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
46
|
+
export declare const deserializeAws_restJson1PutResourcePermissionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutResourcePermissionCommandOutput>;
|
|
47
|
+
export declare const deserializeAws_restJson1RegisterApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RegisterApplicationCommandOutput>;
|
|
48
|
+
export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
49
|
+
export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
50
|
+
export declare const deserializeAws_restJson1UpdateApplicationSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateApplicationSettingsCommandOutput>;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { SsmSapClientConfig } from "./SsmSapClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: SsmSapClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
25
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
26
|
+
disableHostPrefix: boolean;
|
|
27
|
+
logger: import("@aws-sdk/types").Logger;
|
|
28
|
+
serviceId: string;
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
33
|
+
tls?: boolean | undefined;
|
|
34
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
35
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
36
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
37
|
+
signingEscapePath?: boolean | undefined;
|
|
38
|
+
systemClockOffset?: number | undefined;
|
|
39
|
+
signingRegion?: string | undefined;
|
|
40
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
41
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
42
|
+
};
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { SsmSapClientConfig } from "./SsmSapClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: SsmSapClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
25
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
26
|
+
disableHostPrefix: boolean;
|
|
27
|
+
logger: import("@aws-sdk/types").Logger;
|
|
28
|
+
serviceId: string;
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
33
|
+
tls?: boolean | undefined;
|
|
34
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
35
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
36
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
37
|
+
signingEscapePath?: boolean | undefined;
|
|
38
|
+
systemClockOffset?: number | undefined;
|
|
39
|
+
signingRegion?: string | undefined;
|
|
40
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
41
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
42
|
+
};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { SsmSapClientConfig } from "./SsmSapClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: SsmSapClientConfig) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
8
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
|
+
apiVersion: string;
|
|
10
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
15
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
16
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
17
|
+
disableHostPrefix: boolean;
|
|
18
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
19
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
20
|
+
logger: import("@aws-sdk/types").Logger;
|
|
21
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
22
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
23
|
+
serviceId: string;
|
|
24
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
25
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
27
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> | undefined;
|
|
29
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
30
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
31
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
32
|
+
tls?: boolean | undefined;
|
|
33
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
34
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
35
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
36
|
+
signingEscapePath?: boolean | undefined;
|
|
37
|
+
systemClockOffset?: number | undefined;
|
|
38
|
+
signingRegion?: string | undefined;
|
|
39
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
40
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
41
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { SsmSapClientConfig } from "./SsmSapClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: SsmSapClientConfig) => {
|
|
6
|
+
apiVersion: string;
|
|
7
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
+
disableHostPrefix: boolean;
|
|
10
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
12
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
13
|
+
logger: import("@aws-sdk/types").Logger;
|
|
14
|
+
serviceId: string;
|
|
15
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
16
|
+
};
|
|
@@ -0,0 +1,276 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DeleteResourcePermissionCommandInput,
|
|
4
|
+
DeleteResourcePermissionCommandOutput,
|
|
5
|
+
} from "./commands/DeleteResourcePermissionCommand";
|
|
6
|
+
import {
|
|
7
|
+
DeregisterApplicationCommandInput,
|
|
8
|
+
DeregisterApplicationCommandOutput,
|
|
9
|
+
} from "./commands/DeregisterApplicationCommand";
|
|
10
|
+
import {
|
|
11
|
+
GetApplicationCommandInput,
|
|
12
|
+
GetApplicationCommandOutput,
|
|
13
|
+
} from "./commands/GetApplicationCommand";
|
|
14
|
+
import {
|
|
15
|
+
GetComponentCommandInput,
|
|
16
|
+
GetComponentCommandOutput,
|
|
17
|
+
} from "./commands/GetComponentCommand";
|
|
18
|
+
import {
|
|
19
|
+
GetDatabaseCommandInput,
|
|
20
|
+
GetDatabaseCommandOutput,
|
|
21
|
+
} from "./commands/GetDatabaseCommand";
|
|
22
|
+
import {
|
|
23
|
+
GetOperationCommandInput,
|
|
24
|
+
GetOperationCommandOutput,
|
|
25
|
+
} from "./commands/GetOperationCommand";
|
|
26
|
+
import {
|
|
27
|
+
GetResourcePermissionCommandInput,
|
|
28
|
+
GetResourcePermissionCommandOutput,
|
|
29
|
+
} from "./commands/GetResourcePermissionCommand";
|
|
30
|
+
import {
|
|
31
|
+
ListApplicationsCommandInput,
|
|
32
|
+
ListApplicationsCommandOutput,
|
|
33
|
+
} from "./commands/ListApplicationsCommand";
|
|
34
|
+
import {
|
|
35
|
+
ListComponentsCommandInput,
|
|
36
|
+
ListComponentsCommandOutput,
|
|
37
|
+
} from "./commands/ListComponentsCommand";
|
|
38
|
+
import {
|
|
39
|
+
ListDatabasesCommandInput,
|
|
40
|
+
ListDatabasesCommandOutput,
|
|
41
|
+
} from "./commands/ListDatabasesCommand";
|
|
42
|
+
import {
|
|
43
|
+
ListTagsForResourceCommandInput,
|
|
44
|
+
ListTagsForResourceCommandOutput,
|
|
45
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
46
|
+
import {
|
|
47
|
+
PutResourcePermissionCommandInput,
|
|
48
|
+
PutResourcePermissionCommandOutput,
|
|
49
|
+
} from "./commands/PutResourcePermissionCommand";
|
|
50
|
+
import {
|
|
51
|
+
RegisterApplicationCommandInput,
|
|
52
|
+
RegisterApplicationCommandOutput,
|
|
53
|
+
} from "./commands/RegisterApplicationCommand";
|
|
54
|
+
import {
|
|
55
|
+
TagResourceCommandInput,
|
|
56
|
+
TagResourceCommandOutput,
|
|
57
|
+
} from "./commands/TagResourceCommand";
|
|
58
|
+
import {
|
|
59
|
+
UntagResourceCommandInput,
|
|
60
|
+
UntagResourceCommandOutput,
|
|
61
|
+
} from "./commands/UntagResourceCommand";
|
|
62
|
+
import {
|
|
63
|
+
UpdateApplicationSettingsCommandInput,
|
|
64
|
+
UpdateApplicationSettingsCommandOutput,
|
|
65
|
+
} from "./commands/UpdateApplicationSettingsCommand";
|
|
66
|
+
import { SsmSapClient } from "./SsmSapClient";
|
|
67
|
+
export declare class SsmSap extends SsmSapClient {
|
|
68
|
+
deleteResourcePermission(
|
|
69
|
+
args: DeleteResourcePermissionCommandInput,
|
|
70
|
+
options?: __HttpHandlerOptions
|
|
71
|
+
): Promise<DeleteResourcePermissionCommandOutput>;
|
|
72
|
+
deleteResourcePermission(
|
|
73
|
+
args: DeleteResourcePermissionCommandInput,
|
|
74
|
+
cb: (err: any, data?: DeleteResourcePermissionCommandOutput) => void
|
|
75
|
+
): void;
|
|
76
|
+
deleteResourcePermission(
|
|
77
|
+
args: DeleteResourcePermissionCommandInput,
|
|
78
|
+
options: __HttpHandlerOptions,
|
|
79
|
+
cb: (err: any, data?: DeleteResourcePermissionCommandOutput) => void
|
|
80
|
+
): void;
|
|
81
|
+
deregisterApplication(
|
|
82
|
+
args: DeregisterApplicationCommandInput,
|
|
83
|
+
options?: __HttpHandlerOptions
|
|
84
|
+
): Promise<DeregisterApplicationCommandOutput>;
|
|
85
|
+
deregisterApplication(
|
|
86
|
+
args: DeregisterApplicationCommandInput,
|
|
87
|
+
cb: (err: any, data?: DeregisterApplicationCommandOutput) => void
|
|
88
|
+
): void;
|
|
89
|
+
deregisterApplication(
|
|
90
|
+
args: DeregisterApplicationCommandInput,
|
|
91
|
+
options: __HttpHandlerOptions,
|
|
92
|
+
cb: (err: any, data?: DeregisterApplicationCommandOutput) => void
|
|
93
|
+
): void;
|
|
94
|
+
getApplication(
|
|
95
|
+
args: GetApplicationCommandInput,
|
|
96
|
+
options?: __HttpHandlerOptions
|
|
97
|
+
): Promise<GetApplicationCommandOutput>;
|
|
98
|
+
getApplication(
|
|
99
|
+
args: GetApplicationCommandInput,
|
|
100
|
+
cb: (err: any, data?: GetApplicationCommandOutput) => void
|
|
101
|
+
): void;
|
|
102
|
+
getApplication(
|
|
103
|
+
args: GetApplicationCommandInput,
|
|
104
|
+
options: __HttpHandlerOptions,
|
|
105
|
+
cb: (err: any, data?: GetApplicationCommandOutput) => void
|
|
106
|
+
): void;
|
|
107
|
+
getComponent(
|
|
108
|
+
args: GetComponentCommandInput,
|
|
109
|
+
options?: __HttpHandlerOptions
|
|
110
|
+
): Promise<GetComponentCommandOutput>;
|
|
111
|
+
getComponent(
|
|
112
|
+
args: GetComponentCommandInput,
|
|
113
|
+
cb: (err: any, data?: GetComponentCommandOutput) => void
|
|
114
|
+
): void;
|
|
115
|
+
getComponent(
|
|
116
|
+
args: GetComponentCommandInput,
|
|
117
|
+
options: __HttpHandlerOptions,
|
|
118
|
+
cb: (err: any, data?: GetComponentCommandOutput) => void
|
|
119
|
+
): void;
|
|
120
|
+
getDatabase(
|
|
121
|
+
args: GetDatabaseCommandInput,
|
|
122
|
+
options?: __HttpHandlerOptions
|
|
123
|
+
): Promise<GetDatabaseCommandOutput>;
|
|
124
|
+
getDatabase(
|
|
125
|
+
args: GetDatabaseCommandInput,
|
|
126
|
+
cb: (err: any, data?: GetDatabaseCommandOutput) => void
|
|
127
|
+
): void;
|
|
128
|
+
getDatabase(
|
|
129
|
+
args: GetDatabaseCommandInput,
|
|
130
|
+
options: __HttpHandlerOptions,
|
|
131
|
+
cb: (err: any, data?: GetDatabaseCommandOutput) => void
|
|
132
|
+
): void;
|
|
133
|
+
getOperation(
|
|
134
|
+
args: GetOperationCommandInput,
|
|
135
|
+
options?: __HttpHandlerOptions
|
|
136
|
+
): Promise<GetOperationCommandOutput>;
|
|
137
|
+
getOperation(
|
|
138
|
+
args: GetOperationCommandInput,
|
|
139
|
+
cb: (err: any, data?: GetOperationCommandOutput) => void
|
|
140
|
+
): void;
|
|
141
|
+
getOperation(
|
|
142
|
+
args: GetOperationCommandInput,
|
|
143
|
+
options: __HttpHandlerOptions,
|
|
144
|
+
cb: (err: any, data?: GetOperationCommandOutput) => void
|
|
145
|
+
): void;
|
|
146
|
+
getResourcePermission(
|
|
147
|
+
args: GetResourcePermissionCommandInput,
|
|
148
|
+
options?: __HttpHandlerOptions
|
|
149
|
+
): Promise<GetResourcePermissionCommandOutput>;
|
|
150
|
+
getResourcePermission(
|
|
151
|
+
args: GetResourcePermissionCommandInput,
|
|
152
|
+
cb: (err: any, data?: GetResourcePermissionCommandOutput) => void
|
|
153
|
+
): void;
|
|
154
|
+
getResourcePermission(
|
|
155
|
+
args: GetResourcePermissionCommandInput,
|
|
156
|
+
options: __HttpHandlerOptions,
|
|
157
|
+
cb: (err: any, data?: GetResourcePermissionCommandOutput) => void
|
|
158
|
+
): void;
|
|
159
|
+
listApplications(
|
|
160
|
+
args: ListApplicationsCommandInput,
|
|
161
|
+
options?: __HttpHandlerOptions
|
|
162
|
+
): Promise<ListApplicationsCommandOutput>;
|
|
163
|
+
listApplications(
|
|
164
|
+
args: ListApplicationsCommandInput,
|
|
165
|
+
cb: (err: any, data?: ListApplicationsCommandOutput) => void
|
|
166
|
+
): void;
|
|
167
|
+
listApplications(
|
|
168
|
+
args: ListApplicationsCommandInput,
|
|
169
|
+
options: __HttpHandlerOptions,
|
|
170
|
+
cb: (err: any, data?: ListApplicationsCommandOutput) => void
|
|
171
|
+
): void;
|
|
172
|
+
listComponents(
|
|
173
|
+
args: ListComponentsCommandInput,
|
|
174
|
+
options?: __HttpHandlerOptions
|
|
175
|
+
): Promise<ListComponentsCommandOutput>;
|
|
176
|
+
listComponents(
|
|
177
|
+
args: ListComponentsCommandInput,
|
|
178
|
+
cb: (err: any, data?: ListComponentsCommandOutput) => void
|
|
179
|
+
): void;
|
|
180
|
+
listComponents(
|
|
181
|
+
args: ListComponentsCommandInput,
|
|
182
|
+
options: __HttpHandlerOptions,
|
|
183
|
+
cb: (err: any, data?: ListComponentsCommandOutput) => void
|
|
184
|
+
): void;
|
|
185
|
+
listDatabases(
|
|
186
|
+
args: ListDatabasesCommandInput,
|
|
187
|
+
options?: __HttpHandlerOptions
|
|
188
|
+
): Promise<ListDatabasesCommandOutput>;
|
|
189
|
+
listDatabases(
|
|
190
|
+
args: ListDatabasesCommandInput,
|
|
191
|
+
cb: (err: any, data?: ListDatabasesCommandOutput) => void
|
|
192
|
+
): void;
|
|
193
|
+
listDatabases(
|
|
194
|
+
args: ListDatabasesCommandInput,
|
|
195
|
+
options: __HttpHandlerOptions,
|
|
196
|
+
cb: (err: any, data?: ListDatabasesCommandOutput) => void
|
|
197
|
+
): void;
|
|
198
|
+
listTagsForResource(
|
|
199
|
+
args: ListTagsForResourceCommandInput,
|
|
200
|
+
options?: __HttpHandlerOptions
|
|
201
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
202
|
+
listTagsForResource(
|
|
203
|
+
args: ListTagsForResourceCommandInput,
|
|
204
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
205
|
+
): void;
|
|
206
|
+
listTagsForResource(
|
|
207
|
+
args: ListTagsForResourceCommandInput,
|
|
208
|
+
options: __HttpHandlerOptions,
|
|
209
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
210
|
+
): void;
|
|
211
|
+
putResourcePermission(
|
|
212
|
+
args: PutResourcePermissionCommandInput,
|
|
213
|
+
options?: __HttpHandlerOptions
|
|
214
|
+
): Promise<PutResourcePermissionCommandOutput>;
|
|
215
|
+
putResourcePermission(
|
|
216
|
+
args: PutResourcePermissionCommandInput,
|
|
217
|
+
cb: (err: any, data?: PutResourcePermissionCommandOutput) => void
|
|
218
|
+
): void;
|
|
219
|
+
putResourcePermission(
|
|
220
|
+
args: PutResourcePermissionCommandInput,
|
|
221
|
+
options: __HttpHandlerOptions,
|
|
222
|
+
cb: (err: any, data?: PutResourcePermissionCommandOutput) => void
|
|
223
|
+
): void;
|
|
224
|
+
registerApplication(
|
|
225
|
+
args: RegisterApplicationCommandInput,
|
|
226
|
+
options?: __HttpHandlerOptions
|
|
227
|
+
): Promise<RegisterApplicationCommandOutput>;
|
|
228
|
+
registerApplication(
|
|
229
|
+
args: RegisterApplicationCommandInput,
|
|
230
|
+
cb: (err: any, data?: RegisterApplicationCommandOutput) => void
|
|
231
|
+
): void;
|
|
232
|
+
registerApplication(
|
|
233
|
+
args: RegisterApplicationCommandInput,
|
|
234
|
+
options: __HttpHandlerOptions,
|
|
235
|
+
cb: (err: any, data?: RegisterApplicationCommandOutput) => void
|
|
236
|
+
): void;
|
|
237
|
+
tagResource(
|
|
238
|
+
args: TagResourceCommandInput,
|
|
239
|
+
options?: __HttpHandlerOptions
|
|
240
|
+
): Promise<TagResourceCommandOutput>;
|
|
241
|
+
tagResource(
|
|
242
|
+
args: TagResourceCommandInput,
|
|
243
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
244
|
+
): void;
|
|
245
|
+
tagResource(
|
|
246
|
+
args: TagResourceCommandInput,
|
|
247
|
+
options: __HttpHandlerOptions,
|
|
248
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
249
|
+
): void;
|
|
250
|
+
untagResource(
|
|
251
|
+
args: UntagResourceCommandInput,
|
|
252
|
+
options?: __HttpHandlerOptions
|
|
253
|
+
): Promise<UntagResourceCommandOutput>;
|
|
254
|
+
untagResource(
|
|
255
|
+
args: UntagResourceCommandInput,
|
|
256
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
257
|
+
): void;
|
|
258
|
+
untagResource(
|
|
259
|
+
args: UntagResourceCommandInput,
|
|
260
|
+
options: __HttpHandlerOptions,
|
|
261
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
262
|
+
): void;
|
|
263
|
+
updateApplicationSettings(
|
|
264
|
+
args: UpdateApplicationSettingsCommandInput,
|
|
265
|
+
options?: __HttpHandlerOptions
|
|
266
|
+
): Promise<UpdateApplicationSettingsCommandOutput>;
|
|
267
|
+
updateApplicationSettings(
|
|
268
|
+
args: UpdateApplicationSettingsCommandInput,
|
|
269
|
+
cb: (err: any, data?: UpdateApplicationSettingsCommandOutput) => void
|
|
270
|
+
): void;
|
|
271
|
+
updateApplicationSettings(
|
|
272
|
+
args: UpdateApplicationSettingsCommandInput,
|
|
273
|
+
options: __HttpHandlerOptions,
|
|
274
|
+
cb: (err: any, data?: UpdateApplicationSettingsCommandOutput) => void
|
|
275
|
+
): void;
|
|
276
|
+
}
|