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