@aws-sdk/client-license-manager-user-subscriptions 3.890.0 → 3.893.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/README.md +1 -2
- package/dist-types/LicenseManagerUserSubscriptions.d.ts +1 -2
- package/dist-types/LicenseManagerUserSubscriptionsClient.d.ts +1 -2
- package/dist-types/commands/AssociateUserCommand.d.ts +6 -8
- package/dist-types/commands/CreateLicenseServerEndpointCommand.d.ts +3 -2
- package/dist-types/commands/DeleteLicenseServerEndpointCommand.d.ts +3 -2
- package/dist-types/commands/DeregisterIdentityProviderCommand.d.ts +6 -2
- package/dist-types/commands/DisassociateUserCommand.d.ts +5 -2
- package/dist-types/commands/ListIdentityProvidersCommand.d.ts +5 -2
- package/dist-types/commands/ListInstancesCommand.d.ts +27 -2
- package/dist-types/commands/ListLicenseServerEndpointsCommand.d.ts +3 -2
- package/dist-types/commands/ListProductSubscriptionsCommand.d.ts +5 -2
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/commands/ListUserAssociationsCommand.d.ts +5 -2
- package/dist-types/commands/RegisterIdentityProviderCommand.d.ts +6 -2
- package/dist-types/commands/StartProductSubscriptionCommand.d.ts +6 -8
- package/dist-types/commands/StopProductSubscriptionCommand.d.ts +5 -2
- package/dist-types/commands/TagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UpdateIdentityProviderSettingsCommand.d.ts +6 -2
- package/dist-types/index.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +84 -200
- package/dist-types/ts3.4/models/models_0.d.ts +4 -0
- package/package.json +19 -19
package/README.md
CHANGED
|
@@ -6,8 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
AWS SDK for JavaScript LicenseManagerUserSubscriptions Client for Node.js, Browser and React Native.
|
|
8
8
|
|
|
9
|
-
<p>With License Manager, you can create user-based subscriptions to utilize licensed software with
|
|
10
|
-
a per user subscription fee on Amazon EC2 instances.</p>
|
|
9
|
+
<p>With License Manager, you can create user-based subscriptions to utilize licensed software with a per user subscription fee on Amazon EC2 instances.</p>
|
|
11
10
|
|
|
12
11
|
## Installing
|
|
13
12
|
|
|
@@ -128,8 +128,7 @@ export interface LicenseManagerUserSubscriptions {
|
|
|
128
128
|
updateIdentityProviderSettings(args: UpdateIdentityProviderSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateIdentityProviderSettingsCommandOutput) => void): void;
|
|
129
129
|
}
|
|
130
130
|
/**
|
|
131
|
-
* <p>With License Manager, you can create user-based subscriptions to utilize licensed software with
|
|
132
|
-
* a per user subscription fee on Amazon EC2 instances.</p>
|
|
131
|
+
* <p>With License Manager, you can create user-based subscriptions to utilize licensed software with a per user subscription fee on Amazon EC2 instances.</p>
|
|
133
132
|
* @public
|
|
134
133
|
*/
|
|
135
134
|
export declare class LicenseManagerUserSubscriptions extends LicenseManagerUserSubscriptionsClient implements LicenseManagerUserSubscriptions {
|
|
@@ -186,8 +186,7 @@ export type LicenseManagerUserSubscriptionsClientResolvedConfigType = __SmithyRe
|
|
|
186
186
|
export interface LicenseManagerUserSubscriptionsClientResolvedConfig extends LicenseManagerUserSubscriptionsClientResolvedConfigType {
|
|
187
187
|
}
|
|
188
188
|
/**
|
|
189
|
-
* <p>With License Manager, you can create user-based subscriptions to utilize licensed software with
|
|
190
|
-
* a per user subscription fee on Amazon EC2 instances.</p>
|
|
189
|
+
* <p>With License Manager, you can create user-based subscriptions to utilize licensed software with a per user subscription fee on Amazon EC2 instances.</p>
|
|
191
190
|
* @public
|
|
192
191
|
*/
|
|
193
192
|
export declare class LicenseManagerUserSubscriptionsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, LicenseManagerUserSubscriptionsClientResolvedConfig> {
|
|
@@ -27,17 +27,14 @@ declare const AssociateUserCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Associates the user to an EC2 instance to utilize user-based subscriptions.</p>
|
|
31
|
-
* <note>
|
|
32
|
-
* <p>Your estimated bill for charges on the number of users and related costs will take 48
|
|
33
|
-
* hours to appear for billing periods that haven't closed (marked as <b>Pending</b> billing status) in Amazon Web Services Billing. For more information, see <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/invoice.html">Viewing your
|
|
34
|
-
* monthly charges</a> in the <i>Amazon Web Services Billing User Guide</i>.</p>
|
|
35
|
-
* </note>
|
|
30
|
+
* <p>Associates the user to an EC2 instance to utilize user-based subscriptions.</p> <note> <p>Your estimated bill for charges on the number of users and related costs will take 48 hours to appear for billing periods that haven't closed (marked as <b>Pending</b> billing status) in Amazon Web Services Billing. For more information, see <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/invoice.html">Viewing your monthly charges</a> in the <i>Amazon Web Services Billing User Guide</i>.</p> </note>
|
|
36
31
|
* @example
|
|
37
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
38
33
|
* ```javascript
|
|
39
34
|
* import { LicenseManagerUserSubscriptionsClient, AssociateUserCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
40
35
|
* // const { LicenseManagerUserSubscriptionsClient, AssociateUserCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
36
|
+
* // import type { LicenseManagerUserSubscriptionsClientConfig } from "@aws-sdk/client-license-manager-user-subscriptions";
|
|
37
|
+
* const config = {}; // type is LicenseManagerUserSubscriptionsClientConfig
|
|
41
38
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
42
39
|
* const input = { // AssociateUserRequest
|
|
43
40
|
* Username: "STRING_VALUE", // required
|
|
@@ -62,6 +59,7 @@ declare const AssociateUserCommand_base: {
|
|
|
62
59
|
* },
|
|
63
60
|
* },
|
|
64
61
|
* ActiveDirectoryType: "STRING_VALUE",
|
|
62
|
+
* IsSharedActiveDirectory: true || false,
|
|
65
63
|
* },
|
|
66
64
|
* },
|
|
67
65
|
* Domain: "STRING_VALUE",
|
|
@@ -95,6 +93,7 @@ declare const AssociateUserCommand_base: {
|
|
|
95
93
|
* // },
|
|
96
94
|
* // },
|
|
97
95
|
* // ActiveDirectoryType: "STRING_VALUE",
|
|
96
|
+
* // IsSharedActiveDirectory: true || false,
|
|
98
97
|
* // },
|
|
99
98
|
* // },
|
|
100
99
|
* // Status: "STRING_VALUE", // required
|
|
@@ -118,8 +117,7 @@ declare const AssociateUserCommand_base: {
|
|
|
118
117
|
* <p>You don't have sufficient access to perform this action.</p>
|
|
119
118
|
*
|
|
120
119
|
* @throws {@link ConflictException} (server fault)
|
|
121
|
-
* <p>The request couldn't be completed because it conflicted with the current state of the
|
|
122
|
-
* resource.</p>
|
|
120
|
+
* <p>The request couldn't be completed because it conflicted with the current state of the resource.</p>
|
|
123
121
|
*
|
|
124
122
|
* @throws {@link InternalServerException} (server fault)
|
|
125
123
|
* <p>An exception occurred with the service.</p>
|
|
@@ -33,6 +33,8 @@ declare const CreateLicenseServerEndpointCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LicenseManagerUserSubscriptionsClient, CreateLicenseServerEndpointCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
35
35
|
* // const { LicenseManagerUserSubscriptionsClient, CreateLicenseServerEndpointCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
36
|
+
* // import type { LicenseManagerUserSubscriptionsClientConfig } from "@aws-sdk/client-license-manager-user-subscriptions";
|
|
37
|
+
* const config = {}; // type is LicenseManagerUserSubscriptionsClientConfig
|
|
36
38
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
37
39
|
* const input = { // CreateLicenseServerEndpointRequest
|
|
38
40
|
* IdentityProviderArn: "STRING_VALUE", // required
|
|
@@ -71,8 +73,7 @@ declare const CreateLicenseServerEndpointCommand_base: {
|
|
|
71
73
|
* <p>You don't have sufficient access to perform this action.</p>
|
|
72
74
|
*
|
|
73
75
|
* @throws {@link ConflictException} (server fault)
|
|
74
|
-
* <p>The request couldn't be completed because it conflicted with the current state of the
|
|
75
|
-
* resource.</p>
|
|
76
|
+
* <p>The request couldn't be completed because it conflicted with the current state of the resource.</p>
|
|
76
77
|
*
|
|
77
78
|
* @throws {@link InternalServerException} (server fault)
|
|
78
79
|
* <p>An exception occurred with the service.</p>
|
|
@@ -33,6 +33,8 @@ declare const DeleteLicenseServerEndpointCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LicenseManagerUserSubscriptionsClient, DeleteLicenseServerEndpointCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
35
35
|
* // const { LicenseManagerUserSubscriptionsClient, DeleteLicenseServerEndpointCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
36
|
+
* // import type { LicenseManagerUserSubscriptionsClientConfig } from "@aws-sdk/client-license-manager-user-subscriptions";
|
|
37
|
+
* const config = {}; // type is LicenseManagerUserSubscriptionsClientConfig
|
|
36
38
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
37
39
|
* const input = { // DeleteLicenseServerEndpointRequest
|
|
38
40
|
* LicenseServerEndpointArn: "STRING_VALUE", // required
|
|
@@ -74,8 +76,7 @@ declare const DeleteLicenseServerEndpointCommand_base: {
|
|
|
74
76
|
* <p>You don't have sufficient access to perform this action.</p>
|
|
75
77
|
*
|
|
76
78
|
* @throws {@link ConflictException} (server fault)
|
|
77
|
-
* <p>The request couldn't be completed because it conflicted with the current state of the
|
|
78
|
-
* resource.</p>
|
|
79
|
+
* <p>The request couldn't be completed because it conflicted with the current state of the resource.</p>
|
|
79
80
|
*
|
|
80
81
|
* @throws {@link InternalServerException} (server fault)
|
|
81
82
|
* <p>An exception occurred with the service.</p>
|
|
@@ -33,6 +33,8 @@ declare const DeregisterIdentityProviderCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LicenseManagerUserSubscriptionsClient, DeregisterIdentityProviderCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
35
35
|
* // const { LicenseManagerUserSubscriptionsClient, DeregisterIdentityProviderCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
36
|
+
* // import type { LicenseManagerUserSubscriptionsClientConfig } from "@aws-sdk/client-license-manager-user-subscriptions";
|
|
37
|
+
* const config = {}; // type is LicenseManagerUserSubscriptionsClientConfig
|
|
36
38
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
37
39
|
* const input = { // DeregisterIdentityProviderRequest
|
|
38
40
|
* IdentityProvider: { // IdentityProvider Union: only one key present
|
|
@@ -55,6 +57,7 @@ declare const DeregisterIdentityProviderCommand_base: {
|
|
|
55
57
|
* },
|
|
56
58
|
* },
|
|
57
59
|
* ActiveDirectoryType: "STRING_VALUE",
|
|
60
|
+
* IsSharedActiveDirectory: true || false,
|
|
58
61
|
* },
|
|
59
62
|
* },
|
|
60
63
|
* Product: "STRING_VALUE",
|
|
@@ -84,6 +87,7 @@ declare const DeregisterIdentityProviderCommand_base: {
|
|
|
84
87
|
* // },
|
|
85
88
|
* // },
|
|
86
89
|
* // ActiveDirectoryType: "STRING_VALUE",
|
|
90
|
+
* // IsSharedActiveDirectory: true || false,
|
|
87
91
|
* // },
|
|
88
92
|
* // },
|
|
89
93
|
* // Settings: { // Settings
|
|
@@ -96,6 +100,7 @@ declare const DeregisterIdentityProviderCommand_base: {
|
|
|
96
100
|
* // Status: "STRING_VALUE", // required
|
|
97
101
|
* // IdentityProviderArn: "STRING_VALUE",
|
|
98
102
|
* // FailureMessage: "STRING_VALUE",
|
|
103
|
+
* // OwnerAccountId: "STRING_VALUE",
|
|
99
104
|
* // },
|
|
100
105
|
* // };
|
|
101
106
|
*
|
|
@@ -111,8 +116,7 @@ declare const DeregisterIdentityProviderCommand_base: {
|
|
|
111
116
|
* <p>You don't have sufficient access to perform this action.</p>
|
|
112
117
|
*
|
|
113
118
|
* @throws {@link ConflictException} (server fault)
|
|
114
|
-
* <p>The request couldn't be completed because it conflicted with the current state of the
|
|
115
|
-
* resource.</p>
|
|
119
|
+
* <p>The request couldn't be completed because it conflicted with the current state of the resource.</p>
|
|
116
120
|
*
|
|
117
121
|
* @throws {@link InternalServerException} (server fault)
|
|
118
122
|
* <p>An exception occurred with the service.</p>
|
|
@@ -33,6 +33,8 @@ declare const DisassociateUserCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LicenseManagerUserSubscriptionsClient, DisassociateUserCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
35
35
|
* // const { LicenseManagerUserSubscriptionsClient, DisassociateUserCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
36
|
+
* // import type { LicenseManagerUserSubscriptionsClientConfig } from "@aws-sdk/client-license-manager-user-subscriptions";
|
|
37
|
+
* const config = {}; // type is LicenseManagerUserSubscriptionsClientConfig
|
|
36
38
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
37
39
|
* const input = { // DisassociateUserRequest
|
|
38
40
|
* Username: "STRING_VALUE",
|
|
@@ -57,6 +59,7 @@ declare const DisassociateUserCommand_base: {
|
|
|
57
59
|
* },
|
|
58
60
|
* },
|
|
59
61
|
* ActiveDirectoryType: "STRING_VALUE",
|
|
62
|
+
* IsSharedActiveDirectory: true || false,
|
|
60
63
|
* },
|
|
61
64
|
* },
|
|
62
65
|
* InstanceUserArn: "STRING_VALUE",
|
|
@@ -88,6 +91,7 @@ declare const DisassociateUserCommand_base: {
|
|
|
88
91
|
* // },
|
|
89
92
|
* // },
|
|
90
93
|
* // ActiveDirectoryType: "STRING_VALUE",
|
|
94
|
+
* // IsSharedActiveDirectory: true || false,
|
|
91
95
|
* // },
|
|
92
96
|
* // },
|
|
93
97
|
* // Status: "STRING_VALUE", // required
|
|
@@ -111,8 +115,7 @@ declare const DisassociateUserCommand_base: {
|
|
|
111
115
|
* <p>You don't have sufficient access to perform this action.</p>
|
|
112
116
|
*
|
|
113
117
|
* @throws {@link ConflictException} (server fault)
|
|
114
|
-
* <p>The request couldn't be completed because it conflicted with the current state of the
|
|
115
|
-
* resource.</p>
|
|
118
|
+
* <p>The request couldn't be completed because it conflicted with the current state of the resource.</p>
|
|
116
119
|
*
|
|
117
120
|
* @throws {@link InternalServerException} (server fault)
|
|
118
121
|
* <p>An exception occurred with the service.</p>
|
|
@@ -33,6 +33,8 @@ declare const ListIdentityProvidersCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LicenseManagerUserSubscriptionsClient, ListIdentityProvidersCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
35
35
|
* // const { LicenseManagerUserSubscriptionsClient, ListIdentityProvidersCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
36
|
+
* // import type { LicenseManagerUserSubscriptionsClientConfig } from "@aws-sdk/client-license-manager-user-subscriptions";
|
|
37
|
+
* const config = {}; // type is LicenseManagerUserSubscriptionsClientConfig
|
|
36
38
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
37
39
|
* const input = { // ListIdentityProvidersRequest
|
|
38
40
|
* MaxResults: Number("int"),
|
|
@@ -70,6 +72,7 @@ declare const ListIdentityProvidersCommand_base: {
|
|
|
70
72
|
* // },
|
|
71
73
|
* // },
|
|
72
74
|
* // ActiveDirectoryType: "STRING_VALUE",
|
|
75
|
+
* // IsSharedActiveDirectory: true || false,
|
|
73
76
|
* // },
|
|
74
77
|
* // },
|
|
75
78
|
* // Settings: { // Settings
|
|
@@ -82,6 +85,7 @@ declare const ListIdentityProvidersCommand_base: {
|
|
|
82
85
|
* // Status: "STRING_VALUE", // required
|
|
83
86
|
* // IdentityProviderArn: "STRING_VALUE",
|
|
84
87
|
* // FailureMessage: "STRING_VALUE",
|
|
88
|
+
* // OwnerAccountId: "STRING_VALUE",
|
|
85
89
|
* // },
|
|
86
90
|
* // ],
|
|
87
91
|
* // NextToken: "STRING_VALUE",
|
|
@@ -99,8 +103,7 @@ declare const ListIdentityProvidersCommand_base: {
|
|
|
99
103
|
* <p>You don't have sufficient access to perform this action.</p>
|
|
100
104
|
*
|
|
101
105
|
* @throws {@link ConflictException} (server fault)
|
|
102
|
-
* <p>The request couldn't be completed because it conflicted with the current state of the
|
|
103
|
-
* resource.</p>
|
|
106
|
+
* <p>The request couldn't be completed because it conflicted with the current state of the resource.</p>
|
|
104
107
|
*
|
|
105
108
|
* @throws {@link InternalServerException} (server fault)
|
|
106
109
|
* <p>An exception occurred with the service.</p>
|
|
@@ -33,6 +33,8 @@ declare const ListInstancesCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LicenseManagerUserSubscriptionsClient, ListInstancesCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
35
35
|
* // const { LicenseManagerUserSubscriptionsClient, ListInstancesCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
36
|
+
* // import type { LicenseManagerUserSubscriptionsClientConfig } from "@aws-sdk/client-license-manager-user-subscriptions";
|
|
37
|
+
* const config = {}; // type is LicenseManagerUserSubscriptionsClientConfig
|
|
36
38
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
37
39
|
* const input = { // ListInstancesRequest
|
|
38
40
|
* MaxResults: Number("int"),
|
|
@@ -57,6 +59,30 @@ declare const ListInstancesCommand_base: {
|
|
|
57
59
|
* // ],
|
|
58
60
|
* // LastStatusCheckDate: "STRING_VALUE",
|
|
59
61
|
* // StatusMessage: "STRING_VALUE",
|
|
62
|
+
* // OwnerAccountId: "STRING_VALUE",
|
|
63
|
+
* // IdentityProvider: { // IdentityProvider Union: only one key present
|
|
64
|
+
* // ActiveDirectoryIdentityProvider: { // ActiveDirectoryIdentityProvider
|
|
65
|
+
* // DirectoryId: "STRING_VALUE",
|
|
66
|
+
* // ActiveDirectorySettings: { // ActiveDirectorySettings
|
|
67
|
+
* // DomainName: "STRING_VALUE",
|
|
68
|
+
* // DomainIpv4List: [ // IpV4List
|
|
69
|
+
* // "STRING_VALUE",
|
|
70
|
+
* // ],
|
|
71
|
+
* // DomainCredentialsProvider: { // CredentialsProvider Union: only one key present
|
|
72
|
+
* // SecretsManagerCredentialsProvider: { // SecretsManagerCredentialsProvider
|
|
73
|
+
* // SecretId: "STRING_VALUE",
|
|
74
|
+
* // },
|
|
75
|
+
* // },
|
|
76
|
+
* // DomainNetworkSettings: { // DomainNetworkSettings
|
|
77
|
+
* // Subnets: [ // Subnets // required
|
|
78
|
+
* // "STRING_VALUE",
|
|
79
|
+
* // ],
|
|
80
|
+
* // },
|
|
81
|
+
* // },
|
|
82
|
+
* // ActiveDirectoryType: "STRING_VALUE",
|
|
83
|
+
* // IsSharedActiveDirectory: true || false,
|
|
84
|
+
* // },
|
|
85
|
+
* // },
|
|
60
86
|
* // },
|
|
61
87
|
* // ],
|
|
62
88
|
* // NextToken: "STRING_VALUE",
|
|
@@ -74,8 +100,7 @@ declare const ListInstancesCommand_base: {
|
|
|
74
100
|
* <p>You don't have sufficient access to perform this action.</p>
|
|
75
101
|
*
|
|
76
102
|
* @throws {@link ConflictException} (server fault)
|
|
77
|
-
* <p>The request couldn't be completed because it conflicted with the current state of the
|
|
78
|
-
* resource.</p>
|
|
103
|
+
* <p>The request couldn't be completed because it conflicted with the current state of the resource.</p>
|
|
79
104
|
*
|
|
80
105
|
* @throws {@link InternalServerException} (server fault)
|
|
81
106
|
* <p>An exception occurred with the service.</p>
|
|
@@ -33,6 +33,8 @@ declare const ListLicenseServerEndpointsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LicenseManagerUserSubscriptionsClient, ListLicenseServerEndpointsCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
35
35
|
* // const { LicenseManagerUserSubscriptionsClient, ListLicenseServerEndpointsCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
36
|
+
* // import type { LicenseManagerUserSubscriptionsClientConfig } from "@aws-sdk/client-license-manager-user-subscriptions";
|
|
37
|
+
* const config = {}; // type is LicenseManagerUserSubscriptionsClientConfig
|
|
36
38
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
37
39
|
* const input = { // ListLicenseServerEndpointsRequest
|
|
38
40
|
* MaxResults: Number("int"),
|
|
@@ -84,8 +86,7 @@ declare const ListLicenseServerEndpointsCommand_base: {
|
|
|
84
86
|
* <p>You don't have sufficient access to perform this action.</p>
|
|
85
87
|
*
|
|
86
88
|
* @throws {@link ConflictException} (server fault)
|
|
87
|
-
* <p>The request couldn't be completed because it conflicted with the current state of the
|
|
88
|
-
* resource.</p>
|
|
89
|
+
* <p>The request couldn't be completed because it conflicted with the current state of the resource.</p>
|
|
89
90
|
*
|
|
90
91
|
* @throws {@link InternalServerException} (server fault)
|
|
91
92
|
* <p>An exception occurred with the service.</p>
|
|
@@ -33,6 +33,8 @@ declare const ListProductSubscriptionsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LicenseManagerUserSubscriptionsClient, ListProductSubscriptionsCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
35
35
|
* // const { LicenseManagerUserSubscriptionsClient, ListProductSubscriptionsCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
36
|
+
* // import type { LicenseManagerUserSubscriptionsClientConfig } from "@aws-sdk/client-license-manager-user-subscriptions";
|
|
37
|
+
* const config = {}; // type is LicenseManagerUserSubscriptionsClientConfig
|
|
36
38
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
37
39
|
* const input = { // ListProductSubscriptionsRequest
|
|
38
40
|
* Product: "STRING_VALUE",
|
|
@@ -56,6 +58,7 @@ declare const ListProductSubscriptionsCommand_base: {
|
|
|
56
58
|
* },
|
|
57
59
|
* },
|
|
58
60
|
* ActiveDirectoryType: "STRING_VALUE",
|
|
61
|
+
* IsSharedActiveDirectory: true || false,
|
|
59
62
|
* },
|
|
60
63
|
* },
|
|
61
64
|
* MaxResults: Number("int"),
|
|
@@ -95,6 +98,7 @@ declare const ListProductSubscriptionsCommand_base: {
|
|
|
95
98
|
* // },
|
|
96
99
|
* // },
|
|
97
100
|
* // ActiveDirectoryType: "STRING_VALUE",
|
|
101
|
+
* // IsSharedActiveDirectory: true || false,
|
|
98
102
|
* // },
|
|
99
103
|
* // },
|
|
100
104
|
* // Status: "STRING_VALUE", // required
|
|
@@ -120,8 +124,7 @@ declare const ListProductSubscriptionsCommand_base: {
|
|
|
120
124
|
* <p>You don't have sufficient access to perform this action.</p>
|
|
121
125
|
*
|
|
122
126
|
* @throws {@link ConflictException} (server fault)
|
|
123
|
-
* <p>The request couldn't be completed because it conflicted with the current state of the
|
|
124
|
-
* resource.</p>
|
|
127
|
+
* <p>The request couldn't be completed because it conflicted with the current state of the resource.</p>
|
|
125
128
|
*
|
|
126
129
|
* @throws {@link InternalServerException} (server fault)
|
|
127
130
|
* <p>An exception occurred with the service.</p>
|
|
@@ -33,6 +33,8 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LicenseManagerUserSubscriptionsClient, ListTagsForResourceCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
35
35
|
* // const { LicenseManagerUserSubscriptionsClient, ListTagsForResourceCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
36
|
+
* // import type { LicenseManagerUserSubscriptionsClientConfig } from "@aws-sdk/client-license-manager-user-subscriptions";
|
|
37
|
+
* const config = {}; // type is LicenseManagerUserSubscriptionsClientConfig
|
|
36
38
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
37
39
|
* const input = { // ListTagsForResourceRequest
|
|
38
40
|
* ResourceArn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const ListUserAssociationsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LicenseManagerUserSubscriptionsClient, ListUserAssociationsCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
35
35
|
* // const { LicenseManagerUserSubscriptionsClient, ListUserAssociationsCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
36
|
+
* // import type { LicenseManagerUserSubscriptionsClientConfig } from "@aws-sdk/client-license-manager-user-subscriptions";
|
|
37
|
+
* const config = {}; // type is LicenseManagerUserSubscriptionsClientConfig
|
|
36
38
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
37
39
|
* const input = { // ListUserAssociationsRequest
|
|
38
40
|
* InstanceId: "STRING_VALUE", // required
|
|
@@ -56,6 +58,7 @@ declare const ListUserAssociationsCommand_base: {
|
|
|
56
58
|
* },
|
|
57
59
|
* },
|
|
58
60
|
* ActiveDirectoryType: "STRING_VALUE",
|
|
61
|
+
* IsSharedActiveDirectory: true || false,
|
|
59
62
|
* },
|
|
60
63
|
* },
|
|
61
64
|
* MaxResults: Number("int"),
|
|
@@ -95,6 +98,7 @@ declare const ListUserAssociationsCommand_base: {
|
|
|
95
98
|
* // },
|
|
96
99
|
* // },
|
|
97
100
|
* // ActiveDirectoryType: "STRING_VALUE",
|
|
101
|
+
* // IsSharedActiveDirectory: true || false,
|
|
98
102
|
* // },
|
|
99
103
|
* // },
|
|
100
104
|
* // Status: "STRING_VALUE", // required
|
|
@@ -120,8 +124,7 @@ declare const ListUserAssociationsCommand_base: {
|
|
|
120
124
|
* <p>You don't have sufficient access to perform this action.</p>
|
|
121
125
|
*
|
|
122
126
|
* @throws {@link ConflictException} (server fault)
|
|
123
|
-
* <p>The request couldn't be completed because it conflicted with the current state of the
|
|
124
|
-
* resource.</p>
|
|
127
|
+
* <p>The request couldn't be completed because it conflicted with the current state of the resource.</p>
|
|
125
128
|
*
|
|
126
129
|
* @throws {@link InternalServerException} (server fault)
|
|
127
130
|
* <p>An exception occurred with the service.</p>
|
|
@@ -33,6 +33,8 @@ declare const RegisterIdentityProviderCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LicenseManagerUserSubscriptionsClient, RegisterIdentityProviderCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
35
35
|
* // const { LicenseManagerUserSubscriptionsClient, RegisterIdentityProviderCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
36
|
+
* // import type { LicenseManagerUserSubscriptionsClientConfig } from "@aws-sdk/client-license-manager-user-subscriptions";
|
|
37
|
+
* const config = {}; // type is LicenseManagerUserSubscriptionsClientConfig
|
|
36
38
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
37
39
|
* const input = { // RegisterIdentityProviderRequest
|
|
38
40
|
* IdentityProvider: { // IdentityProvider Union: only one key present
|
|
@@ -55,6 +57,7 @@ declare const RegisterIdentityProviderCommand_base: {
|
|
|
55
57
|
* },
|
|
56
58
|
* },
|
|
57
59
|
* ActiveDirectoryType: "STRING_VALUE",
|
|
60
|
+
* IsSharedActiveDirectory: true || false,
|
|
58
61
|
* },
|
|
59
62
|
* },
|
|
60
63
|
* Product: "STRING_VALUE", // required
|
|
@@ -92,6 +95,7 @@ declare const RegisterIdentityProviderCommand_base: {
|
|
|
92
95
|
* // },
|
|
93
96
|
* // },
|
|
94
97
|
* // ActiveDirectoryType: "STRING_VALUE",
|
|
98
|
+
* // IsSharedActiveDirectory: true || false,
|
|
95
99
|
* // },
|
|
96
100
|
* // },
|
|
97
101
|
* // Settings: { // Settings
|
|
@@ -104,6 +108,7 @@ declare const RegisterIdentityProviderCommand_base: {
|
|
|
104
108
|
* // Status: "STRING_VALUE", // required
|
|
105
109
|
* // IdentityProviderArn: "STRING_VALUE",
|
|
106
110
|
* // FailureMessage: "STRING_VALUE",
|
|
111
|
+
* // OwnerAccountId: "STRING_VALUE",
|
|
107
112
|
* // },
|
|
108
113
|
* // };
|
|
109
114
|
*
|
|
@@ -119,8 +124,7 @@ declare const RegisterIdentityProviderCommand_base: {
|
|
|
119
124
|
* <p>You don't have sufficient access to perform this action.</p>
|
|
120
125
|
*
|
|
121
126
|
* @throws {@link ConflictException} (server fault)
|
|
122
|
-
* <p>The request couldn't be completed because it conflicted with the current state of the
|
|
123
|
-
* resource.</p>
|
|
127
|
+
* <p>The request couldn't be completed because it conflicted with the current state of the resource.</p>
|
|
124
128
|
*
|
|
125
129
|
* @throws {@link InternalServerException} (server fault)
|
|
126
130
|
* <p>An exception occurred with the service.</p>
|
|
@@ -27,17 +27,14 @@ declare const StartProductSubscriptionCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Starts a product subscription for a user with the specified identity provider.</p>
|
|
31
|
-
* <note>
|
|
32
|
-
* <p>Your estimated bill for charges on the number of users and related costs will take 48
|
|
33
|
-
* hours to appear for billing periods that haven't closed (marked as <b>Pending</b> billing status) in Amazon Web Services Billing. For more information, see <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/invoice.html">Viewing your
|
|
34
|
-
* monthly charges</a> in the <i>Amazon Web Services Billing User Guide</i>.</p>
|
|
35
|
-
* </note>
|
|
30
|
+
* <p>Starts a product subscription for a user with the specified identity provider.</p> <note> <p>Your estimated bill for charges on the number of users and related costs will take 48 hours to appear for billing periods that haven't closed (marked as <b>Pending</b> billing status) in Amazon Web Services Billing. For more information, see <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/invoice.html">Viewing your monthly charges</a> in the <i>Amazon Web Services Billing User Guide</i>.</p> </note>
|
|
36
31
|
* @example
|
|
37
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
38
33
|
* ```javascript
|
|
39
34
|
* import { LicenseManagerUserSubscriptionsClient, StartProductSubscriptionCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
40
35
|
* // const { LicenseManagerUserSubscriptionsClient, StartProductSubscriptionCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
36
|
+
* // import type { LicenseManagerUserSubscriptionsClientConfig } from "@aws-sdk/client-license-manager-user-subscriptions";
|
|
37
|
+
* const config = {}; // type is LicenseManagerUserSubscriptionsClientConfig
|
|
41
38
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
42
39
|
* const input = { // StartProductSubscriptionRequest
|
|
43
40
|
* Username: "STRING_VALUE", // required
|
|
@@ -61,6 +58,7 @@ declare const StartProductSubscriptionCommand_base: {
|
|
|
61
58
|
* },
|
|
62
59
|
* },
|
|
63
60
|
* ActiveDirectoryType: "STRING_VALUE",
|
|
61
|
+
* IsSharedActiveDirectory: true || false,
|
|
64
62
|
* },
|
|
65
63
|
* },
|
|
66
64
|
* Product: "STRING_VALUE", // required
|
|
@@ -95,6 +93,7 @@ declare const StartProductSubscriptionCommand_base: {
|
|
|
95
93
|
* // },
|
|
96
94
|
* // },
|
|
97
95
|
* // ActiveDirectoryType: "STRING_VALUE",
|
|
96
|
+
* // IsSharedActiveDirectory: true || false,
|
|
98
97
|
* // },
|
|
99
98
|
* // },
|
|
100
99
|
* // Status: "STRING_VALUE", // required
|
|
@@ -118,8 +117,7 @@ declare const StartProductSubscriptionCommand_base: {
|
|
|
118
117
|
* <p>You don't have sufficient access to perform this action.</p>
|
|
119
118
|
*
|
|
120
119
|
* @throws {@link ConflictException} (server fault)
|
|
121
|
-
* <p>The request couldn't be completed because it conflicted with the current state of the
|
|
122
|
-
* resource.</p>
|
|
120
|
+
* <p>The request couldn't be completed because it conflicted with the current state of the resource.</p>
|
|
123
121
|
*
|
|
124
122
|
* @throws {@link InternalServerException} (server fault)
|
|
125
123
|
* <p>An exception occurred with the service.</p>
|
|
@@ -33,6 +33,8 @@ declare const StopProductSubscriptionCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LicenseManagerUserSubscriptionsClient, StopProductSubscriptionCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
35
35
|
* // const { LicenseManagerUserSubscriptionsClient, StopProductSubscriptionCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
36
|
+
* // import type { LicenseManagerUserSubscriptionsClientConfig } from "@aws-sdk/client-license-manager-user-subscriptions";
|
|
37
|
+
* const config = {}; // type is LicenseManagerUserSubscriptionsClientConfig
|
|
36
38
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
37
39
|
* const input = { // StopProductSubscriptionRequest
|
|
38
40
|
* Username: "STRING_VALUE",
|
|
@@ -56,6 +58,7 @@ declare const StopProductSubscriptionCommand_base: {
|
|
|
56
58
|
* },
|
|
57
59
|
* },
|
|
58
60
|
* ActiveDirectoryType: "STRING_VALUE",
|
|
61
|
+
* IsSharedActiveDirectory: true || false,
|
|
59
62
|
* },
|
|
60
63
|
* },
|
|
61
64
|
* Product: "STRING_VALUE",
|
|
@@ -88,6 +91,7 @@ declare const StopProductSubscriptionCommand_base: {
|
|
|
88
91
|
* // },
|
|
89
92
|
* // },
|
|
90
93
|
* // ActiveDirectoryType: "STRING_VALUE",
|
|
94
|
+
* // IsSharedActiveDirectory: true || false,
|
|
91
95
|
* // },
|
|
92
96
|
* // },
|
|
93
97
|
* // Status: "STRING_VALUE", // required
|
|
@@ -111,8 +115,7 @@ declare const StopProductSubscriptionCommand_base: {
|
|
|
111
115
|
* <p>You don't have sufficient access to perform this action.</p>
|
|
112
116
|
*
|
|
113
117
|
* @throws {@link ConflictException} (server fault)
|
|
114
|
-
* <p>The request couldn't be completed because it conflicted with the current state of the
|
|
115
|
-
* resource.</p>
|
|
118
|
+
* <p>The request couldn't be completed because it conflicted with the current state of the resource.</p>
|
|
116
119
|
*
|
|
117
120
|
* @throws {@link InternalServerException} (server fault)
|
|
118
121
|
* <p>An exception occurred with the service.</p>
|
|
@@ -33,6 +33,8 @@ declare const TagResourceCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LicenseManagerUserSubscriptionsClient, TagResourceCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
35
35
|
* // const { LicenseManagerUserSubscriptionsClient, TagResourceCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
36
|
+
* // import type { LicenseManagerUserSubscriptionsClientConfig } from "@aws-sdk/client-license-manager-user-subscriptions";
|
|
37
|
+
* const config = {}; // type is LicenseManagerUserSubscriptionsClientConfig
|
|
36
38
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
37
39
|
* const input = { // TagResourceRequest
|
|
38
40
|
* ResourceArn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const UntagResourceCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { LicenseManagerUserSubscriptionsClient, UntagResourceCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
35
35
|
* // const { LicenseManagerUserSubscriptionsClient, UntagResourceCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
36
|
+
* // import type { LicenseManagerUserSubscriptionsClientConfig } from "@aws-sdk/client-license-manager-user-subscriptions";
|
|
37
|
+
* const config = {}; // type is LicenseManagerUserSubscriptionsClientConfig
|
|
36
38
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
37
39
|
* const input = { // UntagResourceRequest
|
|
38
40
|
* ResourceArn: "STRING_VALUE", // required
|
|
@@ -27,13 +27,14 @@ declare const UpdateIdentityProviderSettingsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Updates additional product configuration settings for the registered identity
|
|
31
|
-
* provider.</p>
|
|
30
|
+
* <p>Updates additional product configuration settings for the registered identity provider.</p>
|
|
32
31
|
* @example
|
|
33
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
33
|
* ```javascript
|
|
35
34
|
* import { LicenseManagerUserSubscriptionsClient, UpdateIdentityProviderSettingsCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
36
35
|
* // const { LicenseManagerUserSubscriptionsClient, UpdateIdentityProviderSettingsCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
36
|
+
* // import type { LicenseManagerUserSubscriptionsClientConfig } from "@aws-sdk/client-license-manager-user-subscriptions";
|
|
37
|
+
* const config = {}; // type is LicenseManagerUserSubscriptionsClientConfig
|
|
37
38
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
38
39
|
* const input = { // UpdateIdentityProviderSettingsRequest
|
|
39
40
|
* IdentityProvider: { // IdentityProvider Union: only one key present
|
|
@@ -56,6 +57,7 @@ declare const UpdateIdentityProviderSettingsCommand_base: {
|
|
|
56
57
|
* },
|
|
57
58
|
* },
|
|
58
59
|
* ActiveDirectoryType: "STRING_VALUE",
|
|
60
|
+
* IsSharedActiveDirectory: true || false,
|
|
59
61
|
* },
|
|
60
62
|
* },
|
|
61
63
|
* Product: "STRING_VALUE",
|
|
@@ -94,6 +96,7 @@ declare const UpdateIdentityProviderSettingsCommand_base: {
|
|
|
94
96
|
* // },
|
|
95
97
|
* // },
|
|
96
98
|
* // ActiveDirectoryType: "STRING_VALUE",
|
|
99
|
+
* // IsSharedActiveDirectory: true || false,
|
|
97
100
|
* // },
|
|
98
101
|
* // },
|
|
99
102
|
* // Settings: { // Settings
|
|
@@ -106,6 +109,7 @@ declare const UpdateIdentityProviderSettingsCommand_base: {
|
|
|
106
109
|
* // Status: "STRING_VALUE", // required
|
|
107
110
|
* // IdentityProviderArn: "STRING_VALUE",
|
|
108
111
|
* // FailureMessage: "STRING_VALUE",
|
|
112
|
+
* // OwnerAccountId: "STRING_VALUE",
|
|
109
113
|
* // },
|
|
110
114
|
* // };
|
|
111
115
|
*
|
package/dist-types/index.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* <p>With License Manager, you can create user-based subscriptions to utilize licensed software with
|
|
3
|
-
* a per user subscription fee on Amazon EC2 instances.</p>
|
|
2
|
+
* <p>With License Manager, you can create user-based subscriptions to utilize licensed software with a per user subscription fee on Amazon EC2 instances.</p>
|
|
4
3
|
*
|
|
5
4
|
* @packageDocumentation
|
|
6
5
|
*/
|