@aws-sdk/client-apprunner 3.295.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.
Files changed (49) hide show
  1. package/dist-types/AppRunner.d.ts +36 -0
  2. package/dist-types/AppRunnerClient.d.ts +24 -4
  3. package/dist-types/commands/AssociateCustomDomainCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateAutoScalingConfigurationCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateConnectionCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateObservabilityConfigurationCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateServiceCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateVpcConnectorCommand.d.ts +16 -0
  9. package/dist-types/commands/CreateVpcIngressConnectionCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteAutoScalingConfigurationCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteConnectionCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteObservabilityConfigurationCommand.d.ts +16 -0
  13. package/dist-types/commands/DeleteServiceCommand.d.ts +16 -0
  14. package/dist-types/commands/DeleteVpcConnectorCommand.d.ts +16 -0
  15. package/dist-types/commands/DeleteVpcIngressConnectionCommand.d.ts +16 -0
  16. package/dist-types/commands/DescribeAutoScalingConfigurationCommand.d.ts +16 -0
  17. package/dist-types/commands/DescribeCustomDomainsCommand.d.ts +16 -0
  18. package/dist-types/commands/DescribeObservabilityConfigurationCommand.d.ts +16 -0
  19. package/dist-types/commands/DescribeServiceCommand.d.ts +16 -0
  20. package/dist-types/commands/DescribeVpcConnectorCommand.d.ts +16 -0
  21. package/dist-types/commands/DescribeVpcIngressConnectionCommand.d.ts +16 -0
  22. package/dist-types/commands/DisassociateCustomDomainCommand.d.ts +16 -0
  23. package/dist-types/commands/ListAutoScalingConfigurationsCommand.d.ts +16 -0
  24. package/dist-types/commands/ListConnectionsCommand.d.ts +16 -0
  25. package/dist-types/commands/ListObservabilityConfigurationsCommand.d.ts +16 -0
  26. package/dist-types/commands/ListOperationsCommand.d.ts +16 -0
  27. package/dist-types/commands/ListServicesCommand.d.ts +16 -0
  28. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  29. package/dist-types/commands/ListVpcConnectorsCommand.d.ts +16 -0
  30. package/dist-types/commands/ListVpcIngressConnectionsCommand.d.ts +16 -0
  31. package/dist-types/commands/PauseServiceCommand.d.ts +16 -0
  32. package/dist-types/commands/ResumeServiceCommand.d.ts +16 -0
  33. package/dist-types/commands/StartDeploymentCommand.d.ts +16 -0
  34. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  35. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  36. package/dist-types/commands/UpdateServiceCommand.d.ts +16 -0
  37. package/dist-types/commands/UpdateVpcIngressConnectionCommand.d.ts +16 -0
  38. package/dist-types/models/AppRunnerServiceException.d.ts +2 -0
  39. package/dist-types/models/models_0.d.ts +303 -0
  40. package/dist-types/pagination/DescribeCustomDomainsPaginator.d.ts +3 -0
  41. package/dist-types/pagination/Interfaces.d.ts +3 -0
  42. package/dist-types/pagination/ListAutoScalingConfigurationsPaginator.d.ts +3 -0
  43. package/dist-types/pagination/ListConnectionsPaginator.d.ts +3 -0
  44. package/dist-types/pagination/ListObservabilityConfigurationsPaginator.d.ts +3 -0
  45. package/dist-types/pagination/ListOperationsPaginator.d.ts +3 -0
  46. package/dist-types/pagination/ListServicesPaginator.d.ts +3 -0
  47. package/dist-types/pagination/ListVpcConnectorsPaginator.d.ts +3 -0
  48. package/dist-types/pagination/ListVpcIngressConnectionsPaginator.d.ts +3 -0
  49. package/package.json +29 -29
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
5
5
  import { DescribeVpcConnectorRequest, DescribeVpcConnectorResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeVpcConnectorCommand}.
8
10
  */
9
11
  export interface DescribeVpcConnectorCommandInput extends DescribeVpcConnectorRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeVpcConnectorCommand}.
13
17
  */
