@aws-sdk/client-apprunner 3.299.0 → 3.301.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 (36) hide show
  1. package/dist-types/commands/AssociateCustomDomainCommand.d.ts +5 -0
  2. package/dist-types/commands/CreateAutoScalingConfigurationCommand.d.ts +12 -0
  3. package/dist-types/commands/CreateConnectionCommand.d.ts +10 -0
  4. package/dist-types/commands/CreateObservabilityConfigurationCommand.d.ts +12 -0
  5. package/dist-types/commands/CreateServiceCommand.d.ts +82 -0
  6. package/dist-types/commands/CreateVpcConnectorCommand.d.ts +15 -0
  7. package/dist-types/commands/CreateVpcIngressConnectionCommand.d.ts +14 -0
  8. package/dist-types/commands/DeleteAutoScalingConfigurationCommand.d.ts +3 -0
  9. package/dist-types/commands/DeleteConnectionCommand.d.ts +3 -0
  10. package/dist-types/commands/DeleteObservabilityConfigurationCommand.d.ts +3 -0
  11. package/dist-types/commands/DeleteServiceCommand.d.ts +3 -0
  12. package/dist-types/commands/DeleteVpcConnectorCommand.d.ts +3 -0
  13. package/dist-types/commands/DeleteVpcIngressConnectionCommand.d.ts +3 -0
  14. package/dist-types/commands/DescribeAutoScalingConfigurationCommand.d.ts +3 -0
  15. package/dist-types/commands/DescribeCustomDomainsCommand.d.ts +5 -0
  16. package/dist-types/commands/DescribeObservabilityConfigurationCommand.d.ts +3 -0
  17. package/dist-types/commands/DescribeServiceCommand.d.ts +3 -0
  18. package/dist-types/commands/DescribeVpcConnectorCommand.d.ts +3 -0
  19. package/dist-types/commands/DescribeVpcIngressConnectionCommand.d.ts +3 -0
  20. package/dist-types/commands/DisassociateCustomDomainCommand.d.ts +4 -0
  21. package/dist-types/commands/ListAutoScalingConfigurationsCommand.d.ts +6 -0
  22. package/dist-types/commands/ListConnectionsCommand.d.ts +5 -0
  23. package/dist-types/commands/ListObservabilityConfigurationsCommand.d.ts +6 -0
  24. package/dist-types/commands/ListOperationsCommand.d.ts +5 -0
  25. package/dist-types/commands/ListServicesCommand.d.ts +4 -0
  26. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  27. package/dist-types/commands/ListVpcConnectorsCommand.d.ts +4 -0
  28. package/dist-types/commands/ListVpcIngressConnectionsCommand.d.ts +8 -0
  29. package/dist-types/commands/PauseServiceCommand.d.ts +3 -0
  30. package/dist-types/commands/ResumeServiceCommand.d.ts +3 -0
  31. package/dist-types/commands/StartDeploymentCommand.d.ts +3 -0
  32. package/dist-types/commands/TagResourceCommand.d.ts +9 -0
  33. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  34. package/dist-types/commands/UpdateServiceCommand.d.ts +73 -0
  35. package/dist-types/commands/UpdateVpcIngressConnectionCommand.d.ts +7 -0
  36. package/package.json +8 -8
