@aws-sdk/client-license-manager-user-subscriptions 3.169.0 → 3.170.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 (31) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/LicenseManagerUserSubscriptions.d.ts +184 -55
  3. package/dist-types/ts3.4/LicenseManagerUserSubscriptionsClient.d.ts +190 -83
  4. package/dist-types/ts3.4/commands/AssociateUserCommand.d.ts +37 -17
  5. package/dist-types/ts3.4/commands/DeregisterIdentityProviderCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/DisassociateUserCommand.d.ts +37 -17
  7. package/dist-types/ts3.4/commands/ListIdentityProvidersCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/ListInstancesCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/ListProductSubscriptionsCommand.d.ts +41 -17
  10. package/dist-types/ts3.4/commands/ListUserAssociationsCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/RegisterIdentityProviderCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/StartProductSubscriptionCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/StopProductSubscriptionCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/index.d.ts +10 -10
  15. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  16. package/dist-types/ts3.4/index.d.ts +6 -6
  17. package/dist-types/ts3.4/models/LicenseManagerUserSubscriptionsServiceException.d.ts +8 -6
  18. package/dist-types/ts3.4/models/index.d.ts +1 -1
  19. package/dist-types/ts3.4/models/models_0.d.ts +378 -340
  20. package/dist-types/ts3.4/pagination/Interfaces.d.ts +9 -6
  21. package/dist-types/ts3.4/pagination/ListIdentityProvidersPaginator.d.ts +11 -4
  22. package/dist-types/ts3.4/pagination/ListInstancesPaginator.d.ts +11 -4
  23. package/dist-types/ts3.4/pagination/ListProductSubscriptionsPaginator.d.ts +11 -4
  24. package/dist-types/ts3.4/pagination/ListUserAssociationsPaginator.d.ts +11 -4
  25. package/dist-types/ts3.4/pagination/index.d.ts +5 -5
  26. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +125 -32
  27. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  28. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  29. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  30. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  31. package/package.json +34 -34
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-license-manager-user-subscriptions
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
7
15
 
8
16
  **Note:** Version bump only for package @aws-sdk/client-license-manager-user-subscriptions
