import { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator, } from "@smithy/types"; import { AppRunnerClient } from "./AppRunnerClient"; import { AssociateCustomDomainCommandInput, AssociateCustomDomainCommandOutput, } from "./commands/AssociateCustomDomainCommand"; import { CreateAutoScalingConfigurationCommandInput, CreateAutoScalingConfigurationCommandOutput, } from "./commands/CreateAutoScalingConfigurationCommand"; import { CreateConnectionCommandInput, CreateConnectionCommandOutput, } from "./commands/CreateConnectionCommand"; import { CreateObservabilityConfigurationCommandInput, CreateObservabilityConfigurationCommandOutput, } from "./commands/CreateObservabilityConfigurationCommand"; import { CreateServiceCommandInput, CreateServiceCommandOutput, } from "./commands/CreateServiceCommand"; import { CreateVpcConnectorCommandInput, CreateVpcConnectorCommandOutput, } from "./commands/CreateVpcConnectorCommand"; import { CreateVpcIngressConnectionCommandInput, CreateVpcIngressConnectionCommandOutput, } from "./commands/CreateVpcIngressConnectionCommand"; import { DeleteAutoScalingConfigurationCommandInput, DeleteAutoScalingConfigurationCommandOutput, } from "./commands/DeleteAutoScalingConfigurationCommand"; import { DeleteConnectionCommandInput, DeleteConnectionCommandOutput, } from "./commands/DeleteConnectionCommand"; import { DeleteObservabilityConfigurationCommandInput, DeleteObservabilityConfigurationCommandOutput, } from "./commands/DeleteObservabilityConfigurationCommand"; import { DeleteServiceCommandInput, DeleteServiceCommandOutput, } from "./commands/DeleteServiceCommand"; import { DeleteVpcConnectorCommandInput, DeleteVpcConnectorCommandOutput, } from "./commands/DeleteVpcConnectorCommand"; import { DeleteVpcIngressConnectionCommandInput, DeleteVpcIngressConnectionCommandOutput, } from "./commands/DeleteVpcIngressConnectionCommand"; import { DescribeAutoScalingConfigurationCommandInput, DescribeAutoScalingConfigurationCommandOutput, } from "./commands/DescribeAutoScalingConfigurationCommand"; import { DescribeCustomDomainsCommandInput, DescribeCustomDomainsCommandOutput, } from "./commands/DescribeCustomDomainsCommand"; import { DescribeObservabilityConfigurationCommandInput, DescribeObservabilityConfigurationCommandOutput, } from "./commands/DescribeObservabilityConfigurationCommand"; import { DescribeServiceCommandInput, DescribeServiceCommandOutput, } from "./commands/DescribeServiceCommand"; import { DescribeVpcConnectorCommandInput, DescribeVpcConnectorCommandOutput, } from "./commands/DescribeVpcConnectorCommand"; import { DescribeVpcIngressConnectionCommandInput, DescribeVpcIngressConnectionCommandOutput, } from "./commands/DescribeVpcIngressConnectionCommand"; import { DisassociateCustomDomainCommandInput, DisassociateCustomDomainCommandOutput, } from "./commands/DisassociateCustomDomainCommand"; import { ListAutoScalingConfigurationsCommandInput, ListAutoScalingConfigurationsCommandOutput, } from "./commands/ListAutoScalingConfigurationsCommand"; import { ListConnectionsCommandInput, ListConnectionsCommandOutput, } from "./commands/ListConnectionsCommand"; import { ListObservabilityConfigurationsCommandInput, ListObservabilityConfigurationsCommandOutput, } from "./commands/ListObservabilityConfigurationsCommand"; import { ListOperationsCommandInput, ListOperationsCommandOutput, } from "./commands/ListOperationsCommand"; import { ListServicesCommandInput, ListServicesCommandOutput, } from "./commands/ListServicesCommand"; import { ListServicesForAutoScalingConfigurationCommandInput, ListServicesForAutoScalingConfigurationCommandOutput, } from "./commands/ListServicesForAutoScalingConfigurationCommand"; import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, } from "./commands/ListTagsForResourceCommand"; import { ListVpcConnectorsCommandInput, ListVpcConnectorsCommandOutput, } from "./commands/ListVpcConnectorsCommand"; import { ListVpcIngressConnectionsCommandInput, ListVpcIngressConnectionsCommandOutput, } from "./commands/ListVpcIngressConnectionsCommand"; import { PauseServiceCommandInput, PauseServiceCommandOutput, } from "./commands/PauseServiceCommand"; import { ResumeServiceCommandInput, ResumeServiceCommandOutput, } from "./commands/ResumeServiceCommand"; import { StartDeploymentCommandInput, StartDeploymentCommandOutput, } from "./commands/StartDeploymentCommand"; import { TagResourceCommandInput, TagResourceCommandOutput, } from "./commands/TagResourceCommand"; import { UntagResourceCommandInput, UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; import { UpdateDefaultAutoScalingConfigurationCommandInput, UpdateDefaultAutoScalingConfigurationCommandOutput, } from "./commands/UpdateDefaultAutoScalingConfigurationCommand"; import { UpdateServiceCommandInput, UpdateServiceCommandOutput, } from "./commands/UpdateServiceCommand"; import { UpdateVpcIngressConnectionCommandInput, UpdateVpcIngressConnectionCommandOutput, } from "./commands/UpdateVpcIngressConnectionCommand"; export interface AppRunner { associateCustomDomain( args: AssociateCustomDomainCommandInput, options?: __HttpHandlerOptions ): Promise; associateCustomDomain( args: AssociateCustomDomainCommandInput, cb: (err: any, data?: AssociateCustomDomainCommandOutput) => void ): void; associateCustomDomain( args: AssociateCustomDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateCustomDomainCommandOutput) => void ): void; createAutoScalingConfiguration( args: CreateAutoScalingConfigurationCommandInput, options?: __HttpHandlerOptions ): Promise; createAutoScalingConfiguration( args: CreateAutoScalingConfigurationCommandInput, cb: (err: any, data?: CreateAutoScalingConfigurationCommandOutput) => void ): void; createAutoScalingConfiguration( args: CreateAutoScalingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAutoScalingConfigurationCommandOutput) => void ): void; createConnection( args: CreateConnectionCommandInput, options?: __HttpHandlerOptions ): Promise; createConnection( args: CreateConnectionCommandInput, cb: (err: any, data?: CreateConnectionCommandOutput) => void ): void; createConnection( args: CreateConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConnectionCommandOutput) => void ): void; createObservabilityConfiguration( args: CreateObservabilityConfigurationCommandInput, options?: __HttpHandlerOptions ): Promise; createObservabilityConfiguration( args: CreateObservabilityConfigurationCommandInput, cb: (err: any, data?: CreateObservabilityConfigurationCommandOutput) => void ): void; createObservabilityConfiguration( args: CreateObservabilityConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateObservabilityConfigurationCommandOutput) => void ): void; createService( args: CreateServiceCommandInput, options?: __HttpHandlerOptions ): Promise; createService( args: CreateServiceCommandInput, cb: (err: any, data?: CreateServiceCommandOutput) => void ): void; createService( args: CreateServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateServiceCommandOutput) => void ): void; createVpcConnector( args: CreateVpcConnectorCommandInput, options?: __HttpHandlerOptions ): Promise; createVpcConnector( args: CreateVpcConnectorCommandInput, cb: (err: any, data?: CreateVpcConnectorCommandOutput) => void ): void; createVpcConnector( args: CreateVpcConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVpcConnectorCommandOutput) => void ): void; createVpcIngressConnection( args: CreateVpcIngressConnectionCommandInput, options?: __HttpHandlerOptions ): Promise; createVpcIngressConnection( args: CreateVpcIngressConnectionCommandInput, cb: (err: any, data?: CreateVpcIngressConnectionCommandOutput) => void ): void; createVpcIngressConnection( args: CreateVpcIngressConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVpcIngressConnectionCommandOutput) => void ): void; deleteAutoScalingConfiguration( args: DeleteAutoScalingConfigurationCommandInput, options?: __HttpHandlerOptions ): Promise; deleteAutoScalingConfiguration( args: DeleteAutoScalingConfigurationCommandInput, cb: (err: any, data?: DeleteAutoScalingConfigurationCommandOutput) => void ): void; deleteAutoScalingConfiguration( args: DeleteAutoScalingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAutoScalingConfigurationCommandOutput) => void ): void; deleteConnection( args: DeleteConnectionCommandInput, options?: __HttpHandlerOptions ): Promise; deleteConnection( args: DeleteConnectionCommandInput, cb: (err: any, data?: DeleteConnectionCommandOutput) => void ): void; deleteConnection( args: DeleteConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConnectionCommandOutput) => void ): void; deleteObservabilityConfiguration( args: DeleteObservabilityConfigurationCommandInput, options?: __HttpHandlerOptions ): Promise; deleteObservabilityConfiguration( args: DeleteObservabilityConfigurationCommandInput, cb: (err: any, data?: DeleteObservabilityConfigurationCommandOutput) => void ): void; deleteObservabilityConfiguration( args: DeleteObservabilityConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteObservabilityConfigurationCommandOutput) => void ): void; deleteService( args: DeleteServiceCommandInput, options?: __HttpHandlerOptions ): Promise; deleteService( args: DeleteServiceCommandInput, cb: (err: any, data?: DeleteServiceCommandOutput) => void ): void; deleteService( args: DeleteServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteServiceCommandOutput) => void ): void; deleteVpcConnector( args: DeleteVpcConnectorCommandInput, options?: __HttpHandlerOptions ): Promise; deleteVpcConnector( args: DeleteVpcConnectorCommandInput, cb: (err: any, data?: DeleteVpcConnectorCommandOutput) => void ): void; deleteVpcConnector( args: DeleteVpcConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVpcConnectorCommandOutput) => void ): void; deleteVpcIngressConnection( args: DeleteVpcIngressConnectionCommandInput, options?: __HttpHandlerOptions ): Promise; deleteVpcIngressConnection( args: DeleteVpcIngressConnectionCommandInput, cb: (err: any, data?: DeleteVpcIngressConnectionCommandOutput) => void ): void; deleteVpcIngressConnection( args: DeleteVpcIngressConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVpcIngressConnectionCommandOutput) => void ): void; describeAutoScalingConfiguration( args: DescribeAutoScalingConfigurationCommandInput, options?: __HttpHandlerOptions ): Promise; describeAutoScalingConfiguration( args: DescribeAutoScalingConfigurationCommandInput, cb: (err: any, data?: DescribeAutoScalingConfigurationCommandOutput) => void ): void; describeAutoScalingConfiguration( args: DescribeAutoScalingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAutoScalingConfigurationCommandOutput) => void ): void; describeCustomDomains( args: DescribeCustomDomainsCommandInput, options?: __HttpHandlerOptions ): Promise; describeCustomDomains( args: DescribeCustomDomainsCommandInput, cb: (err: any, data?: DescribeCustomDomainsCommandOutput) => void ): void; describeCustomDomains( args: DescribeCustomDomainsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCustomDomainsCommandOutput) => void ): void; describeObservabilityConfiguration( args: DescribeObservabilityConfigurationCommandInput, options?: __HttpHandlerOptions ): Promise; describeObservabilityConfiguration( args: DescribeObservabilityConfigurationCommandInput, cb: ( err: any, data?: DescribeObservabilityConfigurationCommandOutput ) => void ): void; describeObservabilityConfiguration( args: DescribeObservabilityConfigurationCommandInput, options: __HttpHandlerOptions, cb: ( err: any, data?: DescribeObservabilityConfigurationCommandOutput ) => void ): void; describeService( args: DescribeServiceCommandInput, options?: __HttpHandlerOptions ): Promise; describeService( args: DescribeServiceCommandInput, cb: (err: any, data?: DescribeServiceCommandOutput) => void ): void; describeService( args: DescribeServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeServiceCommandOutput) => void ): void; describeVpcConnector( args: DescribeVpcConnectorCommandInput, options?: __HttpHandlerOptions ): Promise; describeVpcConnector( args: DescribeVpcConnectorCommandInput, cb: (err: any, data?: DescribeVpcConnectorCommandOutput) => void ): void; describeVpcConnector( args: DescribeVpcConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVpcConnectorCommandOutput) => void ): void; describeVpcIngressConnection( args: DescribeVpcIngressConnectionCommandInput, options?: __HttpHandlerOptions ): Promise; describeVpcIngressConnection( args: DescribeVpcIngressConnectionCommandInput, cb: (err: any, data?: DescribeVpcIngressConnectionCommandOutput) => void ): void; describeVpcIngressConnection( args: DescribeVpcIngressConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVpcIngressConnectionCommandOutput) => void ): void; disassociateCustomDomain( args: DisassociateCustomDomainCommandInput, options?: __HttpHandlerOptions ): Promise; disassociateCustomDomain( args: DisassociateCustomDomainCommandInput, cb: (err: any, data?: DisassociateCustomDomainCommandOutput) => void ): void; disassociateCustomDomain( args: DisassociateCustomDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateCustomDomainCommandOutput) => void ): void; listAutoScalingConfigurations(): Promise; listAutoScalingConfigurations( args: ListAutoScalingConfigurationsCommandInput, options?: __HttpHandlerOptions ): Promise; listAutoScalingConfigurations( args: ListAutoScalingConfigurationsCommandInput, cb: (err: any, data?: ListAutoScalingConfigurationsCommandOutput) => void ): void; listAutoScalingConfigurations( args: ListAutoScalingConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAutoScalingConfigurationsCommandOutput) => void ): void; listConnections(): Promise; listConnections( args: ListConnectionsCommandInput, options?: __HttpHandlerOptions ): Promise; listConnections( args: ListConnectionsCommandInput, cb: (err: any, data?: ListConnectionsCommandOutput) => void ): void; listConnections( args: ListConnectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConnectionsCommandOutput) => void ): void; listObservabilityConfigurations(): Promise; listObservabilityConfigurations( args: ListObservabilityConfigurationsCommandInput, options?: __HttpHandlerOptions ): Promise; listObservabilityConfigurations( args: ListObservabilityConfigurationsCommandInput, cb: (err: any, data?: ListObservabilityConfigurationsCommandOutput) => void ): void; listObservabilityConfigurations( args: ListObservabilityConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListObservabilityConfigurationsCommandOutput) => void ): void; listOperations( args: ListOperationsCommandInput, options?: __HttpHandlerOptions ): Promise; listOperations( args: ListOperationsCommandInput, cb: (err: any, data?: ListOperationsCommandOutput) => void ): void; listOperations( args: ListOperationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOperationsCommandOutput) => void ): void; listServices(): Promise; listServices( args: ListServicesCommandInput, options?: __HttpHandlerOptions ): Promise; listServices( args: ListServicesCommandInput, cb: (err: any, data?: ListServicesCommandOutput) => void ): void; listServices( args: ListServicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServicesCommandOutput) => void ): void; listServicesForAutoScalingConfiguration( args: ListServicesForAutoScalingConfigurationCommandInput, options?: __HttpHandlerOptions ): Promise; listServicesForAutoScalingConfiguration( args: ListServicesForAutoScalingConfigurationCommandInput, cb: ( err: any, data?: ListServicesForAutoScalingConfigurationCommandOutput ) => void ): void; listServicesForAutoScalingConfiguration( args: ListServicesForAutoScalingConfigurationCommandInput, options: __HttpHandlerOptions, cb: ( err: any, data?: ListServicesForAutoScalingConfigurationCommandOutput ) => void ): void; listTagsForResource( args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions ): Promise; listTagsForResource( args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void ): void; listTagsForResource( args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void ): void; listVpcConnectors(): Promise; listVpcConnectors( args: ListVpcConnectorsCommandInput, options?: __HttpHandlerOptions ): Promise; listVpcConnectors( args: ListVpcConnectorsCommandInput, cb: (err: any, data?: ListVpcConnectorsCommandOutput) => void ): void; listVpcConnectors( args: ListVpcConnectorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVpcConnectorsCommandOutput) => void ): void; listVpcIngressConnections(): Promise; listVpcIngressConnections( args: ListVpcIngressConnectionsCommandInput, options?: __HttpHandlerOptions ): Promise; listVpcIngressConnections( args: ListVpcIngressConnectionsCommandInput, cb: (err: any, data?: ListVpcIngressConnectionsCommandOutput) => void ): void; listVpcIngressConnections( args: ListVpcIngressConnectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVpcIngressConnectionsCommandOutput) => void ): void; pauseService( args: PauseServiceCommandInput, options?: __HttpHandlerOptions ): Promise; pauseService( args: PauseServiceCommandInput, cb: (err: any, data?: PauseServiceCommandOutput) => void ): void; pauseService( args: PauseServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PauseServiceCommandOutput) => void ): void; resumeService( args: ResumeServiceCommandInput, options?: __HttpHandlerOptions ): Promise; resumeService( args: ResumeServiceCommandInput, cb: (err: any, data?: ResumeServiceCommandOutput) => void ): void; resumeService( args: ResumeServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResumeServiceCommandOutput) => void ): void; startDeployment( args: StartDeploymentCommandInput, options?: __HttpHandlerOptions ): Promise; startDeployment( args: StartDeploymentCommandInput, cb: (err: any, data?: StartDeploymentCommandOutput) => void ): void; startDeployment( args: StartDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartDeploymentCommandOutput) => void ): void; tagResource( args: TagResourceCommandInput, options?: __HttpHandlerOptions ): Promise; tagResource( args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void ): void; tagResource( args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void ): void; untagResource( args: UntagResourceCommandInput, options?: __HttpHandlerOptions ): Promise; untagResource( args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void ): void; untagResource( args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void ): void; updateDefaultAutoScalingConfiguration( args: UpdateDefaultAutoScalingConfigurationCommandInput, options?: __HttpHandlerOptions ): Promise; updateDefaultAutoScalingConfiguration( args: UpdateDefaultAutoScalingConfigurationCommandInput, cb: ( err: any, data?: UpdateDefaultAutoScalingConfigurationCommandOutput ) => void ): void; updateDefaultAutoScalingConfiguration( args: UpdateDefaultAutoScalingConfigurationCommandInput, options: __HttpHandlerOptions, cb: ( err: any, data?: UpdateDefaultAutoScalingConfigurationCommandOutput ) => void ): void; updateService( args: UpdateServiceCommandInput, options?: __HttpHandlerOptions ): Promise; updateService( args: UpdateServiceCommandInput, cb: (err: any, data?: UpdateServiceCommandOutput) => void ): void; updateService( args: UpdateServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateServiceCommandOutput) => void ): void; updateVpcIngressConnection( args: UpdateVpcIngressConnectionCommandInput, options?: __HttpHandlerOptions ): Promise; updateVpcIngressConnection( args: UpdateVpcIngressConnectionCommandInput, cb: (err: any, data?: UpdateVpcIngressConnectionCommandOutput) => void ): void; updateVpcIngressConnection( args: UpdateVpcIngressConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateVpcIngressConnectionCommandOutput) => void ): void; paginateDescribeCustomDomains( args: DescribeCustomDomainsCommandInput, paginationConfig?: Pick< PaginationConfiguration, Exclude > ): Paginator; paginateListAutoScalingConfigurations( args?: ListAutoScalingConfigurationsCommandInput, paginationConfig?: Pick< PaginationConfiguration, Exclude > ): Paginator; paginateListConnections( args?: ListConnectionsCommandInput, paginationConfig?: Pick< PaginationConfiguration, Exclude > ): Paginator; paginateListObservabilityConfigurations( args?: ListObservabilityConfigurationsCommandInput, paginationConfig?: Pick< PaginationConfiguration, Exclude > ): Paginator; paginateListOperations( args: ListOperationsCommandInput, paginationConfig?: Pick< PaginationConfiguration, Exclude > ): Paginator; paginateListServices( args?: ListServicesCommandInput, paginationConfig?: Pick< PaginationConfiguration, Exclude > ): Paginator; paginateListServicesForAutoScalingConfiguration( args: ListServicesForAutoScalingConfigurationCommandInput, paginationConfig?: Pick< PaginationConfiguration, Exclude > ): Paginator; paginateListVpcConnectors( args?: ListVpcConnectorsCommandInput, paginationConfig?: Pick< PaginationConfiguration, Exclude > ): Paginator; paginateListVpcIngressConnections( args?: ListVpcIngressConnectionsCommandInput, paginationConfig?: Pick< PaginationConfiguration, Exclude > ): Paginator; } export declare class AppRunner extends AppRunnerClient implements AppRunner {}