@aws-sdk/client-license-manager-user-subscriptions 3.478.0 → 3.484.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 (49) hide show
  1. package/dist-cjs/commands/AssociateUserCommand.js +18 -41
  2. package/dist-cjs/commands/DeregisterIdentityProviderCommand.js +18 -41
  3. package/dist-cjs/commands/DisassociateUserCommand.js +18 -41
  4. package/dist-cjs/commands/ListIdentityProvidersCommand.js +18 -41
  5. package/dist-cjs/commands/ListInstancesCommand.js +18 -41
  6. package/dist-cjs/commands/ListProductSubscriptionsCommand.js +18 -41
  7. package/dist-cjs/commands/ListUserAssociationsCommand.js +18 -41
  8. package/dist-cjs/commands/RegisterIdentityProviderCommand.js +18 -41
  9. package/dist-cjs/commands/StartProductSubscriptionCommand.js +18 -41
  10. package/dist-cjs/commands/StopProductSubscriptionCommand.js +18 -41
  11. package/dist-cjs/commands/UpdateIdentityProviderSettingsCommand.js +18 -41
  12. package/dist-cjs/endpoint/EndpointParameters.js +7 -1
  13. package/dist-es/commands/AssociateUserCommand.js +18 -41
  14. package/dist-es/commands/DeregisterIdentityProviderCommand.js +18 -41
  15. package/dist-es/commands/DisassociateUserCommand.js +18 -41
  16. package/dist-es/commands/ListIdentityProvidersCommand.js +18 -41
  17. package/dist-es/commands/ListInstancesCommand.js +18 -41
  18. package/dist-es/commands/ListProductSubscriptionsCommand.js +18 -41
  19. package/dist-es/commands/ListUserAssociationsCommand.js +18 -41
  20. package/dist-es/commands/RegisterIdentityProviderCommand.js +18 -41
  21. package/dist-es/commands/StartProductSubscriptionCommand.js +18 -41
  22. package/dist-es/commands/StopProductSubscriptionCommand.js +18 -41
  23. package/dist-es/commands/UpdateIdentityProviderSettingsCommand.js +18 -41
  24. package/dist-es/endpoint/EndpointParameters.js +6 -0
  25. package/dist-types/commands/AssociateUserCommand.d.ts +6 -21
  26. package/dist-types/commands/DeregisterIdentityProviderCommand.d.ts +6 -21
  27. package/dist-types/commands/DisassociateUserCommand.d.ts +6 -21
  28. package/dist-types/commands/ListIdentityProvidersCommand.d.ts +6 -21
  29. package/dist-types/commands/ListInstancesCommand.d.ts +6 -21
  30. package/dist-types/commands/ListProductSubscriptionsCommand.d.ts +6 -21
  31. package/dist-types/commands/ListUserAssociationsCommand.d.ts +6 -21
  32. package/dist-types/commands/RegisterIdentityProviderCommand.d.ts +6 -21
  33. package/dist-types/commands/StartProductSubscriptionCommand.d.ts +6 -21
  34. package/dist-types/commands/StopProductSubscriptionCommand.d.ts +6 -21
  35. package/dist-types/commands/UpdateIdentityProviderSettingsCommand.d.ts +6 -21
  36. package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
  37. package/dist-types/ts3.4/commands/AssociateUserCommand.d.ts +14 -23
  38. package/dist-types/ts3.4/commands/DeregisterIdentityProviderCommand.d.ts +12 -24
  39. package/dist-types/ts3.4/commands/DisassociateUserCommand.d.ts +14 -23
  40. package/dist-types/ts3.4/commands/ListIdentityProvidersCommand.d.ts +12 -24
  41. package/dist-types/ts3.4/commands/ListInstancesCommand.d.ts +14 -23
  42. package/dist-types/ts3.4/commands/ListProductSubscriptionsCommand.d.ts +12 -24
  43. package/dist-types/ts3.4/commands/ListUserAssociationsCommand.d.ts +12 -24
  44. package/dist-types/ts3.4/commands/RegisterIdentityProviderCommand.d.ts +12 -24
  45. package/dist-types/ts3.4/commands/StartProductSubscriptionCommand.d.ts +12 -24
  46. package/dist-types/ts3.4/commands/StopProductSubscriptionCommand.d.ts +12 -24
  47. package/dist-types/ts3.4/commands/UpdateIdentityProviderSettingsCommand.d.ts +12 -24
  48. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
  49. package/package.json +11 -11
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerUserSubscriptionsClient";
5
4
  import { StartProductSubscriptionRequest, StartProductSubscriptionResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface StartProductSubscriptionCommandInput extends StartProductSubscr
21
20
  */
22
21
  export interface StartProductSubscriptionCommandOutput extends StartProductSubscriptionResponse, __MetadataBearer {
23
22
  }
23
+ declare const StartProductSubscriptionCommand_base: {
24
+ new (input: StartProductSubscriptionCommandInput): import("@smithy/smithy-client").CommandImpl<StartProductSubscriptionCommandInput, StartProductSubscriptionCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Starts a product subscription for a user with the specified identity provider.</p>
@@ -98,23 +101,5 @@ export interface StartProductSubscriptionCommandOutput extends StartProductSubsc
98
101
  * <p>Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.</p>
99
102
  *
100
103
  */
101
- export declare class StartProductSubscriptionCommand extends $Command<StartProductSubscriptionCommandInput, StartProductSubscriptionCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig> {
102
- readonly input: StartProductSubscriptionCommandInput;
103
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
104
- /**
105
- * @public
106
- */
107
- constructor(input: StartProductSubscriptionCommandInput);
108
- /**
109
- * @internal
110
- */
111
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerUserSubscriptionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartProductSubscriptionCommandInput, StartProductSubscriptionCommandOutput>;
112
- /**
113
- * @internal
114
- */
115
- private serialize;
116
- /**
117
- * @internal
118
- */
119
- private deserialize;
104
+ export declare class StartProductSubscriptionCommand extends StartProductSubscriptionCommand_base {
120
105
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerUserSubscriptionsClient";
5
4
  import { StopProductSubscriptionRequest, StopProductSubscriptionResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface StopProductSubscriptionCommandInput extends StopProductSubscrip
21
20
  */
22
21
  export interface StopProductSubscriptionCommandOutput extends StopProductSubscriptionResponse, __MetadataBearer {
23
22
  }
23
+ declare const StopProductSubscriptionCommand_base: {
24
+ new (input: StopProductSubscriptionCommandInput): import("@smithy/smithy-client").CommandImpl<StopProductSubscriptionCommandInput, StopProductSubscriptionCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Stops a product subscription for a user with the specified identity provider.</p>
@@ -93,23 +96,5 @@ export interface StopProductSubscriptionCommandOutput extends StopProductSubscri
93
96
  * <p>Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.</p>
94
97
  *
95
98
  */
96
- export declare class StopProductSubscriptionCommand extends $Command<StopProductSubscriptionCommandInput, StopProductSubscriptionCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig> {
97
- readonly input: StopProductSubscriptionCommandInput;
98
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
99
- /**
100
- * @public
101
- */
102
- constructor(input: StopProductSubscriptionCommandInput);
103
- /**
104
- * @internal
105
- */
106
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerUserSubscriptionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopProductSubscriptionCommandInput, StopProductSubscriptionCommandOutput>;
107
- /**
108
- * @internal
109
- */
110
- private serialize;
111
- /**
112
- * @internal
113
- */
114
- private deserialize;
99
+ export declare class StopProductSubscriptionCommand extends StopProductSubscriptionCommand_base {
115
100
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerUserSubscriptionsClient";
5
4
  import { UpdateIdentityProviderSettingsRequest, UpdateIdentityProviderSettingsResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface UpdateIdentityProviderSettingsCommandInput extends UpdateIdenti
21
20
  */
22
21
  export interface UpdateIdentityProviderSettingsCommandOutput extends UpdateIdentityProviderSettingsResponse, __MetadataBearer {
23
22
  }
23
+ declare const UpdateIdentityProviderSettingsCommand_base: {
24
+ new (input: UpdateIdentityProviderSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateIdentityProviderSettingsCommandInput, UpdateIdentityProviderSettingsCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Updates additional product configuration settings for the registered identity
@@ -93,23 +96,5 @@ export interface UpdateIdentityProviderSettingsCommandOutput extends UpdateIdent
93
96
  * <p>Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.</p>
94
97
  *
95
98
  */
96
- export declare class UpdateIdentityProviderSettingsCommand extends $Command<UpdateIdentityProviderSettingsCommandInput, UpdateIdentityProviderSettingsCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig> {
97
- readonly input: UpdateIdentityProviderSettingsCommandInput;
98
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
99
- /**
100
- * @public
101
- */
102
- constructor(input: UpdateIdentityProviderSettingsCommandInput);
103
- /**
104
- * @internal
105
- */
106
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerUserSubscriptionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateIdentityProviderSettingsCommandInput, UpdateIdentityProviderSettingsCommandOutput>;
107
- /**
108
- * @internal
109
- */
110
- private serialize;
111
- /**
112
- * @internal
113
- */
114
- private deserialize;
99
+ export declare class UpdateIdentityProviderSettingsCommand extends UpdateIdentityProviderSettingsCommand_base {
115
100
  }
@@ -14,6 +14,24 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
14
14
  export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
15
15
  defaultSigningName: string;
16
16
  };
17
+ export declare const commonParams: {
18
+ readonly UseFIPS: {
19
+ readonly type: "builtInParams";
20
+ readonly name: "useFipsEndpoint";
21
+ };
22
+ readonly Endpoint: {
23
+ readonly type: "builtInParams";
24
+ readonly name: "endpoint";
25
+ };
26
+ readonly Region: {
27
+ readonly type: "builtInParams";
28
+ readonly name: "region";
29
+ };
30
+ readonly UseDualStack: {
31
+ readonly type: "builtInParams";
32
+ readonly name: "useDualstackEndpoint";
33
+ };
34
+ };
17
35
  export interface EndpointParameters extends __EndpointParameters {
18
36
  Region?: string;
19
37
  UseDualStack?: boolean;
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  LicenseManagerUserSubscriptionsClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -20,19 +14,16 @@ export interface AssociateUserCommandInput extends AssociateUserRequest {}
20
14
  export interface AssociateUserCommandOutput
21
15
  extends AssociateUserResponse,
22
16
  __MetadataBearer {}
23
- export declare class AssociateUserCommand extends $Command<
24
- AssociateUserCommandInput,
25
- AssociateUserCommandOutput,
26
- LicenseManagerUserSubscriptionsClientResolvedConfig
27
- > {
28
- readonly input: AssociateUserCommandInput;
29
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
- constructor(input: AssociateUserCommandInput);
31
- resolveMiddleware(
32
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
- configuration: LicenseManagerUserSubscriptionsClientResolvedConfig,
34
- options?: __HttpHandlerOptions
35
- ): Handler<AssociateUserCommandInput, AssociateUserCommandOutput>;
36
- private serialize;
37
- private deserialize;
38
- }
17
+ declare const AssociateUserCommand_base: {
18
+ new (
19
+ input: AssociateUserCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ AssociateUserCommandInput,
22
+ AssociateUserCommandOutput,
23
+ LicenseManagerUserSubscriptionsClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ export declare class AssociateUserCommand extends AssociateUserCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  LicenseManagerUserSubscriptionsClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -21,22 +15,16 @@ export interface DeregisterIdentityProviderCommandInput
21
15
  export interface DeregisterIdentityProviderCommandOutput
22
16
  extends DeregisterIdentityProviderResponse,
23
17
  __MetadataBearer {}
24
- export declare class DeregisterIdentityProviderCommand extends $Command<
25
- DeregisterIdentityProviderCommandInput,
26
- DeregisterIdentityProviderCommandOutput,
27
- LicenseManagerUserSubscriptionsClientResolvedConfig
28
- > {
29
- readonly input: DeregisterIdentityProviderCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: DeregisterIdentityProviderCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: LicenseManagerUserSubscriptionsClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<
18
+ declare const DeregisterIdentityProviderCommand_base: {
19
+ new (
20
+ input: DeregisterIdentityProviderCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
37
22
  DeregisterIdentityProviderCommandInput,
38
- DeregisterIdentityProviderCommandOutput
23
+ DeregisterIdentityProviderCommandOutput,
24
+ LicenseManagerUserSubscriptionsClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
39
27
  >;
40
- private serialize;
41
- private deserialize;
42
- }
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class DeregisterIdentityProviderCommand extends DeregisterIdentityProviderCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  LicenseManagerUserSubscriptionsClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -20,19 +14,16 @@ export interface DisassociateUserCommandInput extends DisassociateUserRequest {}
20
14
  export interface DisassociateUserCommandOutput
21
15
  extends DisassociateUserResponse,
22
16
  __MetadataBearer {}
23
- export declare class DisassociateUserCommand extends $Command<
24
- DisassociateUserCommandInput,
25
- DisassociateUserCommandOutput,
26
- LicenseManagerUserSubscriptionsClientResolvedConfig
27
- > {
28
- readonly input: DisassociateUserCommandInput;
29
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
- constructor(input: DisassociateUserCommandInput);
31
- resolveMiddleware(
32
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
- configuration: LicenseManagerUserSubscriptionsClientResolvedConfig,
34
- options?: __HttpHandlerOptions
35
- ): Handler<DisassociateUserCommandInput, DisassociateUserCommandOutput>;
36
- private serialize;
37
- private deserialize;
38
- }
17
+ declare const DisassociateUserCommand_base: {
18
+ new (
19
+ input: DisassociateUserCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ DisassociateUserCommandInput,
22
+ DisassociateUserCommandOutput,
23
+ LicenseManagerUserSubscriptionsClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ export declare class DisassociateUserCommand extends DisassociateUserCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  LicenseManagerUserSubscriptionsClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -21,22 +15,16 @@ export interface ListIdentityProvidersCommandInput
21
15
  export interface ListIdentityProvidersCommandOutput
22
16
  extends ListIdentityProvidersResponse,
23
17
  __MetadataBearer {}
24
- export declare class ListIdentityProvidersCommand extends $Command<
25
- ListIdentityProvidersCommandInput,
26
- ListIdentityProvidersCommandOutput,
27
- LicenseManagerUserSubscriptionsClientResolvedConfig
28
- > {
29
- readonly input: ListIdentityProvidersCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: ListIdentityProvidersCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: LicenseManagerUserSubscriptionsClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<
18
+ declare const ListIdentityProvidersCommand_base: {
19
+ new (
20
+ input: ListIdentityProvidersCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
37
22
  ListIdentityProvidersCommandInput,
38
- ListIdentityProvidersCommandOutput
23
+ ListIdentityProvidersCommandOutput,
24
+ LicenseManagerUserSubscriptionsClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
39
27
  >;
40
- private serialize;
41
- private deserialize;
42
- }
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class ListIdentityProvidersCommand extends ListIdentityProvidersCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  LicenseManagerUserSubscriptionsClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -20,19 +14,16 @@ export interface ListInstancesCommandInput extends ListInstancesRequest {}
20
14
  export interface ListInstancesCommandOutput
21
15
  extends ListInstancesResponse,
22
16
  __MetadataBearer {}
23
- export declare class ListInstancesCommand extends $Command<
24
- ListInstancesCommandInput,
25
- ListInstancesCommandOutput,
26
- LicenseManagerUserSubscriptionsClientResolvedConfig
27
- > {
28
- readonly input: ListInstancesCommandInput;
29
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
- constructor(input: ListInstancesCommandInput);
31
- resolveMiddleware(
32
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
- configuration: LicenseManagerUserSubscriptionsClientResolvedConfig,
34
- options?: __HttpHandlerOptions
35
- ): Handler<ListInstancesCommandInput, ListInstancesCommandOutput>;
36
- private serialize;
37
- private deserialize;
38
- }
17
+ declare const ListInstancesCommand_base: {
18
+ new (
19
+ input: ListInstancesCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ ListInstancesCommandInput,
22
+ ListInstancesCommandOutput,
23
+ LicenseManagerUserSubscriptionsClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ export declare class ListInstancesCommand extends ListInstancesCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  LicenseManagerUserSubscriptionsClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -21,22 +15,16 @@ export interface ListProductSubscriptionsCommandInput
21
15
  export interface ListProductSubscriptionsCommandOutput
22
16
  extends ListProductSubscriptionsResponse,
23
17
  __MetadataBearer {}
24
- export declare class ListProductSubscriptionsCommand extends $Command<
25
- ListProductSubscriptionsCommandInput,
26
- ListProductSubscriptionsCommandOutput,
27
- LicenseManagerUserSubscriptionsClientResolvedConfig
28
- > {
29
- readonly input: ListProductSubscriptionsCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: ListProductSubscriptionsCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: LicenseManagerUserSubscriptionsClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<
18
+ declare const ListProductSubscriptionsCommand_base: {
19
+ new (
20
+ input: ListProductSubscriptionsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
37
22
  ListProductSubscriptionsCommandInput,
38
- ListProductSubscriptionsCommandOutput
23
+ ListProductSubscriptionsCommandOutput,
24
+ LicenseManagerUserSubscriptionsClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
39
27
  >;
40
- private serialize;
41
- private deserialize;
42
- }
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class ListProductSubscriptionsCommand extends ListProductSubscriptionsCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  LicenseManagerUserSubscriptionsClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -21,22 +15,16 @@ export interface ListUserAssociationsCommandInput
21
15
  export interface ListUserAssociationsCommandOutput
22
16
  extends ListUserAssociationsResponse,
23
17
  __MetadataBearer {}
24
- export declare class ListUserAssociationsCommand extends $Command<
25
- ListUserAssociationsCommandInput,
26
- ListUserAssociationsCommandOutput,
27
- LicenseManagerUserSubscriptionsClientResolvedConfig
28
- > {
29
- readonly input: ListUserAssociationsCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: ListUserAssociationsCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: LicenseManagerUserSubscriptionsClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<
18
+ declare const ListUserAssociationsCommand_base: {
19
+ new (
20
+ input: ListUserAssociationsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
37
22
  ListUserAssociationsCommandInput,
38
- ListUserAssociationsCommandOutput
23
+ ListUserAssociationsCommandOutput,
24
+ LicenseManagerUserSubscriptionsClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
39
27
  >;
40
- private serialize;
41
- private deserialize;
42
- }
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class ListUserAssociationsCommand extends ListUserAssociationsCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  LicenseManagerUserSubscriptionsClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -21,22 +15,16 @@ export interface RegisterIdentityProviderCommandInput
21
15
  export interface RegisterIdentityProviderCommandOutput
22
16
  extends RegisterIdentityProviderResponse,
23
17
  __MetadataBearer {}
24
- export declare class RegisterIdentityProviderCommand extends $Command<
25
- RegisterIdentityProviderCommandInput,
26
- RegisterIdentityProviderCommandOutput,
27
- LicenseManagerUserSubscriptionsClientResolvedConfig
28
- > {
29
- readonly input: RegisterIdentityProviderCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: RegisterIdentityProviderCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: LicenseManagerUserSubscriptionsClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<
18
+ declare const RegisterIdentityProviderCommand_base: {
19
+ new (
20
+ input: RegisterIdentityProviderCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
37
22
  RegisterIdentityProviderCommandInput,
38
- RegisterIdentityProviderCommandOutput
23
+ RegisterIdentityProviderCommandOutput,
24
+ LicenseManagerUserSubscriptionsClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
39
27
  >;
40
- private serialize;
41
- private deserialize;
42
- }
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class RegisterIdentityProviderCommand extends RegisterIdentityProviderCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  LicenseManagerUserSubscriptionsClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -21,22 +15,16 @@ export interface StartProductSubscriptionCommandInput
21
15
  export interface StartProductSubscriptionCommandOutput
22
16
  extends StartProductSubscriptionResponse,
23
17
  __MetadataBearer {}
24
- export declare class StartProductSubscriptionCommand extends $Command<
25
- StartProductSubscriptionCommandInput,
26
- StartProductSubscriptionCommandOutput,
27
- LicenseManagerUserSubscriptionsClientResolvedConfig
28
- > {
29
- readonly input: StartProductSubscriptionCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: StartProductSubscriptionCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: LicenseManagerUserSubscriptionsClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<
18
+ declare const StartProductSubscriptionCommand_base: {
19
+ new (
20
+ input: StartProductSubscriptionCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
37
22
  StartProductSubscriptionCommandInput,
38
- StartProductSubscriptionCommandOutput
23
+ StartProductSubscriptionCommandOutput,
24
+ LicenseManagerUserSubscriptionsClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
39
27
  >;
40
- private serialize;
41
- private deserialize;
42
- }
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class StartProductSubscriptionCommand extends StartProductSubscriptionCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  LicenseManagerUserSubscriptionsClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -21,22 +15,16 @@ export interface StopProductSubscriptionCommandInput
21
15
  export interface StopProductSubscriptionCommandOutput
22
16
  extends StopProductSubscriptionResponse,
23
17
  __MetadataBearer {}
24
- export declare class StopProductSubscriptionCommand extends $Command<
25
- StopProductSubscriptionCommandInput,
26
- StopProductSubscriptionCommandOutput,
27
- LicenseManagerUserSubscriptionsClientResolvedConfig
28
- > {
29
- readonly input: StopProductSubscriptionCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: StopProductSubscriptionCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: LicenseManagerUserSubscriptionsClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<
18
+ declare const StopProductSubscriptionCommand_base: {
19
+ new (
20
+ input: StopProductSubscriptionCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
37
22
  StopProductSubscriptionCommandInput,
38
- StopProductSubscriptionCommandOutput
23
+ StopProductSubscriptionCommandOutput,
24
+ LicenseManagerUserSubscriptionsClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
39
27
  >;
40
- private serialize;
41
- private deserialize;
42
- }
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class StopProductSubscriptionCommand extends StopProductSubscriptionCommand_base {}