@aws-sdk/client-application-discovery-service 3.1087.0 → 3.1088.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/ApplicationDiscoveryService.d.ts +93 -123
- package/dist-types/ts3.4/ApplicationDiscoveryServiceClient.d.ts +7 -21
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -10
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/AssociateConfigurationItemsToApplicationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/BatchDeleteAgentsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/BatchDeleteImportDataCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateTagsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteApplicationsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeAgentsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/DescribeBatchDeleteConfigurationTaskCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeConfigurationsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeContinuousExportsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeExportConfigurationsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeExportTasksCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeImportTasksCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DisassociateConfigurationItemsFromApplicationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ExportConfigurationsCommand.d.ts +2 -3
- package/dist-types/ts3.4/commands/GetDiscoverySummaryCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListConfigurationsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListServerNeighborsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartBatchDeleteConfigurationTaskCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StartContinuousExportCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StartDataCollectionByAgentIdsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StartExportTaskCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/StartImportTaskCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StopContinuousExportCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StopDataCollectionByAgentIdsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +5 -10
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +5 -10
- package/dist-types/ts3.4/models/errors.d.ts +10 -30
- package/dist-types/ts3.4/models/models_0.d.ts +1 -3
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/package.json +38 -38
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { ApplicationDiscoveryServiceClientResolvedConfig } from "../ApplicationDiscoveryServiceClient";
|
|
15
|
-
export interface ApplicationDiscoveryServiceHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface ApplicationDiscoveryServiceHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface ApplicationDiscoveryServiceHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface ApplicationDiscoveryServiceHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
ApplicationDiscoveryServiceClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
ApplicationDiscoveryServiceHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultApplicationDiscoveryServiceHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: ApplicationDiscoveryServiceClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<ApplicationDiscoveryServiceHttpAuthSchemeParameters>;
|
|
31
|
-
export interface ApplicationDiscoveryServiceHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<ApplicationDiscoveryServiceHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface ApplicationDiscoveryServiceHttpAuthSchemeProvider extends HttpAuthSchemeProvider<ApplicationDiscoveryServiceHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultApplicationDiscoveryServiceHttpAuthSchemeProvider: ApplicationDiscoveryServiceHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: ApplicationDiscoveryServiceHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: ApplicationDiscoveryServiceHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./ApplicationDiscoveryServiceClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
ApplicationDiscoveryServiceClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
AssociateConfigurationItemsToApplicationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface AssociateConfigurationItemsToApplicationCommandInput
|
|
8
|
-
extends AssociateConfigurationItemsToApplicationRequest {}
|
|
7
|
+
export interface AssociateConfigurationItemsToApplicationCommandInput extends AssociateConfigurationItemsToApplicationRequest {}
|
|
9
8
|
export interface AssociateConfigurationItemsToApplicationCommandOutput
|
|
10
|
-
extends AssociateConfigurationItemsToApplicationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends AssociateConfigurationItemsToApplicationResponse, __MetadataBearer {}
|
|
12
10
|
declare const AssociateConfigurationItemsToApplicationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: AssociateConfigurationItemsToApplicationCommandInput
|
|
12
|
+
input: AssociateConfigurationItemsToApplicationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
AssociateConfigurationItemsToApplicationCommandInput,
|
|
17
15
|
AssociateConfigurationItemsToApplicationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const AssociateConfigurationItemsToApplicationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: AssociateConfigurationItemsToApplicationCommandInput
|
|
21
|
+
input: AssociateConfigurationItemsToApplicationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
AssociateConfigurationItemsToApplicationCommandInput,
|
|
26
24
|
AssociateConfigurationItemsToApplicationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
BatchDeleteAgentsRequest,
|
|
4
|
-
BatchDeleteAgentsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { BatchDeleteAgentsRequest, BatchDeleteAgentsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface BatchDeleteAgentsCommandInput
|
|
8
|
-
extends BatchDeleteAgentsRequest {}
|
|
4
|
+
export interface BatchDeleteAgentsCommandInput extends BatchDeleteAgentsRequest {}
|
|
9
5
|
export interface BatchDeleteAgentsCommandOutput
|
|
10
|
-
extends BatchDeleteAgentsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends BatchDeleteAgentsResponse, __MetadataBearer {}
|
|
12
7
|
declare const BatchDeleteAgentsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: BatchDeleteAgentsCommandInput
|
|
9
|
+
input: BatchDeleteAgentsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
BatchDeleteAgentsCommandInput,
|
|
17
12
|
BatchDeleteAgentsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const BatchDeleteAgentsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: BatchDeleteAgentsCommandInput
|
|
18
|
+
input: BatchDeleteAgentsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
BatchDeleteAgentsCommandInput,
|
|
26
21
|
BatchDeleteAgentsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
BatchDeleteImportDataRequest,
|
|
4
|
-
BatchDeleteImportDataResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { BatchDeleteImportDataRequest, BatchDeleteImportDataResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface BatchDeleteImportDataCommandInput
|
|
8
|
-
extends BatchDeleteImportDataRequest {}
|
|
4
|
+
export interface BatchDeleteImportDataCommandInput extends BatchDeleteImportDataRequest {}
|
|
9
5
|
export interface BatchDeleteImportDataCommandOutput
|
|
10
|
-
extends BatchDeleteImportDataResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends BatchDeleteImportDataResponse, __MetadataBearer {}
|
|
12
7
|
declare const BatchDeleteImportDataCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: BatchDeleteImportDataCommandInput
|
|
9
|
+
input: BatchDeleteImportDataCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
BatchDeleteImportDataCommandInput,
|
|
17
12
|
BatchDeleteImportDataCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const BatchDeleteImportDataCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: BatchDeleteImportDataCommandInput
|
|
18
|
+
input: BatchDeleteImportDataCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
BatchDeleteImportDataCommandInput,
|
|
26
21
|
BatchDeleteImportDataCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateApplicationRequest,
|
|
4
|
-
CreateApplicationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateApplicationCommandInput
|
|
8
|
-
extends CreateApplicationRequest {}
|
|
4
|
+
export interface CreateApplicationCommandInput extends CreateApplicationRequest {}
|
|
9
5
|
export interface CreateApplicationCommandOutput
|
|
10
|
-
extends CreateApplicationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateApplicationResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateApplicationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateApplicationCommandInput
|
|
9
|
+
input: CreateApplicationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateApplicationCommandInput,
|
|
17
12
|
CreateApplicationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateApplicationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateApplicationCommandInput
|
|
18
|
+
input: CreateApplicationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateApplicationCommandInput,
|
|
26
21
|
CreateApplicationCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { CreateTagsRequest, CreateTagsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CreateTagsCommandInput extends CreateTagsRequest {}
|
|
5
|
-
export interface CreateTagsCommandOutput
|
|
6
|
-
extends CreateTagsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateTagsCommandOutput extends CreateTagsResponse, __MetadataBearer {}
|
|
8
6
|
declare const CreateTagsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: CreateTagsCommandInput
|
|
8
|
+
input: CreateTagsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
CreateTagsCommandInput,
|
|
13
11
|
CreateTagsCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const CreateTagsCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: CreateTagsCommandInput
|
|
17
|
+
input: CreateTagsCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
CreateTagsCommandInput,
|
|
22
20
|
CreateTagsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteApplicationsRequest,
|
|
4
|
-
DeleteApplicationsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteApplicationsRequest, DeleteApplicationsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteApplicationsCommandInput
|
|
8
|
-
extends DeleteApplicationsRequest {}
|
|
4
|
+
export interface DeleteApplicationsCommandInput extends DeleteApplicationsRequest {}
|
|
9
5
|
export interface DeleteApplicationsCommandOutput
|
|
10
|
-
extends DeleteApplicationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteApplicationsResponse, __MetadataBearer {}
|
|
12
7
|
declare const DeleteApplicationsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteApplicationsCommandInput
|
|
9
|
+
input: DeleteApplicationsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteApplicationsCommandInput,
|
|
17
12
|
DeleteApplicationsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteApplicationsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteApplicationsCommandInput
|
|
18
|
+
input: DeleteApplicationsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteApplicationsCommandInput,
|
|
26
21
|
DeleteApplicationsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DeleteTagsRequest, DeleteTagsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DeleteTagsCommandInput extends DeleteTagsRequest {}
|
|
5
|
-
export interface DeleteTagsCommandOutput
|
|
6
|
-
extends DeleteTagsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteTagsCommandOutput extends DeleteTagsResponse, __MetadataBearer {}
|
|
8
6
|
declare const DeleteTagsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DeleteTagsCommandInput
|
|
8
|
+
input: DeleteTagsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DeleteTagsCommandInput,
|
|
13
11
|
DeleteTagsCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DeleteTagsCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DeleteTagsCommandInput
|
|
17
|
+
input: DeleteTagsCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DeleteTagsCommandInput,
|
|
22
20
|
DeleteTagsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeAgentsRequest,
|
|
4
|
-
DescribeAgentsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeAgentsRequest, DescribeAgentsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DescribeAgentsCommandInput extends DescribeAgentsRequest {}
|
|
8
|
-
export interface DescribeAgentsCommandOutput
|
|
9
|
-
extends DescribeAgentsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DescribeAgentsCommandOutput extends DescribeAgentsResponse, __MetadataBearer {}
|
|
11
6
|
declare const DescribeAgentsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DescribeAgentsCommandInput
|
|
8
|
+
input: DescribeAgentsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DescribeAgentsCommandInput,
|
|
16
11
|
DescribeAgentsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeBatchDeleteConfigurationTaskResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeBatchDeleteConfigurationTaskCommandInput
|
|
8
|
-
extends DescribeBatchDeleteConfigurationTaskRequest {}
|
|
7
|
+
export interface DescribeBatchDeleteConfigurationTaskCommandInput extends DescribeBatchDeleteConfigurationTaskRequest {}
|
|
9
8
|
export interface DescribeBatchDeleteConfigurationTaskCommandOutput
|
|
10
|
-
extends DescribeBatchDeleteConfigurationTaskResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeBatchDeleteConfigurationTaskResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeBatchDeleteConfigurationTaskCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeBatchDeleteConfigurationTaskCommandInput
|
|
12
|
+
input: DescribeBatchDeleteConfigurationTaskCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeBatchDeleteConfigurationTaskCommandInput,
|
|
17
15
|
DescribeBatchDeleteConfigurationTaskCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeBatchDeleteConfigurationTaskCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeBatchDeleteConfigurationTaskCommandInput
|
|
21
|
+
input: DescribeBatchDeleteConfigurationTaskCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeBatchDeleteConfigurationTaskCommandInput,
|
|
26
24
|
DescribeBatchDeleteConfigurationTaskCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeConfigurationsRequest,
|
|
4
|
-
DescribeConfigurationsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeConfigurationsRequest, DescribeConfigurationsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeConfigurationsCommandInput
|
|
8
|
-
extends DescribeConfigurationsRequest {}
|
|
4
|
+
export interface DescribeConfigurationsCommandInput extends DescribeConfigurationsRequest {}
|
|
9
5
|
export interface DescribeConfigurationsCommandOutput
|
|
10
|
-
extends DescribeConfigurationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DescribeConfigurationsResponse, __MetadataBearer {}
|
|
12
7
|
declare const DescribeConfigurationsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DescribeConfigurationsCommandInput
|
|
9
|
+
input: DescribeConfigurationsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DescribeConfigurationsCommandInput,
|
|
17
12
|
DescribeConfigurationsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DescribeConfigurationsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DescribeConfigurationsCommandInput
|
|
18
|
+
input: DescribeConfigurationsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DescribeConfigurationsCommandInput,
|
|
26
21
|
DescribeConfigurationsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeContinuousExportsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeContinuousExportsCommandInput
|
|
8
|
-
extends DescribeContinuousExportsRequest {}
|
|
7
|
+
export interface DescribeContinuousExportsCommandInput extends DescribeContinuousExportsRequest {}
|
|
9
8
|
export interface DescribeContinuousExportsCommandOutput
|
|
10
|
-
extends DescribeContinuousExportsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeContinuousExportsResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeContinuousExportsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeContinuousExportsCommandInput
|
|
12
|
+
input: DescribeContinuousExportsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeContinuousExportsCommandInput,
|
|
17
15
|
DescribeContinuousExportsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeExportConfigurationsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeExportConfigurationsCommandInput
|
|
8
|
-
extends DescribeExportConfigurationsRequest {}
|
|
7
|
+
export interface DescribeExportConfigurationsCommandInput extends DescribeExportConfigurationsRequest {}
|
|
9
8
|
export interface DescribeExportConfigurationsCommandOutput
|
|
10
|
-
extends DescribeExportConfigurationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeExportConfigurationsResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeExportConfigurationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeExportConfigurationsCommandInput
|
|
12
|
+
input: DescribeExportConfigurationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeExportConfigurationsCommandInput,
|
|
17
15
|
DescribeExportConfigurationsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeExportTasksRequest,
|
|
4
|
-
DescribeExportTasksResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeExportTasksRequest, DescribeExportTasksResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeExportTasksCommandInput
|
|
8
|
-
extends DescribeExportTasksRequest {}
|
|
4
|
+
export interface DescribeExportTasksCommandInput extends DescribeExportTasksRequest {}
|
|
9
5
|
export interface DescribeExportTasksCommandOutput
|
|
10
|
-
extends DescribeExportTasksResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DescribeExportTasksResponse, __MetadataBearer {}
|
|
12
7
|
declare const DescribeExportTasksCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DescribeExportTasksCommandInput
|
|
9
|
+
input: DescribeExportTasksCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DescribeExportTasksCommandInput,
|
|
17
12
|
DescribeExportTasksCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeImportTasksRequest,
|
|
4
|
-
DescribeImportTasksResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeImportTasksRequest, DescribeImportTasksResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeImportTasksCommandInput
|
|
8
|
-
extends DescribeImportTasksRequest {}
|
|
4
|
+
export interface DescribeImportTasksCommandInput extends DescribeImportTasksRequest {}
|
|
9
5
|
export interface DescribeImportTasksCommandOutput
|
|
10
|
-
extends DescribeImportTasksResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DescribeImportTasksResponse, __MetadataBearer {}
|
|
12
7
|
declare const DescribeImportTasksCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DescribeImportTasksCommandInput
|
|
9
|
+
input: DescribeImportTasksCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DescribeImportTasksCommandInput,
|
|
17
12
|
DescribeImportTasksCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DescribeTagsRequest, DescribeTagsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DescribeTagsCommandInput extends DescribeTagsRequest {}
|
|
5
|
-
export interface DescribeTagsCommandOutput
|
|
6
|
-
extends DescribeTagsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DescribeTagsCommandOutput extends DescribeTagsResponse, __MetadataBearer {}
|
|
8
6
|
declare const DescribeTagsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DescribeTagsCommandInput
|
|
8
|
+
input: DescribeTagsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DescribeTagsCommandInput,
|
|
13
11
|
DescribeTagsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DisassociateConfigurationItemsFromApplicationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DisassociateConfigurationItemsFromApplicationCommandInput
|
|
8
|
-
extends DisassociateConfigurationItemsFromApplicationRequest {}
|
|
7
|
+
export interface DisassociateConfigurationItemsFromApplicationCommandInput extends DisassociateConfigurationItemsFromApplicationRequest {}
|
|
9
8
|
export interface DisassociateConfigurationItemsFromApplicationCommandOutput
|
|
10
|
-
extends DisassociateConfigurationItemsFromApplicationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DisassociateConfigurationItemsFromApplicationResponse, __MetadataBearer {}
|
|
12
10
|
declare const DisassociateConfigurationItemsFromApplicationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DisassociateConfigurationItemsFromApplicationCommandInput
|
|
12
|
+
input: DisassociateConfigurationItemsFromApplicationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DisassociateConfigurationItemsFromApplicationCommandInput,
|
|
17
15
|
DisassociateConfigurationItemsFromApplicationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DisassociateConfigurationItemsFromApplicationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DisassociateConfigurationItemsFromApplicationCommandInput
|
|
21
|
+
input: DisassociateConfigurationItemsFromApplicationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DisassociateConfigurationItemsFromApplicationCommandInput,
|
|
26
24
|
DisassociateConfigurationItemsFromApplicationCommandOutput,
|
|
@@ -3,11 +3,10 @@ import { ExportConfigurationsResponse } from "../models/models_0";
|
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ExportConfigurationsCommandInput {}
|
|
5
5
|
export interface ExportConfigurationsCommandOutput
|
|
6
|
-
extends ExportConfigurationsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
6
|
+
extends ExportConfigurationsResponse, __MetadataBearer {}
|
|
8
7
|
declare const ExportConfigurationsCommand_base: {
|
|
9
8
|
new (
|
|
10
|
-
input: ExportConfigurationsCommandInput
|
|
9
|
+
input: ExportConfigurationsCommandInput,
|
|
11
10
|
): import("@smithy/core/client").CommandImpl<
|
|
12
11
|
ExportConfigurationsCommandInput,
|
|
13
12
|
ExportConfigurationsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetDiscoverySummaryRequest,
|
|
4
|
-
GetDiscoverySummaryResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetDiscoverySummaryRequest, GetDiscoverySummaryResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetDiscoverySummaryCommandInput
|
|
8
|
-
extends GetDiscoverySummaryRequest {}
|
|
4
|
+
export interface GetDiscoverySummaryCommandInput extends GetDiscoverySummaryRequest {}
|
|
9
5
|
export interface GetDiscoverySummaryCommandOutput
|
|
10
|
-
extends GetDiscoverySummaryResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetDiscoverySummaryResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetDiscoverySummaryCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetDiscoverySummaryCommandInput
|
|
9
|
+
input: GetDiscoverySummaryCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetDiscoverySummaryCommandInput,
|
|
17
12
|
GetDiscoverySummaryCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListConfigurationsRequest,
|
|
4
|
-
ListConfigurationsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListConfigurationsRequest, ListConfigurationsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListConfigurationsCommandInput
|
|
8
|
-
extends ListConfigurationsRequest {}
|
|
4
|
+
export interface ListConfigurationsCommandInput extends ListConfigurationsRequest {}
|
|
9
5
|
export interface ListConfigurationsCommandOutput
|
|
10
|
-
extends ListConfigurationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListConfigurationsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListConfigurationsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListConfigurationsCommandInput
|
|
9
|
+
input: ListConfigurationsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListConfigurationsCommandInput,
|
|
17
12
|
ListConfigurationsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListConfigurationsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListConfigurationsCommandInput
|
|
18
|
+
input: ListConfigurationsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListConfigurationsCommandInput,
|
|
26
21
|
ListConfigurationsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListServerNeighborsRequest,
|
|
4
|
-
ListServerNeighborsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListServerNeighborsRequest, ListServerNeighborsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListServerNeighborsCommandInput
|
|
8
|
-
extends ListServerNeighborsRequest {}
|
|
4
|
+
export interface ListServerNeighborsCommandInput extends ListServerNeighborsRequest {}
|
|
9
5
|
export interface ListServerNeighborsCommandOutput
|
|
10
|
-
extends ListServerNeighborsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListServerNeighborsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListServerNeighborsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListServerNeighborsCommandInput
|
|
9
|
+
input: ListServerNeighborsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListServerNeighborsCommandInput,
|
|
17
12
|
ListServerNeighborsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListServerNeighborsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListServerNeighborsCommandInput
|
|
18
|
+
input: ListServerNeighborsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListServerNeighborsCommandInput,
|
|
26
21
|
ListServerNeighborsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
StartBatchDeleteConfigurationTaskResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartBatchDeleteConfigurationTaskCommandInput
|
|
8
|
-
extends StartBatchDeleteConfigurationTaskRequest {}
|
|
7
|
+
export interface StartBatchDeleteConfigurationTaskCommandInput extends StartBatchDeleteConfigurationTaskRequest {}
|
|
9
8
|
export interface StartBatchDeleteConfigurationTaskCommandOutput
|
|
10
|
-
extends StartBatchDeleteConfigurationTaskResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends StartBatchDeleteConfigurationTaskResponse, __MetadataBearer {}
|
|
12
10
|
declare const StartBatchDeleteConfigurationTaskCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: StartBatchDeleteConfigurationTaskCommandInput
|
|
12
|
+
input: StartBatchDeleteConfigurationTaskCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
StartBatchDeleteConfigurationTaskCommandInput,
|
|
17
15
|
StartBatchDeleteConfigurationTaskCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const StartBatchDeleteConfigurationTaskCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: StartBatchDeleteConfigurationTaskCommandInput
|
|
21
|
+
input: StartBatchDeleteConfigurationTaskCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
StartBatchDeleteConfigurationTaskCommandInput,
|
|
26
24
|
StartBatchDeleteConfigurationTaskCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StartContinuousExportRequest,
|
|
4
|
-
StartContinuousExportResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StartContinuousExportRequest, StartContinuousExportResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartContinuousExportCommandInput
|
|
8
|
-
extends StartContinuousExportRequest {}
|
|
4
|
+
export interface StartContinuousExportCommandInput extends StartContinuousExportRequest {}
|
|
9
5
|
export interface StartContinuousExportCommandOutput
|
|
10
|
-
extends StartContinuousExportResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends StartContinuousExportResponse, __MetadataBearer {}
|
|
12
7
|
declare const StartContinuousExportCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: StartContinuousExportCommandInput
|
|
9
|
+
input: StartContinuousExportCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
StartContinuousExportCommandInput,
|
|
17
12
|
StartContinuousExportCommandOutput,
|