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 { AssociateUserCommandInput, AssociateUserCommandOutput, } from "./commands/AssociateUserCommand"; import { CreateLicenseServerEndpointCommandInput, CreateLicenseServerEndpointCommandOutput, } from "./commands/CreateLicenseServerEndpointCommand"; import { DeleteLicenseServerEndpointCommandInput, DeleteLicenseServerEndpointCommandOutput, } from "./commands/DeleteLicenseServerEndpointCommand"; import { DeregisterIdentityProviderCommandInput, DeregisterIdentityProviderCommandOutput, } from "./commands/DeregisterIdentityProviderCommand"; import { DisassociateUserCommandInput, DisassociateUserCommandOutput, } from "./commands/DisassociateUserCommand"; import { ListIdentityProvidersCommandInput, ListIdentityProvidersCommandOutput, } from "./commands/ListIdentityProvidersCommand"; import { ListInstancesCommandInput, ListInstancesCommandOutput, } from "./commands/ListInstancesCommand"; import { ListLicenseServerEndpointsCommandInput, ListLicenseServerEndpointsCommandOutput, } from "./commands/ListLicenseServerEndpointsCommand"; import { ListProductSubscriptionsCommandInput, ListProductSubscriptionsCommandOutput, } from "./commands/ListProductSubscriptionsCommand"; import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, } from "./commands/ListTagsForResourceCommand"; import { ListUserAssociationsCommandInput, ListUserAssociationsCommandOutput, } from "./commands/ListUserAssociationsCommand"; import { RegisterIdentityProviderCommandInput, RegisterIdentityProviderCommandOutput, } from "./commands/RegisterIdentityProviderCommand"; import { StartProductSubscriptionCommandInput, StartProductSubscriptionCommandOutput, } from "./commands/StartProductSubscriptionCommand"; import { StopProductSubscriptionCommandInput, StopProductSubscriptionCommandOutput, } from "./commands/StopProductSubscriptionCommand"; import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand"; import { UntagResourceCommandInput, UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; import { UpdateIdentityProviderSettingsCommandInput, UpdateIdentityProviderSettingsCommandOutput, } from "./commands/UpdateIdentityProviderSettingsCommand"; import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters, } from "./endpoint/EndpointParameters"; import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; export { __Client }; export type ServiceInputTypes = | AssociateUserCommandInput | CreateLicenseServerEndpointCommandInput | DeleteLicenseServerEndpointCommandInput | DeregisterIdentityProviderCommandInput | DisassociateUserCommandInput | ListIdentityProvidersCommandInput | ListInstancesCommandInput | ListLicenseServerEndpointsCommandInput | ListProductSubscriptionsCommandInput | ListTagsForResourceCommandInput | ListUserAssociationsCommandInput | RegisterIdentityProviderCommandInput | StartProductSubscriptionCommandInput | StopProductSubscriptionCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateIdentityProviderSettingsCommandInput; export type ServiceOutputTypes = | AssociateUserCommandOutput | CreateLicenseServerEndpointCommandOutput | DeleteLicenseServerEndpointCommandOutput | DeregisterIdentityProviderCommandOutput | DisassociateUserCommandOutput | ListIdentityProvidersCommandOutput | ListInstancesCommandOutput | ListLicenseServerEndpointsCommandOutput | ListProductSubscriptionsCommandOutput | ListTagsForResourceCommandOutput | ListUserAssociationsCommandOutput | RegisterIdentityProviderCommandOutput | StartProductSubscriptionCommandOutput | StopProductSubscriptionCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateIdentityProviderSettingsCommandOutput; 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 LicenseManagerUserSubscriptionsClientConfigType = Partial< __SmithyConfiguration<__HttpHandlerOptions> > & ClientDefaults & UserAgentInputConfig & RetryInputConfig & RegionInputConfig & HostHeaderInputConfig & EndpointInputConfig & HttpAuthSchemeInputConfig & ClientInputEndpointParameters; export interface LicenseManagerUserSubscriptionsClientConfig extends LicenseManagerUserSubscriptionsClientConfigType {} export type LicenseManagerUserSubscriptionsClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig & RegionResolvedConfig & HostHeaderResolvedConfig & EndpointResolvedConfig & HttpAuthSchemeResolvedConfig & ClientResolvedEndpointParameters; export interface LicenseManagerUserSubscriptionsClientResolvedConfig extends LicenseManagerUserSubscriptionsClientResolvedConfigType {} export declare class LicenseManagerUserSubscriptionsClient extends __Client< __HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, LicenseManagerUserSubscriptionsClientResolvedConfig > { readonly config: LicenseManagerUserSubscriptionsClientResolvedConfig; constructor( ...[configuration]: __CheckOptionalClientConfig ); destroy(): void; }