@@ -1,55 +1,184 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { AssociateUserCommandInput, AssociateUserCommandOutput } from "./commands/AssociateUserCommand";
3
- import { DeregisterIdentityProviderCommandInput, DeregisterIdentityProviderCommandOutput } from "./commands/DeregisterIdentityProviderCommand";
4
- import { DisassociateUserCommandInput, DisassociateUserCommandOutput } from "./commands/DisassociateUserCommand";
5
- import { ListIdentityProvidersCommandInput, ListIdentityProvidersCommandOutput } from "./commands/ListIdentityProvidersCommand";
6
- import { ListInstancesCommandInput, ListInstancesCommandOutput } from "./commands/ListInstancesCommand";
7
- import { ListProductSubscriptionsCommandInput, ListProductSubscriptionsCommandOutput } from "./commands/ListProductSubscriptionsCommand";
8
- import { ListUserAssociationsCommandInput, ListUserAssociationsCommandOutput } from "./commands/ListUserAssociationsCommand";
9
- import { RegisterIdentityProviderCommandInput, RegisterIdentityProviderCommandOutput } from "./commands/RegisterIdentityProviderCommand";
10
- import { StartProductSubscriptionCommandInput, StartProductSubscriptionCommandOutput } from "./commands/StartProductSubscriptionCommand";
11
- import { StopProductSubscriptionCommandInput, StopProductSubscriptionCommandOutput } from "./commands/StopProductSubscriptionCommand";
12
- import { LicenseManagerUserSubscriptionsClient } from "./LicenseManagerUserSubscriptionsClient";
13
-
14
- export declare class LicenseManagerUserSubscriptions extends LicenseManagerUserSubscriptionsClient {
15
-
16
- associateUser(args: AssociateUserCommandInput, options?: __HttpHandlerOptions): Promise<AssociateUserCommandOutput>;
17
- associateUser(args: AssociateUserCommandInput, cb: (err: any, data?: AssociateUserCommandOutput) => void): void;
18
- associateUser(args: AssociateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateUserCommandOutput) => void): void;
19
-
20
- deregisterIdentityProvider(args: DeregisterIdentityProviderCommandInput, options?: __HttpHandlerOptions): Promise<DeregisterIdentityProviderCommandOutput>;
21
- deregisterIdentityProvider(args: DeregisterIdentityProviderCommandInput, cb: (err: any, data?: DeregisterIdentityProviderCommandOutput) => void): void;
22
- deregisterIdentityProvider(args: DeregisterIdentityProviderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterIdentityProviderCommandOutput) => void): void;
23
-
24
- disassociateUser(args: DisassociateUserCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateUserCommandOutput>;
25
- disassociateUser(args: DisassociateUserCommandInput, cb: (err: any, data?: DisassociateUserCommandOutput) => void): void;
26
- disassociateUser(args: DisassociateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateUserCommandOutput) => void): void;
27
-
28
- listIdentityProviders(args: ListIdentityProvidersCommandInput, options?: __HttpHandlerOptions): Promise<ListIdentityProvidersCommandOutput>;
29
- listIdentityProviders(args: ListIdentityProvidersCommandInput, cb: (err: any, data?: ListIdentityProvidersCommandOutput) => void): void;
30
- listIdentityProviders(args: ListIdentityProvidersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIdentityProvidersCommandOutput) => void): void;
31
-
32
- listInstances(args: ListInstancesCommandInput, options?: __HttpHandlerOptions): Promise<ListInstancesCommandOutput>;
33
- listInstances(args: ListInstancesCommandInput, cb: (err: any, data?: ListInstancesCommandOutput) => void): void;
34
- listInstances(args: ListInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInstancesCommandOutput) => void): void;
35
-
36
- listProductSubscriptions(args: ListProductSubscriptionsCommandInput, options?: __HttpHandlerOptions): Promise<ListProductSubscriptionsCommandOutput>;
37
- listProductSubscriptions(args: ListProductSubscriptionsCommandInput, cb: (err: any, data?: ListProductSubscriptionsCommandOutput) => void): void;
38
- listProductSubscriptions(args: ListProductSubscriptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProductSubscriptionsCommandOutput) => void): void;
39
-
40
- listUserAssociations(args: ListUserAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ListUserAssociationsCommandOutput>;
41
- listUserAssociations(args: ListUserAssociationsCommandInput, cb: (err: any, data?: ListUserAssociationsCommandOutput) => void): void;
42
- listUserAssociations(args: ListUserAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUserAssociationsCommandOutput) => void): void;
43
-
44
- registerIdentityProvider(args: RegisterIdentityProviderCommandInput, options?: __HttpHandlerOptions): Promise<RegisterIdentityProviderCommandOutput>;
45
- registerIdentityProvider(args: RegisterIdentityProviderCommandInput, cb: (err: any, data?: RegisterIdentityProviderCommandOutput) => void): void;
46
- registerIdentityProvider(args: RegisterIdentityProviderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterIdentityProviderCommandOutput) => void): void;
47
-
48
- startProductSubscription(args: StartProductSubscriptionCommandInput, options?: __HttpHandlerOptions): Promise<StartProductSubscriptionCommandOutput>;
49
- startProductSubscription(args: StartProductSubscriptionCommandInput, cb: (err: any, data?: StartProductSubscriptionCommandOutput) => void): void;
50
- startProductSubscription(args: StartProductSubscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartProductSubscriptionCommandOutput) => void): void;
51
-
52
- stopProductSubscription(args: StopProductSubscriptionCommandInput, options?: __HttpHandlerOptions): Promise<StopProductSubscriptionCommandOutput>;
53
- stopProductSubscription(args: StopProductSubscriptionCommandInput, cb: (err: any, data?: StopProductSubscriptionCommandOutput) => void): void;
54
- stopProductSubscription(args: StopProductSubscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopProductSubscriptionCommandOutput) => void): void;
55
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ AssociateUserCommandInput,
4
+ AssociateUserCommandOutput,
5
+ } from "./commands/AssociateUserCommand";
6
+ import {
7
+ DeregisterIdentityProviderCommandInput,
8
+ DeregisterIdentityProviderCommandOutput,
9
+ } from "./commands/DeregisterIdentityProviderCommand";
10
+ import {
11
+ DisassociateUserCommandInput,
12
+ DisassociateUserCommandOutput,
13
+ } from "./commands/DisassociateUserCommand";
14
+ import {
15
+ ListIdentityProvidersCommandInput,
16
+ ListIdentityProvidersCommandOutput,
17
+ } from "./commands/ListIdentityProvidersCommand";
18
+ import {
19
+ ListInstancesCommandInput,
20
+ ListInstancesCommandOutput,
21
+ } from "./commands/ListInstancesCommand";
22
+ import {
23
+ ListProductSubscriptionsCommandInput,
24
+ ListProductSubscriptionsCommandOutput,
25
+ } from "./commands/ListProductSubscriptionsCommand";
26
+ import {
27
+ ListUserAssociationsCommandInput,
28
+ ListUserAssociationsCommandOutput,
29
+ } from "./commands/ListUserAssociationsCommand";
30
+ import {
31
+ RegisterIdentityProviderCommandInput,
32
+ RegisterIdentityProviderCommandOutput,
33
+ } from "./commands/RegisterIdentityProviderCommand";
34
+ import {
35
+ StartProductSubscriptionCommandInput,
36
+ StartProductSubscriptionCommandOutput,
37
+ } from "./commands/StartProductSubscriptionCommand";
38
+ import {
39
+ StopProductSubscriptionCommandInput,
40
+ StopProductSubscriptionCommandOutput,
41
+ } from "./commands/StopProductSubscriptionCommand";
42
+ import { LicenseManagerUserSubscriptionsClient } from "./LicenseManagerUserSubscriptionsClient";
43
+
44
+ export declare class LicenseManagerUserSubscriptions extends LicenseManagerUserSubscriptionsClient {
45
+ associateUser(
46
+ args: AssociateUserCommandInput,
47
+ options?: __HttpHandlerOptions
48
+ ): Promise<AssociateUserCommandOutput>;
49
+ associateUser(
50
+ args: AssociateUserCommandInput,
51
+ cb: (err: any, data?: AssociateUserCommandOutput) => void
52
+ ): void;
53
+ associateUser(
54
+ args: AssociateUserCommandInput,
55
+ options: __HttpHandlerOptions,
56
+ cb: (err: any, data?: AssociateUserCommandOutput) => void
57
+ ): void;
58
+
59
+ deregisterIdentityProvider(
60
+ args: DeregisterIdentityProviderCommandInput,
61
+ options?: __HttpHandlerOptions
62
+ ): Promise<DeregisterIdentityProviderCommandOutput>;
63
+ deregisterIdentityProvider(
64
+ args: DeregisterIdentityProviderCommandInput,
65
+ cb: (err: any, data?: DeregisterIdentityProviderCommandOutput) => void
66
+ ): void;
67
+ deregisterIdentityProvider(
68
+ args: DeregisterIdentityProviderCommandInput,
69
+ options: __HttpHandlerOptions,
70
+ cb: (err: any, data?: DeregisterIdentityProviderCommandOutput) => void
71
+ ): void;
72
+
73
+ disassociateUser(
74
+ args: DisassociateUserCommandInput,
75
+ options?: __HttpHandlerOptions
76
+ ): Promise<DisassociateUserCommandOutput>;
77
+ disassociateUser(
78
+ args: DisassociateUserCommandInput,
79
+ cb: (err: any, data?: DisassociateUserCommandOutput) => void
80
+ ): void;
81
+ disassociateUser(
82
+ args: DisassociateUserCommandInput,
83
+ options: __HttpHandlerOptions,
84
+ cb: (err: any, data?: DisassociateUserCommandOutput) => void
85
+ ): void;
86
+
87
+ listIdentityProviders(
88
+ args: ListIdentityProvidersCommandInput,
89
+ options?: __HttpHandlerOptions
90
+ ): Promise<ListIdentityProvidersCommandOutput>;
91
+ listIdentityProviders(
92
+ args: ListIdentityProvidersCommandInput,
93
+ cb: (err: any, data?: ListIdentityProvidersCommandOutput) => void
94
+ ): void;
95
+ listIdentityProviders(
96
+ args: ListIdentityProvidersCommandInput,
97
+ options: __HttpHandlerOptions,
98
+ cb: (err: any, data?: ListIdentityProvidersCommandOutput) => void
99
+ ): void;
100
+
101
+ listInstances(
102
+ args: ListInstancesCommandInput,
103
+ options?: __HttpHandlerOptions
104
+ ): Promise<ListInstancesCommandOutput>;
105
+ listInstances(
106
+ args: ListInstancesCommandInput,
107
+ cb: (err: any, data?: ListInstancesCommandOutput) => void
108
+ ): void;
109
+ listInstances(
110
+ args: ListInstancesCommandInput,
111
+ options: __HttpHandlerOptions,
112
+ cb: (err: any, data?: ListInstancesCommandOutput) => void
113
+ ): void;
114
+
115
+ listProductSubscriptions(
116
+ args: ListProductSubscriptionsCommandInput,
117
+ options?: __HttpHandlerOptions
118
+ ): Promise<ListProductSubscriptionsCommandOutput>;
119
+ listProductSubscriptions(
120
+ args: ListProductSubscriptionsCommandInput,
121
+ cb: (err: any, data?: ListProductSubscriptionsCommandOutput) => void
122
+ ): void;
123
+ listProductSubscriptions(
124
+ args: ListProductSubscriptionsCommandInput,
125
+ options: __HttpHandlerOptions,
126
+ cb: (err: any, data?: ListProductSubscriptionsCommandOutput) => void
127
+ ): void;
128
+
129
+ listUserAssociations(
130
+ args: ListUserAssociationsCommandInput,
131
+ options?: __HttpHandlerOptions
132
+ ): Promise<ListUserAssociationsCommandOutput>;
133
+ listUserAssociations(
134
+ args: ListUserAssociationsCommandInput,
135
+ cb: (err: any, data?: ListUserAssociationsCommandOutput) => void
136
+ ): void;
137
+ listUserAssociations(
138
+ args: ListUserAssociationsCommandInput,
139
+ options: __HttpHandlerOptions,
140
+ cb: (err: any, data?: ListUserAssociationsCommandOutput) => void
141
+ ): void;
142
+
143
+ registerIdentityProvider(
144
+ args: RegisterIdentityProviderCommandInput,
145
+ options?: __HttpHandlerOptions
146
+ ): Promise<RegisterIdentityProviderCommandOutput>;
147
+ registerIdentityProvider(
148
+ args: RegisterIdentityProviderCommandInput,
149
+ cb: (err: any, data?: RegisterIdentityProviderCommandOutput) => void
150
+ ): void;
151
+ registerIdentityProvider(
152
+ args: RegisterIdentityProviderCommandInput,
153
+ options: __HttpHandlerOptions,
154
+ cb: (err: any, data?: RegisterIdentityProviderCommandOutput) => void
155
+ ): void;
156
+
157
+ startProductSubscription(
158
+ args: StartProductSubscriptionCommandInput,
159
+ options?: __HttpHandlerOptions
160
+ ): Promise<StartProductSubscriptionCommandOutput>;
161
+ startProductSubscription(
162
+ args: StartProductSubscriptionCommandInput,
163
+ cb: (err: any, data?: StartProductSubscriptionCommandOutput) => void
164
+ ): void;
165
+ startProductSubscription(
166
+ args: StartProductSubscriptionCommandInput,
167
+ options: __HttpHandlerOptions,
168
+ cb: (err: any, data?: StartProductSubscriptionCommandOutput) => void
169
+ ): void;
170
+
171
+ stopProductSubscription(
172
+ args: StopProductSubscriptionCommandInput,
173
+ options?: __HttpHandlerOptions
174
+ ): Promise<StopProductSubscriptionCommandOutput>;
175
+ stopProductSubscription(
176
+ args: StopProductSubscriptionCommandInput,
177
+ cb: (err: any, data?: StopProductSubscriptionCommandOutput) => void
178
+ ): void;
179
+ stopProductSubscription(
180
+ args: StopProductSubscriptionCommandInput,
181
+ options: __HttpHandlerOptions,
182
+ cb: (err: any, data?: StopProductSubscriptionCommandOutput) => void
183
+ ): void;
184
+ }
@@ -1,83 +1,190 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
- import { AssociateUserCommandInput, AssociateUserCommandOutput } from "./commands/AssociateUserCommand";
10
- import { DeregisterIdentityProviderCommandInput, DeregisterIdentityProviderCommandOutput } from "./commands/DeregisterIdentityProviderCommand";
11
- import { DisassociateUserCommandInput, DisassociateUserCommandOutput } from "./commands/DisassociateUserCommand";
12
- import { ListIdentityProvidersCommandInput, ListIdentityProvidersCommandOutput } from "./commands/ListIdentityProvidersCommand";
13
- import { ListInstancesCommandInput, ListInstancesCommandOutput } from "./commands/ListInstancesCommand";
14
- import { ListProductSubscriptionsCommandInput, ListProductSubscriptionsCommandOutput } from "./commands/ListProductSubscriptionsCommand";
15
- import { ListUserAssociationsCommandInput, ListUserAssociationsCommandOutput } from "./commands/ListUserAssociationsCommand";
16
- import { RegisterIdentityProviderCommandInput, RegisterIdentityProviderCommandOutput } from "./commands/RegisterIdentityProviderCommand";
17
- import { StartProductSubscriptionCommandInput, StartProductSubscriptionCommandOutput } from "./commands/StartProductSubscriptionCommand";
18
- import { StopProductSubscriptionCommandInput, StopProductSubscriptionCommandOutput } from "./commands/StopProductSubscriptionCommand";
19
- export declare type ServiceInputTypes = AssociateUserCommandInput | DeregisterIdentityProviderCommandInput | DisassociateUserCommandInput | ListIdentityProvidersCommandInput | ListInstancesCommandInput | ListProductSubscriptionsCommandInput | ListUserAssociationsCommandInput | RegisterIdentityProviderCommandInput | StartProductSubscriptionCommandInput | StopProductSubscriptionCommandInput;
20
- export declare type ServiceOutputTypes = AssociateUserCommandOutput | DeregisterIdentityProviderCommandOutput | DisassociateUserCommandOutput | ListIdentityProvidersCommandOutput | ListInstancesCommandOutput | ListProductSubscriptionsCommandOutput | ListUserAssociationsCommandOutput | RegisterIdentityProviderCommandOutput | StartProductSubscriptionCommandOutput | StopProductSubscriptionCommandOutput;
21
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
22
-
23
- requestHandler?: __HttpHandler;
24
-
25
- sha256?: __HashConstructor;
26
-
27
- urlParser?: __UrlParser;
28
-
29
- bodyLengthChecker?: __BodyLengthCalculator;
30
-
31
- streamCollector?: __StreamCollector;
32
-
33
- base64Decoder?: __Decoder;
34
-
35
- base64Encoder?: __Encoder;
36
-
37
- utf8Decoder?: __Decoder;
38
-
39
- utf8Encoder?: __Encoder;
40
-
41
- runtime?: string;
42
-
43
- disableHostPrefix?: boolean;
44
-
45
- maxAttempts?: number | __Provider<number>;
46
-
47
- retryMode?: string | __Provider<string>;
48
-
49
- logger?: __Logger;
50
-
51
- useDualstackEndpoint?: boolean | __Provider<boolean>;
52
-
53
- useFipsEndpoint?: boolean | __Provider<boolean>;
54
-
55
- serviceId?: string;
56
-
57
- region?: string | __Provider<string>;
58
-
59
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
60
-
61
- regionInfoProvider?: RegionInfoProvider;
62
-
63
- defaultUserAgentProvider?: Provider<__UserAgent>;
64
-
65
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
66
- }
67
- declare type LicenseManagerUserSubscriptionsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
68
-
69
- export interface LicenseManagerUserSubscriptionsClientConfig extends LicenseManagerUserSubscriptionsClientConfigType {
70
- }
71
- declare type LicenseManagerUserSubscriptionsClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
72
-
73
- export interface LicenseManagerUserSubscriptionsClientResolvedConfig extends LicenseManagerUserSubscriptionsClientResolvedConfigType {
74
- }
75
-
76
- export declare class LicenseManagerUserSubscriptionsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, LicenseManagerUserSubscriptionsClientResolvedConfig> {
77
-
78
- readonly config: LicenseManagerUserSubscriptionsClientResolvedConfig;
79
- constructor(configuration: LicenseManagerUserSubscriptionsClientConfig);
80
-
81
- destroy(): void;
82
- }
83
- export {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ HostHeaderInputConfig,
9
+ HostHeaderResolvedConfig,
10
+ } from "@aws-sdk/middleware-host-header";
11
+ import {
12
+ RetryInputConfig,
13
+ RetryResolvedConfig,
14
+ } from "@aws-sdk/middleware-retry";
15
+ import {
16
+ AwsAuthInputConfig,
17
+ AwsAuthResolvedConfig,
18
+ } from "@aws-sdk/middleware-signing";
19
+ import {
20
+ UserAgentInputConfig,
21
+ UserAgentResolvedConfig,
22
+ } from "@aws-sdk/middleware-user-agent";
23
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
24
+ import {
25
+ Client as __Client,
26
+ DefaultsMode,
27
+ SmithyConfiguration as __SmithyConfiguration,
28
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
29
+ } from "@aws-sdk/smithy-client";
30
+ import {
31
+ BodyLengthCalculator as __BodyLengthCalculator,
32
+ Credentials as __Credentials,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ RegionInfoProvider,
41
+ StreamCollector as __StreamCollector,
42
+ UrlParser as __UrlParser,
43
+ UserAgent as __UserAgent,
44
+ } from "@aws-sdk/types";
45
+ import {
46
+ AssociateUserCommandInput,
47
+ AssociateUserCommandOutput,
48
+ } from "./commands/AssociateUserCommand";
49
+ import {
50
+ DeregisterIdentityProviderCommandInput,
51
+ DeregisterIdentityProviderCommandOutput,
52
+ } from "./commands/DeregisterIdentityProviderCommand";
53
+ import {
54
+ DisassociateUserCommandInput,
55
+ DisassociateUserCommandOutput,
56
+ } from "./commands/DisassociateUserCommand";
57
+ import {
58
+ ListIdentityProvidersCommandInput,
59
+ ListIdentityProvidersCommandOutput,
60
+ } from "./commands/ListIdentityProvidersCommand";
61
+ import {
62
+ ListInstancesCommandInput,
63
+ ListInstancesCommandOutput,
64
+ } from "./commands/ListInstancesCommand";
65
+ import {
66
+ ListProductSubscriptionsCommandInput,
67
+ ListProductSubscriptionsCommandOutput,
68
+ } from "./commands/ListProductSubscriptionsCommand";
69
+ import {
70
+ ListUserAssociationsCommandInput,
71
+ ListUserAssociationsCommandOutput,
72
+ } from "./commands/ListUserAssociationsCommand";
73
+ import {
74
+ RegisterIdentityProviderCommandInput,
75
+ RegisterIdentityProviderCommandOutput,
76
+ } from "./commands/RegisterIdentityProviderCommand";
77
+ import {
78
+ StartProductSubscriptionCommandInput,
79
+ StartProductSubscriptionCommandOutput,
80
+ } from "./commands/StartProductSubscriptionCommand";
81
+ import {
82
+ StopProductSubscriptionCommandInput,
83
+ StopProductSubscriptionCommandOutput,
84
+ } from "./commands/StopProductSubscriptionCommand";
85
+ export declare type ServiceInputTypes =
86
+ | AssociateUserCommandInput
87
+ | DeregisterIdentityProviderCommandInput
88
+ | DisassociateUserCommandInput
89
+ | ListIdentityProvidersCommandInput
90
+ | ListInstancesCommandInput
91
+ | ListProductSubscriptionsCommandInput
92
+ | ListUserAssociationsCommandInput
93
+ | RegisterIdentityProviderCommandInput
94
+ | StartProductSubscriptionCommandInput
95
+ | StopProductSubscriptionCommandInput;
96
+ export declare type ServiceOutputTypes =
97
+ | AssociateUserCommandOutput
98
+ | DeregisterIdentityProviderCommandOutput
99
+ | DisassociateUserCommandOutput
100
+ | ListIdentityProvidersCommandOutput
101
+ | ListInstancesCommandOutput
102
+ | ListProductSubscriptionsCommandOutput
103
+ | ListUserAssociationsCommandOutput
104
+ | RegisterIdentityProviderCommandOutput
105
+ | StartProductSubscriptionCommandOutput
106
+ | StopProductSubscriptionCommandOutput;
107
+ export interface ClientDefaults
108
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
109
+ requestHandler?: __HttpHandler;
110
+
111
+ sha256?: __HashConstructor;
112
+
113
+ urlParser?: __UrlParser;
114
+
115
+ bodyLengthChecker?: __BodyLengthCalculator;
116
+
117
+ streamCollector?: __StreamCollector;
118
+
119
+ base64Decoder?: __Decoder;
120
+
121
+ base64Encoder?: __Encoder;
122
+
123
+ utf8Decoder?: __Decoder;
124
+
125
+ utf8Encoder?: __Encoder;
126
+
127
+ runtime?: string;
128
+
129
+ disableHostPrefix?: boolean;
130
+
131
+ maxAttempts?: number | __Provider<number>;
132
+
133
+ retryMode?: string | __Provider<string>;
134
+
135
+ logger?: __Logger;
136
+
137
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
138
+
139
+ useFipsEndpoint?: boolean | __Provider<boolean>;
140
+
141
+ serviceId?: string;
142
+
143
+ region?: string | __Provider<string>;
144
+
145
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
146
+
147
+ regionInfoProvider?: RegionInfoProvider;
148
+
149
+ defaultUserAgentProvider?: Provider<__UserAgent>;
150
+
151
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
152
+ }
153
+ declare type LicenseManagerUserSubscriptionsClientConfigType = Partial<
154
+ __SmithyConfiguration<__HttpHandlerOptions>
155
+ > &
156
+ ClientDefaults &
157
+ RegionInputConfig &
158
+ EndpointsInputConfig &
159
+ RetryInputConfig &
160
+ HostHeaderInputConfig &
161
+ AwsAuthInputConfig &
162
+ UserAgentInputConfig;
163
+
164
+ export interface LicenseManagerUserSubscriptionsClientConfig
165
+ extends LicenseManagerUserSubscriptionsClientConfigType {}
166
+ declare type LicenseManagerUserSubscriptionsClientResolvedConfigType =
167
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
168
+ Required<ClientDefaults> &
169
+ RegionResolvedConfig &
170
+ EndpointsResolvedConfig &
171
+ RetryResolvedConfig &
172
+ HostHeaderResolvedConfig &
173
+ AwsAuthResolvedConfig &
174
+ UserAgentResolvedConfig;
175
+
176
+ export interface LicenseManagerUserSubscriptionsClientResolvedConfig
177
+ extends LicenseManagerUserSubscriptionsClientResolvedConfigType {}
178
+
179
+ export declare class LicenseManagerUserSubscriptionsClient extends __Client<
180
+ __HttpHandlerOptions,
181
+ ServiceInputTypes,
182
+ ServiceOutputTypes,
183
+ LicenseManagerUserSubscriptionsClientResolvedConfig
184
+ > {
185
+ readonly config: LicenseManagerUserSubscriptionsClientResolvedConfig;
186
+ constructor(configuration: LicenseManagerUserSubscriptionsClientConfig);
187
+
188
+ destroy(): void;
189
+ }
190
+ export {};
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerUserSubscriptionsClient";
4
- import { AssociateUserRequest, AssociateUserResponse } from "../models/models_0";
5
- export interface AssociateUserCommandInput extends AssociateUserRequest {
6
- }
7
- export interface AssociateUserCommandOutput extends AssociateUserResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class AssociateUserCommand extends $Command<AssociateUserCommandInput, AssociateUserCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig> {
11
- readonly input: AssociateUserCommandInput;
12
- constructor(input: AssociateUserCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerUserSubscriptionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateUserCommandInput, AssociateUserCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ LicenseManagerUserSubscriptionsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../LicenseManagerUserSubscriptionsClient";
13
+ import {
14
+ AssociateUserRequest,
15
+ AssociateUserResponse,
16
+ } from "../models/models_0";
17
+ export interface AssociateUserCommandInput extends AssociateUserRequest {}
18
+ export interface AssociateUserCommandOutput
19
+ extends AssociateUserResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class AssociateUserCommand extends $Command<
23
+ AssociateUserCommandInput,
24
+ AssociateUserCommandOutput,
25
+ LicenseManagerUserSubscriptionsClientResolvedConfig
26
+ > {
27
+ readonly input: AssociateUserCommandInput;
28
+ constructor(input: AssociateUserCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: LicenseManagerUserSubscriptionsClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<AssociateUserCommandInput, AssociateUserCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerUserSubscriptionsClient";
4
- import { DeregisterIdentityProviderRequest, DeregisterIdentityProviderResponse } from "../models/models_0";
5
- export interface DeregisterIdentityProviderCommandInput extends DeregisterIdentityProviderRequest {
6
- }
7
- export interface DeregisterIdentityProviderCommandOutput extends DeregisterIdentityProviderResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeregisterIdentityProviderCommand extends $Command<DeregisterIdentityProviderCommandInput, DeregisterIdentityProviderCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig> {
11
- readonly input: DeregisterIdentityProviderCommandInput;
12
- constructor(input: DeregisterIdentityProviderCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerUserSubscriptionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeregisterIdentityProviderCommandInput, DeregisterIdentityProviderCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ LicenseManagerUserSubscriptionsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../LicenseManagerUserSubscriptionsClient";
13
+ import {
14
+ DeregisterIdentityProviderRequest,
15
+ DeregisterIdentityProviderResponse,
16
+ } from "../models/models_0";
17
+ export interface DeregisterIdentityProviderCommandInput
18
+ extends DeregisterIdentityProviderRequest {}
19
+ export interface DeregisterIdentityProviderCommandOutput
20
+ extends DeregisterIdentityProviderResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeregisterIdentityProviderCommand extends $Command<
24
+ DeregisterIdentityProviderCommandInput,
25
+ DeregisterIdentityProviderCommandOutput,
26
+ LicenseManagerUserSubscriptionsClientResolvedConfig
27
+ > {
28
+ readonly input: DeregisterIdentityProviderCommandInput;
29
+ constructor(input: DeregisterIdentityProviderCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: LicenseManagerUserSubscriptionsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DeregisterIdentityProviderCommandInput,
37
+ DeregisterIdentityProviderCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }