import { HostHeaderInputConfig, HostHeaderResolvedConfig, UserAgentInputConfig, UserAgentResolvedConfig, } from "@aws-sdk/core/client"; import { DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, } from "@smithy/core/client"; import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config"; import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints"; import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols"; import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry"; import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig, } from "./auth/httpAuthSchemeProvider"; import { CreatePipelineCommandInput, CreatePipelineCommandOutput, } from "./commands/CreatePipelineCommand"; import { CreatePipelineEndpointCommandInput, CreatePipelineEndpointCommandOutput, } from "./commands/CreatePipelineEndpointCommand"; import { DeletePipelineCommandInput, DeletePipelineCommandOutput, } from "./commands/DeletePipelineCommand"; import { DeletePipelineEndpointCommandInput, DeletePipelineEndpointCommandOutput, } from "./commands/DeletePipelineEndpointCommand"; import { DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput, } from "./commands/DeleteResourcePolicyCommand"; import { GetPipelineBlueprintCommandInput, GetPipelineBlueprintCommandOutput, } from "./commands/GetPipelineBlueprintCommand"; import { GetPipelineChangeProgressCommandInput, GetPipelineChangeProgressCommandOutput, } from "./commands/GetPipelineChangeProgressCommand"; import { GetPipelineCommandInput, GetPipelineCommandOutput } from "./commands/GetPipelineCommand"; import { GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput, } from "./commands/GetResourcePolicyCommand"; import { ListPipelineBlueprintsCommandInput, ListPipelineBlueprintsCommandOutput, } from "./commands/ListPipelineBlueprintsCommand"; import { ListPipelineEndpointConnectionsCommandInput, ListPipelineEndpointConnectionsCommandOutput, } from "./commands/ListPipelineEndpointConnectionsCommand"; import { ListPipelineEndpointsCommandInput, ListPipelineEndpointsCommandOutput, } from "./commands/ListPipelineEndpointsCommand"; import { ListPipelinesCommandInput, ListPipelinesCommandOutput, } from "./commands/ListPipelinesCommand"; import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, } from "./commands/ListTagsForResourceCommand"; import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput, } from "./commands/PutResourcePolicyCommand"; import { RevokePipelineEndpointConnectionsCommandInput, RevokePipelineEndpointConnectionsCommandOutput, } from "./commands/RevokePipelineEndpointConnectionsCommand"; import { StartPipelineCommandInput, StartPipelineCommandOutput, } from "./commands/StartPipelineCommand"; import { StopPipelineCommandInput, StopPipelineCommandOutput, } from "./commands/StopPipelineCommand"; import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand"; import { UntagResourceCommandInput, UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; import { UpdatePipelineCommandInput, UpdatePipelineCommandOutput, } from "./commands/UpdatePipelineCommand"; import { ValidatePipelineCommandInput, ValidatePipelineCommandOutput, } from "./commands/ValidatePipelineCommand"; import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters, } from "./endpoint/EndpointParameters"; import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; export { __Client }; export type ServiceInputTypes = | CreatePipelineCommandInput | CreatePipelineEndpointCommandInput | DeletePipelineCommandInput | DeletePipelineEndpointCommandInput | DeleteResourcePolicyCommandInput | GetPipelineBlueprintCommandInput | GetPipelineChangeProgressCommandInput | GetPipelineCommandInput | GetResourcePolicyCommandInput | ListPipelineBlueprintsCommandInput | ListPipelineEndpointConnectionsCommandInput | ListPipelineEndpointsCommandInput | ListPipelinesCommandInput | ListTagsForResourceCommandInput | PutResourcePolicyCommandInput | RevokePipelineEndpointConnectionsCommandInput | StartPipelineCommandInput | StopPipelineCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdatePipelineCommandInput | ValidatePipelineCommandInput; export type ServiceOutputTypes = | CreatePipelineCommandOutput | CreatePipelineEndpointCommandOutput | DeletePipelineCommandOutput | DeletePipelineEndpointCommandOutput | DeleteResourcePolicyCommandOutput | GetPipelineBlueprintCommandOutput | GetPipelineChangeProgressCommandOutput | GetPipelineCommandOutput | GetResourcePolicyCommandOutput | ListPipelineBlueprintsCommandOutput | ListPipelineEndpointConnectionsCommandOutput | ListPipelineEndpointsCommandOutput | ListPipelinesCommandOutput | ListTagsForResourceCommandOutput | PutResourcePolicyCommandOutput | RevokePipelineEndpointConnectionsCommandOutput | StartPipelineCommandOutput | StopPipelineCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdatePipelineCommandOutput | ValidatePipelineCommandOutput; export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> { requestHandler?: __HttpHandlerUserInput; sha256?: __ChecksumConstructor | __HashConstructor; urlParser?: __UrlParser; bodyLengthChecker?: __BodyLengthCalculator; streamCollector?: __StreamCollector; base64Decoder?: __Decoder; base64Encoder?: __Encoder; utf8Decoder?: __Decoder; utf8Encoder?: __Encoder; runtime?: string; disableHostPrefix?: boolean; serviceId?: string; useDualstackEndpoint?: boolean | __Provider; useFipsEndpoint?: boolean | __Provider; region?: string | __Provider; profile?: string; defaultUserAgentProvider?: __Provider<__UserAgent>; credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider; maxAttempts?: number | __Provider; retryMode?: string | __Provider; logger?: __Logger; extensions?: RuntimeExtension[]; defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>; } export type OSISClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & UserAgentInputConfig & RetryInputConfig & RegionInputConfig & HostHeaderInputConfig & EndpointInputConfig & HttpAuthSchemeInputConfig & ClientInputEndpointParameters; export interface OSISClientConfig extends OSISClientConfigType {} export type OSISClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig & RegionResolvedConfig & HostHeaderResolvedConfig & EndpointResolvedConfig & HttpAuthSchemeResolvedConfig & ClientResolvedEndpointParameters; export interface OSISClientResolvedConfig extends OSISClientResolvedConfigType {} export declare class OSISClient extends __Client< __HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, OSISClientResolvedConfig > { readonly config: OSISClientResolvedConfig; constructor(...[configuration]: __CheckOptionalClientConfig); destroy(): void; }