@aws-sdk/client-apprunner 3.296.0 → 3.297.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-types/AppRunner.d.ts +36 -0
- package/dist-types/AppRunnerClient.d.ts +24 -4
- package/dist-types/commands/AssociateCustomDomainCommand.d.ts +16 -0
- package/dist-types/commands/CreateAutoScalingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/CreateConnectionCommand.d.ts +16 -0
- package/dist-types/commands/CreateObservabilityConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/CreateServiceCommand.d.ts +16 -0
- package/dist-types/commands/CreateVpcConnectorCommand.d.ts +16 -0
- package/dist-types/commands/CreateVpcIngressConnectionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAutoScalingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteConnectionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteObservabilityConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteVpcConnectorCommand.d.ts +16 -0
- package/dist-types/commands/DeleteVpcIngressConnectionCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAutoScalingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DescribeCustomDomainsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeObservabilityConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DescribeServiceCommand.d.ts +16 -0
- package/dist-types/commands/DescribeVpcConnectorCommand.d.ts +16 -0
- package/dist-types/commands/DescribeVpcIngressConnectionCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateCustomDomainCommand.d.ts +16 -0
- package/dist-types/commands/ListAutoScalingConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/ListConnectionsCommand.d.ts +16 -0
- package/dist-types/commands/ListObservabilityConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/ListOperationsCommand.d.ts +16 -0
- package/dist-types/commands/ListServicesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListVpcConnectorsCommand.d.ts +16 -0
- package/dist-types/commands/ListVpcIngressConnectionsCommand.d.ts +16 -0
- package/dist-types/commands/PauseServiceCommand.d.ts +16 -0
- package/dist-types/commands/ResumeServiceCommand.d.ts +16 -0
- package/dist-types/commands/StartDeploymentCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateServiceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateVpcIngressConnectionCommand.d.ts +16 -0
- package/dist-types/models/AppRunnerServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +303 -0
- package/dist-types/pagination/DescribeCustomDomainsPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAutoScalingConfigurationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListConnectionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListObservabilityConfigurationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListOperationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListServicesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListVpcConnectorsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListVpcIngressConnectionsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
5
5
|
import { CreateVpcConnectorRequest, CreateVpcConnectorResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateVpcConnectorCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateVpcConnectorCommandInput extends CreateVpcConnectorRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateVpcConnectorCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateVpcConnectorCommandOutput extends CreateVpcConnectorResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Create an App Runner VPC connector resource. App Runner requires this resource when you want to associate your App Runner service to a custom Amazon Virtual Private Cloud
|
|
18
23
|
* (Amazon VPC).</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface CreateVpcConnectorCommandOutput extends CreateVpcConnectorRespo
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param CreateVpcConnectorCommandInput - {@link CreateVpcConnectorCommandInput}
|
|
35
|
+
* @returns {@link CreateVpcConnectorCommandOutput}
|
|
29
36
|
* @see {@link CreateVpcConnectorCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link CreateVpcConnectorCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface CreateVpcConnectorCommandOutput extends CreateVpcConnectorRespo
|
|
|
46
53
|
export declare class CreateVpcConnectorCommand extends $Command<CreateVpcConnectorCommandInput, CreateVpcConnectorCommandOutput, AppRunnerClientResolvedConfig> {
|
|
47
54
|
readonly input: CreateVpcConnectorCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: CreateVpcConnectorCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateVpcConnectorCommandInput, CreateVpcConnectorCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
5
5
|
import { CreateVpcIngressConnectionRequest, CreateVpcIngressConnectionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateVpcIngressConnectionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateVpcIngressConnectionCommandInput extends CreateVpcIngressConnectionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateVpcIngressConnectionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateVpcIngressConnectionCommandOutput extends CreateVpcIngressConnectionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Create an App Runner VPC Ingress Connection resource. App Runner requires this resource when you want to associate your App Runner service with an Amazon VPC endpoint.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateVpcIngressConnectionCommandOutput extends CreateVpcIngres
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateVpcIngressConnectionCommandInput - {@link CreateVpcIngressConnectionCommandInput}
|
|
34
|
+
* @returns {@link CreateVpcIngressConnectionCommandOutput}
|
|
28
35
|
* @see {@link CreateVpcIngressConnectionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateVpcIngressConnectionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface CreateVpcIngressConnectionCommandOutput extends CreateVpcIngres
|
|
|
48
55
|
export declare class CreateVpcIngressConnectionCommand extends $Command<CreateVpcIngressConnectionCommandInput, CreateVpcIngressConnectionCommandOutput, AppRunnerClientResolvedConfig> {
|
|
49
56
|
readonly input: CreateVpcIngressConnectionCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: CreateVpcIngressConnectionCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateVpcIngressConnectionCommandInput, CreateVpcIngressConnectionCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
5
5
|
import { DeleteAutoScalingConfigurationRequest, DeleteAutoScalingConfigurationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteAutoScalingConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteAutoScalingConfigurationCommandInput extends DeleteAutoScalingConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteAutoScalingConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteAutoScalingConfigurationCommandOutput extends DeleteAutoScalingConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Delete an App Runner automatic scaling configuration resource. You can delete a specific revision or the latest active revision. You can't delete a
|
|
18
23
|
* configuration that's used by one or more App Runner services.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeleteAutoScalingConfigurationCommandOutput extends DeleteAutoS
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeleteAutoScalingConfigurationCommandInput - {@link DeleteAutoScalingConfigurationCommandInput}
|
|
35
|
+
* @returns {@link DeleteAutoScalingConfigurationCommandOutput}
|
|
29
36
|
* @see {@link DeleteAutoScalingConfigurationCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeleteAutoScalingConfigurationCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface DeleteAutoScalingConfigurationCommandOutput extends DeleteAutoS
|
|
|
44
51
|
export declare class DeleteAutoScalingConfigurationCommand extends $Command<DeleteAutoScalingConfigurationCommandInput, DeleteAutoScalingConfigurationCommandOutput, AppRunnerClientResolvedConfig> {
|
|
45
52
|
readonly input: DeleteAutoScalingConfigurationCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: DeleteAutoScalingConfigurationCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAutoScalingConfigurationCommandInput, DeleteAutoScalingConfigurationCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
5
5
|
import { DeleteConnectionRequest, DeleteConnectionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteConnectionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteConnectionCommandInput extends DeleteConnectionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteConnectionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteConnectionCommandOutput extends DeleteConnectionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Delete an App Runner connection. You must first ensure that there are no running App Runner services that use this connection. If there are any, the
|
|
18
23
|
* <code>DeleteConnection</code> action fails.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeleteConnectionCommandOutput extends DeleteConnectionResponse,
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeleteConnectionCommandInput - {@link DeleteConnectionCommandInput}
|
|
35
|
+
* @returns {@link DeleteConnectionCommandOutput}
|
|
29
36
|
* @see {@link DeleteConnectionCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeleteConnectionCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface DeleteConnectionCommandOutput extends DeleteConnectionResponse,
|
|
|
44
51
|
export declare class DeleteConnectionCommand extends $Command<DeleteConnectionCommandInput, DeleteConnectionCommandOutput, AppRunnerClientResolvedConfig> {
|
|
45
52
|
readonly input: DeleteConnectionCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: DeleteConnectionCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteConnectionCommandInput, DeleteConnectionCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
5
5
|
import { DeleteObservabilityConfigurationRequest, DeleteObservabilityConfigurationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteObservabilityConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteObservabilityConfigurationCommandInput extends DeleteObservabilityConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteObservabilityConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteObservabilityConfigurationCommandOutput extends DeleteObservabilityConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Delete an App Runner observability configuration resource. You can delete a specific revision or the latest active revision. You can't delete a
|
|
18
23
|
* configuration that's used by one or more App Runner services.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeleteObservabilityConfigurationCommandOutput extends DeleteObs
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeleteObservabilityConfigurationCommandInput - {@link DeleteObservabilityConfigurationCommandInput}
|
|
35
|
+
* @returns {@link DeleteObservabilityConfigurationCommandOutput}
|
|
29
36
|
* @see {@link DeleteObservabilityConfigurationCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeleteObservabilityConfigurationCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface DeleteObservabilityConfigurationCommandOutput extends DeleteObs
|
|
|
44
51
|
export declare class DeleteObservabilityConfigurationCommand extends $Command<DeleteObservabilityConfigurationCommandInput, DeleteObservabilityConfigurationCommandOutput, AppRunnerClientResolvedConfig> {
|
|
45
52
|
readonly input: DeleteObservabilityConfigurationCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: DeleteObservabilityConfigurationCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteObservabilityConfigurationCommandInput, DeleteObservabilityConfigurationCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
5
5
|
import { DeleteServiceRequest, DeleteServiceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteServiceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteServiceCommandInput extends DeleteServiceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteServiceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteServiceCommandOutput extends DeleteServiceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Delete an App Runner service.</p>
|
|
18
23
|
* <p>This is an asynchronous operation. On a successful call, you can use the returned <code>OperationId</code> and the <a>ListOperations</a>
|
|
19
24
|
* call to track the operation's progress.</p>
|
|
@@ -31,6 +36,8 @@ export interface DeleteServiceCommandOutput extends DeleteServiceResponse, __Met
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param DeleteServiceCommandInput - {@link DeleteServiceCommandInput}
|
|
40
|
+
* @returns {@link DeleteServiceCommandOutput}
|
|
34
41
|
* @see {@link DeleteServiceCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link DeleteServiceCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface DeleteServiceCommandOutput extends DeleteServiceResponse, __Met
|
|
|
52
59
|
export declare class DeleteServiceCommand extends $Command<DeleteServiceCommandInput, DeleteServiceCommandOutput, AppRunnerClientResolvedConfig> {
|
|
53
60
|
readonly input: DeleteServiceCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: DeleteServiceCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteServiceCommandInput, DeleteServiceCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
5
5
|
import { DeleteVpcConnectorRequest, DeleteVpcConnectorResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteVpcConnectorCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteVpcConnectorCommandInput extends DeleteVpcConnectorRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteVpcConnectorCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteVpcConnectorCommandOutput extends DeleteVpcConnectorResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Delete an App Runner VPC connector resource. You can't delete a
|
|
18
23
|
* connector that's used by one or more App Runner services.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeleteVpcConnectorCommandOutput extends DeleteVpcConnectorRespo
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeleteVpcConnectorCommandInput - {@link DeleteVpcConnectorCommandInput}
|
|
35
|
+
* @returns {@link DeleteVpcConnectorCommandOutput}
|
|
29
36
|
* @see {@link DeleteVpcConnectorCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeleteVpcConnectorCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface DeleteVpcConnectorCommandOutput extends DeleteVpcConnectorRespo
|
|
|
44
51
|
export declare class DeleteVpcConnectorCommand extends $Command<DeleteVpcConnectorCommandInput, DeleteVpcConnectorCommandOutput, AppRunnerClientResolvedConfig> {
|
|
45
52
|
readonly input: DeleteVpcConnectorCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: DeleteVpcConnectorCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteVpcConnectorCommandInput, DeleteVpcConnectorCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
5
5
|
import { DeleteVpcIngressConnectionRequest, DeleteVpcIngressConnectionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteVpcIngressConnectionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteVpcIngressConnectionCommandInput extends DeleteVpcIngressConnectionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteVpcIngressConnectionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteVpcIngressConnectionCommandOutput extends DeleteVpcIngressConnectionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Delete an App Runner VPC Ingress Connection resource that's associated with an App Runner service. The VPC Ingress Connection must be in one of the following states to be deleted:
|
|
18
23
|
* </p>
|
|
19
24
|
* <ul>
|
|
@@ -48,6 +53,8 @@ export interface DeleteVpcIngressConnectionCommandOutput extends DeleteVpcIngres
|
|
|
48
53
|
* const response = await client.send(command);
|
|
49
54
|
* ```
|
|
50
55
|
*
|
|
56
|
+
* @param DeleteVpcIngressConnectionCommandInput - {@link DeleteVpcIngressConnectionCommandInput}
|
|
57
|
+
* @returns {@link DeleteVpcIngressConnectionCommandOutput}
|
|
51
58
|
* @see {@link DeleteVpcIngressConnectionCommandInput} for command's `input` shape.
|
|
52
59
|
* @see {@link DeleteVpcIngressConnectionCommandOutput} for command's `response` shape.
|
|
53
60
|
* @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
|
|
@@ -69,11 +76,20 @@ export interface DeleteVpcIngressConnectionCommandOutput extends DeleteVpcIngres
|
|
|
69
76
|
export declare class DeleteVpcIngressConnectionCommand extends $Command<DeleteVpcIngressConnectionCommandInput, DeleteVpcIngressConnectionCommandOutput, AppRunnerClientResolvedConfig> {
|
|
70
77
|
readonly input: DeleteVpcIngressConnectionCommandInput;
|
|
71
78
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
72
82
|
constructor(input: DeleteVpcIngressConnectionCommandInput);
|
|
73
83
|
/**
|
|
74
84
|
* @internal
|
|
75
85
|
*/
|
|
76
86
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteVpcIngressConnectionCommandInput, DeleteVpcIngressConnectionCommandOutput>;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
77
90
|
private serialize;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
78
94
|
private deserialize;
|
|
79
95
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
5
5
|
import { DescribeAutoScalingConfigurationRequest, DescribeAutoScalingConfigurationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeAutoScalingConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeAutoScalingConfigurationCommandInput extends DescribeAutoScalingConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeAutoScalingConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeAutoScalingConfigurationCommandOutput extends DescribeAutoScalingConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Return a full description of an App Runner automatic scaling configuration resource.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeAutoScalingConfigurationCommandOutput extends DescribeA
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeAutoScalingConfigurationCommandInput - {@link DescribeAutoScalingConfigurationCommandInput}
|
|
34
|
+
* @returns {@link DescribeAutoScalingConfigurationCommandOutput}
|
|
28
35
|
* @see {@link DescribeAutoScalingConfigurationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeAutoScalingConfigurationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DescribeAutoScalingConfigurationCommandOutput extends DescribeA
|
|
|
43
50
|
export declare class DescribeAutoScalingConfigurationCommand extends $Command<DescribeAutoScalingConfigurationCommandInput, DescribeAutoScalingConfigurationCommandOutput, AppRunnerClientResolvedConfig> {
|
|
44
51
|
readonly input: DescribeAutoScalingConfigurationCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DescribeAutoScalingConfigurationCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAutoScalingConfigurationCommandInput, DescribeAutoScalingConfigurationCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
5
5
|
import { DescribeCustomDomainsRequest, DescribeCustomDomainsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeCustomDomainsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeCustomDomainsCommandInput extends DescribeCustomDomainsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeCustomDomainsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeCustomDomainsCommandOutput extends DescribeCustomDomainsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Return a description of custom domain names that are associated with an App Runner service.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeCustomDomainsCommandOutput extends DescribeCustomDomain
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeCustomDomainsCommandInput - {@link DescribeCustomDomainsCommandInput}
|
|
34
|
+
* @returns {@link DescribeCustomDomainsCommandOutput}
|
|
28
35
|
* @see {@link DescribeCustomDomainsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeCustomDomainsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DescribeCustomDomainsCommandOutput extends DescribeCustomDomain
|
|
|
43
50
|
export declare class DescribeCustomDomainsCommand extends $Command<DescribeCustomDomainsCommandInput, DescribeCustomDomainsCommandOutput, AppRunnerClientResolvedConfig> {
|
|
44
51
|
readonly input: DescribeCustomDomainsCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DescribeCustomDomainsCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeCustomDomainsCommandInput, DescribeCustomDomainsCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
5
5
|
import { DescribeObservabilityConfigurationRequest, DescribeObservabilityConfigurationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeObservabilityConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeObservabilityConfigurationCommandInput extends DescribeObservabilityConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeObservabilityConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeObservabilityConfigurationCommandOutput extends DescribeObservabilityConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Return a full description of an App Runner observability configuration resource.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeObservabilityConfigurationCommandOutput extends Describ
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeObservabilityConfigurationCommandInput - {@link DescribeObservabilityConfigurationCommandInput}
|
|
34
|
+
* @returns {@link DescribeObservabilityConfigurationCommandOutput}
|
|
28
35
|
* @see {@link DescribeObservabilityConfigurationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeObservabilityConfigurationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DescribeObservabilityConfigurationCommandOutput extends Describ
|
|
|
43
50
|
export declare class DescribeObservabilityConfigurationCommand extends $Command<DescribeObservabilityConfigurationCommandInput, DescribeObservabilityConfigurationCommandOutput, AppRunnerClientResolvedConfig> {
|
|
44
51
|
readonly input: DescribeObservabilityConfigurationCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DescribeObservabilityConfigurationCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeObservabilityConfigurationCommandInput, DescribeObservabilityConfigurationCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
5
5
|
import { DescribeServiceRequest, DescribeServiceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeServiceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeServiceCommandInput extends DescribeServiceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeServiceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeServiceCommandOutput extends DescribeServiceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Return a full description of an App Runner service.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeServiceCommandOutput extends DescribeServiceResponse, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeServiceCommandInput - {@link DescribeServiceCommandInput}
|
|
34
|
+
* @returns {@link DescribeServiceCommandOutput}
|
|
28
35
|
* @see {@link DescribeServiceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeServiceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DescribeServiceCommandOutput extends DescribeServiceResponse, _
|
|
|
43
50
|
export declare class DescribeServiceCommand extends $Command<DescribeServiceCommandInput, DescribeServiceCommandOutput, AppRunnerClientResolvedConfig> {
|
|
44
51
|
readonly input: DescribeServiceCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DescribeServiceCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeServiceCommandInput, DescribeServiceCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|