@aws-sdk/client-license-manager-user-subscriptions 3.299.0 → 3.301.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/commands/AssociateUserCommand.d.ts +10 -0
- package/dist-types/commands/DeregisterIdentityProviderCommand.d.ts +8 -0
- package/dist-types/commands/DisassociateUserCommand.d.ts +10 -0
- package/dist-types/commands/ListIdentityProvidersCommand.d.ts +4 -0
- package/dist-types/commands/ListInstancesCommand.d.ts +11 -0
- package/dist-types/commands/ListProductSubscriptionsCommand.d.ts +17 -0
- package/dist-types/commands/ListUserAssociationsCommand.d.ts +17 -0
- package/dist-types/commands/RegisterIdentityProviderCommand.d.ts +14 -0
- package/dist-types/commands/StartProductSubscriptionCommand.d.ts +10 -0
- package/dist-types/commands/StopProductSubscriptionCommand.d.ts +10 -0
- package/dist-types/commands/UpdateIdentityProviderSettingsCommand.d.ts +17 -0
- package/package.json +8 -8
|
@@ -31,6 +31,16 @@ export interface AssociateUserCommandOutput extends AssociateUserResponse, __Met
|
|
|
31
31
|
* import { LicenseManagerUserSubscriptionsClient, AssociateUserCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
32
32
|
* // const { LicenseManagerUserSubscriptionsClient, AssociateUserCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
33
33
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
34
|
+
* const input = { // AssociateUserRequest
|
|
35
|
+
* Username: "STRING_VALUE", // required
|
|
36
|
+
* InstanceId: "STRING_VALUE", // required
|
|
37
|
+
* IdentityProvider: { // IdentityProvider Union: only one key present
|
|
38
|
+
* ActiveDirectoryIdentityProvider: { // ActiveDirectoryIdentityProvider
|
|
39
|
+
* DirectoryId: "STRING_VALUE",
|
|
40
|
+
* },
|
|
41
|
+
* },
|
|
42
|
+
* Domain: "STRING_VALUE",
|
|
43
|
+
* };
|
|
34
44
|
* const command = new AssociateUserCommand(input);
|
|
35
45
|
* const response = await client.send(command);
|
|
36
46
|
* ```
|
|
@@ -26,6 +26,14 @@ export interface DeregisterIdentityProviderCommandOutput extends DeregisterIdent
|
|
|
26
26
|
* import { LicenseManagerUserSubscriptionsClient, DeregisterIdentityProviderCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerUserSubscriptionsClient, DeregisterIdentityProviderCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
29
|
+
* const input = { // DeregisterIdentityProviderRequest
|
|
30
|
+
* IdentityProvider: { // IdentityProvider Union: only one key present
|
|
31
|
+
* ActiveDirectoryIdentityProvider: { // ActiveDirectoryIdentityProvider
|
|
32
|
+
* DirectoryId: "STRING_VALUE",
|
|
33
|
+
* },
|
|
34
|
+
* },
|
|
35
|
+
* Product: "STRING_VALUE", // required
|
|
36
|
+
* };
|
|
29
37
|
* const command = new DeregisterIdentityProviderCommand(input);
|
|
30
38
|
* const response = await client.send(command);
|
|
31
39
|
* ```
|
|
@@ -26,6 +26,16 @@ export interface DisassociateUserCommandOutput extends DisassociateUserResponse,
|
|
|
26
26
|
* import { LicenseManagerUserSubscriptionsClient, DisassociateUserCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerUserSubscriptionsClient, DisassociateUserCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
29
|
+
* const input = { // DisassociateUserRequest
|
|
30
|
+
* Username: "STRING_VALUE", // required
|
|
31
|
+
* InstanceId: "STRING_VALUE", // required
|
|
32
|
+
* IdentityProvider: { // IdentityProvider Union: only one key present
|
|
33
|
+
* ActiveDirectoryIdentityProvider: { // ActiveDirectoryIdentityProvider
|
|
34
|
+
* DirectoryId: "STRING_VALUE",
|
|
35
|
+
* },
|
|
36
|
+
* },
|
|
37
|
+
* Domain: "STRING_VALUE",
|
|
38
|
+
* };
|
|
29
39
|
* const command = new DisassociateUserCommand(input);
|
|
30
40
|
* const response = await client.send(command);
|
|
31
41
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListIdentityProvidersCommandOutput extends ListIdentityProvider
|
|
|
26
26
|
* import { LicenseManagerUserSubscriptionsClient, ListIdentityProvidersCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerUserSubscriptionsClient, ListIdentityProvidersCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
29
|
+
* const input = { // ListIdentityProvidersRequest
|
|
30
|
+
* MaxResults: Number("int"),
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListIdentityProvidersCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,17 @@ export interface ListInstancesCommandOutput extends ListInstancesResponse, __Met
|
|
|
26
26
|
* import { LicenseManagerUserSubscriptionsClient, ListInstancesCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerUserSubscriptionsClient, ListInstancesCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
29
|
+
* const input = { // ListInstancesRequest
|
|
30
|
+
* MaxResults: Number("int"),
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* Filters: [ // FilterList
|
|
33
|
+
* { // Filter
|
|
34
|
+
* Attribute: "STRING_VALUE",
|
|
35
|
+
* Operation: "STRING_VALUE",
|
|
36
|
+
* Value: "STRING_VALUE",
|
|
37
|
+
* },
|
|
38
|
+
* ],
|
|
39
|
+
* };
|
|
29
40
|
* const command = new ListInstancesCommand(input);
|
|
30
41
|
* const response = await client.send(command);
|
|
31
42
|
* ```
|
|
@@ -26,6 +26,23 @@ export interface ListProductSubscriptionsCommandOutput extends ListProductSubscr
|
|
|
26
26
|
* import { LicenseManagerUserSubscriptionsClient, ListProductSubscriptionsCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerUserSubscriptionsClient, ListProductSubscriptionsCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
29
|
+
* const input = { // ListProductSubscriptionsRequest
|
|
30
|
+
* Product: "STRING_VALUE", // required
|
|
31
|
+
* IdentityProvider: { // IdentityProvider Union: only one key present
|
|
32
|
+
* ActiveDirectoryIdentityProvider: { // ActiveDirectoryIdentityProvider
|
|
33
|
+
* DirectoryId: "STRING_VALUE",
|
|
34
|
+
* },
|
|
35
|
+
* },
|
|
36
|
+
* MaxResults: Number("int"),
|
|
37
|
+
* Filters: [ // FilterList
|
|
38
|
+
* { // Filter
|
|
39
|
+
* Attribute: "STRING_VALUE",
|
|
40
|
+
* Operation: "STRING_VALUE",
|
|
41
|
+
* Value: "STRING_VALUE",
|
|
42
|
+
* },
|
|
43
|
+
* ],
|
|
44
|
+
* NextToken: "STRING_VALUE",
|
|
45
|
+
* };
|
|
29
46
|
* const command = new ListProductSubscriptionsCommand(input);
|
|
30
47
|
* const response = await client.send(command);
|
|
31
48
|
* ```
|
|
@@ -26,6 +26,23 @@ export interface ListUserAssociationsCommandOutput extends ListUserAssociationsR
|
|
|
26
26
|
* import { LicenseManagerUserSubscriptionsClient, ListUserAssociationsCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerUserSubscriptionsClient, ListUserAssociationsCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
29
|
+
* const input = { // ListUserAssociationsRequest
|
|
30
|
+
* InstanceId: "STRING_VALUE", // required
|
|
31
|
+
* IdentityProvider: { // IdentityProvider Union: only one key present
|
|
32
|
+
* ActiveDirectoryIdentityProvider: { // ActiveDirectoryIdentityProvider
|
|
33
|
+
* DirectoryId: "STRING_VALUE",
|
|
34
|
+
* },
|
|
35
|
+
* },
|
|
36
|
+
* MaxResults: Number("int"),
|
|
37
|
+
* Filters: [ // FilterList
|
|
38
|
+
* { // Filter
|
|
39
|
+
* Attribute: "STRING_VALUE",
|
|
40
|
+
* Operation: "STRING_VALUE",
|
|
41
|
+
* Value: "STRING_VALUE",
|
|
42
|
+
* },
|
|
43
|
+
* ],
|
|
44
|
+
* NextToken: "STRING_VALUE",
|
|
45
|
+
* };
|
|
29
46
|
* const command = new ListUserAssociationsCommand(input);
|
|
30
47
|
* const response = await client.send(command);
|
|
31
48
|
* ```
|
|
@@ -26,6 +26,20 @@ export interface RegisterIdentityProviderCommandOutput extends RegisterIdentityP
|
|
|
26
26
|
* import { LicenseManagerUserSubscriptionsClient, RegisterIdentityProviderCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerUserSubscriptionsClient, RegisterIdentityProviderCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
29
|
+
* const input = { // RegisterIdentityProviderRequest
|
|
30
|
+
* IdentityProvider: { // IdentityProvider Union: only one key present
|
|
31
|
+
* ActiveDirectoryIdentityProvider: { // ActiveDirectoryIdentityProvider
|
|
32
|
+
* DirectoryId: "STRING_VALUE",
|
|
33
|
+
* },
|
|
34
|
+
* },
|
|
35
|
+
* Product: "STRING_VALUE", // required
|
|
36
|
+
* Settings: { // Settings
|
|
37
|
+
* Subnets: [ // Subnets // required
|
|
38
|
+
* "STRING_VALUE",
|
|
39
|
+
* ],
|
|
40
|
+
* SecurityGroupId: "STRING_VALUE", // required
|
|
41
|
+
* },
|
|
42
|
+
* };
|
|
29
43
|
* const command = new RegisterIdentityProviderCommand(input);
|
|
30
44
|
* const response = await client.send(command);
|
|
31
45
|
* ```
|
|
@@ -31,6 +31,16 @@ export interface StartProductSubscriptionCommandOutput extends StartProductSubsc
|
|
|
31
31
|
* import { LicenseManagerUserSubscriptionsClient, StartProductSubscriptionCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
32
32
|
* // const { LicenseManagerUserSubscriptionsClient, StartProductSubscriptionCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
33
33
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
34
|
+
* const input = { // StartProductSubscriptionRequest
|
|
35
|
+
* Username: "STRING_VALUE", // required
|
|
36
|
+
* IdentityProvider: { // IdentityProvider Union: only one key present
|
|
37
|
+
* ActiveDirectoryIdentityProvider: { // ActiveDirectoryIdentityProvider
|
|
38
|
+
* DirectoryId: "STRING_VALUE",
|
|
39
|
+
* },
|
|
40
|
+
* },
|
|
41
|
+
* Product: "STRING_VALUE", // required
|
|
42
|
+
* Domain: "STRING_VALUE",
|
|
43
|
+
* };
|
|
34
44
|
* const command = new StartProductSubscriptionCommand(input);
|
|
35
45
|
* const response = await client.send(command);
|
|
36
46
|
* ```
|
|
@@ -26,6 +26,16 @@ export interface StopProductSubscriptionCommandOutput extends StopProductSubscri
|
|
|
26
26
|
* import { LicenseManagerUserSubscriptionsClient, StopProductSubscriptionCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerUserSubscriptionsClient, StopProductSubscriptionCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
29
|
+
* const input = { // StopProductSubscriptionRequest
|
|
30
|
+
* Username: "STRING_VALUE", // required
|
|
31
|
+
* IdentityProvider: { // IdentityProvider Union: only one key present
|
|
32
|
+
* ActiveDirectoryIdentityProvider: { // ActiveDirectoryIdentityProvider
|
|
33
|
+
* DirectoryId: "STRING_VALUE",
|
|
34
|
+
* },
|
|
35
|
+
* },
|
|
36
|
+
* Product: "STRING_VALUE", // required
|
|
37
|
+
* Domain: "STRING_VALUE",
|
|
38
|
+
* };
|
|
29
39
|
* const command = new StopProductSubscriptionCommand(input);
|
|
30
40
|
* const response = await client.send(command);
|
|
31
41
|
* ```
|
|
@@ -27,6 +27,23 @@ export interface UpdateIdentityProviderSettingsCommandOutput extends UpdateIdent
|
|
|
27
27
|
* import { LicenseManagerUserSubscriptionsClient, UpdateIdentityProviderSettingsCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
28
28
|
* // const { LicenseManagerUserSubscriptionsClient, UpdateIdentityProviderSettingsCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
29
29
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
30
|
+
* const input = { // UpdateIdentityProviderSettingsRequest
|
|
31
|
+
* IdentityProvider: { // IdentityProvider Union: only one key present
|
|
32
|
+
* ActiveDirectoryIdentityProvider: { // ActiveDirectoryIdentityProvider
|
|
33
|
+
* DirectoryId: "STRING_VALUE",
|
|
34
|
+
* },
|
|
35
|
+
* },
|
|
36
|
+
* Product: "STRING_VALUE", // required
|
|
37
|
+
* UpdateSettings: { // UpdateSettings
|
|
38
|
+
* AddSubnets: [ // Subnets // required
|
|
39
|
+
* "STRING_VALUE",
|
|
40
|
+
* ],
|
|
41
|
+
* RemoveSubnets: [ // required
|
|
42
|
+
* "STRING_VALUE",
|
|
43
|
+
* ],
|
|
44
|
+
* SecurityGroupId: "STRING_VALUE",
|
|
45
|
+
* },
|
|
46
|
+
* };
|
|
30
47
|
* const command = new UpdateIdentityProviderSettingsCommand(input);
|
|
31
48
|
* const response = await client.send(command);
|
|
32
49
|
* ```
|
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.301.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
39
|
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|