@aws-sdk/client-apprunner 3.169.0 → 3.171.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/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/AppRunner.d.ts +520 -155
- package/dist-types/ts3.4/AppRunnerClient.d.ts +284 -103
- package/dist-types/ts3.4/commands/AssociateCustomDomainCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateAutoScalingConfigurationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateObservabilityConfigurationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateServiceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateVpcConnectorCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteAutoScalingConfigurationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteObservabilityConfigurationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteServiceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteVpcConnectorCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeAutoScalingConfigurationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeCustomDomainsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeObservabilityConfigurationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeServiceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeVpcConnectorCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DisassociateCustomDomainCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListAutoScalingConfigurationsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListObservabilityConfigurationsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListOperationsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListVpcConnectorsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/PauseServiceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ResumeServiceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/StartDeploymentCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateServiceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/index.d.ts +30 -30
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/AppRunnerServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +803 -992
- package/dist-types/ts3.4/pagination/DescribeCustomDomainsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListAutoScalingConfigurationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListConnectionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListObservabilityConfigurationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListOperationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListVpcConnectorsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +8 -8
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +365 -92
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AppRunnerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AppRunnerClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeVpcConnectorRequest,
|
|
15
|
+
DescribeVpcConnectorResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeVpcConnectorCommandInput
|
|
18
|
+
extends DescribeVpcConnectorRequest {}
|
|
19
|
+
export interface DescribeVpcConnectorCommandOutput
|
|
20
|
+
extends DescribeVpcConnectorResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeVpcConnectorCommand extends $Command<
|
|
23
|
+
DescribeVpcConnectorCommandInput,
|
|
24
|
+
DescribeVpcConnectorCommandOutput,
|
|
25
|
+
AppRunnerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeVpcConnectorCommandInput;
|
|
28
|
+
constructor(input: DescribeVpcConnectorCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: AppRunnerClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeVpcConnectorCommandInput,
|
|
35
|
+
DescribeVpcConnectorCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AppRunnerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AppRunnerClient";
|
|
13
|
+
import {
|
|
14
|
+
DisassociateCustomDomainRequest,
|
|
15
|
+
DisassociateCustomDomainResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DisassociateCustomDomainCommandInput
|
|
18
|
+
extends DisassociateCustomDomainRequest {}
|
|
19
|
+
export interface DisassociateCustomDomainCommandOutput
|
|
20
|
+
extends DisassociateCustomDomainResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DisassociateCustomDomainCommand extends $Command<
|
|
23
|
+
DisassociateCustomDomainCommandInput,
|
|
24
|
+
DisassociateCustomDomainCommandOutput,
|
|
25
|
+
AppRunnerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DisassociateCustomDomainCommandInput;
|
|
28
|
+
constructor(input: DisassociateCustomDomainCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: AppRunnerClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DisassociateCustomDomainCommandInput,
|
|
35
|
+
DisassociateCustomDomainCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AppRunnerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AppRunnerClient";
|
|
13
|
+
import {
|
|
14
|
+
ListAutoScalingConfigurationsRequest,
|
|
15
|
+
ListAutoScalingConfigurationsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListAutoScalingConfigurationsCommandInput
|
|
18
|
+
extends ListAutoScalingConfigurationsRequest {}
|
|
19
|
+
export interface ListAutoScalingConfigurationsCommandOutput
|
|
20
|
+
extends ListAutoScalingConfigurationsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListAutoScalingConfigurationsCommand extends $Command<
|
|
23
|
+
ListAutoScalingConfigurationsCommandInput,
|
|
24
|
+
ListAutoScalingConfigurationsCommandOutput,
|
|
25
|
+
AppRunnerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListAutoScalingConfigurationsCommandInput;
|
|
28
|
+
constructor(input: ListAutoScalingConfigurationsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: AppRunnerClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListAutoScalingConfigurationsCommandInput,
|
|
35
|
+
ListAutoScalingConfigurationsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AppRunnerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AppRunnerClient";
|
|
13
|
+
import {
|
|
14
|
+
ListConnectionsRequest,
|
|
15
|
+
ListConnectionsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListConnectionsCommandInput extends ListConnectionsRequest {}
|
|
18
|
+
export interface ListConnectionsCommandOutput
|
|
19
|
+
extends ListConnectionsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class ListConnectionsCommand extends $Command<
|
|
22
|
+
ListConnectionsCommandInput,
|
|
23
|
+
ListConnectionsCommandOutput,
|
|
24
|
+
AppRunnerClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ListConnectionsCommandInput;
|
|
27
|
+
constructor(input: ListConnectionsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: AppRunnerClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListConnectionsCommandInput, ListConnectionsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AppRunnerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AppRunnerClient";
|
|
13
|
+
import {
|
|
14
|
+
ListObservabilityConfigurationsRequest,
|
|
15
|
+
ListObservabilityConfigurationsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListObservabilityConfigurationsCommandInput
|
|
18
|
+
extends ListObservabilityConfigurationsRequest {}
|
|
19
|
+
export interface ListObservabilityConfigurationsCommandOutput
|
|
20
|
+
extends ListObservabilityConfigurationsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListObservabilityConfigurationsCommand extends $Command<
|
|
23
|
+
ListObservabilityConfigurationsCommandInput,
|
|
24
|
+
ListObservabilityConfigurationsCommandOutput,
|
|
25
|
+
AppRunnerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListObservabilityConfigurationsCommandInput;
|
|
28
|
+
constructor(input: ListObservabilityConfigurationsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: AppRunnerClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListObservabilityConfigurationsCommandInput,
|
|
35
|
+
ListObservabilityConfigurationsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AppRunnerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AppRunnerClient";
|
|
13
|
+
import {
|
|
14
|
+
ListOperationsRequest,
|
|
15
|
+
ListOperationsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListOperationsCommandInput extends ListOperationsRequest {}
|
|
18
|
+
export interface ListOperationsCommandOutput
|
|
19
|
+
extends ListOperationsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class ListOperationsCommand extends $Command<
|
|
22
|
+
ListOperationsCommandInput,
|
|
23
|
+
ListOperationsCommandOutput,
|
|
24
|
+
AppRunnerClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ListOperationsCommandInput;
|
|
27
|
+
constructor(input: ListOperationsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: AppRunnerClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListOperationsCommandInput, ListOperationsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AppRunnerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AppRunnerClient";
|
|
13
|
+
import { ListServicesRequest, ListServicesResponse } from "../models/models_0";
|
|
14
|
+
export interface ListServicesCommandInput extends ListServicesRequest {}
|
|
15
|
+
export interface ListServicesCommandOutput
|
|
16
|
+
extends ListServicesResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class ListServicesCommand extends $Command<
|
|
19
|
+
ListServicesCommandInput,
|
|
20
|
+
ListServicesCommandOutput,
|
|
21
|
+
AppRunnerClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ListServicesCommandInput;
|
|
24
|
+
constructor(input: ListServicesCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: AppRunnerClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ListServicesCommandInput, ListServicesCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AppRunnerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AppRunnerClient";
|
|
13
|
+
import {
|
|
14
|
+
ListTagsForResourceRequest,
|
|
15
|
+
ListTagsForResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListTagsForResourceCommandInput
|
|
18
|
+
extends ListTagsForResourceRequest {}
|
|
19
|
+
export interface ListTagsForResourceCommandOutput
|
|
20
|
+
extends ListTagsForResourceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
23
|
+
ListTagsForResourceCommandInput,
|
|
24
|
+
ListTagsForResourceCommandOutput,
|
|
25
|
+
AppRunnerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
28
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: AppRunnerClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AppRunnerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AppRunnerClient";
|
|
13
|
+
import {
|
|
14
|
+
ListVpcConnectorsRequest,
|
|
15
|
+
ListVpcConnectorsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListVpcConnectorsCommandInput
|
|
18
|
+
extends ListVpcConnectorsRequest {}
|
|
19
|
+
export interface ListVpcConnectorsCommandOutput
|
|
20
|
+
extends ListVpcConnectorsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListVpcConnectorsCommand extends $Command<
|
|
23
|
+
ListVpcConnectorsCommandInput,
|
|
24
|
+
ListVpcConnectorsCommandOutput,
|
|
25
|
+
AppRunnerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListVpcConnectorsCommandInput;
|
|
28
|
+
constructor(input: ListVpcConnectorsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: AppRunnerClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListVpcConnectorsCommandInput, ListVpcConnectorsCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AppRunnerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AppRunnerClient";
|
|
13
|
+
import { PauseServiceRequest, PauseServiceResponse } from "../models/models_0";
|
|
14
|
+
export interface PauseServiceCommandInput extends PauseServiceRequest {}
|
|
15
|
+
export interface PauseServiceCommandOutput
|
|
16
|
+
extends PauseServiceResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class PauseServiceCommand extends $Command<
|
|
19
|
+
PauseServiceCommandInput,
|
|
20
|
+
PauseServiceCommandOutput,
|
|
21
|
+
AppRunnerClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: PauseServiceCommandInput;
|
|
24
|
+
constructor(input: PauseServiceCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: AppRunnerClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<PauseServiceCommandInput, PauseServiceCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AppRunnerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AppRunnerClient";
|
|
13
|
+
import {
|
|
14
|
+
ResumeServiceRequest,
|
|
15
|
+
ResumeServiceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ResumeServiceCommandInput extends ResumeServiceRequest {}
|
|
18
|
+
export interface ResumeServiceCommandOutput
|
|
19
|
+
extends ResumeServiceResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class ResumeServiceCommand extends $Command<
|
|
22
|
+
ResumeServiceCommandInput,
|
|
23
|
+
ResumeServiceCommandOutput,
|
|
24
|
+
AppRunnerClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ResumeServiceCommandInput;
|
|
27
|
+
constructor(input: ResumeServiceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: AppRunnerClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ResumeServiceCommandInput, ResumeServiceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|