@aws-sdk/client-apprunner 3.325.0 → 3.326.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 +27 -0
  2. package/dist-types/commands/CreateAutoScalingConfigurationCommand.d.ts +17 -0
  3. package/dist-types/commands/CreateConnectionCommand.d.ts +12 -0
  4. package/dist-types/commands/CreateObservabilityConfigurationCommand.d.ts +17 -0
  5. package/dist-types/commands/CreateServiceCommand.d.ts +93 -0
  6. package/dist-types/commands/CreateVpcConnectorCommand.d.ts +19 -0
  7. package/dist-types/commands/CreateVpcIngressConnectionCommand.d.ts +19 -0
  8. package/dist-types/commands/DeleteAutoScalingConfigurationCommand.d.ts +17 -0
  9. package/dist-types/commands/DeleteConnectionCommand.d.ts +12 -0
  10. package/dist-types/commands/DeleteObservabilityConfigurationCommand.d.ts +17 -0
  11. package/dist-types/commands/DeleteServiceCommand.d.ts +93 -0
  12. package/dist-types/commands/DeleteVpcConnectorCommand.d.ts +19 -0
  13. package/dist-types/commands/DeleteVpcIngressConnectionCommand.d.ts +19 -0
  14. package/dist-types/commands/DescribeAutoScalingConfigurationCommand.d.ts +17 -0
  15. package/dist-types/commands/DescribeCustomDomainsCommand.d.ts +30 -0
  16. package/dist-types/commands/DescribeObservabilityConfigurationCommand.d.ts +17 -0
  17. package/dist-types/commands/DescribeServiceCommand.d.ts +92 -0
  18. package/dist-types/commands/DescribeVpcConnectorCommand.d.ts +19 -0
  19. package/dist-types/commands/DescribeVpcIngressConnectionCommand.d.ts +19 -0
  20. package/dist-types/commands/DisassociateCustomDomainCommand.d.ts +27 -0
  21. package/dist-types/commands/ListAutoScalingConfigurationsCommand.d.ts +13 -0
  22. package/dist-types/commands/ListConnectionsCommand.d.ts +15 -0
  23. package/dist-types/commands/ListObservabilityConfigurationsCommand.d.ts +13 -0
  24. package/dist-types/commands/ListOperationsCommand.d.ts +17 -0
  25. package/dist-types/commands/ListServicesCommand.d.ts +17 -0
  26. package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
  27. package/dist-types/commands/ListVpcConnectorsCommand.d.ts +22 -0
  28. package/dist-types/commands/ListVpcIngressConnectionsCommand.d.ts +12 -0
  29. package/dist-types/commands/PauseServiceCommand.d.ts +93 -0
  30. package/dist-types/commands/ResumeServiceCommand.d.ts +93 -0
  31. package/dist-types/commands/StartDeploymentCommand.d.ts +6 -0
  32. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  33. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  34. package/dist-types/commands/UpdateServiceCommand.d.ts +93 -0
  35. package/dist-types/commands/UpdateVpcIngressConnectionCommand.d.ts +19 -0
  36. package/package.json +3 -3
@@ -31,6 +31,21 @@ export interface DescribeObservabilityConfigurationCommandOutput extends Describ
31
31
  * };
32
32
  * const command = new DescribeObservabilityConfigurationCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DescribeObservabilityConfigurationResponse
