@aws-sdk/client-license-manager-user-subscriptions 3.533.0 → 3.540.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 (33) hide show
  1. package/dist-cjs/endpoint/endpointResolver.js +4 -2
  2. package/dist-cjs/index.js +0 -3
  3. package/dist-es/endpoint/endpointResolver.js +3 -1
  4. package/dist-es/index.js +0 -1
  5. package/dist-types/LicenseManagerUserSubscriptions.d.ts +3 -1
  6. package/dist-types/LicenseManagerUserSubscriptionsClient.d.ts +1 -1
  7. package/dist-types/commands/AssociateUserCommand.d.ts +2 -1
  8. package/dist-types/commands/DeregisterIdentityProviderCommand.d.ts +2 -1
  9. package/dist-types/commands/DisassociateUserCommand.d.ts +2 -1
  10. package/dist-types/commands/ListIdentityProvidersCommand.d.ts +2 -1
  11. package/dist-types/commands/ListInstancesCommand.d.ts +2 -1
  12. package/dist-types/commands/ListProductSubscriptionsCommand.d.ts +2 -1
  13. package/dist-types/commands/ListUserAssociationsCommand.d.ts +2 -1
  14. package/dist-types/commands/RegisterIdentityProviderCommand.d.ts +2 -1
  15. package/dist-types/commands/StartProductSubscriptionCommand.d.ts +2 -1
  16. package/dist-types/commands/StopProductSubscriptionCommand.d.ts +2 -1
  17. package/dist-types/commands/UpdateIdentityProviderSettingsCommand.d.ts +2 -1
  18. package/dist-types/index.d.ts +0 -1
  19. package/dist-types/models/models_0.d.ts +106 -106
  20. package/dist-types/ts3.4/LicenseManagerUserSubscriptions.d.ts +2 -0
  21. package/dist-types/ts3.4/commands/AssociateUserCommand.d.ts +9 -0
  22. package/dist-types/ts3.4/commands/DeregisterIdentityProviderCommand.d.ts +9 -0
  23. package/dist-types/ts3.4/commands/DisassociateUserCommand.d.ts +9 -0
  24. package/dist-types/ts3.4/commands/ListIdentityProvidersCommand.d.ts +9 -0
  25. package/dist-types/ts3.4/commands/ListInstancesCommand.d.ts +9 -0
  26. package/dist-types/ts3.4/commands/ListProductSubscriptionsCommand.d.ts +9 -0
  27. package/dist-types/ts3.4/commands/ListUserAssociationsCommand.d.ts +9 -0
  28. package/dist-types/ts3.4/commands/RegisterIdentityProviderCommand.d.ts +9 -0
  29. package/dist-types/ts3.4/commands/StartProductSubscriptionCommand.d.ts +9 -0
  30. package/dist-types/ts3.4/commands/StopProductSubscriptionCommand.d.ts +9 -0
  31. package/dist-types/ts3.4/commands/UpdateIdentityProviderSettingsCommand.d.ts +9 -0
  32. package/dist-types/ts3.4/index.d.ts +0 -1
  33. package/package.json +40 -40
@@ -1,12 +1,14 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.defaultEndpointResolver = void 0;
4
- const util_endpoints_1 = require("@smithy/util-endpoints");
4
+ const util_endpoints_1 = require("@aws-sdk/util-endpoints");
5
+ const util_endpoints_2 = require("@smithy/util-endpoints");
5
6
  const ruleset_1 = require("./ruleset");
6
7
  const defaultEndpointResolver = (endpointParams, context = {}) => {
7
- return (0, util_endpoints_1.resolveEndpoint)(ruleset_1.ruleSet, {
8
+ return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
8
9
  endpointParams: endpointParams,
9
10
  logger: context.logger,
10
11
  });
11
12
  };
12
13
  exports.defaultEndpointResolver = defaultEndpointResolver;
