@aws-sdk/client-license-manager-user-subscriptions 3.296.0 → 3.297.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-types/LicenseManagerUserSubscriptions.d.ts +12 -0
- package/dist-types/LicenseManagerUserSubscriptionsClient.d.ts +24 -4
- package/dist-types/commands/AssociateUserCommand.d.ts +16 -0
- package/dist-types/commands/DeregisterIdentityProviderCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateUserCommand.d.ts +16 -0
- package/dist-types/commands/ListIdentityProvidersCommand.d.ts +16 -0
- package/dist-types/commands/ListInstancesCommand.d.ts +16 -0
- package/dist-types/commands/ListProductSubscriptionsCommand.d.ts +16 -0
- package/dist-types/commands/ListUserAssociationsCommand.d.ts +16 -0
- package/dist-types/commands/RegisterIdentityProviderCommand.d.ts +16 -0
- package/dist-types/commands/StartProductSubscriptionCommand.d.ts +16 -0
- package/dist-types/commands/StopProductSubscriptionCommand.d.ts +16 -0
- package/dist-types/commands/UpdateIdentityProviderSettingsCommand.d.ts +16 -0
- package/dist-types/models/LicenseManagerUserSubscriptionsServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +85 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListIdentityProvidersPaginator.d.ts +3 -0
- package/dist-types/pagination/ListInstancesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListProductSubscriptionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListUserAssociationsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -12,11 +12,13 @@ import { StopProductSubscriptionCommandInput, StopProductSubscriptionCommandOutp
|
|
|
12
12
|
import { UpdateIdentityProviderSettingsCommandInput, UpdateIdentityProviderSettingsCommandOutput } from "./commands/UpdateIdentityProviderSettingsCommand";
|
|
13
13
|
import { LicenseManagerUserSubscriptionsClient } from "./LicenseManagerUserSubscriptionsClient";
|
|
14
14
|
/**
|
|
15
|
+
* @public
|
|
15
16
|
* <p>With License Manager, you can create user-based subscriptions to utilize licensed software with
|
|
16
17
|
* a per user subscription fee on Amazon EC2 instances.</p>
|
|
17
18
|
*/
|
|
18
19
|
export declare class LicenseManagerUserSubscriptions extends LicenseManagerUserSubscriptionsClient {
|
|
19
20
|
/**
|
|
21
|
+
* @public
|
|
20
22
|
* <p>Associates the user to an EC2 instance to utilize user-based subscriptions.</p>
|
|
21
23
|
* <note>
|
|
22
24
|
* <p>Your estimated bill for charges on the number of users and related costs will take 48
|
|
@@ -28,48 +30,56 @@ export declare class LicenseManagerUserSubscriptions extends LicenseManagerUserS
|
|
|
28
30
|
associateUser(args: AssociateUserCommandInput, cb: (err: any, data?: AssociateUserCommandOutput) => void): void;
|
|
29
31
|
associateUser(args: AssociateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateUserCommandOutput) => void): void;
|
|
30
32
|
/**
|
|
33
|
+
* @public
|
|
31
34
|
* <p>Deregisters the identity provider from providing user-based subscriptions.</p>
|
|
32
35
|
*/
|
|
33
36
|
deregisterIdentityProvider(args: DeregisterIdentityProviderCommandInput, options?: __HttpHandlerOptions): Promise<DeregisterIdentityProviderCommandOutput>;
|
|
34
37
|
deregisterIdentityProvider(args: DeregisterIdentityProviderCommandInput, cb: (err: any, data?: DeregisterIdentityProviderCommandOutput) => void): void;
|
|
35
38
|
deregisterIdentityProvider(args: DeregisterIdentityProviderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterIdentityProviderCommandOutput) => void): void;
|
|
36
39
|
/**
|
|
40
|
+
* @public
|
|
37
41
|
* <p>Disassociates the user from an EC2 instance providing user-based subscriptions.</p>
|
|
38
42
|
*/
|
|
39
43
|
disassociateUser(args: DisassociateUserCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateUserCommandOutput>;
|
|
40
44
|
disassociateUser(args: DisassociateUserCommandInput, cb: (err: any, data?: DisassociateUserCommandOutput) => void): void;
|
|
41
45
|
disassociateUser(args: DisassociateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateUserCommandOutput) => void): void;
|
|
42
46
|
/**
|
|
47
|
+
* @public
|
|
43
48
|
* <p>Lists the identity providers for user-based subscriptions.</p>
|
|
44
49
|
*/
|
|
45
50
|
listIdentityProviders(args: ListIdentityProvidersCommandInput, options?: __HttpHandlerOptions): Promise<ListIdentityProvidersCommandOutput>;
|
|
46
51
|
listIdentityProviders(args: ListIdentityProvidersCommandInput, cb: (err: any, data?: ListIdentityProvidersCommandOutput) => void): void;
|
|
47
52
|
listIdentityProviders(args: ListIdentityProvidersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIdentityProvidersCommandOutput) => void): void;
|
|
48
53
|
/**
|
|
54
|
+
* @public
|
|
49
55
|
* <p>Lists the EC2 instances providing user-based subscriptions.</p>
|
|
50
56
|
*/
|
|
51
57
|
listInstances(args: ListInstancesCommandInput, options?: __HttpHandlerOptions): Promise<ListInstancesCommandOutput>;
|
|
52
58
|
listInstances(args: ListInstancesCommandInput, cb: (err: any, data?: ListInstancesCommandOutput) => void): void;
|
|
53
59
|
listInstances(args: ListInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInstancesCommandOutput) => void): void;
|
|
54
60
|
/**
|
|
61
|
+
* @public
|
|
55
62
|
* <p>Lists the user-based subscription products available from an identity provider.</p>
|
|
56
63
|
*/
|
|
57
64
|
listProductSubscriptions(args: ListProductSubscriptionsCommandInput, options?: __HttpHandlerOptions): Promise<ListProductSubscriptionsCommandOutput>;
|
|
58
65
|
listProductSubscriptions(args: ListProductSubscriptionsCommandInput, cb: (err: any, data?: ListProductSubscriptionsCommandOutput) => void): void;
|
|
59
66
|
listProductSubscriptions(args: ListProductSubscriptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProductSubscriptionsCommandOutput) => void): void;
|
|
60
67
|
/**
|
|
68
|
+
* @public
|
|
61
69
|
* <p>Lists user associations for an identity provider.</p>
|
|
62
70
|
*/
|
|
63
71
|
listUserAssociations(args: ListUserAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ListUserAssociationsCommandOutput>;
|
|
64
72
|
listUserAssociations(args: ListUserAssociationsCommandInput, cb: (err: any, data?: ListUserAssociationsCommandOutput) => void): void;
|
|
65
73
|
listUserAssociations(args: ListUserAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUserAssociationsCommandOutput) => void): void;
|
|
66
74
|
/**
|
|
75
|
+
* @public
|
|
67
76
|
* <p>Registers an identity provider for user-based subscriptions.</p>
|
|
68
77
|
*/
|
|
69
78
|
registerIdentityProvider(args: RegisterIdentityProviderCommandInput, options?: __HttpHandlerOptions): Promise<RegisterIdentityProviderCommandOutput>;
|
|
70
79
|
registerIdentityProvider(args: RegisterIdentityProviderCommandInput, cb: (err: any, data?: RegisterIdentityProviderCommandOutput) => void): void;
|
|
71
80
|
registerIdentityProvider(args: RegisterIdentityProviderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterIdentityProviderCommandOutput) => void): void;
|
|
72
81
|
/**
|
|
82
|
+
* @public
|
|
73
83
|
* <p>Starts a product subscription for a user with the specified identity provider.</p>
|
|
74
84
|
* <note>
|
|
75
85
|
* <p>Your estimated bill for charges on the number of users and related costs will take 48
|
|
@@ -81,12 +91,14 @@ export declare class LicenseManagerUserSubscriptions extends LicenseManagerUserS
|
|
|
81
91
|
startProductSubscription(args: StartProductSubscriptionCommandInput, cb: (err: any, data?: StartProductSubscriptionCommandOutput) => void): void;
|
|
82
92
|
startProductSubscription(args: StartProductSubscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartProductSubscriptionCommandOutput) => void): void;
|
|
83
93
|
/**
|
|
94
|
+
* @public
|
|
84
95
|
* <p>Stops a product subscription for a user with the specified identity provider.</p>
|
|
85
96
|
*/
|
|
86
97
|
stopProductSubscription(args: StopProductSubscriptionCommandInput, options?: __HttpHandlerOptions): Promise<StopProductSubscriptionCommandOutput>;
|
|
87
98
|
stopProductSubscription(args: StopProductSubscriptionCommandInput, cb: (err: any, data?: StopProductSubscriptionCommandOutput) => void): void;
|
|
88
99
|
stopProductSubscription(args: StopProductSubscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopProductSubscriptionCommandOutput) => void): void;
|
|
89
100
|
/**
|
|
101
|
+
* @public
|
|
90
102
|
* <p>Updates additional product configuration settings for the registered identity
|
|
91
103
|
* provider.</p>
|
|
92
104
|
*/
|
|
@@ -19,15 +19,24 @@ import { StartProductSubscriptionCommandInput, StartProductSubscriptionCommandOu
|
|
|
19
19
|
import { StopProductSubscriptionCommandInput, StopProductSubscriptionCommandOutput } from "./commands/StopProductSubscriptionCommand";
|
|
20
20
|
import { UpdateIdentityProviderSettingsCommandInput, UpdateIdentityProviderSettingsCommandOutput } from "./commands/UpdateIdentityProviderSettingsCommand";
|
|
21
21
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
22
|
+
/**
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
22
25
|
export type ServiceInputTypes = AssociateUserCommandInput | DeregisterIdentityProviderCommandInput | DisassociateUserCommandInput | ListIdentityProvidersCommandInput | ListInstancesCommandInput | ListProductSubscriptionsCommandInput | ListUserAssociationsCommandInput | RegisterIdentityProviderCommandInput | StartProductSubscriptionCommandInput | StopProductSubscriptionCommandInput | UpdateIdentityProviderSettingsCommandInput;
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
23
29
|
export type ServiceOutputTypes = AssociateUserCommandOutput | DeregisterIdentityProviderCommandOutput | DisassociateUserCommandOutput | ListIdentityProvidersCommandOutput | ListInstancesCommandOutput | ListProductSubscriptionsCommandOutput | ListUserAssociationsCommandOutput | RegisterIdentityProviderCommandOutput | StartProductSubscriptionCommandOutput | StopProductSubscriptionCommandOutput | UpdateIdentityProviderSettingsCommandOutput;
|
|
30
|
+
/**
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
24
33
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
25
34
|
/**
|
|
26
35
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
27
36
|
*/
|
|
28
37
|
requestHandler?: __HttpHandler;
|
|
29
38
|
/**
|
|
30
|
-
* A constructor for a class implementing the {@link
|
|
39
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
31
40
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
32
41
|
* @internal
|
|
33
42
|
*/
|
|
@@ -117,23 +126,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
117
126
|
*/
|
|
118
127
|
logger?: __Logger;
|
|
119
128
|
/**
|
|
120
|
-
* The {@link
|
|
129
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
121
130
|
*/
|
|
122
131
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
123
132
|
}
|
|
133
|
+
/**
|
|
134
|
+
* @public
|
|
135
|
+
*/
|
|
124
136
|
type LicenseManagerUserSubscriptionsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
125
137
|
/**
|
|
126
|
-
*
|
|
138
|
+
* @public
|
|
139
|
+
*
|
|
140
|
+
* The configuration interface of LicenseManagerUserSubscriptionsClient class constructor that set the region, credentials and other options.
|
|
127
141
|
*/
|
|
128
142
|
export interface LicenseManagerUserSubscriptionsClientConfig extends LicenseManagerUserSubscriptionsClientConfigType {
|
|
129
143
|
}
|
|
144
|
+
/**
|
|
145
|
+
* @public
|
|
146
|
+
*/
|
|
130
147
|
type LicenseManagerUserSubscriptionsClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
131
148
|
/**
|
|
132
|
-
*
|
|
149
|
+
* @public
|
|
150
|
+
*
|
|
151
|
+
* The resolved configuration interface of LicenseManagerUserSubscriptionsClient class. This is resolved and normalized from the {@link LicenseManagerUserSubscriptionsClientConfig | constructor configuration interface}.
|
|
133
152
|
*/
|
|
134
153
|
export interface LicenseManagerUserSubscriptionsClientResolvedConfig extends LicenseManagerUserSubscriptionsClientResolvedConfigType {
|
|
135
154
|
}
|
|
136
155
|
/**
|
|
156
|
+
* @public
|
|
137
157
|
* <p>With License Manager, you can create user-based subscriptions to utilize licensed software with
|
|
138
158
|
* a per user subscription fee on Amazon EC2 instances.</p>
|
|
139
159
|
*/
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerUserSubscriptionsClient";
|
|
5
5
|
import { AssociateUserRequest, AssociateUserResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AssociateUserCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AssociateUserCommandInput extends AssociateUserRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AssociateUserCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AssociateUserCommandOutput extends AssociateUserResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Associates the user to an EC2 instance to utilize user-based subscriptions.</p>
|
|
18
23
|
* <note>
|
|
19
24
|
* <p>Your estimated bill for charges on the number of users and related costs will take 48
|
|
@@ -30,6 +35,8 @@ export interface AssociateUserCommandOutput extends AssociateUserResponse, __Met
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param AssociateUserCommandInput - {@link AssociateUserCommandInput}
|
|
39
|
+
* @returns {@link AssociateUserCommandOutput}
|
|
33
40
|
* @see {@link AssociateUserCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link AssociateUserCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link LicenseManagerUserSubscriptionsClientResolvedConfig | config} for LicenseManagerUserSubscriptionsClient's `config` shape.
|
|
@@ -61,11 +68,20 @@ export interface AssociateUserCommandOutput extends AssociateUserResponse, __Met
|
|
|
61
68
|
export declare class AssociateUserCommand extends $Command<AssociateUserCommandInput, AssociateUserCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig> {
|
|
62
69
|
readonly input: AssociateUserCommandInput;
|
|
63
70
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
71
|
+
/**
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
64
74
|
constructor(input: AssociateUserCommandInput);
|
|
65
75
|
/**
|
|
66
76
|
* @internal
|
|
67
77
|
*/
|
|
68
78
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerUserSubscriptionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateUserCommandInput, AssociateUserCommandOutput>;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
69
82
|
private serialize;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
70
86
|
private deserialize;
|
|
71
87
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerUserSubscriptionsClient";
|
|
5
5
|
import { DeregisterIdentityProviderRequest, DeregisterIdentityProviderResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeregisterIdentityProviderCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeregisterIdentityProviderCommandInput extends DeregisterIdentityProviderRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeregisterIdentityProviderCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeregisterIdentityProviderCommandOutput extends DeregisterIdentityProviderResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deregisters the identity provider from providing user-based subscriptions.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeregisterIdentityProviderCommandOutput extends DeregisterIdent
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeregisterIdentityProviderCommandInput - {@link DeregisterIdentityProviderCommandInput}
|
|
34
|
+
* @returns {@link DeregisterIdentityProviderCommandOutput}
|
|
28
35
|
* @see {@link DeregisterIdentityProviderCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeregisterIdentityProviderCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LicenseManagerUserSubscriptionsClientResolvedConfig | config} for LicenseManagerUserSubscriptionsClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface DeregisterIdentityProviderCommandOutput extends DeregisterIdent
|
|
|
56
63
|
export declare class DeregisterIdentityProviderCommand extends $Command<DeregisterIdentityProviderCommandInput, DeregisterIdentityProviderCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig> {
|
|
57
64
|
readonly input: DeregisterIdentityProviderCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: DeregisterIdentityProviderCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerUserSubscriptionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeregisterIdentityProviderCommandInput, DeregisterIdentityProviderCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerUserSubscriptionsClient";
|
|
5
5
|
import { DisassociateUserRequest, DisassociateUserResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DisassociateUserCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DisassociateUserCommandInput extends DisassociateUserRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DisassociateUserCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DisassociateUserCommandOutput extends DisassociateUserResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Disassociates the user from an EC2 instance providing user-based subscriptions.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DisassociateUserCommandOutput extends DisassociateUserResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DisassociateUserCommandInput - {@link DisassociateUserCommandInput}
|
|
34
|
+
* @returns {@link DisassociateUserCommandOutput}
|
|
28
35
|
* @see {@link DisassociateUserCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DisassociateUserCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LicenseManagerUserSubscriptionsClientResolvedConfig | config} for LicenseManagerUserSubscriptionsClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface DisassociateUserCommandOutput extends DisassociateUserResponse,
|
|
|
56
63
|
export declare class DisassociateUserCommand extends $Command<DisassociateUserCommandInput, DisassociateUserCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig> {
|
|
57
64
|
readonly input: DisassociateUserCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: DisassociateUserCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerUserSubscriptionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateUserCommandInput, DisassociateUserCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerUserSubscriptionsClient";
|
|
5
5
|
import { ListIdentityProvidersRequest, ListIdentityProvidersResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListIdentityProvidersCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListIdentityProvidersCommandInput extends ListIdentityProvidersRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListIdentityProvidersCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListIdentityProvidersCommandOutput extends ListIdentityProvidersResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the identity providers for user-based subscriptions.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListIdentityProvidersCommandOutput extends ListIdentityProvider
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListIdentityProvidersCommandInput - {@link ListIdentityProvidersCommandInput}
|
|
34
|
+
* @returns {@link ListIdentityProvidersCommandOutput}
|
|
28
35
|
* @see {@link ListIdentityProvidersCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListIdentityProvidersCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LicenseManagerUserSubscriptionsClientResolvedConfig | config} for LicenseManagerUserSubscriptionsClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface ListIdentityProvidersCommandOutput extends ListIdentityProvider
|
|
|
56
63
|
export declare class ListIdentityProvidersCommand extends $Command<ListIdentityProvidersCommandInput, ListIdentityProvidersCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig> {
|
|
57
64
|
readonly input: ListIdentityProvidersCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: ListIdentityProvidersCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerUserSubscriptionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListIdentityProvidersCommandInput, ListIdentityProvidersCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerUserSubscriptionsClient";
|
|
5
5
|
import { ListInstancesRequest, ListInstancesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListInstancesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListInstancesCommandInput extends ListInstancesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListInstancesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListInstancesCommandOutput extends ListInstancesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the EC2 instances providing user-based subscriptions.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListInstancesCommandOutput extends ListInstancesResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListInstancesCommandInput - {@link ListInstancesCommandInput}
|
|
34
|
+
* @returns {@link ListInstancesCommandOutput}
|
|
28
35
|
* @see {@link ListInstancesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListInstancesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LicenseManagerUserSubscriptionsClientResolvedConfig | config} for LicenseManagerUserSubscriptionsClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface ListInstancesCommandOutput extends ListInstancesResponse, __Met
|
|
|
56
63
|
export declare class ListInstancesCommand extends $Command<ListInstancesCommandInput, ListInstancesCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig> {
|
|
57
64
|
readonly input: ListInstancesCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: ListInstancesCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerUserSubscriptionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListInstancesCommandInput, ListInstancesCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerUserSubscriptionsClient";
|
|
5
5
|
import { ListProductSubscriptionsRequest, ListProductSubscriptionsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListProductSubscriptionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListProductSubscriptionsCommandInput extends ListProductSubscriptionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListProductSubscriptionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListProductSubscriptionsCommandOutput extends ListProductSubscriptionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the user-based subscription products available from an identity provider.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListProductSubscriptionsCommandOutput extends ListProductSubscr
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListProductSubscriptionsCommandInput - {@link ListProductSubscriptionsCommandInput}
|
|
34
|
+
* @returns {@link ListProductSubscriptionsCommandOutput}
|
|
28
35
|
* @see {@link ListProductSubscriptionsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListProductSubscriptionsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LicenseManagerUserSubscriptionsClientResolvedConfig | config} for LicenseManagerUserSubscriptionsClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface ListProductSubscriptionsCommandOutput extends ListProductSubscr
|
|
|
56
63
|
export declare class ListProductSubscriptionsCommand extends $Command<ListProductSubscriptionsCommandInput, ListProductSubscriptionsCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig> {
|
|
57
64
|
readonly input: ListProductSubscriptionsCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: ListProductSubscriptionsCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerUserSubscriptionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListProductSubscriptionsCommandInput, ListProductSubscriptionsCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerUserSubscriptionsClient";
|
|
5
5
|
import { ListUserAssociationsRequest, ListUserAssociationsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListUserAssociationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListUserAssociationsCommandInput extends ListUserAssociationsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListUserAssociationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListUserAssociationsCommandOutput extends ListUserAssociationsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists user associations for an identity provider.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListUserAssociationsCommandOutput extends ListUserAssociationsR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListUserAssociationsCommandInput - {@link ListUserAssociationsCommandInput}
|
|
34
|
+
* @returns {@link ListUserAssociationsCommandOutput}
|
|
28
35
|
* @see {@link ListUserAssociationsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListUserAssociationsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LicenseManagerUserSubscriptionsClientResolvedConfig | config} for LicenseManagerUserSubscriptionsClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface ListUserAssociationsCommandOutput extends ListUserAssociationsR
|
|
|
56
63
|
export declare class ListUserAssociationsCommand extends $Command<ListUserAssociationsCommandInput, ListUserAssociationsCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig> {
|
|
57
64
|
readonly input: ListUserAssociationsCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: ListUserAssociationsCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerUserSubscriptionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListUserAssociationsCommandInput, ListUserAssociationsCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerUserSubscriptionsClient";
|
|
5
5
|
import { RegisterIdentityProviderRequest, RegisterIdentityProviderResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RegisterIdentityProviderCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RegisterIdentityProviderCommandInput extends RegisterIdentityProviderRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RegisterIdentityProviderCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RegisterIdentityProviderCommandOutput extends RegisterIdentityProviderResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Registers an identity provider for user-based subscriptions.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface RegisterIdentityProviderCommandOutput extends RegisterIdentityP
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param RegisterIdentityProviderCommandInput - {@link RegisterIdentityProviderCommandInput}
|
|
34
|
+
* @returns {@link RegisterIdentityProviderCommandOutput}
|
|
28
35
|
* @see {@link RegisterIdentityProviderCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link RegisterIdentityProviderCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LicenseManagerUserSubscriptionsClientResolvedConfig | config} for LicenseManagerUserSubscriptionsClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface RegisterIdentityProviderCommandOutput extends RegisterIdentityP
|
|
|
56
63
|
export declare class RegisterIdentityProviderCommand extends $Command<RegisterIdentityProviderCommandInput, RegisterIdentityProviderCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig> {
|
|
57
64
|
readonly input: RegisterIdentityProviderCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: RegisterIdentityProviderCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerUserSubscriptionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RegisterIdentityProviderCommandInput, RegisterIdentityProviderCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerUserSubscriptionsClient";
|
|
5
5
|
import { StartProductSubscriptionRequest, StartProductSubscriptionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartProductSubscriptionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartProductSubscriptionCommandInput extends StartProductSubscriptionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartProductSubscriptionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartProductSubscriptionCommandOutput extends StartProductSubscriptionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Starts a product subscription for a user with the specified identity provider.</p>
|
|
18
23
|
* <note>
|
|
19
24
|
* <p>Your estimated bill for charges on the number of users and related costs will take 48
|
|
@@ -30,6 +35,8 @@ export interface StartProductSubscriptionCommandOutput extends StartProductSubsc
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param StartProductSubscriptionCommandInput - {@link StartProductSubscriptionCommandInput}
|
|
39
|
+
* @returns {@link StartProductSubscriptionCommandOutput}
|
|
33
40
|
* @see {@link StartProductSubscriptionCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link StartProductSubscriptionCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link LicenseManagerUserSubscriptionsClientResolvedConfig | config} for LicenseManagerUserSubscriptionsClient's `config` shape.
|
|
@@ -61,11 +68,20 @@ export interface StartProductSubscriptionCommandOutput extends StartProductSubsc
|
|
|
61
68
|
export declare class StartProductSubscriptionCommand extends $Command<StartProductSubscriptionCommandInput, StartProductSubscriptionCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig> {
|
|
62
69
|
readonly input: StartProductSubscriptionCommandInput;
|
|
63
70
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
71
|
+
/**
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
64
74
|
constructor(input: StartProductSubscriptionCommandInput);
|
|
65
75
|
/**
|
|
66
76
|
* @internal
|
|
67
77
|
*/
|
|
68
78
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerUserSubscriptionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartProductSubscriptionCommandInput, StartProductSubscriptionCommandOutput>;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
69
82
|
private serialize;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
70
86
|
private deserialize;
|
|
71
87
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerUserSubscriptionsClient";
|
|
5
5
|
import { StopProductSubscriptionRequest, StopProductSubscriptionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StopProductSubscriptionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StopProductSubscriptionCommandInput extends StopProductSubscriptionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StopProductSubscriptionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StopProductSubscriptionCommandOutput extends StopProductSubscriptionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Stops a product subscription for a user with the specified identity provider.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface StopProductSubscriptionCommandOutput extends StopProductSubscri
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param StopProductSubscriptionCommandInput - {@link StopProductSubscriptionCommandInput}
|
|
34
|
+
* @returns {@link StopProductSubscriptionCommandOutput}
|
|
28
35
|
* @see {@link StopProductSubscriptionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link StopProductSubscriptionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LicenseManagerUserSubscriptionsClientResolvedConfig | config} for LicenseManagerUserSubscriptionsClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface StopProductSubscriptionCommandOutput extends StopProductSubscri
|
|
|
56
63
|
export declare class StopProductSubscriptionCommand extends $Command<StopProductSubscriptionCommandInput, StopProductSubscriptionCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig> {
|
|
57
64
|
readonly input: StopProductSubscriptionCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: StopProductSubscriptionCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerUserSubscriptionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopProductSubscriptionCommandInput, StopProductSubscriptionCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerUserSubscriptionsClient";
|
|
5
5
|
import { UpdateIdentityProviderSettingsRequest, UpdateIdentityProviderSettingsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateIdentityProviderSettingsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateIdentityProviderSettingsCommandInput extends UpdateIdentityProviderSettingsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateIdentityProviderSettingsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateIdentityProviderSettingsCommandOutput extends UpdateIdentityProviderSettingsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates additional product configuration settings for the registered identity
|
|
18
23
|
* provider.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface UpdateIdentityProviderSettingsCommandOutput extends UpdateIdent
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param UpdateIdentityProviderSettingsCommandInput - {@link UpdateIdentityProviderSettingsCommandInput}
|
|
35
|
+
* @returns {@link UpdateIdentityProviderSettingsCommandOutput}
|
|
29
36
|
* @see {@link UpdateIdentityProviderSettingsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link UpdateIdentityProviderSettingsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link LicenseManagerUserSubscriptionsClientResolvedConfig | config} for LicenseManagerUserSubscriptionsClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface UpdateIdentityProviderSettingsCommandOutput extends UpdateIdent
|
|
|
47
54
|
export declare class UpdateIdentityProviderSettingsCommand extends $Command<UpdateIdentityProviderSettingsCommandInput, UpdateIdentityProviderSettingsCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig> {
|
|
48
55
|
readonly input: UpdateIdentityProviderSettingsCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: UpdateIdentityProviderSettingsCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerUserSubscriptionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateIdentityProviderSettingsCommandInput, UpdateIdentityProviderSettingsCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class LicenseManagerUserSubscriptionsServiceException extends __ServiceException {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { LicenseManagerUserSubscriptionsServiceException as __BaseException } from "./LicenseManagerUserSubscriptionsServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>You don't have sufficient access to perform this action.</p>
|
|
5
6
|
*/
|
|
6
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
@@ -12,6 +13,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
12
13
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
13
14
|
}
|
|
14
15
|
/**
|
|
16
|
+
* @public
|
|
15
17
|
* <p>Details about an Active Directory identity provider.</p>
|
|
16
18
|
*/
|
|
17
19
|
export interface ActiveDirectoryIdentityProvider {
|
|
@@ -21,9 +23,13 @@ export interface ActiveDirectoryIdentityProvider {
|
|
|
21
23
|
DirectoryId?: string;
|
|
22
24
|
}
|
|
23
25
|
/**
|
|
26
|
+
* @public
|
|
24
27
|
* <p>Details about an identity provider.</p>
|
|
25
28
|
*/
|
|
26
29
|
export type IdentityProvider = IdentityProvider.ActiveDirectoryIdentityProviderMember | IdentityProvider.$UnknownMember;
|
|
30
|
+
/**
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
27
33
|
export declare namespace IdentityProvider {
|
|
28
34
|
/**
|
|
29
35
|
* <p>An object that details an Active Directory identity provider.</p>
|
|
@@ -42,6 +48,9 @@ export declare namespace IdentityProvider {
|
|
|
42
48
|
}
|
|
43
49
|
const visit: <T>(value: IdentityProvider, visitor: Visitor<T>) => T;
|
|
44
50
|
}
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
45
54
|
export interface AssociateUserRequest {
|
|
46
55
|
/**
|
|
47
56
|
* <p>The user name from the identity provider for the user.</p>
|
|
@@ -61,6 +70,7 @@ export interface AssociateUserRequest {
|
|
|
61
70
|
Domain?: string;
|
|
62
71
|
}
|
|
63
72
|
/**
|
|
73
|
+
* @public
|
|
64
74
|
* <p>Describes users of an EC2 instance providing user-based subscriptions.</p>
|
|
65
75
|
*/
|
|
66
76
|
export interface InstanceUserSummary {
|
|
@@ -97,6 +107,9 @@ export interface InstanceUserSummary {
|
|
|
97
107
|
*/
|
|
98
108
|
DisassociationDate?: string;
|
|
99
109
|
}
|
|
110
|
+
/**
|
|
111
|
+
* @public
|
|
112
|
+
*/
|
|
100
113
|
export interface AssociateUserResponse {
|
|
101
114
|
/**
|
|
102
115
|
* <p>Metadata that describes the associate user operation.</p>
|
|
@@ -104,6 +117,7 @@ export interface AssociateUserResponse {
|
|
|
104
117
|
InstanceUserSummary: InstanceUserSummary | undefined;
|
|
105
118
|
}
|
|
106
119
|
/**
|
|
120
|
+
* @public
|
|
107
121
|
* <p>The request couldn't be completed because it conflicted with the current state of the
|
|
108
122
|
* resource.</p>
|
|
109
123
|
*/
|
|
@@ -116,6 +130,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
116
130
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
117
131
|
}
|
|
118
132
|
/**
|
|
133
|
+
* @public
|
|
119
134
|
* <p>An exception occurred with the service.</p>
|
|
120
135
|
*/
|
|
121
136
|
export declare class InternalServerException extends __BaseException {
|
|
@@ -127,6 +142,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
127
142
|
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
128
143
|
}
|
|
129
144
|
/**
|
|
145
|
+
* @public
|
|
130
146
|
* <p>The resource couldn't be found.</p>
|
|
131
147
|
*/
|
|
132
148
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -138,6 +154,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
138
154
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
139
155
|
}
|
|
140
156
|
/**
|
|
157
|
+
* @public
|
|
141
158
|
* <p>The request failed because a service quota is exceeded.</p>
|
|
142
159
|
*/
|
|
143
160
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
@@ -149,6 +166,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
149
166
|
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
150
167
|
}
|
|
151
168
|
/**
|
|
169
|
+
* @public
|
|
152
170
|
* <p>The request was denied because of request throttling. Retry the request.</p>
|
|
153
171
|
*/
|
|
154
172
|
export declare class ThrottlingException extends __BaseException {
|
|
@@ -160,6 +178,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
160
178
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
161
179
|
}
|
|
162
180
|
/**
|
|
181
|
+
* @public
|
|
163
182
|
* <p>A parameter is not valid.</p>
|
|
164
183
|
*/
|
|
165
184
|
export declare class ValidationException extends __BaseException {
|
|
@@ -170,6 +189,9 @@ export declare class ValidationException extends __BaseException {
|
|
|
170
189
|
*/
|
|
171
190
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
172
191
|
}
|
|
192
|
+
/**
|
|
193
|
+
* @public
|
|
194
|
+
*/
|
|
173
195
|
export interface DeregisterIdentityProviderRequest {
|
|
174
196
|
/**
|
|
175
197
|
* <p>An object that specifies details for the identity provider.</p>
|
|
@@ -181,6 +203,7 @@ export interface DeregisterIdentityProviderRequest {
|
|
|
181
203
|
Product: string | undefined;
|
|
182
204
|
}
|
|
183
205
|
/**
|
|
206
|
+
* @public
|
|
184
207
|
* <p>The registered identity provider’s product related configuration settings such as the
|
|
185
208
|
* subnets to provision VPC endpoints, and the security group ID that is associated with the VPC
|
|
186
209
|
* endpoints. The security group should permit inbound TCP port 1688 communication from resources
|
|
@@ -198,6 +221,7 @@ export interface Settings {
|
|
|
198
221
|
SecurityGroupId: string | undefined;
|
|
199
222
|
}
|
|
200
223
|
/**
|
|
224
|
+
* @public
|
|
201
225
|
* <p>Describes an identity provider.</p>
|
|
202
226
|
*/
|
|
203
227
|
export interface IdentityProviderSummary {
|
|
@@ -223,12 +247,18 @@ export interface IdentityProviderSummary {
|
|
|
223
247
|
*/
|
|
224
248
|
FailureMessage?: string;
|
|
225
249
|
}
|
|
250
|
+
/**
|
|
251
|
+
* @public
|
|
252
|
+
*/
|
|
226
253
|
export interface DeregisterIdentityProviderResponse {
|
|
227
254
|
/**
|
|
228
255
|
* <p>Metadata that describes the results of an identity provider operation.</p>
|
|
229
256
|
*/
|
|
230
257
|
IdentityProviderSummary: IdentityProviderSummary | undefined;
|
|
231
258
|
}
|
|
259
|
+
/**
|
|
260
|
+
* @public
|
|
261
|
+
*/
|
|
232
262
|
export interface DisassociateUserRequest {
|
|
233
263
|
/**
|
|
234
264
|
* <p>The user name from the identity provider for the user.</p>
|
|
@@ -247,6 +277,9 @@ export interface DisassociateUserRequest {
|
|
|
247
277
|
*/
|
|
248
278
|
Domain?: string;
|
|
249
279
|
}
|
|
280
|
+
/**
|
|
281
|
+
* @public
|
|
282
|
+
*/
|
|
250
283
|
export interface DisassociateUserResponse {
|
|
251
284
|
/**
|
|
252
285
|
* <p>Metadata that describes the associate user operation.</p>
|
|
@@ -254,6 +287,7 @@ export interface DisassociateUserResponse {
|
|
|
254
287
|
InstanceUserSummary: InstanceUserSummary | undefined;
|
|
255
288
|
}
|
|
256
289
|
/**
|
|
290
|
+
* @public
|
|
257
291
|
* <p>A filter name and value pair that is used to return more specific results from a describe
|
|
258
292
|
* operation. Filters can be used to match a set of resources by specific criteria, such as tags,
|
|
259
293
|
* attributes, or IDs.</p>
|
|
@@ -273,6 +307,7 @@ export interface Filter {
|
|
|
273
307
|
Value?: string;
|
|
274
308
|
}
|
|
275
309
|
/**
|
|
310
|
+
* @public
|
|
276
311
|
* <p>Describes an EC2 instance providing user-based subscriptions.</p>
|
|
277
312
|
*/
|
|
278
313
|
export interface InstanceSummary {
|
|
@@ -297,6 +332,9 @@ export interface InstanceSummary {
|
|
|
297
332
|
*/
|
|
298
333
|
StatusMessage?: string;
|
|
299
334
|
}
|
|
335
|
+
/**
|
|
336
|
+
* @public
|
|
337
|
+
*/
|
|
300
338
|
export interface ListIdentityProvidersRequest {
|
|
301
339
|
/**
|
|
302
340
|
* <p>Maximum number of results to return in a single call.</p>
|
|
@@ -307,6 +345,9 @@ export interface ListIdentityProvidersRequest {
|
|
|
307
345
|
*/
|
|
308
346
|
NextToken?: string;
|
|
309
347
|
}
|
|
348
|
+
/**
|
|
349
|
+
* @public
|
|
350
|
+
*/
|
|
310
351
|
export interface ListIdentityProvidersResponse {
|
|
311
352
|
/**
|
|
312
353
|
* <p>Metadata that describes the list identity providers operation.</p>
|
|
@@ -317,6 +358,9 @@ export interface ListIdentityProvidersResponse {
|
|
|
317
358
|
*/
|
|
318
359
|
NextToken?: string;
|
|
319
360
|
}
|
|
361
|
+
/**
|
|
362
|
+
* @public
|
|
363
|
+
*/
|
|
320
364
|
export interface ListInstancesRequest {
|
|
321
365
|
/**
|
|
322
366
|
* <p>Maximum number of results to return in a single call.</p>
|
|
@@ -332,6 +376,9 @@ export interface ListInstancesRequest {
|
|
|
332
376
|
*/
|
|
333
377
|
Filters?: Filter[];
|
|
334
378
|
}
|
|
379
|
+
/**
|
|
380
|
+
* @public
|
|
381
|
+
*/
|
|
335
382
|
export interface ListInstancesResponse {
|
|
336
383
|
/**
|
|
337
384
|
* <p>Metadata that describes the list instances operation.</p>
|
|
@@ -342,6 +389,9 @@ export interface ListInstancesResponse {
|
|
|
342
389
|
*/
|
|
343
390
|
NextToken?: string;
|
|
344
391
|
}
|
|
392
|
+
/**
|
|
393
|
+
* @public
|
|
394
|
+
*/
|
|
345
395
|
export interface ListProductSubscriptionsRequest {
|
|
346
396
|
/**
|
|
347
397
|
* <p>The name of the user-based subscription product.</p>
|
|
@@ -366,6 +416,7 @@ export interface ListProductSubscriptionsRequest {
|
|
|
366
416
|
NextToken?: string;
|
|
367
417
|
}
|
|
368
418
|
/**
|
|
419
|
+
* @public
|
|
369
420
|
* <p>The summary of the user-based subscription products for a user.</p>
|
|
370
421
|
*/
|
|
371
422
|
export interface ProductUserSummary {
|
|
@@ -402,6 +453,9 @@ export interface ProductUserSummary {
|
|
|
402
453
|
*/
|
|
403
454
|
SubscriptionEndDate?: string;
|
|
404
455
|
}
|
|
456
|
+
/**
|
|
457
|
+
* @public
|
|
458
|
+
*/
|
|
405
459
|
export interface ListProductSubscriptionsResponse {
|
|
406
460
|
/**
|
|
407
461
|
* <p>Metadata that describes the list product subscriptions operation.</p>
|
|
@@ -412,6 +466,9 @@ export interface ListProductSubscriptionsResponse {
|
|
|
412
466
|
*/
|
|
413
467
|
NextToken?: string;
|
|
414
468
|
}
|
|
469
|
+
/**
|
|
470
|
+
* @public
|
|
471
|
+
*/
|
|
415
472
|
export interface ListUserAssociationsRequest {
|
|
416
473
|
/**
|
|
417
474
|
* <p>The ID of the EC2 instance, which provides user-based subscriptions.</p>
|
|
@@ -435,6 +492,9 @@ export interface ListUserAssociationsRequest {
|
|
|
435
492
|
*/
|
|
436
493
|
NextToken?: string;
|
|
437
494
|
}
|
|
495
|
+
/**
|
|
496
|
+
* @public
|
|
497
|
+
*/
|
|
438
498
|
export interface ListUserAssociationsResponse {
|
|
439
499
|
/**
|
|
440
500
|
* <p>Metadata that describes the list user association operation.</p>
|
|
@@ -445,6 +505,9 @@ export interface ListUserAssociationsResponse {
|
|
|
445
505
|
*/
|
|
446
506
|
NextToken?: string;
|
|
447
507
|
}
|
|
508
|
+
/**
|
|
509
|
+
* @public
|
|
510
|
+
*/
|
|
448
511
|
export interface RegisterIdentityProviderRequest {
|
|
449
512
|
/**
|
|
450
513
|
* <p>An object that specifies details for the identity provider.</p>
|
|
@@ -460,12 +523,18 @@ export interface RegisterIdentityProviderRequest {
|
|
|
460
523
|
*/
|
|
461
524
|
Settings?: Settings;
|
|
462
525
|
}
|
|
526
|
+
/**
|
|
527
|
+
* @public
|
|
528
|
+
*/
|
|
463
529
|
export interface RegisterIdentityProviderResponse {
|
|
464
530
|
/**
|
|
465
531
|
* <p>Metadata that describes the results of an identity provider operation.</p>
|
|
466
532
|
*/
|
|
467
533
|
IdentityProviderSummary: IdentityProviderSummary | undefined;
|
|
468
534
|
}
|
|
535
|
+
/**
|
|
536
|
+
* @public
|
|
537
|
+
*/
|
|
469
538
|
export interface StartProductSubscriptionRequest {
|
|
470
539
|
/**
|
|
471
540
|
* <p>The user name from the identity provider of the user.</p>
|
|
@@ -484,12 +553,18 @@ export interface StartProductSubscriptionRequest {
|
|
|
484
553
|
*/
|
|
485
554
|
Domain?: string;
|
|
486
555
|
}
|
|
556
|
+
/**
|
|
557
|
+
* @public
|
|
558
|
+
*/
|
|
487
559
|
export interface StartProductSubscriptionResponse {
|
|
488
560
|
/**
|
|
489
561
|
* <p>Metadata that describes the start product subscription operation.</p>
|
|
490
562
|
*/
|
|
491
563
|
ProductUserSummary: ProductUserSummary | undefined;
|
|
492
564
|
}
|
|
565
|
+
/**
|
|
566
|
+
* @public
|
|
567
|
+
*/
|
|
493
568
|
export interface StopProductSubscriptionRequest {
|
|
494
569
|
/**
|
|
495
570
|
* <p>The user name from the identity provider for the user.</p>
|
|
@@ -508,6 +583,9 @@ export interface StopProductSubscriptionRequest {
|
|
|
508
583
|
*/
|
|
509
584
|
Domain?: string;
|
|
510
585
|
}
|
|
586
|
+
/**
|
|
587
|
+
* @public
|
|
588
|
+
*/
|
|
511
589
|
export interface StopProductSubscriptionResponse {
|
|
512
590
|
/**
|
|
513
591
|
* <p>Metadata that describes the start product subscription operation.</p>
|
|
@@ -515,6 +593,7 @@ export interface StopProductSubscriptionResponse {
|
|
|
515
593
|
ProductUserSummary: ProductUserSummary | undefined;
|
|
516
594
|
}
|
|
517
595
|
/**
|
|
596
|
+
* @public
|
|
518
597
|
* <p>Updates the registered identity provider’s product related configuration settings such as
|
|
519
598
|
* the subnets to provision VPC endpoints.</p>
|
|
520
599
|
*/
|
|
@@ -534,6 +613,9 @@ export interface UpdateSettings {
|
|
|
534
613
|
*/
|
|
535
614
|
SecurityGroupId?: string;
|
|
536
615
|
}
|
|
616
|
+
/**
|
|
617
|
+
* @public
|
|
618
|
+
*/
|
|
537
619
|
export interface UpdateIdentityProviderSettingsRequest {
|
|
538
620
|
/**
|
|
539
621
|
* <p>Details about an identity provider.</p>
|
|
@@ -560,6 +642,9 @@ export interface UpdateIdentityProviderSettingsRequest {
|
|
|
560
642
|
*/
|
|
561
643
|
UpdateSettings: UpdateSettings | undefined;
|
|
562
644
|
}
|
|
645
|
+
/**
|
|
646
|
+
* @public
|
|
647
|
+
*/
|
|
563
648
|
export interface UpdateIdentityProviderSettingsResponse {
|
|
564
649
|
/**
|
|
565
650
|
* <p>Describes an identity provider.</p>
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
2
|
import { LicenseManagerUserSubscriptionsClient } from "../LicenseManagerUserSubscriptionsClient";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
3
6
|
export interface LicenseManagerUserSubscriptionsPaginationConfiguration extends PaginationConfiguration {
|
|
4
7
|
client: LicenseManagerUserSubscriptionsClient;
|
|
5
8
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListIdentityProvidersCommandInput, ListIdentityProvidersCommandOutput } from "../commands/ListIdentityProvidersCommand";
|
|
3
3
|
import { LicenseManagerUserSubscriptionsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListIdentityProviders(config: LicenseManagerUserSubscriptionsPaginationConfiguration, input: ListIdentityProvidersCommandInput, ...additionalArguments: any): Paginator<ListIdentityProvidersCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListInstancesCommandInput, ListInstancesCommandOutput } from "../commands/ListInstancesCommand";
|
|
3
3
|
import { LicenseManagerUserSubscriptionsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListInstances(config: LicenseManagerUserSubscriptionsPaginationConfiguration, input: ListInstancesCommandInput, ...additionalArguments: any): Paginator<ListInstancesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListProductSubscriptionsCommandInput, ListProductSubscriptionsCommandOutput } from "../commands/ListProductSubscriptionsCommand";
|
|
3
3
|
import { LicenseManagerUserSubscriptionsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListProductSubscriptions(config: LicenseManagerUserSubscriptionsPaginationConfiguration, input: ListProductSubscriptionsCommandInput, ...additionalArguments: any): Paginator<ListProductSubscriptionsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListUserAssociationsCommandInput, ListUserAssociationsCommandOutput } from "../commands/ListUserAssociationsCommand";
|
|
3
3
|
import { LicenseManagerUserSubscriptionsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListUserAssociations(config: LicenseManagerUserSubscriptionsPaginationConfiguration, input: ListUserAssociationsCommandInput, ...additionalArguments: any): Paginator<ListUserAssociationsCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-license-manager-user-subscriptions",
|
|
3
3
|
"description": "AWS SDK for JavaScript License Manager User Subscriptions Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.297.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.297.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.297.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.296.0",
|