35
+ * // ObservabilityConfiguration: { // ObservabilityConfiguration
36
+ * // ObservabilityConfigurationArn: "STRING_VALUE",
37
+ * // ObservabilityConfigurationName: "STRING_VALUE",
38
+ * // TraceConfiguration: { // TraceConfiguration
39
+ * // Vendor: "AWSXRAY", // required
40
+ * // },
41
+ * // ObservabilityConfigurationRevision: Number("int"),
42
+ * // Latest: true || false,
43
+ * // Status: "ACTIVE" || "INACTIVE",
44
+ * // CreatedAt: new Date("TIMESTAMP"),
45
+ * // DeletedAt: new Date("TIMESTAMP"),
46
+ * // },
47
+ * // };
48
+ *
34
49
  * ```
35
50
  *
36
51
  * @param DescribeObservabilityConfigurationCommandInput - {@link DescribeObservabilityConfigurationCommandInput}
@@ -48,6 +63,8 @@ export interface DescribeObservabilityConfigurationCommandOutput extends Describ
48
63
  * @throws {@link ResourceNotFoundException} (client fault)
49
64
  * <p>A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon Web Services account.</p>
50
65
  *
66
+ * @throws {@link AppRunnerServiceException}
67
+ * <p>Base exception class for all service exceptions from AppRunner service.</p>
51
68
  *
52
69
  */
53
70
  export declare class DescribeObservabilityConfigurationCommand extends $Command<DescribeObservabilityConfigurationCommandInput, DescribeObservabilityConfigurationCommandOutput, AppRunnerClientResolvedConfig> {
@@ -31,6 +31,96 @@ export interface DescribeServiceCommandOutput extends DescribeServiceResponse, _
31
31
  * };
32
32
  * const command = new DescribeServiceCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DescribeServiceResponse
35
+ * // Service: { // Service
36
+ * // ServiceName: "STRING_VALUE", // required
37
+ * // ServiceId: "STRING_VALUE", // required
38
+ * // ServiceArn: "STRING_VALUE", // required
39
+ * // ServiceUrl: "STRING_VALUE",
40
+ * // CreatedAt: new Date("TIMESTAMP"), // required
41
+ * // UpdatedAt: new Date("TIMESTAMP"), // required
42
+ * // DeletedAt: new Date("TIMESTAMP"),
43
+ * // Status: "CREATE_FAILED" || "RUNNING" || "DELETED" || "DELETE_FAILED" || "PAUSED" || "OPERATION_IN_PROGRESS", // required
44
+ * // SourceConfiguration: { // SourceConfiguration
45
+ * // CodeRepository: { // CodeRepository
46
+ * // RepositoryUrl: "STRING_VALUE", // required
47
+ * // SourceCodeVersion: { // SourceCodeVersion
48
+ * // Type: "BRANCH", // required
49
+ * // Value: "STRING_VALUE", // required
50
+ * // },
51
+ * // CodeConfiguration: { // CodeConfiguration
52
+ * // ConfigurationSource: "REPOSITORY" || "API", // required
53
+ * // CodeConfigurationValues: { // CodeConfigurationValues
54
+ * // Runtime: "PYTHON_3" || "NODEJS_12" || "NODEJS_14" || "CORRETTO_8" || "CORRETTO_11" || "NODEJS_16" || "GO_1" || "DOTNET_6" || "PHP_81" || "RUBY_31", // required
55
+ * // BuildCommand: "STRING_VALUE",
56
+ * // StartCommand: "STRING_VALUE",
57
+ * // Port: "STRING_VALUE",
58
+ * // RuntimeEnvironmentVariables: { // RuntimeEnvironmentVariables
59
+ * // "<keys>": "STRING_VALUE",
60
+ * // },
61
+ * // RuntimeEnvironmentSecrets: { // RuntimeEnvironmentSecrets
62
+ * // "<keys>": "STRING_VALUE",
63
+ * // },
64
+ * // },
65
+ * // },
66
+ * // },
67
+ * // ImageRepository: { // ImageRepository
68
+ * // ImageIdentifier: "STRING_VALUE", // required
69
+ * // ImageConfiguration: { // ImageConfiguration
70
+ * // RuntimeEnvironmentVariables: {
71
+ * // "<keys>": "STRING_VALUE",
72
+ * // },
73
+ * // StartCommand: "STRING_VALUE",
74
+ * // Port: "STRING_VALUE",
75
+ * // RuntimeEnvironmentSecrets: {
76
+ * // "<keys>": "STRING_VALUE",
77
+ * // },
78
+ * // },
79
+ * // ImageRepositoryType: "ECR" || "ECR_PUBLIC", // required
80
+ * // },
81
+ * // AutoDeploymentsEnabled: true || false,
82
+ * // AuthenticationConfiguration: { // AuthenticationConfiguration
83
+ * // ConnectionArn: "STRING_VALUE",
84
+ * // AccessRoleArn: "STRING_VALUE",
85
+ * // },
86
+ * // },
87
+ * // InstanceConfiguration: { // InstanceConfiguration
88
+ * // Cpu: "STRING_VALUE",
89
+ * // Memory: "STRING_VALUE",
90
+ * // InstanceRoleArn: "STRING_VALUE",
91
+ * // },
92
+ * // EncryptionConfiguration: { // EncryptionConfiguration
93
+ * // KmsKey: "STRING_VALUE", // required
94
+ * // },
95
+ * // HealthCheckConfiguration: { // HealthCheckConfiguration
96
+ * // Protocol: "TCP" || "HTTP",
97
+ * // Path: "STRING_VALUE",
98
+ * // Interval: Number("int"),
99
+ * // Timeout: Number("int"),
100
+ * // HealthyThreshold: Number("int"),
101
+ * // UnhealthyThreshold: Number("int"),
102
+ * // },
103
+ * // AutoScalingConfigurationSummary: { // AutoScalingConfigurationSummary
104
+ * // AutoScalingConfigurationArn: "STRING_VALUE",
105
+ * // AutoScalingConfigurationName: "STRING_VALUE",
106
+ * // AutoScalingConfigurationRevision: Number("int"),
107
+ * // },
108
+ * // NetworkConfiguration: { // NetworkConfiguration
109
+ * // EgressConfiguration: { // EgressConfiguration
110
+ * // EgressType: "DEFAULT" || "VPC",
111
+ * // VpcConnectorArn: "STRING_VALUE",
112
+ * // },
113
+ * // IngressConfiguration: { // IngressConfiguration
114
+ * // IsPubliclyAccessible: true || false,
115
+ * // },
116
+ * // },
117
+ * // ObservabilityConfiguration: { // ServiceObservabilityConfiguration
118
+ * // ObservabilityEnabled: true || false, // required
119
+ * // ObservabilityConfigurationArn: "STRING_VALUE",
120
+ * // },
121
+ * // },
122
+ * // };
123
+ *
34
124
  * ```