@@ -30,6 +30,11 @@ export interface AssociateCustomDomainCommandOutput extends AssociateCustomDomai
30
30
  * import { AppRunnerClient, AssociateCustomDomainCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
31
31
  * // const { AppRunnerClient, AssociateCustomDomainCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
32
32
  * const client = new AppRunnerClient(config);
33
+ * const input = { // AssociateCustomDomainRequest
34
+ * ServiceArn: "STRING_VALUE", // required
35
+ * DomainName: "STRING_VALUE", // required
36
+ * EnableWWWSubdomain: true || false,
37
+ * };
33
38
  * const command = new AssociateCustomDomainCommand(input);
34
39
  * const response = await client.send(command);
35
40
  * ```
@@ -34,6 +34,18 @@ export interface CreateAutoScalingConfigurationCommandOutput extends CreateAutoS
34
34
  * import { AppRunnerClient, CreateAutoScalingConfigurationCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
35
35
  * // const { AppRunnerClient, CreateAutoScalingConfigurationCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
36
36
  * const client = new AppRunnerClient(config);
37
+ * const input = { // CreateAutoScalingConfigurationRequest
38
+ * AutoScalingConfigurationName: "STRING_VALUE", // required
39
+ * MaxConcurrency: Number("int"),
40
+ * MinSize: Number("int"),
41
+ * MaxSize: Number("int"),
42
+ * Tags: [ // TagList
43
+ * { // Tag
44
+ * Key: "STRING_VALUE",
45
+ * Value: "STRING_VALUE",
46
+ * },
47
+ * ],
48
+ * };
37
49
  * const command = new CreateAutoScalingConfigurationCommand(input);
38
50
  * const response = await client.send(command);
39
51
  * ```
@@ -29,6 +29,16 @@ export interface CreateConnectionCommandOutput extends CreateConnectionResponse,
29
29
  * import { AppRunnerClient, CreateConnectionCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
30
30
  * // const { AppRunnerClient, CreateConnectionCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
31
31
  * const client = new AppRunnerClient(config);
32
+ * const input = { // CreateConnectionRequest
33
+ * ConnectionName: "STRING_VALUE", // required
34
+ * ProviderType: "GITHUB", // required
35
+ * Tags: [ // TagList
36
+ * { // Tag
37
+ * Key: "STRING_VALUE",
38
+ * Value: "STRING_VALUE",
39
+ * },
40
+ * ],
41
+ * };
32
42
  * const command = new CreateConnectionCommand(input);
33
43
  * const response = await client.send(command);
34
44
  * ```
@@ -34,6 +34,18 @@ export interface CreateObservabilityConfigurationCommandOutput extends CreateObs
34
34
  * import { AppRunnerClient, CreateObservabilityConfigurationCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
35
35
  * // const { AppRunnerClient, CreateObservabilityConfigurationCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
36
36
  * const client = new AppRunnerClient(config);
37
+ * const input = { // CreateObservabilityConfigurationRequest
38
+ * ObservabilityConfigurationName: "STRING_VALUE", // required
39
+ * TraceConfiguration: { // TraceConfiguration
40
+ * Vendor: "AWSXRAY", // required
41
+ * },
42
+ * Tags: [ // TagList
43
+ * { // Tag
44
+ * Key: "STRING_VALUE",
45
+ * Value: "STRING_VALUE",
46
+ * },
47
+ * ],
48
+ * };
37
49
  * const command = new CreateObservabilityConfigurationCommand(input);
38
50
  * const response = await client.send(command);
39
51
  * ```
@@ -27,6 +27,88 @@ export interface CreateServiceCommandOutput extends CreateServiceResponse, __Met
27
27
  * import { AppRunnerClient, CreateServiceCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
28
28
  * // const { AppRunnerClient, CreateServiceCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
29
29
  * const client = new AppRunnerClient(config);
30
+ * const input = { // CreateServiceRequest
31
+ * ServiceName: "STRING_VALUE", // required
32
+ * SourceConfiguration: { // SourceConfiguration
33
+ * CodeRepository: { // CodeRepository
34
+ * RepositoryUrl: "STRING_VALUE", // required
35
+ * SourceCodeVersion: { // SourceCodeVersion
36
+ * Type: "BRANCH", // required
37
+ * Value: "STRING_VALUE", // required
38
+ * },
39
+ * CodeConfiguration: { // CodeConfiguration
40
+ * ConfigurationSource: "REPOSITORY" || "API", // required
41
+ * CodeConfigurationValues: { // CodeConfigurationValues
42
+ * Runtime: "PYTHON_3" || "NODEJS_12" || "NODEJS_14" || "CORRETTO_8" || "CORRETTO_11" || "NODEJS_16" || "GO_1" || "DOTNET_6" || "PHP_81" || "RUBY_31", // required
43
+ * BuildCommand: "STRING_VALUE",
44
+ * StartCommand: "STRING_VALUE",
45
+ * Port: "STRING_VALUE",
46
+ * RuntimeEnvironmentVariables: { // RuntimeEnvironmentVariables
47
+ * "<keys>": "STRING_VALUE",
48
+ * },
49
+ * RuntimeEnvironmentSecrets: { // RuntimeEnvironmentSecrets
50
+ * "<keys>": "STRING_VALUE",
51
+ * },
52
+ * },
53
+ * },
54
+ * },
55
+ * ImageRepository: { // ImageRepository
56
+ * ImageIdentifier: "STRING_VALUE", // required
57
+ * ImageConfiguration: { // ImageConfiguration
58
+ * RuntimeEnvironmentVariables: {
59
+ * "<keys>": "STRING_VALUE",
60
+ * },
61
+ * StartCommand: "STRING_VALUE",
62
+ * Port: "STRING_VALUE",
63
+ * RuntimeEnvironmentSecrets: {
64
+ * "<keys>": "STRING_VALUE",
65
+ * },
66
+ * },
67
+ * ImageRepositoryType: "ECR" || "ECR_PUBLIC", // required
68
+ * },
69
+ * AutoDeploymentsEnabled: true || false,
70
+ * AuthenticationConfiguration: { // AuthenticationConfiguration
71
+ * ConnectionArn: "STRING_VALUE",
72
+ * AccessRoleArn: "STRING_VALUE",
73
+ * },
74
+ * },
75
+ * InstanceConfiguration: { // InstanceConfiguration
76
+ * Cpu: "STRING_VALUE",
77
+ * Memory: "STRING_VALUE",
78
+ * InstanceRoleArn: "STRING_VALUE",
79
+ * },
80
+ * Tags: [ // TagList
81
+ * { // Tag
82
+ * Key: "STRING_VALUE",
83
+ * Value: "STRING_VALUE",
84
+ * },
85
+ * ],
86
+ * EncryptionConfiguration: { // EncryptionConfiguration
87
+ * KmsKey: "STRING_VALUE", // required
88
+ * },
89
+ * HealthCheckConfiguration: { // HealthCheckConfiguration
90
+ * Protocol: "TCP" || "HTTP",
91
+ * Path: "STRING_VALUE",
92
+ * Interval: Number("int"),
93
+ * Timeout: Number("int"),
94
+ * HealthyThreshold: Number("int"),
95
+ * UnhealthyThreshold: Number("int"),
96
+ * },
97
+ * AutoScalingConfigurationArn: "STRING_VALUE",
98
+ * NetworkConfiguration: { // NetworkConfiguration
99
+ * EgressConfiguration: { // EgressConfiguration
100
+ * EgressType: "DEFAULT" || "VPC",
101
+ * VpcConnectorArn: "STRING_VALUE",
102
+ * },
103
+ * IngressConfiguration: { // IngressConfiguration
104
+ * IsPubliclyAccessible: true || false,
105
+ * },
106
+ * },
107
+ * ObservabilityConfiguration: { // ServiceObservabilityConfiguration
108
+ * ObservabilityEnabled: true || false, // required
109
+ * ObservabilityConfigurationArn: "STRING_VALUE",
110
+ * },
111
+ * };
30
112
  * const command = new CreateServiceCommand(input);
31
113
  * const response = await client.send(command);
32
114
  * ```
@@ -27,6 +27,21 @@ export interface CreateVpcConnectorCommandOutput extends CreateVpcConnectorRespo
27
27
  * import { AppRunnerClient, CreateVpcConnectorCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
28
28
  * // const { AppRunnerClient, CreateVpcConnectorCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
29
29
  * const client = new AppRunnerClient(config);
30
+ * const input = { // CreateVpcConnectorRequest
31
+ * VpcConnectorName: "STRING_VALUE", // required
32
+ * Subnets: [ // StringList // required
33
+ * "STRING_VALUE",
34
+ * ],
35
+ * SecurityGroups: [
36
+ * "STRING_VALUE",
37
+ * ],
38
+ * Tags: [ // TagList
39
+ * { // Tag
40
+ * Key: "STRING_VALUE",
41
+ * Value: "STRING_VALUE",
42
+ * },
43
+ * ],
44
+ * };
30
45
  * const command = new CreateVpcConnectorCommand(input);
31
46
  * const response = await client.send(command);
32
47
  * ```
@@ -26,6 +26,20 @@ export interface CreateVpcIngressConnectionCommandOutput extends CreateVpcIngres
26
26
  * import { AppRunnerClient, CreateVpcIngressConnectionCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
27
27
  * // const { AppRunnerClient, CreateVpcIngressConnectionCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
28
28
  * const client = new AppRunnerClient(config);
29
+ * const input = { // CreateVpcIngressConnectionRequest
30
+ * ServiceArn: "STRING_VALUE", // required
31
+ * VpcIngressConnectionName: "STRING_VALUE", // required
32
+ * IngressVpcConfiguration: { // IngressVpcConfiguration
33
+ * VpcId: "STRING_VALUE",
34
+ * VpcEndpointId: "STRING_VALUE",
35
+ * },
36
+ * Tags: [ // TagList
37
+ * { // Tag
38
+ * Key: "STRING_VALUE",
39
+ * Value: "STRING_VALUE",
40
+ * },
41
+ * ],
42
+ * };
29
43
  * const command = new CreateVpcIngressConnectionCommand(input);
30
44
  * const response = await client.send(command);
31
45
  * ```
@@ -27,6 +27,9 @@ export interface DeleteAutoScalingConfigurationCommandOutput extends DeleteAutoS
27
27
  * import { AppRunnerClient, DeleteAutoScalingConfigurationCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
28
28
  * // const { AppRunnerClient, DeleteAutoScalingConfigurationCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
29
29
  * const client = new AppRunnerClient(config);
30
+ * const input = { // DeleteAutoScalingConfigurationRequest
31
+ * AutoScalingConfigurationArn: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new DeleteAutoScalingConfigurationCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -27,6 +27,9 @@ export interface DeleteConnectionCommandOutput extends DeleteConnectionResponse,
27
27
  * import { AppRunnerClient, DeleteConnectionCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
28
28
  * // const { AppRunnerClient, DeleteConnectionCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
29
29
  * const client = new AppRunnerClient(config);
30
+ * const input = { // DeleteConnectionRequest
31
+ * ConnectionArn: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new DeleteConnectionCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -27,6 +27,9 @@ export interface DeleteObservabilityConfigurationCommandOutput extends DeleteObs
27
27
  * import { AppRunnerClient, DeleteObservabilityConfigurationCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
28
28
  * // const { AppRunnerClient, DeleteObservabilityConfigurationCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
29
29
  * const client = new AppRunnerClient(config);
30
+ * const input = { // DeleteObservabilityConfigurationRequest
31
+ * ObservabilityConfigurationArn: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new DeleteObservabilityConfigurationCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -32,6 +32,9 @@ export interface DeleteServiceCommandOutput extends DeleteServiceResponse, __Met
32
32
  * import { AppRunnerClient, DeleteServiceCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
33
33
  * // const { AppRunnerClient, DeleteServiceCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
34
34
  * const client = new AppRunnerClient(config);
35
+ * const input = { // DeleteServiceRequest
36
+ * ServiceArn: "STRING_VALUE", // required
37
+ * };
35
38
  * const command = new DeleteServiceCommand(input);
36
39
  * const response = await client.send(command);
37
40
  * ```
@@ -27,6 +27,9 @@ export interface DeleteVpcConnectorCommandOutput extends DeleteVpcConnectorRespo
27
27
  * import { AppRunnerClient, DeleteVpcConnectorCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
28
28
  * // const { AppRunnerClient, DeleteVpcConnectorCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
29
29
  * const client = new AppRunnerClient(config);
30
+ * const input = { // DeleteVpcConnectorRequest
31
+ * VpcConnectorArn: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new DeleteVpcConnectorCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -49,6 +49,9 @@ export interface DeleteVpcIngressConnectionCommandOutput extends DeleteVpcIngres
49
49
  * import { AppRunnerClient, DeleteVpcIngressConnectionCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
50
50
  * // const { AppRunnerClient, DeleteVpcIngressConnectionCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
51
51
  * const client = new AppRunnerClient(config);
52
+ * const input = { // DeleteVpcIngressConnectionRequest
53
+ * VpcIngressConnectionArn: "STRING_VALUE", // required
54
+ * };
52
55
  * const command = new DeleteVpcIngressConnectionCommand(input);
53
56
  * const response = await client.send(command);
54
57
  * ```
@@ -26,6 +26,9 @@ export interface DescribeAutoScalingConfigurationCommandOutput extends DescribeA
26
26
  * import { AppRunnerClient, DescribeAutoScalingConfigurationCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
27
27
  * // const { AppRunnerClient, DescribeAutoScalingConfigurationCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
28
28
  * const client = new AppRunnerClient(config);
29
+ * const input = { // DescribeAutoScalingConfigurationRequest
30
+ * AutoScalingConfigurationArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeAutoScalingConfigurationCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,11 @@ export interface DescribeCustomDomainsCommandOutput extends DescribeCustomDomain
26
26
  * import { AppRunnerClient, DescribeCustomDomainsCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
27
27
  * // const { AppRunnerClient, DescribeCustomDomainsCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
28
28
  * const client = new AppRunnerClient(config);
29
+ * const input = { // DescribeCustomDomainsRequest
30
+ * ServiceArn: "STRING_VALUE", // required
31
+ * NextToken: "STRING_VALUE",
32
+ * MaxResults: Number("int"),
33
+ * };
29
34
  * const command = new DescribeCustomDomainsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,9 @@ export interface DescribeObservabilityConfigurationCommandOutput extends Describ
26
26
  * import { AppRunnerClient, DescribeObservabilityConfigurationCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
27
27
  * // const { AppRunnerClient, DescribeObservabilityConfigurationCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
28
28
  * const client = new AppRunnerClient(config);
29
+ * const input = { // DescribeObservabilityConfigurationRequest
30
+ * ObservabilityConfigurationArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeObservabilityConfigurationCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface DescribeServiceCommandOutput extends DescribeServiceResponse, _
26
26
  * import { AppRunnerClient, DescribeServiceCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
27
27
  * // const { AppRunnerClient, DescribeServiceCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
28
28
  * const client = new AppRunnerClient(config);
29
+ * const input = { // DescribeServiceRequest
30
+ * ServiceArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeServiceCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface DescribeVpcConnectorCommandOutput extends DescribeVpcConnectorR
26
26
  * import { AppRunnerClient, DescribeVpcConnectorCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
27
27
  * // const { AppRunnerClient, DescribeVpcConnectorCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
28
28
  * const client = new AppRunnerClient(config);
29
+ * const input = { // DescribeVpcConnectorRequest
30
+ * VpcConnectorArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeVpcConnectorCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface DescribeVpcIngressConnectionCommandOutput extends DescribeVpcIn
26
26
  * import { AppRunnerClient, DescribeVpcIngressConnectionCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
27
27
  * // const { AppRunnerClient, DescribeVpcIngressConnectionCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
28
28
  * const client = new AppRunnerClient(config);
29
+ * const input = { // DescribeVpcIngressConnectionRequest
30
+ * VpcIngressConnectionArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeVpcIngressConnectionCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -29,6 +29,10 @@ export interface DisassociateCustomDomainCommandOutput extends DisassociateCusto
29
29
  * import { AppRunnerClient, DisassociateCustomDomainCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
30
30
  * // const { AppRunnerClient, DisassociateCustomDomainCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
31
31
  * const client = new AppRunnerClient(config);
32
+ * const input = { // DisassociateCustomDomainRequest
33
+ * ServiceArn: "STRING_VALUE", // required
34
+ * DomainName: "STRING_VALUE", // required
35
+ * };
32
36
  * const command = new DisassociateCustomDomainCommand(input);
33
37
  * const response = await client.send(command);
34
38
  * ```
@@ -30,6 +30,12 @@ export interface ListAutoScalingConfigurationsCommandOutput extends ListAutoScal
30
30
  * import { AppRunnerClient, ListAutoScalingConfigurationsCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
31
31
  * // const { AppRunnerClient, ListAutoScalingConfigurationsCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
32
32
  * const client = new AppRunnerClient(config);
33
+ * const input = { // ListAutoScalingConfigurationsRequest
34
+ * AutoScalingConfigurationName: "STRING_VALUE",
35
+ * LatestOnly: true || false,
36
+ * MaxResults: Number("int"),
37
+ * NextToken: "STRING_VALUE",
38
+ * };
33
39
  * const command = new ListAutoScalingConfigurationsCommand(input);
34
40
  * const response = await client.send(command);
35
41
  * ```
@@ -26,6 +26,11 @@ export interface ListConnectionsCommandOutput extends ListConnectionsResponse, _
26
26
  * import { AppRunnerClient, ListConnectionsCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
27
27
  * // const { AppRunnerClient, ListConnectionsCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
28
28
  * const client = new AppRunnerClient(config);
29
+ * const input = { // ListConnectionsRequest
30
+ * ConnectionName: "STRING_VALUE",
31
+ * MaxResults: Number("int"),
32
+ * NextToken: "STRING_VALUE",
33
+ * };
29
34
  * const command = new ListConnectionsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -30,6 +30,12 @@ export interface ListObservabilityConfigurationsCommandOutput extends ListObserv
30
30
  * import { AppRunnerClient, ListObservabilityConfigurationsCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
31
31
  * // const { AppRunnerClient, ListObservabilityConfigurationsCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
32
32
  * const client = new AppRunnerClient(config);
33
+ * const input = { // ListObservabilityConfigurationsRequest
34
+ * ObservabilityConfigurationName: "STRING_VALUE",
35
+ * LatestOnly: true || false,
36
+ * MaxResults: Number("int"),
37
+ * NextToken: "STRING_VALUE",
38
+ * };
33
39
  * const command = new ListObservabilityConfigurationsCommand(input);
34
40
  * const response = await client.send(command);
35
41
  * ```
@@ -28,6 +28,11 @@ export interface ListOperationsCommandOutput extends ListOperationsResponse, __M
28
28
  * import { AppRunnerClient, ListOperationsCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
29
29
  * // const { AppRunnerClient, ListOperationsCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
30
30
  * const client = new AppRunnerClient(config);
31
+ * const input = { // ListOperationsRequest
32
+ * ServiceArn: "STRING_VALUE", // required
33
+ * NextToken: "STRING_VALUE",
34
+ * MaxResults: Number("int"),
35
+ * };
31
36
  * const command = new ListOperationsCommand(input);
32
37
  * const response = await client.send(command);
33
38
  * ```
@@ -26,6 +26,10 @@ export interface ListServicesCommandOutput extends ListServicesResponse, __Metad
26
26
  * import { AppRunnerClient, ListServicesCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
27
27
  * // const { AppRunnerClient, ListServicesCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
28
28
  * const client = new AppRunnerClient(config);
29
+ * const input = { // ListServicesRequest
30
+ * NextToken: "STRING_VALUE",
31
+ * MaxResults: Number("int"),
32
+ * };
29
33
  * const command = new ListServicesCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { AppRunnerClient, ListTagsForResourceCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
27
27
  * // const { AppRunnerClient, ListTagsForResourceCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
28
28
  * const client = new AppRunnerClient(config);
29
+ * const input = { // ListTagsForResourceRequest
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new ListTagsForResourceCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,10 @@ export interface ListVpcConnectorsCommandOutput extends ListVpcConnectorsRespons
26
26
  * import { AppRunnerClient, ListVpcConnectorsCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
27
27
  * // const { AppRunnerClient, ListVpcConnectorsCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
28
28
  * const client = new AppRunnerClient(config);
29
+ * const input = { // ListVpcConnectorsRequest
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * };
29
33
  * const command = new ListVpcConnectorsCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,14 @@ export interface ListVpcIngressConnectionsCommandOutput extends ListVpcIngressCo
26
26
  * import { AppRunnerClient, ListVpcIngressConnectionsCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
27
27
  * // const { AppRunnerClient, ListVpcIngressConnectionsCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
28
28
  * const client = new AppRunnerClient(config);
29
+ * const input = { // ListVpcIngressConnectionsRequest
30
+ * Filter: { // ListVpcIngressConnectionsFilter
31
+ * ServiceArn: "STRING_VALUE",
32
+ * VpcEndpointId: "STRING_VALUE",
33
+ * },
34
+ * MaxResults: Number("int"),
35
+ * NextToken: "STRING_VALUE",
36
+ * };
29
37
  * const command = new ListVpcIngressConnectionsCommand(input);
30
38
  * const response = await client.send(command);
31
39
  * ```
@@ -29,6 +29,9 @@ export interface PauseServiceCommandOutput extends PauseServiceResponse, __Metad
29
29
  * import { AppRunnerClient, PauseServiceCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
30
30
  * // const { AppRunnerClient, PauseServiceCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
31
31
  * const client = new AppRunnerClient(config);
32
+ * const input = { // PauseServiceRequest
33
+ * ServiceArn: "STRING_VALUE", // required
34
+ * };
32
35
  * const command = new PauseServiceCommand(input);
33
36
  * const response = await client.send(command);
34
37
  * ```
@@ -28,6 +28,9 @@ export interface ResumeServiceCommandOutput extends ResumeServiceResponse, __Met
28
28
  * import { AppRunnerClient, ResumeServiceCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
29
29
  * // const { AppRunnerClient, ResumeServiceCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
30
30
  * const client = new AppRunnerClient(config);
31
+ * const input = { // ResumeServiceRequest
32
+ * ServiceArn: "STRING_VALUE", // required
33
+ * };
31
34
  * const command = new ResumeServiceCommand(input);
32
35
  * const response = await client.send(command);
33
36
  * ```
@@ -31,6 +31,9 @@ export interface StartDeploymentCommandOutput extends StartDeploymentResponse, _
31
31
  * import { AppRunnerClient, StartDeploymentCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
32
32
  * // const { AppRunnerClient, StartDeploymentCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
33
33
  * const client = new AppRunnerClient(config);
34
+ * const input = { // StartDeploymentRequest
35
+ * ServiceArn: "STRING_VALUE", // required
36
+ * };
34
37
  * const command = new StartDeploymentCommand(input);
35
38
  * const response = await client.send(command);
36
39
  * ```
@@ -26,6 +26,15 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
26
26
  * import { AppRunnerClient, TagResourceCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
27
27
  * // const { AppRunnerClient, TagResourceCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
28
28
  * const client = new AppRunnerClient(config);
29
+ * const input = { // TagResourceRequest
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * Tags: [ // TagList // required
32
+ * { // Tag
33
+ * Key: "STRING_VALUE",
34
+ * Value: "STRING_VALUE",
35
+ * },
36
+ * ],
37
+ * };
29
38
  * const command = new TagResourceCommand(input);
30
39
  * const response = await client.send(command);
31
40
  * ```
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { AppRunnerClient, UntagResourceCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
27
27
  * // const { AppRunnerClient, UntagResourceCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
28
28
  * const client = new AppRunnerClient(config);
29
+ * const input = { // UntagResourceRequest
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * TagKeys: [ // TagKeyList // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
29
35
  * const command = new UntagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -31,6 +31,79 @@ export interface UpdateServiceCommandOutput extends UpdateServiceResponse, __Met
31
31
  * import { AppRunnerClient, UpdateServiceCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
32
32
  * // const { AppRunnerClient, UpdateServiceCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
33
33
  * const client = new AppRunnerClient(config);
34
+ * const input = { // UpdateServiceRequest
35
+ * ServiceArn: "STRING_VALUE", // required
36
+ * SourceConfiguration: { // SourceConfiguration
37
+ * CodeRepository: { // CodeRepository
38
+ * RepositoryUrl: "STRING_VALUE", // required
39
+ * SourceCodeVersion: { // SourceCodeVersion
40
+ * Type: "BRANCH", // required
41
+ * Value: "STRING_VALUE", // required
42
+ * },
43
+ * CodeConfiguration: { // CodeConfiguration
44
+ * ConfigurationSource: "REPOSITORY" || "API", // required
45
+ * CodeConfigurationValues: { // CodeConfigurationValues
46
+ * Runtime: "PYTHON_3" || "NODEJS_12" || "NODEJS_14" || "CORRETTO_8" || "CORRETTO_11" || "NODEJS_16" || "GO_1" || "DOTNET_6" || "PHP_81" || "RUBY_31", // required
47
+ * BuildCommand: "STRING_VALUE",
48
+ * StartCommand: "STRING_VALUE",
49
+ * Port: "STRING_VALUE",
50
+ * RuntimeEnvironmentVariables: { // RuntimeEnvironmentVariables
51
+ * "<keys>": "STRING_VALUE",
52
+ * },
53
+ * RuntimeEnvironmentSecrets: { // RuntimeEnvironmentSecrets
54
+ * "<keys>": "STRING_VALUE",
55
+ * },
56
+ * },
57
+ * },
58
+ * },
59
+ * ImageRepository: { // ImageRepository
60
+ * ImageIdentifier: "STRING_VALUE", // required
61
+ * ImageConfiguration: { // ImageConfiguration
62
+ * RuntimeEnvironmentVariables: {
63
+ * "<keys>": "STRING_VALUE",
64
+ * },
65
+ * StartCommand: "STRING_VALUE",
66
+ * Port: "STRING_VALUE",
67
+ * RuntimeEnvironmentSecrets: {
68
+ * "<keys>": "STRING_VALUE",
69
+ * },
70
+ * },
71
+ * ImageRepositoryType: "ECR" || "ECR_PUBLIC", // required
72
+ * },
73
+ * AutoDeploymentsEnabled: true || false,
74
+ * AuthenticationConfiguration: { // AuthenticationConfiguration
75
+ * ConnectionArn: "STRING_VALUE",
76
+ * AccessRoleArn: "STRING_VALUE",
77
+ * },
78
+ * },
79
+ * InstanceConfiguration: { // InstanceConfiguration
80
+ * Cpu: "STRING_VALUE",
81
+ * Memory: "STRING_VALUE",
82
+ * InstanceRoleArn: "STRING_VALUE",
83
+ * },
84
+ * AutoScalingConfigurationArn: "STRING_VALUE",
85
+ * HealthCheckConfiguration: { // HealthCheckConfiguration
86
+ * Protocol: "TCP" || "HTTP",
87
+ * Path: "STRING_VALUE",
88
+ * Interval: Number("int"),
89
+ * Timeout: Number("int"),
90
+ * HealthyThreshold: Number("int"),
91
+ * UnhealthyThreshold: Number("int"),
92
+ * },
93
+ * NetworkConfiguration: { // NetworkConfiguration
94
+ * EgressConfiguration: { // EgressConfiguration
95
+ * EgressType: "DEFAULT" || "VPC",
96
+ * VpcConnectorArn: "STRING_VALUE",
97
+ * },
98
+ * IngressConfiguration: { // IngressConfiguration
99
+ * IsPubliclyAccessible: true || false,
100
+ * },
101
+ * },
102
+ * ObservabilityConfiguration: { // ServiceObservabilityConfiguration
103
+ * ObservabilityEnabled: true || false, // required
104
+ * ObservabilityConfigurationArn: "STRING_VALUE",
105
+ * },
106
+ * };
34
107
  * const command = new UpdateServiceCommand(input);
35
108
  * const response = await client.send(command);
36
109
  * ```
@@ -43,6 +43,13 @@ export interface UpdateVpcIngressConnectionCommandOutput extends UpdateVpcIngres
43
43
  * import { AppRunnerClient, UpdateVpcIngressConnectionCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
44
44
  * // const { AppRunnerClient, UpdateVpcIngressConnectionCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
45
45
  * const client = new AppRunnerClient(config);
46
+ * const input = { // UpdateVpcIngressConnectionRequest
47
+ * VpcIngressConnectionArn: "STRING_VALUE", // required
48
+ * IngressVpcConfiguration: { // IngressVpcConfiguration
49
+ * VpcId: "STRING_VALUE",
50
+ * VpcEndpointId: "STRING_VALUE",
51
+ * },
52
+ * };
46
53
  * const command = new UpdateVpcIngressConnectionCommand(input);
47
54
  * const response = await client.send(command);
48
55
  * ```
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.299.0",
4
+ "version": "3.301.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.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",
@@ -32,12 +32,12 @@
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
37
  "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.299.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0"
57
57
  },