14
+ util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
package/dist-cjs/index.js CHANGED
@@ -1057,9 +1057,6 @@ var paginateListProductSubscriptions = (0, import_core.createPaginator)(LicenseM
1057
1057
  // src/pagination/ListUserAssociationsPaginator.ts
1058
1058
 
1059
1059
  var paginateListUserAssociations = (0, import_core.createPaginator)(LicenseManagerUserSubscriptionsClient, ListUserAssociationsCommand, "NextToken", "NextToken", "MaxResults");
1060
-
1061
- // src/index.ts
1062
- var import_util_endpoints = require("@aws-sdk/util-endpoints");
1063
1060
  // Annotate the CommonJS export names for ESM import in node:
1064
1061
 
1065
1062
  0 && (module.exports = {
@@ -1,4 +1,5 @@
1
- import { resolveEndpoint } from "@smithy/util-endpoints";
1
+ import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
2
+ import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
2
3
  import { ruleSet } from "./ruleset";
3
4
  export const defaultEndpointResolver = (endpointParams, context = {}) => {
4
5
  return resolveEndpoint(ruleSet, {
@@ -6,3 +7,4 @@ export const defaultEndpointResolver = (endpointParams, context = {}) => {
6
7
  logger: context.logger,
7
8
  });
8
9
  };
10
+ customEndpointFunctions.aws = awsEndpointFunctions;
package/dist-es/index.js CHANGED
@@ -3,5 +3,4 @@ export * from "./LicenseManagerUserSubscriptions";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
5
  export * from "./models";
6
- import "@aws-sdk/util-endpoints";
7
6
  export { LicenseManagerUserSubscriptionsServiceException } from "./models/LicenseManagerUserSubscriptionsServiceException";
@@ -33,12 +33,14 @@ export interface LicenseManagerUserSubscriptions {
33
33
  /**
34
34
  * @see {@link ListIdentityProvidersCommand}
35
35
  */
36
+ listIdentityProviders(): Promise<ListIdentityProvidersCommandOutput>;
36
37
  listIdentityProviders(args: ListIdentityProvidersCommandInput, options?: __HttpHandlerOptions): Promise<ListIdentityProvidersCommandOutput>;
37
38
  listIdentityProviders(args: ListIdentityProvidersCommandInput, cb: (err: any, data?: ListIdentityProvidersCommandOutput) => void): void;
38
39
  listIdentityProviders(args: ListIdentityProvidersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIdentityProvidersCommandOutput) => void): void;
39
40
  /**
40
41
  * @see {@link ListInstancesCommand}
41
42
  */
43
+ listInstances(): Promise<ListInstancesCommandOutput>;
42
44
  listInstances(args: ListInstancesCommandInput, options?: __HttpHandlerOptions): Promise<ListInstancesCommandOutput>;
43
45
  listInstances(args: ListInstancesCommandInput, cb: (err: any, data?: ListInstancesCommandOutput) => void): void;
44
46
  listInstances(args: ListInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInstancesCommandOutput) => void): void;
@@ -80,9 +82,9 @@ export interface LicenseManagerUserSubscriptions {
80
82
  updateIdentityProviderSettings(args: UpdateIdentityProviderSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateIdentityProviderSettingsCommandOutput) => void): void;
81
83
  }
82
84
  /**
83
- * @public
84
85
  * <p>With License Manager, you can create user-based subscriptions to utilize licensed software with
85
86
  * a per user subscription fee on Amazon EC2 instances.</p>
87
+ * @public
86
88
  */
87
89
  export declare class LicenseManagerUserSubscriptions extends LicenseManagerUserSubscriptionsClient implements LicenseManagerUserSubscriptions {
88
90
  }
@@ -162,9 +162,9 @@ export type LicenseManagerUserSubscriptionsClientResolvedConfigType = __SmithyRe
162
162
  export interface LicenseManagerUserSubscriptionsClientResolvedConfig extends LicenseManagerUserSubscriptionsClientResolvedConfigType {
163
163
  }
164
164
  /**
165
- * @public
166
165
  * <p>With License Manager, you can create user-based subscriptions to utilize licensed software with
167
166
  * a per user subscription fee on Amazon EC2 instances.</p>
167
+ * @public
168
168
  */
169
169
  export declare class LicenseManagerUserSubscriptionsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, LicenseManagerUserSubscriptionsClientResolvedConfig> {
170
170
  /**
@@ -22,10 +22,10 @@ export interface AssociateUserCommandOutput extends AssociateUserResponse, __Met
22
22
  }
23
23
  declare const AssociateUserCommand_base: {
24
24
  new (input: AssociateUserCommandInput): import("@smithy/smithy-client").CommandImpl<AssociateUserCommandInput, AssociateUserCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: AssociateUserCommandInput): import("@smithy/smithy-client").CommandImpl<AssociateUserCommandInput, AssociateUserCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Associates the user to an EC2 instance to utilize user-based subscriptions.</p>
30
30
  * <note>
31
31
  * <p>Your estimated bill for charges on the number of users and related costs will take 48
@@ -100,6 +100,7 @@ declare const AssociateUserCommand_base: {
100
100
  * @throws {@link LicenseManagerUserSubscriptionsServiceException}
101
101
  * <p>Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.</p>
102
102
  *
103
+ * @public
103
104
  */
104
105
  export declare class AssociateUserCommand extends AssociateUserCommand_base {
105
106
  }
@@ -22,10 +22,10 @@ export interface DeregisterIdentityProviderCommandOutput extends DeregisterIdent
22
22
  }
23
23
  declare const DeregisterIdentityProviderCommand_base: {
24
24
  new (input: DeregisterIdentityProviderCommandInput): import("@smithy/smithy-client").CommandImpl<DeregisterIdentityProviderCommandInput, DeregisterIdentityProviderCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeregisterIdentityProviderCommandInput): import("@smithy/smithy-client").CommandImpl<DeregisterIdentityProviderCommandInput, DeregisterIdentityProviderCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deregisters the identity provider from providing user-based subscriptions.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -95,6 +95,7 @@ declare const DeregisterIdentityProviderCommand_base: {
95
95
  * @throws {@link LicenseManagerUserSubscriptionsServiceException}
96
96
  * <p>Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.</p>
97
97
  *
98
+ * @public
98
99
  */
99
100
  export declare class DeregisterIdentityProviderCommand extends DeregisterIdentityProviderCommand_base {
100
101
  }
@@ -22,10 +22,10 @@ export interface DisassociateUserCommandOutput extends DisassociateUserResponse,
22
22
  }
23
23
  declare const DisassociateUserCommand_base: {
24
24
  new (input: DisassociateUserCommandInput): import("@smithy/smithy-client").CommandImpl<DisassociateUserCommandInput, DisassociateUserCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DisassociateUserCommandInput): import("@smithy/smithy-client").CommandImpl<DisassociateUserCommandInput, DisassociateUserCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Disassociates the user from an EC2 instance providing user-based subscriptions.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -95,6 +95,7 @@ declare const DisassociateUserCommand_base: {
95
95
  * @throws {@link LicenseManagerUserSubscriptionsServiceException}
96
96
  * <p>Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.</p>
97
97
  *
98
+ * @public
98
99
  */
99
100
  export declare class DisassociateUserCommand extends DisassociateUserCommand_base {
100
101
  }
@@ -22,10 +22,10 @@ export interface ListIdentityProvidersCommandOutput extends ListIdentityProvider
22
22
  }
23
23
  declare const ListIdentityProvidersCommand_base: {
24
24
  new (input: ListIdentityProvidersCommandInput): import("@smithy/smithy-client").CommandImpl<ListIdentityProvidersCommandInput, ListIdentityProvidersCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListIdentityProvidersCommandInput]): import("@smithy/smithy-client").CommandImpl<ListIdentityProvidersCommandInput, ListIdentityProvidersCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Lists the identity providers for user-based subscriptions.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -94,6 +94,7 @@ declare const ListIdentityProvidersCommand_base: {
94
94
  * @throws {@link LicenseManagerUserSubscriptionsServiceException}
95
95
  * <p>Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.</p>
96
96
  *
97
+ * @public
97
98
  */
98
99
  export declare class ListIdentityProvidersCommand extends ListIdentityProvidersCommand_base {
99
100
  }
@@ -22,10 +22,10 @@ export interface ListInstancesCommandOutput extends ListInstancesResponse, __Met
22
22
  }
23
23
  declare const ListInstancesCommand_base: {
24
24
  new (input: ListInstancesCommandInput): import("@smithy/smithy-client").CommandImpl<ListInstancesCommandInput, ListInstancesCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListInstancesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListInstancesCommandInput, ListInstancesCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Lists the EC2 instances providing user-based subscriptions.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -94,6 +94,7 @@ declare const ListInstancesCommand_base: {
94
94
  * @throws {@link LicenseManagerUserSubscriptionsServiceException}
95
95
  * <p>Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.</p>
96
96
  *
97
+ * @public
97
98
  */
98
99
  export declare class ListInstancesCommand extends ListInstancesCommand_base {
99
100
  }
@@ -22,10 +22,10 @@ export interface ListProductSubscriptionsCommandOutput extends ListProductSubscr
22
22
  }
23
23
  declare const ListProductSubscriptionsCommand_base: {
24
24
  new (input: ListProductSubscriptionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListProductSubscriptionsCommandInput, ListProductSubscriptionsCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListProductSubscriptionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListProductSubscriptionsCommandInput, ListProductSubscriptionsCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Lists the user-based subscription products available from an identity provider.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -105,6 +105,7 @@ declare const ListProductSubscriptionsCommand_base: {
105
105
  * @throws {@link LicenseManagerUserSubscriptionsServiceException}
106
106
  * <p>Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.</p>
107
107
  *
108
+ * @public
108
109
  */
109
110
  export declare class ListProductSubscriptionsCommand extends ListProductSubscriptionsCommand_base {
110
111
  }
@@ -22,10 +22,10 @@ export interface ListUserAssociationsCommandOutput extends ListUserAssociationsR
22
22
  }
23
23
  declare const ListUserAssociationsCommand_base: {
24
24
  new (input: ListUserAssociationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListUserAssociationsCommandInput, ListUserAssociationsCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListUserAssociationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListUserAssociationsCommandInput, ListUserAssociationsCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Lists user associations for an identity provider.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -105,6 +105,7 @@ declare const ListUserAssociationsCommand_base: {
105
105
  * @throws {@link LicenseManagerUserSubscriptionsServiceException}
106
106
  * <p>Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.</p>
107
107
  *
108
+ * @public
108
109
  */
109
110
  export declare class ListUserAssociationsCommand extends ListUserAssociationsCommand_base {
110
111
  }
@@ -22,10 +22,10 @@ export interface RegisterIdentityProviderCommandOutput extends RegisterIdentityP
22
22
  }
23
23
  declare const RegisterIdentityProviderCommand_base: {
24
24
  new (input: RegisterIdentityProviderCommandInput): import("@smithy/smithy-client").CommandImpl<RegisterIdentityProviderCommandInput, RegisterIdentityProviderCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: RegisterIdentityProviderCommandInput): import("@smithy/smithy-client").CommandImpl<RegisterIdentityProviderCommandInput, RegisterIdentityProviderCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Registers an identity provider for user-based subscriptions.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -101,6 +101,7 @@ declare const RegisterIdentityProviderCommand_base: {
101
101
  * @throws {@link LicenseManagerUserSubscriptionsServiceException}
102
102
  * <p>Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.</p>
103
103
  *
104
+ * @public
104
105
  */
105
106
  export declare class RegisterIdentityProviderCommand extends RegisterIdentityProviderCommand_base {
106
107
  }
@@ -22,10 +22,10 @@ export interface StartProductSubscriptionCommandOutput extends StartProductSubsc
22
22
  }
23
23
  declare const StartProductSubscriptionCommand_base: {
24
24
  new (input: StartProductSubscriptionCommandInput): import("@smithy/smithy-client").CommandImpl<StartProductSubscriptionCommandInput, StartProductSubscriptionCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: StartProductSubscriptionCommandInput): import("@smithy/smithy-client").CommandImpl<StartProductSubscriptionCommandInput, StartProductSubscriptionCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Starts a product subscription for a user with the specified identity provider.</p>
30
30
  * <note>
31
31
  * <p>Your estimated bill for charges on the number of users and related costs will take 48
@@ -100,6 +100,7 @@ declare const StartProductSubscriptionCommand_base: {
100
100
  * @throws {@link LicenseManagerUserSubscriptionsServiceException}
101
101
  * <p>Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.</p>
102
102
  *
103
+ * @public
103
104
  */
104
105
  export declare class StartProductSubscriptionCommand extends StartProductSubscriptionCommand_base {
105
106
  }
@@ -22,10 +22,10 @@ export interface StopProductSubscriptionCommandOutput extends StopProductSubscri
22
22
  }
23
23
  declare const StopProductSubscriptionCommand_base: {
24
24
  new (input: StopProductSubscriptionCommandInput): import("@smithy/smithy-client").CommandImpl<StopProductSubscriptionCommandInput, StopProductSubscriptionCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: StopProductSubscriptionCommandInput): import("@smithy/smithy-client").CommandImpl<StopProductSubscriptionCommandInput, StopProductSubscriptionCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Stops a product subscription for a user with the specified identity provider.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -95,6 +95,7 @@ declare const StopProductSubscriptionCommand_base: {
95
95
  * @throws {@link LicenseManagerUserSubscriptionsServiceException}
96
96
  * <p>Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.</p>
97
97
  *
98
+ * @public
98
99
  */
99
100
  export declare class StopProductSubscriptionCommand extends StopProductSubscriptionCommand_base {
100
101
  }
@@ -22,10 +22,10 @@ export interface UpdateIdentityProviderSettingsCommandOutput extends UpdateIdent
22
22
  }
23
23
  declare const UpdateIdentityProviderSettingsCommand_base: {
24
24
  new (input: UpdateIdentityProviderSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateIdentityProviderSettingsCommandInput, UpdateIdentityProviderSettingsCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UpdateIdentityProviderSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateIdentityProviderSettingsCommandInput, UpdateIdentityProviderSettingsCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Updates additional product configuration settings for the registered identity
30
30
  * provider.</p>
31
31
  * @example
@@ -95,6 +95,7 @@ declare const UpdateIdentityProviderSettingsCommand_base: {
95
95
  * @throws {@link LicenseManagerUserSubscriptionsServiceException}
96
96
  * <p>Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.</p>
97
97
  *
98
+ * @public
98
99
  */
99
100
  export declare class UpdateIdentityProviderSettingsCommand extends UpdateIdentityProviderSettingsCommand_base {
100
101
  }
@@ -12,5 +12,4 @@ export { LicenseManagerUserSubscriptionsExtensionConfiguration } from "./extensi
12
12
  export * from "./commands";
13
13
  export * from "./pagination";
14
14
  export * from "./models";
15
- import "@aws-sdk/util-endpoints";
16
15
  export { LicenseManagerUserSubscriptionsServiceException } from "./models/LicenseManagerUserSubscriptionsServiceException";