35
125
  *
36
126
  * @param DescribeServiceCommandInput - {@link DescribeServiceCommandInput}
@@ -48,6 +138,8 @@ export interface DescribeServiceCommandOutput extends DescribeServiceResponse, _
48
138
  * @throws {@link ResourceNotFoundException} (client fault)
49
139
  * <p>A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon Web Services account.</p>
50
140
  *
141
+ * @throws {@link AppRunnerServiceException}
142
+ * <p>Base exception class for all service exceptions from AppRunner service.</p>
51
143
  *
52
144
  */
53
145
  export declare class DescribeServiceCommand extends $Command<DescribeServiceCommandInput, DescribeServiceCommandOutput, AppRunnerClientResolvedConfig> {
@@ -31,6 +31,23 @@ export interface DescribeVpcConnectorCommandOutput extends DescribeVpcConnectorR
31
31
  * };
32
32
  * const command = new DescribeVpcConnectorCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DescribeVpcConnectorResponse
35
+ * // VpcConnector: { // VpcConnector
36
+ * // VpcConnectorName: "STRING_VALUE",
37
+ * // VpcConnectorArn: "STRING_VALUE",
38
+ * // VpcConnectorRevision: Number("int"),
39
+ * // Subnets: [ // StringList
40
+ * // "STRING_VALUE",
41
+ * // ],
42
+ * // SecurityGroups: [
43
+ * // "STRING_VALUE",
44
+ * // ],
45
+ * // Status: "ACTIVE" || "INACTIVE",
46
+ * // CreatedAt: new Date("TIMESTAMP"),
47
+ * // DeletedAt: new Date("TIMESTAMP"),
48
+ * // },
49
+ * // };
50
+ *
34
51
  * ```
35
52
  *
36
53
  * @param DescribeVpcConnectorCommandInput - {@link DescribeVpcConnectorCommandInput}
@@ -48,6 +65,8 @@ export interface DescribeVpcConnectorCommandOutput extends DescribeVpcConnectorR
48
65
  * @throws {@link ResourceNotFoundException} (client fault)
49
66
  * <p>A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon Web Services account.</p>
50
67
  *
68
+ * @throws {@link AppRunnerServiceException}
69
+ * <p>Base exception class for all service exceptions from AppRunner service.</p>
51
70
  *
52
71
  */
53
72
  export declare class DescribeVpcConnectorCommand extends $Command<DescribeVpcConnectorCommandInput, DescribeVpcConnectorCommandOutput, AppRunnerClientResolvedConfig> {
@@ -31,6 +31,23 @@ export interface DescribeVpcIngressConnectionCommandOutput extends DescribeVpcIn
31
31
  * };
32
32
  * const command = new DescribeVpcIngressConnectionCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DescribeVpcIngressConnectionResponse
35
+ * // VpcIngressConnection: { // VpcIngressConnection
36
+ * // VpcIngressConnectionArn: "STRING_VALUE",
37
+ * // VpcIngressConnectionName: "STRING_VALUE",
38
+ * // ServiceArn: "STRING_VALUE",
39
+ * // Status: "AVAILABLE" || "PENDING_CREATION" || "PENDING_UPDATE" || "PENDING_DELETION" || "FAILED_CREATION" || "FAILED_UPDATE" || "FAILED_DELETION" || "DELETED",
40
+ * // AccountId: "STRING_VALUE",
41
+ * // DomainName: "STRING_VALUE",
42
+ * // IngressVpcConfiguration: { // IngressVpcConfiguration
43
+ * // VpcId: "STRING_VALUE",
44
+ * // VpcEndpointId: "STRING_VALUE",
45
+ * // },
46
+ * // CreatedAt: new Date("TIMESTAMP"),
47
+ * // DeletedAt: new Date("TIMESTAMP"),
48
+ * // },
49
+ * // };
50
+ *
34
51
  * ```