14
18
  export interface DescribeVpcConnectorCommandOutput extends DescribeVpcConnectorResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Return a description of an App Runner VPC connector 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 DescribeVpcConnectorCommandOutput extends DescribeVpcConnectorR
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeVpcConnectorCommandInput - {@link DescribeVpcConnectorCommandInput}
34
+ * @returns {@link DescribeVpcConnectorCommandOutput}
28
35
  * @see {@link DescribeVpcConnectorCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeVpcConnectorCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
@@ -43,11 +50,20 @@ export interface DescribeVpcConnectorCommandOutput extends DescribeVpcConnectorR
43
50
  export declare class DescribeVpcConnectorCommand extends $Command<DescribeVpcConnectorCommandInput, DescribeVpcConnectorCommandOutput, AppRunnerClientResolvedConfig> {
44
51
  readonly input: DescribeVpcConnectorCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: DescribeVpcConnectorCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeVpcConnectorCommandInput, DescribeVpcConnectorCommandOutput>;
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 { DescribeVpcIngressConnectionRequest, DescribeVpcIngressConnectionResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeVpcIngressConnectionCommand}.
8
10
  */
9
11
  export interface DescribeVpcIngressConnectionCommandInput extends DescribeVpcIngressConnectionRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeVpcIngressConnectionCommand}.
13
17
  */
14
18
  export interface DescribeVpcIngressConnectionCommandOutput extends DescribeVpcIngressConnectionResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Return a full description of an App Runner VPC Ingress Connection 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 DescribeVpcIngressConnectionCommandOutput extends DescribeVpcIn
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeVpcIngressConnectionCommandInput - {@link DescribeVpcIngressConnectionCommandInput}
34
+ * @returns {@link DescribeVpcIngressConnectionCommandOutput}
28
35
  * @see {@link DescribeVpcIngressConnectionCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeVpcIngressConnectionCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
@@ -43,11 +50,20 @@ export interface DescribeVpcIngressConnectionCommandOutput extends DescribeVpcIn
43
50
  export declare class DescribeVpcIngressConnectionCommand extends $Command<DescribeVpcIngressConnectionCommandInput, DescribeVpcIngressConnectionCommandOutput, AppRunnerClientResolvedConfig> {
44
51
  readonly input: DescribeVpcIngressConnectionCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: DescribeVpcIngressConnectionCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeVpcIngressConnectionCommandInput, DescribeVpcIngressConnectionCommandOutput>;
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 { DisassociateCustomDomainRequest, DisassociateCustomDomainResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DisassociateCustomDomainCommand}.
8
10
  */
9
11
  export interface DisassociateCustomDomainCommandInput extends DisassociateCustomDomainRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DisassociateCustomDomainCommand}.
13
17
  */
14
18
  export interface DisassociateCustomDomainCommandOutput extends DisassociateCustomDomainResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Disassociate a custom domain name from an App Runner service.</p>
18
23
  * <p>Certificates tracking domain validity are associated with a custom domain and are stored in <a href="https://docs.aws.amazon.com/acm/latest/userguide">AWS
19
24
  * Certificate Manager (ACM)</a>. These certificates aren't deleted as part of this action. App Runner delays certificate deletion for
@@ -28,6 +33,8 @@ export interface DisassociateCustomDomainCommandOutput extends DisassociateCusto
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param DisassociateCustomDomainCommandInput - {@link DisassociateCustomDomainCommandInput}
37
+ * @returns {@link DisassociateCustomDomainCommandOutput}
31
38
  * @see {@link DisassociateCustomDomainCommandInput} for command's `input` shape.
32
39
  * @see {@link DisassociateCustomDomainCommandOutput} for command's `response` shape.
33
40
  * @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
@@ -49,11 +56,20 @@ export interface DisassociateCustomDomainCommandOutput extends DisassociateCusto
49
56
  export declare class DisassociateCustomDomainCommand extends $Command<DisassociateCustomDomainCommandInput, DisassociateCustomDomainCommandOutput, AppRunnerClientResolvedConfig> {
50
57
  readonly input: DisassociateCustomDomainCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: DisassociateCustomDomainCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateCustomDomainCommandInput, DisassociateCustomDomainCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
5
5
  import { ListAutoScalingConfigurationsRequest, ListAutoScalingConfigurationsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListAutoScalingConfigurationsCommand}.
8
10
  */
9
11
  export interface ListAutoScalingConfigurationsCommandInput extends ListAutoScalingConfigurationsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListAutoScalingConfigurationsCommand}.
13
17
  */
14
18
  export interface ListAutoScalingConfigurationsCommandOutput extends ListAutoScalingConfigurationsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of active App Runner automatic scaling configurations in your Amazon Web Services account. You can query the revisions for a specific
18
23
  * configuration name or the revisions for all active configurations in your account. You can optionally query only the latest revision of each requested
19
24
  * name.</p>
@@ -29,6 +34,8 @@ export interface ListAutoScalingConfigurationsCommandOutput extends ListAutoScal
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param ListAutoScalingConfigurationsCommandInput - {@link ListAutoScalingConfigurationsCommandInput}
38
+ * @returns {@link ListAutoScalingConfigurationsCommandOutput}
32
39
  * @see {@link ListAutoScalingConfigurationsCommandInput} for command's `input` shape.
33
40
  * @see {@link ListAutoScalingConfigurationsCommandOutput} for command's `response` shape.
34
41
  * @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
@@ -44,11 +51,20 @@ export interface ListAutoScalingConfigurationsCommandOutput extends ListAutoScal
44
51
  export declare class ListAutoScalingConfigurationsCommand extends $Command<ListAutoScalingConfigurationsCommandInput, ListAutoScalingConfigurationsCommandOutput, AppRunnerClientResolvedConfig> {
45
52
  readonly input: ListAutoScalingConfigurationsCommandInput;
46
53
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
54
+ /**
55
+ * @public
56
+ */
47
57
  constructor(input: ListAutoScalingConfigurationsCommandInput);
48
58
  /**
49
59
  * @internal
50
60
  */
51
61
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAutoScalingConfigurationsCommandInput, ListAutoScalingConfigurationsCommandOutput>;
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 { ListConnectionsRequest, ListConnectionsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListConnectionsCommand}.
8
10
  */
9
11
  export interface ListConnectionsCommandInput extends ListConnectionsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListConnectionsCommand}.
13
17
  */
14
18
  export interface ListConnectionsCommandOutput extends ListConnectionsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of App Runner connections that are associated with your Amazon Web Services account.</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 ListConnectionsCommandOutput extends ListConnectionsResponse, _
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListConnectionsCommandInput - {@link ListConnectionsCommandInput}
34
+ * @returns {@link ListConnectionsCommandOutput}
28
35
  * @see {@link ListConnectionsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListConnectionsCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
@@ -40,11 +47,20 @@ export interface ListConnectionsCommandOutput extends ListConnectionsResponse, _
40
47
  export declare class ListConnectionsCommand extends $Command<ListConnectionsCommandInput, ListConnectionsCommandOutput, AppRunnerClientResolvedConfig> {
41
48
  readonly input: ListConnectionsCommandInput;
42
49
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
50
+ /**
51
+ * @public
52
+ */
43
53
  constructor(input: ListConnectionsCommandInput);
44
54
  /**
45
55
  * @internal
46
56
  */
47
57
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListConnectionsCommandInput, ListConnectionsCommandOutput>;
58
+ /**
59
+ * @internal
60
+ */
48
61
  private serialize;
62
+ /**
63
+ * @internal
64
+ */
49
65
  private deserialize;
50
66
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
5
5
  import { ListObservabilityConfigurationsRequest, ListObservabilityConfigurationsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListObservabilityConfigurationsCommand}.
8
10
  */
9
11
  export interface ListObservabilityConfigurationsCommandInput extends ListObservabilityConfigurationsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListObservabilityConfigurationsCommand}.
13
17
  */
14
18
  export interface ListObservabilityConfigurationsCommandOutput extends ListObservabilityConfigurationsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of active App Runner observability configurations in your Amazon Web Services account. You can query the revisions for a specific
18
23
  * configuration name or the revisions for all active configurations in your account. You can optionally query only the latest revision of each requested
19
24
  * name.</p>
@@ -29,6 +34,8 @@ export interface ListObservabilityConfigurationsCommandOutput extends ListObserv
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param ListObservabilityConfigurationsCommandInput - {@link ListObservabilityConfigurationsCommandInput}
38
+ * @returns {@link ListObservabilityConfigurationsCommandOutput}
32
39
  * @see {@link ListObservabilityConfigurationsCommandInput} for command's `input` shape.
33
40
  * @see {@link ListObservabilityConfigurationsCommandOutput} for command's `response` shape.
34
41
  * @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
@@ -44,11 +51,20 @@ export interface ListObservabilityConfigurationsCommandOutput extends ListObserv
44
51
  export declare class ListObservabilityConfigurationsCommand extends $Command<ListObservabilityConfigurationsCommandInput, ListObservabilityConfigurationsCommandOutput, AppRunnerClientResolvedConfig> {
45
52
  readonly input: ListObservabilityConfigurationsCommandInput;
46
53
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
54
+ /**
55
+ * @public
56
+ */
47
57
  constructor(input: ListObservabilityConfigurationsCommandInput);
48
58
  /**
49
59
  * @internal
50
60
  */
51
61
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListObservabilityConfigurationsCommandInput, ListObservabilityConfigurationsCommandOutput>;
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 { ListOperationsRequest, ListOperationsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListOperationsCommand}.
8
10
  */
9
11
  export interface ListOperationsCommandInput extends ListOperationsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListOperationsCommand}.
13
17
  */
14
18
  export interface ListOperationsCommandOutput extends ListOperationsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Return a list of operations that occurred on an App Runner service.</p>
18
23
  * <p>The resulting list of <a>OperationSummary</a> objects is sorted in reverse chronological order. The first object on the list represents the
19
24
  * last started operation.</p>
@@ -27,6 +32,8 @@ export interface ListOperationsCommandOutput extends ListOperationsResponse, __M
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param ListOperationsCommandInput - {@link ListOperationsCommandInput}
36
+ * @returns {@link ListOperationsCommandOutput}
30
37
  * @see {@link ListOperationsCommandInput} for command's `input` shape.
31
38
  * @see {@link ListOperationsCommandOutput} for command's `response` shape.
32
39
  * @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
@@ -45,11 +52,20 @@ export interface ListOperationsCommandOutput extends ListOperationsResponse, __M
45
52
  export declare class ListOperationsCommand extends $Command<ListOperationsCommandInput, ListOperationsCommandOutput, AppRunnerClientResolvedConfig> {
46
53
  readonly input: ListOperationsCommandInput;
47
54
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
55
+ /**
56
+ * @public
57
+ */
48
58
  constructor(input: ListOperationsCommandInput);
49
59
  /**
50
60
  * @internal
51
61
  */
52
62
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListOperationsCommandInput, ListOperationsCommandOutput>;
63
+ /**
64
+ * @internal
65
+ */
53
66
  private serialize;
67
+ /**
68
+ * @internal
69
+ */
54
70
  private deserialize;
55
71
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
5
5
  import { ListServicesRequest, ListServicesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListServicesCommand}.
8
10
  */
9
11
  export interface ListServicesCommandInput extends ListServicesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListServicesCommand}.
13
17
  */
14
18
  export interface ListServicesCommandOutput extends ListServicesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of running App Runner services in your Amazon Web Services account.</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 ListServicesCommandOutput extends ListServicesResponse, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListServicesCommandInput - {@link ListServicesCommandInput}
34
+ * @returns {@link ListServicesCommandOutput}
28
35
  * @see {@link ListServicesCommandInput} for command's `input` shape.
29
36
  * @see {@link ListServicesCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
@@ -40,11 +47,20 @@ export interface ListServicesCommandOutput extends ListServicesResponse, __Metad
40
47
  export declare class ListServicesCommand extends $Command<ListServicesCommandInput, ListServicesCommandOutput, AppRunnerClientResolvedConfig> {
41
48
  readonly input: ListServicesCommandInput;
42
49
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
50
+ /**
51
+ * @public
52
+ */
43
53
  constructor(input: ListServicesCommandInput);
44
54
  /**
45
55
  * @internal
46
56
  */
47
57
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListServicesCommandInput, ListServicesCommandOutput>;
58
+ /**
59
+ * @internal
60
+ */
48
61
  private serialize;
62
+ /**
63
+ * @internal
64
+ */
49
65
  private deserialize;
50
66
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
5
5
  import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTagsForResourceCommand}.
8
10
  */
9
11
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTagsForResourceCommand}.
13
17
  */
14
18
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>List tags that are associated with for an App Runner resource. The response contains a list of tag key-value pairs.</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 ListTagsForResourceCommandOutput extends ListTagsForResourceRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
34
+ * @returns {@link ListTagsForResourceCommandOutput}
28
35
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
@@ -46,11 +53,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
46
53
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, AppRunnerClientResolvedConfig> {
47
54
  readonly input: ListTagsForResourceCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: ListTagsForResourceCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
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 { ListVpcConnectorsRequest, ListVpcConnectorsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListVpcConnectorsCommand}.
8
10
  */
9
11
  export interface ListVpcConnectorsCommandInput extends ListVpcConnectorsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListVpcConnectorsCommand}.
13
17
  */
14
18
  export interface ListVpcConnectorsCommandOutput extends ListVpcConnectorsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of App Runner VPC connectors in your Amazon Web Services account.</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 ListVpcConnectorsCommandOutput extends ListVpcConnectorsRespons
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListVpcConnectorsCommandInput - {@link ListVpcConnectorsCommandInput}
34
+ * @returns {@link ListVpcConnectorsCommandOutput}
28
35
  * @see {@link ListVpcConnectorsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListVpcConnectorsCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
@@ -40,11 +47,20 @@ export interface ListVpcConnectorsCommandOutput extends ListVpcConnectorsRespons
40
47
  export declare class ListVpcConnectorsCommand extends $Command<ListVpcConnectorsCommandInput, ListVpcConnectorsCommandOutput, AppRunnerClientResolvedConfig> {
41
48
  readonly input: ListVpcConnectorsCommandInput;
42
49
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
50
+ /**
51
+ * @public
52
+ */
43
53
  constructor(input: ListVpcConnectorsCommandInput);
44
54
  /**
45
55
  * @internal
46
56
  */
47
57
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListVpcConnectorsCommandInput, ListVpcConnectorsCommandOutput>;
58
+ /**
59
+ * @internal
60
+ */
48
61
  private serialize;
62
+ /**
63
+ * @internal
64
+ */
49
65
  private deserialize;
50
66
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
5
5
  import { ListVpcIngressConnectionsRequest, ListVpcIngressConnectionsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListVpcIngressConnectionsCommand}.
8
10
  */
9
11
  export interface ListVpcIngressConnectionsCommandInput extends ListVpcIngressConnectionsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListVpcIngressConnectionsCommand}.
13
17
  */
14
18
  export interface ListVpcIngressConnectionsCommandOutput extends ListVpcIngressConnectionsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Return a list of App Runner VPC Ingress Connections in your Amazon Web Services account.</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 ListVpcIngressConnectionsCommandOutput extends ListVpcIngressCo
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListVpcIngressConnectionsCommandInput - {@link ListVpcIngressConnectionsCommandInput}
34
+ * @returns {@link ListVpcIngressConnectionsCommandOutput}
28
35
  * @see {@link ListVpcIngressConnectionsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListVpcIngressConnectionsCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
@@ -40,11 +47,20 @@ export interface ListVpcIngressConnectionsCommandOutput extends ListVpcIngressCo
40
47
  export declare class ListVpcIngressConnectionsCommand extends $Command<ListVpcIngressConnectionsCommandInput, ListVpcIngressConnectionsCommandOutput, AppRunnerClientResolvedConfig> {
41
48
  readonly input: ListVpcIngressConnectionsCommandInput;
42
49
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
50
+ /**
51
+ * @public
52
+ */
43
53
  constructor(input: ListVpcIngressConnectionsCommandInput);
44
54
  /**
45
55
  * @internal
46
56
  */
47
57
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListVpcIngressConnectionsCommandInput, ListVpcIngressConnectionsCommandOutput>;
58
+ /**
59
+ * @internal
60
+ */
48
61
  private serialize;
62
+ /**
63
+ * @internal
64
+ */
49
65
  private deserialize;
50
66
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
5
5
  import { PauseServiceRequest, PauseServiceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PauseServiceCommand}.
8
10
  */
9
11
  export interface PauseServiceCommandInput extends PauseServiceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PauseServiceCommand}.
13
17
  */
14
18
  export interface PauseServiceCommandOutput extends PauseServiceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Pause an active App Runner service. App Runner reduces compute capacity for the service to zero and loses state (for example, ephemeral storage is
18
23
  * removed).</p>
19
24
  * <p>This is an asynchronous operation. On a successful call, you can use the returned <code>OperationId</code> and the <a>ListOperations</a>
@@ -28,6 +33,8 @@ export interface PauseServiceCommandOutput extends PauseServiceResponse, __Metad
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param PauseServiceCommandInput - {@link PauseServiceCommandInput}
37
+ * @returns {@link PauseServiceCommandOutput}
31
38
  * @see {@link PauseServiceCommandInput} for command's `input` shape.
32
39
  * @see {@link PauseServiceCommandOutput} for command's `response` shape.
33
40
  * @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
@@ -49,11 +56,20 @@ export interface PauseServiceCommandOutput extends PauseServiceResponse, __Metad
49
56
  export declare class PauseServiceCommand extends $Command<PauseServiceCommandInput, PauseServiceCommandOutput, AppRunnerClientResolvedConfig> {
50
57
  readonly input: PauseServiceCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: PauseServiceCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PauseServiceCommandInput, PauseServiceCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }