@aws-sdk/client-apprunner 3.312.0 → 3.316.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/AppRunner.js +39 -490
- package/dist-cjs/protocols/Aws_json1_0.js +293 -1200
- package/dist-es/AppRunner.js +39 -490
- package/dist-es/protocols/Aws_json1_0.js +294 -1201
- package/dist-types/AppRunner.d.ts +58 -194
- package/dist-types/ts3.4/AppRunner.d.ts +2 -1
- package/package.json +6 -6
|
@@ -35,373 +35,237 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
|
|
|
35
35
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
36
36
|
import { UpdateServiceCommandInput, UpdateServiceCommandOutput } from "./commands/UpdateServiceCommand";
|
|
37
37
|
import { UpdateVpcIngressConnectionCommandInput, UpdateVpcIngressConnectionCommandOutput } from "./commands/UpdateVpcIngressConnectionCommand";
|
|
38
|
-
|
|
39
|
-
* @public
|
|
40
|
-
* <fullname>App Runner</fullname>
|
|
41
|
-
* <p>App Runner is an application service that provides a fast, simple, and cost-effective way to go directly from an existing container image or source code
|
|
42
|
-
* to a running service in the Amazon Web Services Cloud in seconds. You don't need to learn new technologies, decide which compute service to use, or understand how to
|
|
43
|
-
* provision and configure Amazon Web Services resources.</p>
|
|
44
|
-
* <p>App Runner connects directly to your container registry or source code repository. It provides an automatic delivery pipeline with fully managed operations,
|
|
45
|
-
* high performance, scalability, and security.</p>
|
|
46
|
-
* <p>For more information about App Runner, see the <a href="https://docs.aws.amazon.com/apprunner/latest/dg/">App Runner Developer Guide</a>.
|
|
47
|
-
* For release information, see the <a href="https://docs.aws.amazon.com/apprunner/latest/relnotes/">App Runner Release Notes</a>.</p>
|
|
48
|
-
* <p>
|
|
49
|
-
* To install the Software Development Kits (SDKs), Integrated
|
|
50
|
-
* Development Environment (IDE) Toolkits, and command line tools that you can use to access the API, see <a href="http://aws.amazon.com/tools/">Tools for
|
|
51
|
-
* Amazon Web Services</a>.</p>
|
|
52
|
-
* <p>
|
|
53
|
-
* <b>Endpoints</b>
|
|
54
|
-
* </p>
|
|
55
|
-
* <p>For a list of Region-specific endpoints that App Runner supports, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App Runner
|
|
56
|
-
* endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>.</p>
|
|
57
|
-
*/
|
|
58
|
-
export declare class AppRunner extends AppRunnerClient {
|
|
38
|
+
export interface AppRunner {
|
|
59
39
|
/**
|
|
60
|
-
* @
|
|
61
|
-
* <p>Associate your own domain name with the App Runner subdomain URL of your App Runner service.</p>
|
|
62
|
-
* <p>After you call <code>AssociateCustomDomain</code> and receive a successful response, use the information in the <a>CustomDomain</a> record
|
|
63
|
-
* that's returned to add CNAME records to your Domain Name System (DNS). For each mapped domain name, add a mapping to the target App Runner subdomain and one or
|
|
64
|
-
* more certificate validation records. App Runner then performs DNS validation to verify that you own or control the domain name that you associated. App Runner tracks
|
|
65
|
-
* domain validity in a certificate stored in <a href="https://docs.aws.amazon.com/acm/latest/userguide">AWS Certificate Manager (ACM)</a>.</p>
|
|
40
|
+
* @see {@link AssociateCustomDomainCommand}
|
|
66
41
|
*/
|
|
67
42
|
associateCustomDomain(args: AssociateCustomDomainCommandInput, options?: __HttpHandlerOptions): Promise<AssociateCustomDomainCommandOutput>;
|
|
68
43
|
associateCustomDomain(args: AssociateCustomDomainCommandInput, cb: (err: any, data?: AssociateCustomDomainCommandOutput) => void): void;
|
|
69
44
|
associateCustomDomain(args: AssociateCustomDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateCustomDomainCommandOutput) => void): void;
|
|
70
45
|
/**
|
|
71
|
-
* @
|
|
72
|
-
* <p>Create an App Runner automatic scaling configuration resource. App Runner requires this resource when you create or update App Runner services and you require
|
|
73
|
-
* non-default auto scaling settings. You can share an auto scaling configuration across multiple services.</p>
|
|
74
|
-
* <p>Create multiple revisions of a configuration by calling this action multiple times using the same <code>AutoScalingConfigurationName</code>. The call
|
|
75
|
-
* returns incremental <code>AutoScalingConfigurationRevision</code> values. When you create a service and configure an auto scaling configuration resource,
|
|
76
|
-
* the service uses the latest active revision of the auto scaling configuration by default. You can optionally configure the service to use a specific
|
|
77
|
-
* revision.</p>
|
|
78
|
-
* <p>Configure a higher <code>MinSize</code> to increase the spread of your App Runner service over more Availability Zones in the Amazon Web Services Region. The tradeoff is
|
|
79
|
-
* a higher minimal cost.</p>
|
|
80
|
-
* <p>Configure a lower <code>MaxSize</code> to control your cost. The tradeoff is lower responsiveness during peak demand.</p>
|
|
46
|
+
* @see {@link CreateAutoScalingConfigurationCommand}
|
|
81
47
|
*/
|
|
82
48
|
createAutoScalingConfiguration(args: CreateAutoScalingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<CreateAutoScalingConfigurationCommandOutput>;
|
|
83
49
|
createAutoScalingConfiguration(args: CreateAutoScalingConfigurationCommandInput, cb: (err: any, data?: CreateAutoScalingConfigurationCommandOutput) => void): void;
|
|
84
50
|
createAutoScalingConfiguration(args: CreateAutoScalingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAutoScalingConfigurationCommandOutput) => void): void;
|
|
85
51
|
/**
|
|
86
|
-
* @
|
|
87
|
-
* <p>Create an App Runner connection resource. App Runner requires a connection resource when you create App Runner services that access private repositories from
|
|
88
|
-
* certain third-party providers. You can share a connection across multiple services.</p>
|
|
89
|
-
* <p>A connection resource is needed to access GitHub repositories. GitHub requires a user interface approval process through the App Runner console before you
|
|
90
|
-
* can use the connection.</p>
|
|
52
|
+
* @see {@link CreateConnectionCommand}
|
|
91
53
|
*/
|
|
92
54
|
createConnection(args: CreateConnectionCommandInput, options?: __HttpHandlerOptions): Promise<CreateConnectionCommandOutput>;
|
|
93
55
|
createConnection(args: CreateConnectionCommandInput, cb: (err: any, data?: CreateConnectionCommandOutput) => void): void;
|
|
94
56
|
createConnection(args: CreateConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConnectionCommandOutput) => void): void;
|
|
95
57
|
/**
|
|
96
|
-
* @
|
|
97
|
-
* <p>Create an App Runner observability configuration resource. App Runner requires this resource when you create or update App Runner services and you want to enable
|
|
98
|
-
* non-default observability features. You can share an observability configuration across multiple services.</p>
|
|
99
|
-
* <p>Create multiple revisions of a configuration by calling this action multiple times using the same <code>ObservabilityConfigurationName</code>. The
|
|
100
|
-
* call returns incremental <code>ObservabilityConfigurationRevision</code> values. When you create a service and configure an observability configuration
|
|
101
|
-
* resource, the service uses the latest active revision of the observability configuration by default. You can optionally configure the service to use a
|
|
102
|
-
* specific revision.</p>
|
|
103
|
-
* <p>The observability configuration resource is designed to configure multiple features (currently one feature, tracing). This action takes optional
|
|
104
|
-
* parameters that describe the configuration of these features (currently one parameter, <code>TraceConfiguration</code>). If you don't specify a feature
|
|
105
|
-
* parameter, App Runner doesn't enable the feature.</p>
|
|
58
|
+
* @see {@link CreateObservabilityConfigurationCommand}
|
|
106
59
|
*/
|
|
107
60
|
createObservabilityConfiguration(args: CreateObservabilityConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<CreateObservabilityConfigurationCommandOutput>;
|
|
108
61
|
createObservabilityConfiguration(args: CreateObservabilityConfigurationCommandInput, cb: (err: any, data?: CreateObservabilityConfigurationCommandOutput) => void): void;
|
|
109
62
|
createObservabilityConfiguration(args: CreateObservabilityConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateObservabilityConfigurationCommandOutput) => void): void;
|
|
110
63
|
/**
|
|
111
|
-
* @
|
|
112
|
-
* <p>Create an App Runner service. After the service is created, the action also automatically starts a deployment.</p>
|
|
113
|
-
* <p>This is an asynchronous operation. On a successful call, you can use the returned <code>OperationId</code> and the <a href="https://docs.aws.amazon.com/apprunner/latest/api/API_ListOperations.html">ListOperations</a> call to track the operation's progress.</p>
|
|
64
|
+
* @see {@link CreateServiceCommand}
|
|
114
65
|
*/
|
|
115
66
|
createService(args: CreateServiceCommandInput, options?: __HttpHandlerOptions): Promise<CreateServiceCommandOutput>;
|
|
116
67
|
createService(args: CreateServiceCommandInput, cb: (err: any, data?: CreateServiceCommandOutput) => void): void;
|
|
117
68
|
createService(args: CreateServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateServiceCommandOutput) => void): void;
|
|
118
69
|
/**
|
|
119
|
-
* @
|
|
120
|
-
* <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
|
|
121
|
-
* (Amazon VPC).</p>
|
|
70
|
+
* @see {@link CreateVpcConnectorCommand}
|
|
122
71
|
*/
|
|
123
72
|
createVpcConnector(args: CreateVpcConnectorCommandInput, options?: __HttpHandlerOptions): Promise<CreateVpcConnectorCommandOutput>;
|
|
124
73
|
createVpcConnector(args: CreateVpcConnectorCommandInput, cb: (err: any, data?: CreateVpcConnectorCommandOutput) => void): void;
|
|
125
74
|
createVpcConnector(args: CreateVpcConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVpcConnectorCommandOutput) => void): void;
|
|
126
75
|
/**
|
|
127
|
-
* @
|
|
128
|
-
* <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>
|
|
76
|
+
* @see {@link CreateVpcIngressConnectionCommand}
|
|
129
77
|
*/
|
|
130
78
|
createVpcIngressConnection(args: CreateVpcIngressConnectionCommandInput, options?: __HttpHandlerOptions): Promise<CreateVpcIngressConnectionCommandOutput>;
|
|
131
79
|
createVpcIngressConnection(args: CreateVpcIngressConnectionCommandInput, cb: (err: any, data?: CreateVpcIngressConnectionCommandOutput) => void): void;
|
|
132
80
|
createVpcIngressConnection(args: CreateVpcIngressConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVpcIngressConnectionCommandOutput) => void): void;
|
|
133
81
|
/**
|
|
134
|
-
* @
|
|
135
|
-
* <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
|
|
136
|
-
* configuration that's used by one or more App Runner services.</p>
|
|
82
|
+
* @see {@link DeleteAutoScalingConfigurationCommand}
|
|
137
83
|
*/
|
|
138
84
|
deleteAutoScalingConfiguration(args: DeleteAutoScalingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAutoScalingConfigurationCommandOutput>;
|
|
139
85
|
deleteAutoScalingConfiguration(args: DeleteAutoScalingConfigurationCommandInput, cb: (err: any, data?: DeleteAutoScalingConfigurationCommandOutput) => void): void;
|
|
140
86
|
deleteAutoScalingConfiguration(args: DeleteAutoScalingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAutoScalingConfigurationCommandOutput) => void): void;
|
|
141
87
|
/**
|
|
142
|
-
* @
|
|
143
|
-
* <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
|
|
144
|
-
* <code>DeleteConnection</code> action fails.</p>
|
|
88
|
+
* @see {@link DeleteConnectionCommand}
|
|
145
89
|
*/
|
|
146
90
|
deleteConnection(args: DeleteConnectionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConnectionCommandOutput>;
|
|
147
91
|
deleteConnection(args: DeleteConnectionCommandInput, cb: (err: any, data?: DeleteConnectionCommandOutput) => void): void;
|
|
148
92
|
deleteConnection(args: DeleteConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConnectionCommandOutput) => void): void;
|
|
149
93
|
/**
|
|
150
|
-
* @
|
|
151
|
-
* <p>Delete an App Runner observability configuration resource. You can delete a specific revision or the latest active revision. You can't delete a
|
|
152
|
-
* configuration that's used by one or more App Runner services.</p>
|
|
94
|
+
* @see {@link DeleteObservabilityConfigurationCommand}
|
|
153
95
|
*/
|
|
154
96
|
deleteObservabilityConfiguration(args: DeleteObservabilityConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteObservabilityConfigurationCommandOutput>;
|
|
155
97
|
deleteObservabilityConfiguration(args: DeleteObservabilityConfigurationCommandInput, cb: (err: any, data?: DeleteObservabilityConfigurationCommandOutput) => void): void;
|
|
156
98
|
deleteObservabilityConfiguration(args: DeleteObservabilityConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteObservabilityConfigurationCommandOutput) => void): void;
|
|
157
99
|
/**
|
|
158
|
-
* @
|
|
159
|
-
* <p>Delete an App Runner service.</p>
|
|
160
|
-
* <p>This is an asynchronous operation. On a successful call, you can use the returned <code>OperationId</code> and the <a>ListOperations</a>
|
|
161
|
-
* call to track the operation's progress.</p>
|
|
162
|
-
* <note>
|
|
163
|
-
* <p>Make sure that you don't have any active VPCIngressConnections associated with the service you want to delete.
|
|
164
|
-
* </p>
|
|
165
|
-
* </note>
|
|
100
|
+
* @see {@link DeleteServiceCommand}
|
|
166
101
|
*/
|
|
167
102
|
deleteService(args: DeleteServiceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteServiceCommandOutput>;
|
|
168
103
|
deleteService(args: DeleteServiceCommandInput, cb: (err: any, data?: DeleteServiceCommandOutput) => void): void;
|
|
169
104
|
deleteService(args: DeleteServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteServiceCommandOutput) => void): void;
|
|
170
105
|
/**
|
|
171
|
-
* @
|
|
172
|
-
* <p>Delete an App Runner VPC connector resource. You can't delete a
|
|
173
|
-
* connector that's used by one or more App Runner services.</p>
|
|
106
|
+
* @see {@link DeleteVpcConnectorCommand}
|
|
174
107
|
*/
|
|
175
108
|
deleteVpcConnector(args: DeleteVpcConnectorCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVpcConnectorCommandOutput>;
|
|
176
109
|
deleteVpcConnector(args: DeleteVpcConnectorCommandInput, cb: (err: any, data?: DeleteVpcConnectorCommandOutput) => void): void;
|
|
177
110
|
deleteVpcConnector(args: DeleteVpcConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVpcConnectorCommandOutput) => void): void;
|
|
178
111
|
/**
|
|
179
|
-
* @
|
|
180
|
-
* <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:
|
|
181
|
-
* </p>
|
|
182
|
-
* <ul>
|
|
183
|
-
* <li>
|
|
184
|
-
* <p>
|
|
185
|
-
* <code>AVAILABLE</code>
|
|
186
|
-
* </p>
|
|
187
|
-
* </li>
|
|
188
|
-
* <li>
|
|
189
|
-
* <p>
|
|
190
|
-
* <code>FAILED_CREATION</code>
|
|
191
|
-
* </p>
|
|
192
|
-
* </li>
|
|
193
|
-
* <li>
|
|
194
|
-
* <p>
|
|
195
|
-
* <code>FAILED_UPDATE</code>
|
|
196
|
-
* </p>
|
|
197
|
-
* </li>
|
|
198
|
-
* <li>
|
|
199
|
-
* <p>
|
|
200
|
-
* <code>FAILED_DELETION</code>
|
|
201
|
-
* </p>
|
|
202
|
-
* </li>
|
|
203
|
-
* </ul>
|
|
112
|
+
* @see {@link DeleteVpcIngressConnectionCommand}
|
|
204
113
|
*/
|
|
205
114
|
deleteVpcIngressConnection(args: DeleteVpcIngressConnectionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVpcIngressConnectionCommandOutput>;
|
|
206
115
|
deleteVpcIngressConnection(args: DeleteVpcIngressConnectionCommandInput, cb: (err: any, data?: DeleteVpcIngressConnectionCommandOutput) => void): void;
|
|
207
116
|
deleteVpcIngressConnection(args: DeleteVpcIngressConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVpcIngressConnectionCommandOutput) => void): void;
|
|
208
117
|
/**
|
|
209
|
-
* @
|
|
210
|
-
* <p>Return a full description of an App Runner automatic scaling configuration resource.</p>
|
|
118
|
+
* @see {@link DescribeAutoScalingConfigurationCommand}
|
|
211
119
|
*/
|
|
212
120
|
describeAutoScalingConfiguration(args: DescribeAutoScalingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAutoScalingConfigurationCommandOutput>;
|
|
213
121
|
describeAutoScalingConfiguration(args: DescribeAutoScalingConfigurationCommandInput, cb: (err: any, data?: DescribeAutoScalingConfigurationCommandOutput) => void): void;
|
|
214
122
|
describeAutoScalingConfiguration(args: DescribeAutoScalingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAutoScalingConfigurationCommandOutput) => void): void;
|
|
215
123
|
/**
|
|
216
|
-
* @
|
|
217
|
-
* <p>Return a description of custom domain names that are associated with an App Runner service.</p>
|
|
124
|
+
* @see {@link DescribeCustomDomainsCommand}
|
|
218
125
|
*/
|
|
219
126
|
describeCustomDomains(args: DescribeCustomDomainsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCustomDomainsCommandOutput>;
|
|
220
127
|
describeCustomDomains(args: DescribeCustomDomainsCommandInput, cb: (err: any, data?: DescribeCustomDomainsCommandOutput) => void): void;
|
|
221
128
|
describeCustomDomains(args: DescribeCustomDomainsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCustomDomainsCommandOutput) => void): void;
|
|
222
129
|
/**
|
|
223
|
-
* @
|
|
224
|
-
* <p>Return a full description of an App Runner observability configuration resource.</p>
|
|
130
|
+
* @see {@link DescribeObservabilityConfigurationCommand}
|
|
225
131
|
*/
|
|
226
132
|
describeObservabilityConfiguration(args: DescribeObservabilityConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeObservabilityConfigurationCommandOutput>;
|
|
227
133
|
describeObservabilityConfiguration(args: DescribeObservabilityConfigurationCommandInput, cb: (err: any, data?: DescribeObservabilityConfigurationCommandOutput) => void): void;
|
|
228
134
|
describeObservabilityConfiguration(args: DescribeObservabilityConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeObservabilityConfigurationCommandOutput) => void): void;
|
|
229
135
|
/**
|
|
230
|
-
* @
|
|
231
|
-
* <p>Return a full description of an App Runner service.</p>
|
|
136
|
+
* @see {@link DescribeServiceCommand}
|
|
232
137
|
*/
|
|
233
138
|
describeService(args: DescribeServiceCommandInput, options?: __HttpHandlerOptions): Promise<DescribeServiceCommandOutput>;
|
|
234
139
|
describeService(args: DescribeServiceCommandInput, cb: (err: any, data?: DescribeServiceCommandOutput) => void): void;
|
|
235
140
|
describeService(args: DescribeServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeServiceCommandOutput) => void): void;
|
|
236
141
|
/**
|
|
237
|
-
* @
|
|
238
|
-
* <p>Return a description of an App Runner VPC connector resource.</p>
|
|
142
|
+
* @see {@link DescribeVpcConnectorCommand}
|
|
239
143
|
*/
|
|
240
144
|
describeVpcConnector(args: DescribeVpcConnectorCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVpcConnectorCommandOutput>;
|
|
241
145
|
describeVpcConnector(args: DescribeVpcConnectorCommandInput, cb: (err: any, data?: DescribeVpcConnectorCommandOutput) => void): void;
|
|
242
146
|
describeVpcConnector(args: DescribeVpcConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVpcConnectorCommandOutput) => void): void;
|
|
243
147
|
/**
|
|
244
|
-
* @
|
|
245
|
-
* <p>Return a full description of an App Runner VPC Ingress Connection resource.</p>
|
|
148
|
+
* @see {@link DescribeVpcIngressConnectionCommand}
|
|
246
149
|
*/
|
|
247
150
|
describeVpcIngressConnection(args: DescribeVpcIngressConnectionCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVpcIngressConnectionCommandOutput>;
|
|
248
151
|
describeVpcIngressConnection(args: DescribeVpcIngressConnectionCommandInput, cb: (err: any, data?: DescribeVpcIngressConnectionCommandOutput) => void): void;
|
|
249
152
|
describeVpcIngressConnection(args: DescribeVpcIngressConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVpcIngressConnectionCommandOutput) => void): void;
|
|
250
153
|
/**
|
|
251
|
-
* @
|
|
252
|
-
* <p>Disassociate a custom domain name from an App Runner service.</p>
|
|
253
|
-
* <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
|
|
254
|
-
* Certificate Manager (ACM)</a>. These certificates aren't deleted as part of this action. App Runner delays certificate deletion for
|
|
255
|
-
* 30 days after a domain is disassociated from your service.</p>
|
|
154
|
+
* @see {@link DisassociateCustomDomainCommand}
|
|
256
155
|
*/
|
|
257
156
|
disassociateCustomDomain(args: DisassociateCustomDomainCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateCustomDomainCommandOutput>;
|
|
258
157
|
disassociateCustomDomain(args: DisassociateCustomDomainCommandInput, cb: (err: any, data?: DisassociateCustomDomainCommandOutput) => void): void;
|
|
259
158
|
disassociateCustomDomain(args: DisassociateCustomDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateCustomDomainCommandOutput) => void): void;
|
|
260
159
|
/**
|
|
261
|
-
* @
|
|
262
|
-
* <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
|
|
263
|
-
* configuration name or the revisions for all active configurations in your account. You can optionally query only the latest revision of each requested
|
|
264
|
-
* name.</p>
|
|
265
|
-
* <p>To retrieve a full description of a particular configuration revision, call and provide one of
|
|
266
|
-
* the ARNs returned by <code>ListAutoScalingConfigurations</code>.</p>
|
|
160
|
+
* @see {@link ListAutoScalingConfigurationsCommand}
|
|
267
161
|
*/
|
|
268
162
|
listAutoScalingConfigurations(args: ListAutoScalingConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListAutoScalingConfigurationsCommandOutput>;
|
|
269
163
|
listAutoScalingConfigurations(args: ListAutoScalingConfigurationsCommandInput, cb: (err: any, data?: ListAutoScalingConfigurationsCommandOutput) => void): void;
|
|
270
164
|
listAutoScalingConfigurations(args: ListAutoScalingConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAutoScalingConfigurationsCommandOutput) => void): void;
|
|
271
165
|
/**
|
|
272
|
-
* @
|
|
273
|
-
* <p>Returns a list of App Runner connections that are associated with your Amazon Web Services account.</p>
|
|
166
|
+
* @see {@link ListConnectionsCommand}
|
|
274
167
|
*/
|
|
275
168
|
listConnections(args: ListConnectionsCommandInput, options?: __HttpHandlerOptions): Promise<ListConnectionsCommandOutput>;
|
|
276
169
|
listConnections(args: ListConnectionsCommandInput, cb: (err: any, data?: ListConnectionsCommandOutput) => void): void;
|
|
277
170
|
listConnections(args: ListConnectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConnectionsCommandOutput) => void): void;
|
|
278
171
|
/**
|
|
279
|
-
* @
|
|
280
|
-
* <p>Returns a list of active App Runner observability configurations in your Amazon Web Services account. You can query the revisions for a specific
|
|
281
|
-
* configuration name or the revisions for all active configurations in your account. You can optionally query only the latest revision of each requested
|
|
282
|
-
* name.</p>
|
|
283
|
-
* <p>To retrieve a full description of a particular configuration revision, call and provide one
|
|
284
|
-
* of the ARNs returned by <code>ListObservabilityConfigurations</code>.</p>
|
|
172
|
+
* @see {@link ListObservabilityConfigurationsCommand}
|
|
285
173
|
*/
|
|
286
174
|
listObservabilityConfigurations(args: ListObservabilityConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListObservabilityConfigurationsCommandOutput>;
|
|
287
175
|
listObservabilityConfigurations(args: ListObservabilityConfigurationsCommandInput, cb: (err: any, data?: ListObservabilityConfigurationsCommandOutput) => void): void;
|
|
288
176
|
listObservabilityConfigurations(args: ListObservabilityConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListObservabilityConfigurationsCommandOutput) => void): void;
|
|
289
177
|
/**
|
|
290
|
-
* @
|
|
291
|
-
* <p>Return a list of operations that occurred on an App Runner service.</p>
|
|
292
|
-
* <p>The resulting list of <a>OperationSummary</a> objects is sorted in reverse chronological order. The first object on the list represents the
|
|
293
|
-
* last started operation.</p>
|
|
178
|
+
* @see {@link ListOperationsCommand}
|
|
294
179
|
*/
|
|
295
180
|
listOperations(args: ListOperationsCommandInput, options?: __HttpHandlerOptions): Promise<ListOperationsCommandOutput>;
|
|
296
181
|
listOperations(args: ListOperationsCommandInput, cb: (err: any, data?: ListOperationsCommandOutput) => void): void;
|
|
297
182
|
listOperations(args: ListOperationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOperationsCommandOutput) => void): void;
|
|
298
183
|
/**
|
|
299
|
-
* @
|
|
300
|
-
* <p>Returns a list of running App Runner services in your Amazon Web Services account.</p>
|
|
184
|
+
* @see {@link ListServicesCommand}
|
|
301
185
|
*/
|
|
302
186
|
listServices(args: ListServicesCommandInput, options?: __HttpHandlerOptions): Promise<ListServicesCommandOutput>;
|
|
303
187
|
listServices(args: ListServicesCommandInput, cb: (err: any, data?: ListServicesCommandOutput) => void): void;
|
|
304
188
|
listServices(args: ListServicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServicesCommandOutput) => void): void;
|
|
305
189
|
/**
|
|
306
|
-
* @
|
|
307
|
-
* <p>List tags that are associated with for an App Runner resource. The response contains a list of tag key-value pairs.</p>
|
|
190
|
+
* @see {@link ListTagsForResourceCommand}
|
|
308
191
|
*/
|
|
309
192
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
310
193
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
311
194
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
312
195
|
/**
|
|
313
|
-
* @
|
|
314
|
-
* <p>Returns a list of App Runner VPC connectors in your Amazon Web Services account.</p>
|
|
196
|
+
* @see {@link ListVpcConnectorsCommand}
|
|
315
197
|
*/
|
|
316
198
|
listVpcConnectors(args: ListVpcConnectorsCommandInput, options?: __HttpHandlerOptions): Promise<ListVpcConnectorsCommandOutput>;
|
|
317
199
|
listVpcConnectors(args: ListVpcConnectorsCommandInput, cb: (err: any, data?: ListVpcConnectorsCommandOutput) => void): void;
|
|
318
200
|
listVpcConnectors(args: ListVpcConnectorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVpcConnectorsCommandOutput) => void): void;
|
|
319
201
|
/**
|
|
320
|
-
* @
|
|
321
|
-
* <p>Return a list of App Runner VPC Ingress Connections in your Amazon Web Services account.</p>
|
|
202
|
+
* @see {@link ListVpcIngressConnectionsCommand}
|
|
322
203
|
*/
|
|
323
204
|
listVpcIngressConnections(args: ListVpcIngressConnectionsCommandInput, options?: __HttpHandlerOptions): Promise<ListVpcIngressConnectionsCommandOutput>;
|
|
324
205
|
listVpcIngressConnections(args: ListVpcIngressConnectionsCommandInput, cb: (err: any, data?: ListVpcIngressConnectionsCommandOutput) => void): void;
|
|
325
206
|
listVpcIngressConnections(args: ListVpcIngressConnectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVpcIngressConnectionsCommandOutput) => void): void;
|
|
326
207
|
/**
|
|
327
|
-
* @
|
|
328
|
-
* <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
|
|
329
|
-
* removed).</p>
|
|
330
|
-
* <p>This is an asynchronous operation. On a successful call, you can use the returned <code>OperationId</code> and the <a>ListOperations</a>
|
|
331
|
-
* call to track the operation's progress.</p>
|
|
208
|
+
* @see {@link PauseServiceCommand}
|
|
332
209
|
*/
|
|
333
210
|
pauseService(args: PauseServiceCommandInput, options?: __HttpHandlerOptions): Promise<PauseServiceCommandOutput>;
|
|
334
211
|
pauseService(args: PauseServiceCommandInput, cb: (err: any, data?: PauseServiceCommandOutput) => void): void;
|
|
335
212
|
pauseService(args: PauseServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PauseServiceCommandOutput) => void): void;
|
|
336
213
|
/**
|
|
337
|
-
* @
|
|
338
|
-
* <p>Resume an active App Runner service. App Runner provisions compute capacity for the service.</p>
|
|
339
|
-
* <p>This is an asynchronous operation. On a successful call, you can use the returned <code>OperationId</code> and the <a>ListOperations</a>
|
|
340
|
-
* call to track the operation's progress.</p>
|
|
214
|
+
* @see {@link ResumeServiceCommand}
|
|
341
215
|
*/
|
|
342
216
|
resumeService(args: ResumeServiceCommandInput, options?: __HttpHandlerOptions): Promise<ResumeServiceCommandOutput>;
|
|
343
217
|
resumeService(args: ResumeServiceCommandInput, cb: (err: any, data?: ResumeServiceCommandOutput) => void): void;
|
|
344
218
|
resumeService(args: ResumeServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResumeServiceCommandOutput) => void): void;
|
|
345
219
|
/**
|
|
346
|
-
* @
|
|
347
|
-
* <p>Initiate a manual deployment of the latest commit in a source code repository or the latest image in a source image repository to an App Runner
|
|
348
|
-
* service.</p>
|
|
349
|
-
* <p>For a source code repository, App Runner retrieves the commit and builds a Docker image. For a source image repository, App Runner retrieves the latest Docker
|
|
350
|
-
* image. In both cases, App Runner then deploys the new image to your service and starts a new container instance.</p>
|
|
351
|
-
* <p>This is an asynchronous operation. On a successful call, you can use the returned <code>OperationId</code> and the <a>ListOperations</a>
|
|
352
|
-
* call to track the operation's progress.</p>
|
|
220
|
+
* @see {@link StartDeploymentCommand}
|
|
353
221
|
*/
|
|
354
222
|
startDeployment(args: StartDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<StartDeploymentCommandOutput>;
|
|
355
223
|
startDeployment(args: StartDeploymentCommandInput, cb: (err: any, data?: StartDeploymentCommandOutput) => void): void;
|
|
356
224
|
startDeployment(args: StartDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartDeploymentCommandOutput) => void): void;
|
|
357
225
|
/**
|
|
358
|
-
* @
|
|
359
|
-
* <p>Add tags to, or update the tag values of, an App Runner resource. A tag is a key-value pair.</p>
|
|
226
|
+
* @see {@link TagResourceCommand}
|
|
360
227
|
*/
|
|
361
228
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
362
229
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
363
230
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
364
231
|
/**
|
|
365
|
-
* @
|
|
366
|
-
* <p>Remove tags from an App Runner resource.</p>
|
|
232
|
+
* @see {@link UntagResourceCommand}
|
|
367
233
|
*/
|
|
368
234
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
369
235
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
370
236
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
371
237
|
/**
|
|
372
|
-
* @
|
|
373
|
-
* <p>Update an App Runner service. You can update the source configuration and instance configuration of the service. You can also update the ARN of the auto
|
|
374
|
-
* scaling configuration resource that's associated with the service. However, you can't change the name or the encryption configuration of the service.
|
|
375
|
-
* These can be set only when you create the service.</p>
|
|
376
|
-
* <p>To update the tags applied to your service, use the separate actions <a>TagResource</a> and <a>UntagResource</a>.</p>
|
|
377
|
-
* <p>This is an asynchronous operation. On a successful call, you can use the returned <code>OperationId</code> and the <a>ListOperations</a>
|
|
378
|
-
* call to track the operation's progress.</p>
|
|
238
|
+
* @see {@link UpdateServiceCommand}
|
|
379
239
|
*/
|
|
380
240
|
updateService(args: UpdateServiceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateServiceCommandOutput>;
|
|
381
241
|
updateService(args: UpdateServiceCommandInput, cb: (err: any, data?: UpdateServiceCommandOutput) => void): void;
|
|
382
242
|
updateService(args: UpdateServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateServiceCommandOutput) => void): void;
|
|
383
243
|
/**
|
|
384
|
-
* @
|
|
385
|
-
* <p>Update an existing App Runner VPC Ingress Connection resource. The VPC Ingress Connection must be in one of the following states to be updated:</p>
|
|
386
|
-
* <ul>
|
|
387
|
-
* <li>
|
|
388
|
-
* <p>
|
|
389
|
-
* AVAILABLE
|
|
390
|
-
* </p>
|
|
391
|
-
* </li>
|
|
392
|
-
* <li>
|
|
393
|
-
* <p>
|
|
394
|
-
* FAILED_CREATION
|
|
395
|
-
* </p>
|
|
396
|
-
* </li>
|
|
397
|
-
* <li>
|
|
398
|
-
* <p>
|
|
399
|
-
* FAILED_UPDATE
|
|
400
|
-
* </p>
|
|
401
|
-
* </li>
|
|
402
|
-
* </ul>
|
|
244
|
+
* @see {@link UpdateVpcIngressConnectionCommand}
|
|
403
245
|
*/
|
|
404
246
|
updateVpcIngressConnection(args: UpdateVpcIngressConnectionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateVpcIngressConnectionCommandOutput>;
|
|
405
247
|
updateVpcIngressConnection(args: UpdateVpcIngressConnectionCommandInput, cb: (err: any, data?: UpdateVpcIngressConnectionCommandOutput) => void): void;
|
|
406
248
|
updateVpcIngressConnection(args: UpdateVpcIngressConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateVpcIngressConnectionCommandOutput) => void): void;
|
|
407
249
|
}
|
|
250
|
+
/**
|
|
251
|
+
* @public
|
|
252
|
+
* <fullname>App Runner</fullname>
|
|
253
|
+
* <p>App Runner is an application service that provides a fast, simple, and cost-effective way to go directly from an existing container image or source code
|
|
254
|
+
* to a running service in the Amazon Web Services Cloud in seconds. You don't need to learn new technologies, decide which compute service to use, or understand how to
|
|
255
|
+
* provision and configure Amazon Web Services resources.</p>
|
|
256
|
+
* <p>App Runner connects directly to your container registry or source code repository. It provides an automatic delivery pipeline with fully managed operations,
|
|
257
|
+
* high performance, scalability, and security.</p>
|
|
258
|
+
* <p>For more information about App Runner, see the <a href="https://docs.aws.amazon.com/apprunner/latest/dg/">App Runner Developer Guide</a>.
|
|
259
|
+
* For release information, see the <a href="https://docs.aws.amazon.com/apprunner/latest/relnotes/">App Runner Release Notes</a>.</p>
|
|
260
|
+
* <p>
|
|
261
|
+
* To install the Software Development Kits (SDKs), Integrated
|
|
262
|
+
* Development Environment (IDE) Toolkits, and command line tools that you can use to access the API, see <a href="http://aws.amazon.com/tools/">Tools for
|
|
263
|
+
* Amazon Web Services</a>.</p>
|
|
264
|
+
* <p>
|
|
265
|
+
* <b>Endpoints</b>
|
|
266
|
+
* </p>
|
|
267
|
+
* <p>For a list of Region-specific endpoints that App Runner supports, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App Runner
|
|
268
|
+
* endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>.</p>
|
|
269
|
+
*/
|
|
270
|
+
export declare class AppRunner extends AppRunnerClient implements AppRunner {
|
|
271
|
+
}
|
|
@@ -140,7 +140,7 @@ import {
|
|
|
140
140
|
UpdateVpcIngressConnectionCommandInput,
|
|
141
141
|
UpdateVpcIngressConnectionCommandOutput,
|
|
142
142
|
} from "./commands/UpdateVpcIngressConnectionCommand";
|
|
143
|
-
export
|
|
143
|
+
export interface AppRunner {
|
|
144
144
|
associateCustomDomain(
|
|
145
145
|
args: AssociateCustomDomainCommandInput,
|
|
146
146
|
options?: __HttpHandlerOptions
|
|
@@ -603,3 +603,4 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
603
603
|
cb: (err: any, data?: UpdateVpcIngressConnectionCommandOutput) => void
|
|
604
604
|
): void;
|
|
605
605
|
}
|
|
606
|
+
export declare class AppRunner extends AppRunnerClient implements AppRunner {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-apprunner",
|
|
3
3
|
"description": "AWS SDK for JavaScript Apprunner Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.316.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.316.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.316.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|