35
52
  *
36
53
  * @param DescribeVpcIngressConnectionCommandInput - {@link DescribeVpcIngressConnectionCommandInput}
@@ -48,6 +65,8 @@ export interface DescribeVpcIngressConnectionCommandOutput extends DescribeVpcIn
48
65
  * @throws {@link ResourceNotFoundException} (client fault)
49
66
  * <p>A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon Web Services account.</p>
50
67
  *
68
+ * @throws {@link AppRunnerServiceException}
69
+ * <p>Base exception class for all service exceptions from AppRunner service.</p>
51
70
  *
52
71
  */
53
72
  export declare class DescribeVpcIngressConnectionCommand extends $Command<DescribeVpcIngressConnectionCommandInput, DescribeVpcIngressConnectionCommandOutput, AppRunnerClientResolvedConfig> {
@@ -35,6 +35,31 @@ export interface DisassociateCustomDomainCommandOutput extends DisassociateCusto
35
35
  * };
36
36
  * const command = new DisassociateCustomDomainCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // DisassociateCustomDomainResponse
39
+ * // DNSTarget: "STRING_VALUE", // required
40
+ * // ServiceArn: "STRING_VALUE", // required
41
+ * // CustomDomain: { // CustomDomain
42
+ * // DomainName: "STRING_VALUE", // required
43
+ * // EnableWWWSubdomain: true || false, // required
44
+ * // CertificateValidationRecords: [ // CertificateValidationRecordList
45
+ * // { // CertificateValidationRecord
46
+ * // Name: "STRING_VALUE",
47
+ * // Type: "STRING_VALUE",
48
+ * // Value: "STRING_VALUE",
49
+ * // Status: "PENDING_VALIDATION" || "SUCCESS" || "FAILED",
50
+ * // },
51
+ * // ],
52
+ * // Status: "CREATING" || "CREATE_FAILED" || "ACTIVE" || "DELETING" || "DELETE_FAILED" || "PENDING_CERTIFICATE_DNS_VALIDATION" || "BINDING_CERTIFICATE", // required
53
+ * // },
54
+ * // VpcDNSTargets: [ // VpcDNSTargetList // required
55
+ * // { // VpcDNSTarget
56
+ * // VpcIngressConnectionArn: "STRING_VALUE",
57
+ * // VpcId: "STRING_VALUE",
58
+ * // DomainName: "STRING_VALUE",
59
+ * // },
60
+ * // ],
61
+ * // };
62
+ *
38
63
  * ```
39
64
  *
40
65
  * @param DisassociateCustomDomainCommandInput - {@link DisassociateCustomDomainCommandInput}
@@ -55,6 +80,8 @@ export interface DisassociateCustomDomainCommandOutput extends DisassociateCusto
55
80
  * @throws {@link ResourceNotFoundException} (client fault)
56
81
  * <p>A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon Web Services account.</p>
57
82
  *
83
+ * @throws {@link AppRunnerServiceException}
84
+ * <p>Base exception class for all service exceptions from AppRunner service.</p>
58
85
  *
59
86
  */
60
87
  export declare class DisassociateCustomDomainCommand extends $Command<DisassociateCustomDomainCommandInput, DisassociateCustomDomainCommandOutput, AppRunnerClientResolvedConfig> {
@@ -38,6 +38,17 @@ export interface ListAutoScalingConfigurationsCommandOutput extends ListAutoScal
38
38
  * };
39
39
  * const command = new ListAutoScalingConfigurationsCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // ListAutoScalingConfigurationsResponse
42
+ * // AutoScalingConfigurationSummaryList: [ // AutoScalingConfigurationSummaryList // required
43
+ * // { // AutoScalingConfigurationSummary
44
+ * // AutoScalingConfigurationArn: "STRING_VALUE",
45
+ * // AutoScalingConfigurationName: "STRING_VALUE",
46
+ * // AutoScalingConfigurationRevision: Number("int"),
47
+ * // },
48
+ * // ],
49
+ * // NextToken: "STRING_VALUE",
50
+ * // };
51
+ *
41
52
  * ```
42
53
  *
43
54
  * @param ListAutoScalingConfigurationsCommandInput - {@link ListAutoScalingConfigurationsCommandInput}
