@aws-sdk/client-license-manager-user-subscriptions 3.478.0 → 3.481.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.
- package/dist-cjs/commands/AssociateUserCommand.js +18 -41
- package/dist-cjs/commands/DeregisterIdentityProviderCommand.js +18 -41
- package/dist-cjs/commands/DisassociateUserCommand.js +18 -41
- package/dist-cjs/commands/ListIdentityProvidersCommand.js +18 -41
- package/dist-cjs/commands/ListInstancesCommand.js +18 -41
- package/dist-cjs/commands/ListProductSubscriptionsCommand.js +18 -41
- package/dist-cjs/commands/ListUserAssociationsCommand.js +18 -41
- package/dist-cjs/commands/RegisterIdentityProviderCommand.js +18 -41
- package/dist-cjs/commands/StartProductSubscriptionCommand.js +18 -41
- package/dist-cjs/commands/StopProductSubscriptionCommand.js +18 -41
- package/dist-cjs/commands/UpdateIdentityProviderSettingsCommand.js +18 -41
- package/dist-cjs/endpoint/EndpointParameters.js +7 -1
- package/dist-es/commands/AssociateUserCommand.js +18 -41
- package/dist-es/commands/DeregisterIdentityProviderCommand.js +18 -41
- package/dist-es/commands/DisassociateUserCommand.js +18 -41
- package/dist-es/commands/ListIdentityProvidersCommand.js +18 -41
- package/dist-es/commands/ListInstancesCommand.js +18 -41
- package/dist-es/commands/ListProductSubscriptionsCommand.js +18 -41
- package/dist-es/commands/ListUserAssociationsCommand.js +18 -41
- package/dist-es/commands/RegisterIdentityProviderCommand.js +18 -41
- package/dist-es/commands/StartProductSubscriptionCommand.js +18 -41
- package/dist-es/commands/StopProductSubscriptionCommand.js +18 -41
- package/dist-es/commands/UpdateIdentityProviderSettingsCommand.js +18 -41
- package/dist-es/endpoint/EndpointParameters.js +6 -0
- package/dist-types/commands/AssociateUserCommand.d.ts +6 -21
- package/dist-types/commands/DeregisterIdentityProviderCommand.d.ts +6 -21
- package/dist-types/commands/DisassociateUserCommand.d.ts +6 -21
- package/dist-types/commands/ListIdentityProvidersCommand.d.ts +6 -21
- package/dist-types/commands/ListInstancesCommand.d.ts +6 -21
- package/dist-types/commands/ListProductSubscriptionsCommand.d.ts +6 -21
- package/dist-types/commands/ListUserAssociationsCommand.d.ts +6 -21
- package/dist-types/commands/RegisterIdentityProviderCommand.d.ts +6 -21
- package/dist-types/commands/StartProductSubscriptionCommand.d.ts +6 -21
- package/dist-types/commands/StopProductSubscriptionCommand.d.ts +6 -21
- package/dist-types/commands/UpdateIdentityProviderSettingsCommand.d.ts +6 -21
- package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
- package/dist-types/ts3.4/commands/AssociateUserCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/DeregisterIdentityProviderCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/DisassociateUserCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ListIdentityProvidersCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/ListInstancesCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ListProductSubscriptionsCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/ListUserAssociationsCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/RegisterIdentityProviderCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/StartProductSubscriptionCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/StopProductSubscriptionCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/UpdateIdentityProviderSettingsCommand.d.ts +12 -24
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
- package/package.json +9 -9
|
@@ -1,47 +1,24 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
5
|
import { de_RegisterIdentityProviderCommand, se_RegisterIdentityProviderCommand } from "../protocols/Aws_restJson1";
|
|
6
6
|
export { $Command };
|
|
7
|
-
export class RegisterIdentityProviderCommand extends $Command
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
const { logger } = configuration;
|
|
25
|
-
const clientName = "LicenseManagerUserSubscriptionsClient";
|
|
26
|
-
const commandName = "RegisterIdentityProviderCommand";
|
|
27
|
-
const handlerExecutionContext = {
|
|
28
|
-
logger,
|
|
29
|
-
clientName,
|
|
30
|
-
commandName,
|
|
31
|
-
inputFilterSensitiveLog: (_) => _,
|
|
32
|
-
outputFilterSensitiveLog: (_) => _,
|
|
33
|
-
[SMITHY_CONTEXT_KEY]: {
|
|
34
|
-
service: "LicenseManagerUserSubscriptions",
|
|
35
|
-
operation: "RegisterIdentityProvider",
|
|
36
|
-
},
|
|
37
|
-
};
|
|
38
|
-
const { requestHandler } = configuration;
|
|
39
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
40
|
-
}
|
|
41
|
-
serialize(input, context) {
|
|
42
|
-
return se_RegisterIdentityProviderCommand(input, context);
|
|
43
|
-
}
|
|
44
|
-
deserialize(output, context) {
|
|
45
|
-
return de_RegisterIdentityProviderCommand(output, context);
|
|
46
|
-
}
|
|
7
|
+
export class RegisterIdentityProviderCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("LicenseManagerUserSubscriptions", "RegisterIdentityProvider", {})
|
|
19
|
+
.n("LicenseManagerUserSubscriptionsClient", "RegisterIdentityProviderCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_RegisterIdentityProviderCommand)
|
|
22
|
+
.de(de_RegisterIdentityProviderCommand)
|
|
23
|
+
.build() {
|
|
47
24
|
}
|
|
@@ -1,47 +1,24 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
5
|
import { de_StartProductSubscriptionCommand, se_StartProductSubscriptionCommand } from "../protocols/Aws_restJson1";
|
|
6
6
|
export { $Command };
|
|
7
|
-
export class StartProductSubscriptionCommand extends $Command
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
const { logger } = configuration;
|
|
25
|
-
const clientName = "LicenseManagerUserSubscriptionsClient";
|
|
26
|
-
const commandName = "StartProductSubscriptionCommand";
|
|
27
|
-
const handlerExecutionContext = {
|
|
28
|
-
logger,
|
|
29
|
-
clientName,
|
|
30
|
-
commandName,
|
|
31
|
-
inputFilterSensitiveLog: (_) => _,
|
|
32
|
-
outputFilterSensitiveLog: (_) => _,
|
|
33
|
-
[SMITHY_CONTEXT_KEY]: {
|
|
34
|
-
service: "LicenseManagerUserSubscriptions",
|
|
35
|
-
operation: "StartProductSubscription",
|
|
36
|
-
},
|
|
37
|
-
};
|
|
38
|
-
const { requestHandler } = configuration;
|
|
39
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
40
|
-
}
|
|
41
|
-
serialize(input, context) {
|
|
42
|
-
return se_StartProductSubscriptionCommand(input, context);
|
|
43
|
-
}
|
|
44
|
-
deserialize(output, context) {
|
|
45
|
-
return de_StartProductSubscriptionCommand(output, context);
|
|
46
|
-
}
|
|
7
|
+
export class StartProductSubscriptionCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("LicenseManagerUserSubscriptions", "StartProductSubscription", {})
|
|
19
|
+
.n("LicenseManagerUserSubscriptionsClient", "StartProductSubscriptionCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_StartProductSubscriptionCommand)
|
|
22
|
+
.de(de_StartProductSubscriptionCommand)
|
|
23
|
+
.build() {
|
|
47
24
|
}
|
|
@@ -1,47 +1,24 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
5
|
import { de_StopProductSubscriptionCommand, se_StopProductSubscriptionCommand } from "../protocols/Aws_restJson1";
|
|
6
6
|
export { $Command };
|
|
7
|
-
export class StopProductSubscriptionCommand extends $Command
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
const { logger } = configuration;
|
|
25
|
-
const clientName = "LicenseManagerUserSubscriptionsClient";
|
|
26
|
-
const commandName = "StopProductSubscriptionCommand";
|
|
27
|
-
const handlerExecutionContext = {
|
|
28
|
-
logger,
|
|
29
|
-
clientName,
|
|
30
|
-
commandName,
|
|
31
|
-
inputFilterSensitiveLog: (_) => _,
|
|
32
|
-
outputFilterSensitiveLog: (_) => _,
|
|
33
|
-
[SMITHY_CONTEXT_KEY]: {
|
|
34
|
-
service: "LicenseManagerUserSubscriptions",
|
|
35
|
-
operation: "StopProductSubscription",
|
|
36
|
-
},
|
|
37
|
-
};
|
|
38
|
-
const { requestHandler } = configuration;
|
|
39
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
40
|
-
}
|
|
41
|
-
serialize(input, context) {
|
|
42
|
-
return se_StopProductSubscriptionCommand(input, context);
|
|
43
|
-
}
|
|
44
|
-
deserialize(output, context) {
|
|
45
|
-
return de_StopProductSubscriptionCommand(output, context);
|
|
46
|
-
}
|
|
7
|
+
export class StopProductSubscriptionCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("LicenseManagerUserSubscriptions", "StopProductSubscription", {})
|
|
19
|
+
.n("LicenseManagerUserSubscriptionsClient", "StopProductSubscriptionCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_StopProductSubscriptionCommand)
|
|
22
|
+
.de(de_StopProductSubscriptionCommand)
|
|
23
|
+
.build() {
|
|
47
24
|
}
|
|
@@ -1,47 +1,24 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
5
|
import { de_UpdateIdentityProviderSettingsCommand, se_UpdateIdentityProviderSettingsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
export { $Command };
|
|
7
|
-
export class UpdateIdentityProviderSettingsCommand extends $Command
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
const { logger } = configuration;
|
|
25
|
-
const clientName = "LicenseManagerUserSubscriptionsClient";
|
|
26
|
-
const commandName = "UpdateIdentityProviderSettingsCommand";
|
|
27
|
-
const handlerExecutionContext = {
|
|
28
|
-
logger,
|
|
29
|
-
clientName,
|
|
30
|
-
commandName,
|
|
31
|
-
inputFilterSensitiveLog: (_) => _,
|
|
32
|
-
outputFilterSensitiveLog: (_) => _,
|
|
33
|
-
[SMITHY_CONTEXT_KEY]: {
|
|
34
|
-
service: "LicenseManagerUserSubscriptions",
|
|
35
|
-
operation: "UpdateIdentityProviderSettings",
|
|
36
|
-
},
|
|
37
|
-
};
|
|
38
|
-
const { requestHandler } = configuration;
|
|
39
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
40
|
-
}
|
|
41
|
-
serialize(input, context) {
|
|
42
|
-
return se_UpdateIdentityProviderSettingsCommand(input, context);
|
|
43
|
-
}
|
|
44
|
-
deserialize(output, context) {
|
|
45
|
-
return de_UpdateIdentityProviderSettingsCommand(output, context);
|
|
46
|
-
}
|
|
7
|
+
export class UpdateIdentityProviderSettingsCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("LicenseManagerUserSubscriptions", "UpdateIdentityProviderSettings", {})
|
|
19
|
+
.n("LicenseManagerUserSubscriptionsClient", "UpdateIdentityProviderSettingsCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_UpdateIdentityProviderSettingsCommand)
|
|
22
|
+
.de(de_UpdateIdentityProviderSettingsCommand)
|
|
23
|
+
.build() {
|
|
47
24
|
}
|
|
@@ -6,3 +6,9 @@ export const resolveClientEndpointParameters = (options) => {
|
|
|
6
6
|
defaultSigningName: "license-manager-user-subscriptions",
|
|
7
7
|
};
|
|
8
8
|
};
|
|
9
|
+
export const commonParams = {
|
|
10
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
11
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
12
|
+
Region: { type: "builtInParams", name: "region" },
|
|
13
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
14
|
+
};
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerUserSubscriptionsClient";
|
|
5
4
|
import { AssociateUserRequest, AssociateUserResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface AssociateUserCommandInput extends AssociateUserRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface AssociateUserCommandOutput extends AssociateUserResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const AssociateUserCommand_base: {
|
|
24
|
+
new (input: AssociateUserCommandInput): import("@smithy/smithy-client").CommandImpl<AssociateUserCommandInput, AssociateUserCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Associates the user to an EC2 instance to utilize user-based subscriptions.</p>
|
|
@@ -98,23 +101,5 @@ export interface AssociateUserCommandOutput extends AssociateUserResponse, __Met
|
|
|
98
101
|
* <p>Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.</p>
|
|
99
102
|
*
|
|
100
103
|
*/
|
|
101
|
-
export declare class AssociateUserCommand extends
|
|
102
|
-
readonly input: AssociateUserCommandInput;
|
|
103
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
104
|
-
/**
|
|
105
|
-
* @public
|
|
106
|
-
*/
|
|
107
|
-
constructor(input: AssociateUserCommandInput);
|
|
108
|
-
/**
|
|
109
|
-
* @internal
|
|
110
|
-
*/
|
|
111
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerUserSubscriptionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateUserCommandInput, AssociateUserCommandOutput>;
|
|
112
|
-
/**
|
|
113
|
-
* @internal
|
|
114
|
-
*/
|
|
115
|
-
private serialize;
|
|
116
|
-
/**
|
|
117
|
-
* @internal
|
|
118
|
-
*/
|
|
119
|
-
private deserialize;
|
|
104
|
+
export declare class AssociateUserCommand extends AssociateUserCommand_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 {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerUserSubscriptionsClient";
|
|
5
4
|
import { DeregisterIdentityProviderRequest, DeregisterIdentityProviderResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DeregisterIdentityProviderCommandInput extends DeregisterIdenti
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DeregisterIdentityProviderCommandOutput extends DeregisterIdentityProviderResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DeregisterIdentityProviderCommand_base: {
|
|
24
|
+
new (input: DeregisterIdentityProviderCommandInput): import("@smithy/smithy-client").CommandImpl<DeregisterIdentityProviderCommandInput, DeregisterIdentityProviderCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Deregisters the identity provider from providing user-based subscriptions.</p>
|
|
@@ -93,23 +96,5 @@ export interface DeregisterIdentityProviderCommandOutput extends DeregisterIdent
|
|
|
93
96
|
* <p>Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.</p>
|
|
94
97
|
*
|
|
95
98
|
*/
|
|
96
|
-
export declare class DeregisterIdentityProviderCommand extends
|
|
97
|
-
readonly input: DeregisterIdentityProviderCommandInput;
|
|
98
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
99
|
-
/**
|
|
100
|
-
* @public
|
|
101
|
-
*/
|
|
102
|
-
constructor(input: DeregisterIdentityProviderCommandInput);
|
|
103
|
-
/**
|
|
104
|
-
* @internal
|
|
105
|
-
*/
|
|
106
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerUserSubscriptionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeregisterIdentityProviderCommandInput, DeregisterIdentityProviderCommandOutput>;
|
|
107
|
-
/**
|
|
108
|
-
* @internal
|
|
109
|
-
*/
|
|
110
|
-
private serialize;
|
|
111
|
-
/**
|
|
112
|
-
* @internal
|
|
113
|
-
*/
|
|
114
|
-
private deserialize;
|
|
99
|
+
export declare class DeregisterIdentityProviderCommand extends DeregisterIdentityProviderCommand_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 {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerUserSubscriptionsClient";
|
|
5
4
|
import { DisassociateUserRequest, DisassociateUserResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DisassociateUserCommandInput extends DisassociateUserRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DisassociateUserCommandOutput extends DisassociateUserResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DisassociateUserCommand_base: {
|
|
24
|
+
new (input: DisassociateUserCommandInput): import("@smithy/smithy-client").CommandImpl<DisassociateUserCommandInput, DisassociateUserCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Disassociates the user from an EC2 instance providing user-based subscriptions.</p>
|
|
@@ -93,23 +96,5 @@ export interface DisassociateUserCommandOutput extends DisassociateUserResponse,
|
|
|
93
96
|
* <p>Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.</p>
|
|
94
97
|
*
|
|
95
98
|
*/
|
|
96
|
-
export declare class DisassociateUserCommand extends
|
|
97
|
-
readonly input: DisassociateUserCommandInput;
|
|
98
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
99
|
-
/**
|
|
100
|
-
* @public
|
|
101
|
-
*/
|
|
102
|
-
constructor(input: DisassociateUserCommandInput);
|
|
103
|
-
/**
|
|
104
|
-
* @internal
|
|
105
|
-
*/
|
|
106
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerUserSubscriptionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateUserCommandInput, DisassociateUserCommandOutput>;
|
|
107
|
-
/**
|
|
108
|
-
* @internal
|
|
109
|
-
*/
|
|
110
|
-
private serialize;
|
|
111
|
-
/**
|
|
112
|
-
* @internal
|
|
113
|
-
*/
|
|
114
|
-
private deserialize;
|
|
99
|
+
export declare class DisassociateUserCommand extends DisassociateUserCommand_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 {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerUserSubscriptionsClient";
|
|
5
4
|
import { ListIdentityProvidersRequest, ListIdentityProvidersResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListIdentityProvidersCommandInput extends ListIdentityProviders
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListIdentityProvidersCommandOutput extends ListIdentityProvidersResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListIdentityProvidersCommand_base: {
|
|
24
|
+
new (input: ListIdentityProvidersCommandInput): import("@smithy/smithy-client").CommandImpl<ListIdentityProvidersCommandInput, ListIdentityProvidersCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Lists the identity providers for user-based subscriptions.</p>
|
|
@@ -92,23 +95,5 @@ export interface ListIdentityProvidersCommandOutput extends ListIdentityProvider
|
|
|
92
95
|
* <p>Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.</p>
|
|
93
96
|
*
|
|
94
97
|
*/
|
|
95
|
-
export declare class ListIdentityProvidersCommand extends
|
|
96
|
-
readonly input: ListIdentityProvidersCommandInput;
|
|
97
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
98
|
-
/**
|
|
99
|
-
* @public
|
|
100
|
-
*/
|
|
101
|
-
constructor(input: ListIdentityProvidersCommandInput);
|
|
102
|
-
/**
|
|
103
|
-
* @internal
|
|
104
|
-
*/
|
|
105
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerUserSubscriptionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListIdentityProvidersCommandInput, ListIdentityProvidersCommandOutput>;
|
|
106
|
-
/**
|
|
107
|
-
* @internal
|
|
108
|
-
*/
|
|
109
|
-
private serialize;
|
|
110
|
-
/**
|
|
111
|
-
* @internal
|
|
112
|
-
*/
|
|
113
|
-
private deserialize;
|
|
98
|
+
export declare class ListIdentityProvidersCommand extends ListIdentityProvidersCommand_base {
|
|
114
99
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerUserSubscriptionsClient";
|
|
5
4
|
import { ListInstancesRequest, ListInstancesResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListInstancesCommandInput extends ListInstancesRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListInstancesCommandOutput extends ListInstancesResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListInstancesCommand_base: {
|
|
24
|
+
new (input: ListInstancesCommandInput): import("@smithy/smithy-client").CommandImpl<ListInstancesCommandInput, ListInstancesCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Lists the EC2 instances providing user-based subscriptions.</p>
|
|
@@ -92,23 +95,5 @@ export interface ListInstancesCommandOutput extends ListInstancesResponse, __Met
|
|
|
92
95
|
* <p>Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.</p>
|
|
93
96
|
*
|
|
94
97
|
*/
|
|
95
|
-
export declare class ListInstancesCommand extends
|
|
96
|
-
readonly input: ListInstancesCommandInput;
|
|
97
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
98
|
-
/**
|
|
99
|
-
* @public
|
|
100
|
-
*/
|
|
101
|
-
constructor(input: ListInstancesCommandInput);
|
|
102
|
-
/**
|
|
103
|
-
* @internal
|
|
104
|
-
*/
|
|
105
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerUserSubscriptionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListInstancesCommandInput, ListInstancesCommandOutput>;
|
|
106
|
-
/**
|
|
107
|
-
* @internal
|
|
108
|
-
*/
|
|
109
|
-
private serialize;
|
|
110
|
-
/**
|
|
111
|
-
* @internal
|
|
112
|
-
*/
|
|
113
|
-
private deserialize;
|
|
98
|
+
export declare class ListInstancesCommand extends ListInstancesCommand_base {
|
|
114
99
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerUserSubscriptionsClient";
|
|
5
4
|
import { ListProductSubscriptionsRequest, ListProductSubscriptionsResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListProductSubscriptionsCommandInput extends ListProductSubscri
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListProductSubscriptionsCommandOutput extends ListProductSubscriptionsResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListProductSubscriptionsCommand_base: {
|
|
24
|
+
new (input: ListProductSubscriptionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListProductSubscriptionsCommandInput, ListProductSubscriptionsCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Lists the user-based subscription products available from an identity provider.</p>
|
|
@@ -103,23 +106,5 @@ export interface ListProductSubscriptionsCommandOutput extends ListProductSubscr
|
|
|
103
106
|
* <p>Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.</p>
|
|
104
107
|
*
|
|
105
108
|
*/
|
|
106
|
-
export declare class ListProductSubscriptionsCommand extends
|
|
107
|
-
readonly input: ListProductSubscriptionsCommandInput;
|
|
108
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
109
|
-
/**
|
|
110
|
-
* @public
|
|
111
|
-
*/
|
|
112
|
-
constructor(input: ListProductSubscriptionsCommandInput);
|
|
113
|
-
/**
|
|
114
|
-
* @internal
|
|
115
|
-
*/
|
|
116
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerUserSubscriptionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListProductSubscriptionsCommandInput, ListProductSubscriptionsCommandOutput>;
|
|
117
|
-
/**
|
|
118
|
-
* @internal
|
|
119
|
-
*/
|
|
120
|
-
private serialize;
|
|
121
|
-
/**
|
|
122
|
-
* @internal
|
|
123
|
-
*/
|
|
124
|
-
private deserialize;
|
|
109
|
+
export declare class ListProductSubscriptionsCommand extends ListProductSubscriptionsCommand_base {
|
|
125
110
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerUserSubscriptionsClient";
|
|
5
4
|
import { ListUserAssociationsRequest, ListUserAssociationsResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListUserAssociationsCommandInput extends ListUserAssociationsRe
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListUserAssociationsCommandOutput extends ListUserAssociationsResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListUserAssociationsCommand_base: {
|
|
24
|
+
new (input: ListUserAssociationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListUserAssociationsCommandInput, ListUserAssociationsCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Lists user associations for an identity provider.</p>
|
|
@@ -103,23 +106,5 @@ export interface ListUserAssociationsCommandOutput extends ListUserAssociationsR
|
|
|
103
106
|
* <p>Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.</p>
|
|
104
107
|
*
|
|
105
108
|
*/
|
|
106
|
-
export declare class ListUserAssociationsCommand extends
|
|
107
|
-
readonly input: ListUserAssociationsCommandInput;
|
|
108
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
109
|
-
/**
|
|
110
|
-
* @public
|
|
111
|
-
*/
|
|
112
|
-
constructor(input: ListUserAssociationsCommandInput);
|
|
113
|
-
/**
|
|
114
|
-
* @internal
|
|
115
|
-
*/
|
|
116
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerUserSubscriptionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListUserAssociationsCommandInput, ListUserAssociationsCommandOutput>;
|
|
117
|
-
/**
|
|
118
|
-
* @internal
|
|
119
|
-
*/
|
|
120
|
-
private serialize;
|
|
121
|
-
/**
|
|
122
|
-
* @internal
|
|
123
|
-
*/
|
|
124
|
-
private deserialize;
|
|
109
|
+
export declare class ListUserAssociationsCommand extends ListUserAssociationsCommand_base {
|
|
125
110
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerUserSubscriptionsClient";
|
|
5
4
|
import { RegisterIdentityProviderRequest, RegisterIdentityProviderResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface RegisterIdentityProviderCommandInput extends RegisterIdentityPr
|
|
|
21
20
|
*/
|
|
22
21
|
export interface RegisterIdentityProviderCommandOutput extends RegisterIdentityProviderResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const RegisterIdentityProviderCommand_base: {
|
|
24
|
+
new (input: RegisterIdentityProviderCommandInput): import("@smithy/smithy-client").CommandImpl<RegisterIdentityProviderCommandInput, RegisterIdentityProviderCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Registers an identity provider for user-based subscriptions.</p>
|
|
@@ -99,23 +102,5 @@ export interface RegisterIdentityProviderCommandOutput extends RegisterIdentityP
|
|
|
99
102
|
* <p>Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.</p>
|
|
100
103
|
*
|
|
101
104
|
*/
|
|
102
|
-
export declare class RegisterIdentityProviderCommand extends
|
|
103
|
-
readonly input: RegisterIdentityProviderCommandInput;
|
|
104
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
105
|
-
/**
|
|
106
|
-
* @public
|
|
107
|
-
*/
|
|
108
|
-
constructor(input: RegisterIdentityProviderCommandInput);
|
|
109
|
-
/**
|
|
110
|
-
* @internal
|
|
111
|
-
*/
|
|
112
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerUserSubscriptionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RegisterIdentityProviderCommandInput, RegisterIdentityProviderCommandOutput>;
|
|
113
|
-
/**
|
|
114
|
-
* @internal
|
|
115
|
-
*/
|
|
116
|
-
private serialize;
|
|
117
|
-
/**
|
|
118
|
-
* @internal
|
|
119
|
-
*/
|
|
120
|
-
private deserialize;
|
|
105
|
+
export declare class RegisterIdentityProviderCommand extends RegisterIdentityProviderCommand_base {
|
|
121
106
|
}
|