@@ -52,6 +63,8 @@ export interface ListAutoScalingConfigurationsCommandOutput extends ListAutoScal
52
63
  * @throws {@link InvalidRequestException} (client fault)
53
64
  * <p>One or more input parameters aren't valid. Refer to the API action's document page, correct the input parameters, and try the action again.</p>
54
65
  *
66
+ * @throws {@link AppRunnerServiceException}
67
+ * <p>Base exception class for all service exceptions from AppRunner service.</p>
55
68
  *
56
69
  */
57
70
  export declare class ListAutoScalingConfigurationsCommand extends $Command<ListAutoScalingConfigurationsCommandInput, ListAutoScalingConfigurationsCommandOutput, AppRunnerClientResolvedConfig> {
@@ -33,6 +33,19 @@ export interface ListConnectionsCommandOutput extends ListConnectionsResponse, _
33
33
  * };
34
34
  * const command = new ListConnectionsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListConnectionsResponse
37
+ * // ConnectionSummaryList: [ // ConnectionSummaryList // required
38
+ * // { // ConnectionSummary
39
+ * // ConnectionName: "STRING_VALUE",
40
+ * // ConnectionArn: "STRING_VALUE",
41
+ * // ProviderType: "GITHUB",
42
+ * // Status: "PENDING_HANDSHAKE" || "AVAILABLE" || "ERROR" || "DELETED",
43
+ * // CreatedAt: new Date("TIMESTAMP"),
44
+ * // },
45
+ * // ],
46
+ * // NextToken: "STRING_VALUE",
47
+ * // };
48
+ *
36
49
  * ```
37
50
  *
38
51
  * @param ListConnectionsCommandInput - {@link ListConnectionsCommandInput}
@@ -47,6 +60,8 @@ export interface ListConnectionsCommandOutput extends ListConnectionsResponse, _
47
60
  * @throws {@link InvalidRequestException} (client fault)
48
61
  * <p>One or more input parameters aren't valid. Refer to the API action's document page, correct the input parameters, and try the action again.</p>
49
62
  *
63
+ * @throws {@link AppRunnerServiceException}
64
+ * <p>Base exception class for all service exceptions from AppRunner service.</p>
50
65
  *
51
66
  */
52
67
  export declare class ListConnectionsCommand extends $Command<ListConnectionsCommandInput, ListConnectionsCommandOutput, AppRunnerClientResolvedConfig> {
@@ -38,6 +38,17 @@ export interface ListObservabilityConfigurationsCommandOutput extends ListObserv
38
38
  * };
39
39
  * const command = new ListObservabilityConfigurationsCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // ListObservabilityConfigurationsResponse
42
+ * // ObservabilityConfigurationSummaryList: [ // ObservabilityConfigurationSummaryList // required
43
+ * // { // ObservabilityConfigurationSummary
44
+ * // ObservabilityConfigurationArn: "STRING_VALUE",
45
+ * // ObservabilityConfigurationName: "STRING_VALUE",
46
+ * // ObservabilityConfigurationRevision: Number("int"),
47
+ * // },
48
+ * // ],
49
+ * // NextToken: "STRING_VALUE",
50
+ * // };
51
+ *
41
52
  * ```
42
53
  *
43
54
  * @param ListObservabilityConfigurationsCommandInput - {@link ListObservabilityConfigurationsCommandInput}
@@ -52,6 +63,8 @@ export interface ListObservabilityConfigurationsCommandOutput extends ListObserv
52
63
  * @throws {@link InvalidRequestException} (client fault)
53
64
  * <p>One or more input parameters aren't valid. Refer to the API action's document page, correct the input parameters, and try the action again.</p>
54
65
  *
66
+ * @throws {@link AppRunnerServiceException}
67
+ * <p>Base exception class for all service exceptions from AppRunner service.</p>
55
68
  *
56
69
  */
57
70
  export declare class ListObservabilityConfigurationsCommand extends $Command<ListObservabilityConfigurationsCommandInput, ListObservabilityConfigurationsCommandOutput, AppRunnerClientResolvedConfig> {
@@ -35,6 +35,21 @@ export interface ListOperationsCommandOutput extends ListOperationsResponse, __M
35
35
  * };
36
36
  * const command = new ListOperationsCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // ListOperationsResponse
39
+ * // OperationSummaryList: [ // OperationSummaryList
40
+ * // { // OperationSummary
41
+ * // Id: "STRING_VALUE",
42
+ * // Type: "START_DEPLOYMENT" || "CREATE_SERVICE" || "PAUSE_SERVICE" || "RESUME_SERVICE" || "DELETE_SERVICE" || "UPDATE_SERVICE",
43
+ * // Status: "PENDING" || "IN_PROGRESS" || "FAILED" || "SUCCEEDED" || "ROLLBACK_IN_PROGRESS" || "ROLLBACK_FAILED" || "ROLLBACK_SUCCEEDED",
44
+ * // TargetArn: "STRING_VALUE",
45
+ * // StartedAt: new Date("TIMESTAMP"),
46
+ * // EndedAt: new Date("TIMESTAMP"),
47
+ * // UpdatedAt: new Date("TIMESTAMP"),
48
+ * // },
49
+ * // ],
50
+ * // NextToken: "STRING_VALUE",
51
+ * // };
52
+ *
38
53
  * ```
39
54
  *
40
55
  * @param ListOperationsCommandInput - {@link ListOperationsCommandInput}
@@ -52,6 +67,8 @@ export interface ListOperationsCommandOutput extends ListOperationsResponse, __M
52
67
  * @throws {@link ResourceNotFoundException} (client fault)
53
68
  * <p>A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon Web Services account.</p>
54
69
  *
70
+ * @throws {@link AppRunnerServiceException}
71
+ * <p>Base exception class for all service exceptions from AppRunner service.</p>
55
72
  *
56
73
  */
57
74
  export declare class ListOperationsCommand extends $Command<ListOperationsCommandInput, ListOperationsCommandOutput, AppRunnerClientResolvedConfig> {
@@ -32,6 +32,21 @@ export interface ListServicesCommandOutput extends ListServicesResponse, __Metad
32
32
  * };
33
33
  * const command = new ListServicesCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // ListServicesResponse
36
+ * // ServiceSummaryList: [ // ServiceSummaryList // required
37
+ * // { // ServiceSummary
38
+ * // ServiceName: "STRING_VALUE",
39
+ * // ServiceId: "STRING_VALUE",
40
+ * // ServiceArn: "STRING_VALUE",
41
+ * // ServiceUrl: "STRING_VALUE",
42
+ * // CreatedAt: new Date("TIMESTAMP"),
43
+ * // UpdatedAt: new Date("TIMESTAMP"),
44
+ * // Status: "CREATE_FAILED" || "RUNNING" || "DELETED" || "DELETE_FAILED" || "PAUSED" || "OPERATION_IN_PROGRESS",
45
+ * // },
46
+ * // ],
47
+ * // NextToken: "STRING_VALUE",
48
+ * // };
49
+ *
35
50
  * ```
36
51
  *
37
52
  * @param ListServicesCommandInput - {@link ListServicesCommandInput}
@@ -46,6 +61,8 @@ export interface ListServicesCommandOutput extends ListServicesResponse, __Metad
46
61
  * @throws {@link InvalidRequestException} (client fault)
47
62
  * <p>One or more input parameters aren't valid. Refer to the API action's document page, correct the input parameters, and try the action again.</p>
48
63
  *
64
+ * @throws {@link AppRunnerServiceException}
65
+ * <p>Base exception class for all service exceptions from AppRunner service.</p>
49
66
  *
50
67
  */
51
68
  export declare class ListServicesCommand extends $Command<ListServicesCommandInput, ListServicesCommandOutput, AppRunnerClientResolvedConfig> {
@@ -31,6 +31,15 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // ListTagsForResourceResponse
35
+ * // Tags: [ // TagList
36
+ * // { // Tag
37
+ * // Key: "STRING_VALUE",
38
+ * // Value: "STRING_VALUE",
39
+ * // },
40
+ * // ],
41
+ * // };
42
+ *
34
43
  * ```
35
44
  *
36
45
  * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
@@ -51,6 +60,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
51
60
  * @throws {@link ResourceNotFoundException} (client fault)
52
61
  * <p>A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon Web Services account.</p>
53
62
  *
63
+ * @throws {@link AppRunnerServiceException}
64
+ * <p>Base exception class for all service exceptions from AppRunner service.</p>
54
65
  *
55
66
  */
56
67
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, AppRunnerClientResolvedConfig> {
@@ -32,6 +32,26 @@ export interface ListVpcConnectorsCommandOutput extends ListVpcConnectorsRespons
32
32
  * };
33
33
  * const command = new ListVpcConnectorsCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // ListVpcConnectorsResponse
36
+ * // VpcConnectors: [ // VpcConnectors // required
37
+ * // { // VpcConnector
38
+ * // VpcConnectorName: "STRING_VALUE",
39
+ * // VpcConnectorArn: "STRING_VALUE",
40
+ * // VpcConnectorRevision: Number("int"),
41
+ * // Subnets: [ // StringList
42
+ * // "STRING_VALUE",
43
+ * // ],
44
+ * // SecurityGroups: [
45
+ * // "STRING_VALUE",
46
+ * // ],
47
+ * // Status: "ACTIVE" || "INACTIVE",
48
+ * // CreatedAt: new Date("TIMESTAMP"),
49
+ * // DeletedAt: new Date("TIMESTAMP"),
50
+ * // },
51
+ * // ],
52
+ * // NextToken: "STRING_VALUE",
53
+ * // };
54
+ *
35
55
  * ```
36
56
  *
37
57
  * @param ListVpcConnectorsCommandInput - {@link ListVpcConnectorsCommandInput}
@@ -46,6 +66,8 @@ export interface ListVpcConnectorsCommandOutput extends ListVpcConnectorsRespons
46
66
  * @throws {@link InvalidRequestException} (client fault)
47
67
  * <p>One or more input parameters aren't valid. Refer to the API action's document page, correct the input parameters, and try the action again.</p>
48
68
  *
69
+ * @throws {@link AppRunnerServiceException}
70
+ * <p>Base exception class for all service exceptions from AppRunner service.</p>
49
71
  *
50
72
  */
51
73
  export declare class ListVpcConnectorsCommand extends $Command<ListVpcConnectorsCommandInput, ListVpcConnectorsCommandOutput, AppRunnerClientResolvedConfig> {
@@ -36,6 +36,16 @@ export interface ListVpcIngressConnectionsCommandOutput extends ListVpcIngressCo
36
36
  * };
37
37
  * const command = new ListVpcIngressConnectionsCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListVpcIngressConnectionsResponse
40
+ * // VpcIngressConnectionSummaryList: [ // VpcIngressConnectionSummaryList // required
41
+ * // { // VpcIngressConnectionSummary
42
+ * // VpcIngressConnectionArn: "STRING_VALUE",
43
+ * // ServiceArn: "STRING_VALUE",
44
+ * // },
45
+ * // ],
46
+ * // NextToken: "STRING_VALUE",
47
+ * // };
48
+ *
39
49
  * ```
40
50
  *
41
51
  * @param ListVpcIngressConnectionsCommandInput - {@link ListVpcIngressConnectionsCommandInput}
@@ -50,6 +60,8 @@ export interface ListVpcIngressConnectionsCommandOutput extends ListVpcIngressCo
50
60
  * @throws {@link InvalidRequestException} (client fault)
51
61
  * <p>One or more input parameters aren't valid. Refer to the API action's document page, correct the input parameters, and try the action again.</p>
52
62
  *
63
+ * @throws {@link AppRunnerServiceException}
64
+ * <p>Base exception class for all service exceptions from AppRunner service.</p>
53
65
  *
54
66
  */
55
67
  export declare class ListVpcIngressConnectionsCommand extends $Command<ListVpcIngressConnectionsCommandInput, ListVpcIngressConnectionsCommandOutput, AppRunnerClientResolvedConfig> {
@@ -34,6 +34,97 @@ export interface PauseServiceCommandOutput extends PauseServiceResponse, __Metad
34
34
  * };
35
35
  * const command = new PauseServiceCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // PauseServiceResponse
38
+ * // Service: { // Service
39
+ * // ServiceName: "STRING_VALUE", // required
40
+ * // ServiceId: "STRING_VALUE", // required
41
+ * // ServiceArn: "STRING_VALUE", // required
42
+ * // ServiceUrl: "STRING_VALUE",
43
+ * // CreatedAt: new Date("TIMESTAMP"), // required
44
+ * // UpdatedAt: new Date("TIMESTAMP"), // required
45
+ * // DeletedAt: new Date("TIMESTAMP"),
46
+ * // Status: "CREATE_FAILED" || "RUNNING" || "DELETED" || "DELETE_FAILED" || "PAUSED" || "OPERATION_IN_PROGRESS", // required
47
+ * // SourceConfiguration: { // SourceConfiguration
48
+ * // CodeRepository: { // CodeRepository
49
+ * // RepositoryUrl: "STRING_VALUE", // required
50
+ * // SourceCodeVersion: { // SourceCodeVersion
51
+ * // Type: "BRANCH", // required
52
+ * // Value: "STRING_VALUE", // required
53
+ * // },
54
+ * // CodeConfiguration: { // CodeConfiguration
55
+ * // ConfigurationSource: "REPOSITORY" || "API", // required
56
+ * // CodeConfigurationValues: { // CodeConfigurationValues
57
+ * // Runtime: "PYTHON_3" || "NODEJS_12" || "NODEJS_14" || "CORRETTO_8" || "CORRETTO_11" || "NODEJS_16" || "GO_1" || "DOTNET_6" || "PHP_81" || "RUBY_31", // required
58
+ * // BuildCommand: "STRING_VALUE",
59
+ * // StartCommand: "STRING_VALUE",
60
+ * // Port: "STRING_VALUE",
61
+ * // RuntimeEnvironmentVariables: { // RuntimeEnvironmentVariables
62
+ * // "<keys>": "STRING_VALUE",
63
+ * // },
64
+ * // RuntimeEnvironmentSecrets: { // RuntimeEnvironmentSecrets
65
+ * // "<keys>": "STRING_VALUE",
66
+ * // },
67
+ * // },
68
+ * // },
69
+ * // },
70
+ * // ImageRepository: { // ImageRepository
71
+ * // ImageIdentifier: "STRING_VALUE", // required
72
+ * // ImageConfiguration: { // ImageConfiguration
73
+ * // RuntimeEnvironmentVariables: {
74
+ * // "<keys>": "STRING_VALUE",
75
+ * // },
76
+ * // StartCommand: "STRING_VALUE",
77
+ * // Port: "STRING_VALUE",
78
+ * // RuntimeEnvironmentSecrets: {
79
+ * // "<keys>": "STRING_VALUE",
80
+ * // },
81
+ * // },
82
+ * // ImageRepositoryType: "ECR" || "ECR_PUBLIC", // required
83
+ * // },
84
+ * // AutoDeploymentsEnabled: true || false,
85
+ * // AuthenticationConfiguration: { // AuthenticationConfiguration
86
+ * // ConnectionArn: "STRING_VALUE",
87
+ * // AccessRoleArn: "STRING_VALUE",
88
+ * // },
89
+ * // },
90
+ * // InstanceConfiguration: { // InstanceConfiguration
91
+ * // Cpu: "STRING_VALUE",
92
+ * // Memory: "STRING_VALUE",
93
+ * // InstanceRoleArn: "STRING_VALUE",
94
+ * // },
95
+ * // EncryptionConfiguration: { // EncryptionConfiguration
96
+ * // KmsKey: "STRING_VALUE", // required
97
+ * // },
98
+ * // HealthCheckConfiguration: { // HealthCheckConfiguration
99
+ * // Protocol: "TCP" || "HTTP",
100
+ * // Path: "STRING_VALUE",
101
+ * // Interval: Number("int"),
102
+ * // Timeout: Number("int"),
103
+ * // HealthyThreshold: Number("int"),
104
+ * // UnhealthyThreshold: Number("int"),
105
+ * // },
106
+ * // AutoScalingConfigurationSummary: { // AutoScalingConfigurationSummary
107
+ * // AutoScalingConfigurationArn: "STRING_VALUE",
108
+ * // AutoScalingConfigurationName: "STRING_VALUE",
109
+ * // AutoScalingConfigurationRevision: Number("int"),
110
+ * // },
111
+ * // NetworkConfiguration: { // NetworkConfiguration
112
+ * // EgressConfiguration: { // EgressConfiguration
113
+ * // EgressType: "DEFAULT" || "VPC",
114
+ * // VpcConnectorArn: "STRING_VALUE",
115
+ * // },
116
+ * // IngressConfiguration: { // IngressConfiguration
117
+ * // IsPubliclyAccessible: true || false,
118
+ * // },
119
+ * // },
120
+ * // ObservabilityConfiguration: { // ServiceObservabilityConfiguration
121
+ * // ObservabilityEnabled: true || false, // required
122
+ * // ObservabilityConfigurationArn: "STRING_VALUE",
123
+ * // },
124
+ * // },
125
+ * // OperationId: "STRING_VALUE",
126
+ * // };
127
+ *
37
128
  * ```
38
129
  *
39
130
  * @param PauseServiceCommandInput - {@link PauseServiceCommandInput}
@@ -54,6 +145,8 @@ export interface PauseServiceCommandOutput extends PauseServiceResponse, __Metad
54
145
  * @throws {@link ResourceNotFoundException} (client fault)
55
146
  * <p>A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon Web Services account.</p>
56
147
  *
148
+ * @throws {@link AppRunnerServiceException}
149
+ * <p>Base exception class for all service exceptions from AppRunner service.</p>
57
150
  *
58
151
  */
59
152
  export declare class PauseServiceCommand extends $Command<PauseServiceCommandInput, PauseServiceCommandOutput, AppRunnerClientResolvedConfig> {