@aws-sdk/client-license-manager-user-subscriptions 3.691.0 → 3.693.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 +48 -0
- package/dist-cjs/index.js +441 -8
- package/dist-es/LicenseManagerUserSubscriptions.js +12 -0
- package/dist-es/commands/AssociateUserCommand.js +2 -1
- package/dist-es/commands/CreateLicenseServerEndpointCommand.js +23 -0
- package/dist-es/commands/DeleteLicenseServerEndpointCommand.js +22 -0
- package/dist-es/commands/ListLicenseServerEndpointsCommand.js +22 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +23 -0
- package/dist-es/commands/RegisterIdentityProviderCommand.js +2 -1
- package/dist-es/commands/StartProductSubscriptionCommand.js +2 -1
- package/dist-es/commands/TagResourceCommand.js +23 -0
- package/dist-es/commands/UntagResourceCommand.js +23 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +69 -0
- package/dist-es/pagination/ListLicenseServerEndpointsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +189 -1
- package/dist-types/LicenseManagerUserSubscriptions.d.ts +47 -1
- package/dist-types/LicenseManagerUserSubscriptionsClient.d.ts +9 -3
- package/dist-types/commands/AssociateUserCommand.d.ts +41 -3
- package/dist-types/commands/CreateLicenseServerEndpointCommand.d.ts +109 -0
- package/dist-types/commands/DeleteLicenseServerEndpointCommand.d.ts +112 -0
- package/dist-types/commands/DeregisterIdentityProviderCommand.d.ts +41 -5
- package/dist-types/commands/DisassociateUserCommand.d.ts +40 -4
- package/dist-types/commands/ListIdentityProvidersCommand.d.ts +28 -3
- package/dist-types/commands/ListInstancesCommand.d.ts +1 -1
- package/dist-types/commands/ListLicenseServerEndpointsCommand.d.ts +119 -0
- package/dist-types/commands/ListProductSubscriptionsCommand.d.ts +37 -2
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +82 -0
- package/dist-types/commands/ListUserAssociationsCommand.d.ts +36 -1
- package/dist-types/commands/RegisterIdentityProviderCommand.d.ts +41 -3
- package/dist-types/commands/StartProductSubscriptionCommand.d.ts +41 -3
- package/dist-types/commands/StopProductSubscriptionCommand.d.ts +40 -4
- package/dist-types/commands/TagResourceCommand.d.ts +81 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +78 -0
- package/dist-types/commands/UpdateIdentityProviderSettingsCommand.d.ts +40 -4
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +728 -71
- package/dist-types/pagination/ListLicenseServerEndpointsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +54 -0
- package/dist-types/ts3.4/LicenseManagerUserSubscriptions.d.ts +106 -0
- package/dist-types/ts3.4/LicenseManagerUserSubscriptionsClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/CreateLicenseServerEndpointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteLicenseServerEndpointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeregisterIdentityProviderCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DisassociateUserCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListLicenseServerEndpointsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StopProductSubscriptionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +191 -11
- package/dist-types/ts3.4/pagination/ListLicenseServerEndpointsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +72 -0
- package/package.json +35 -35
|
@@ -27,7 +27,7 @@ declare const ListIdentityProvidersCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Lists the identity providers for user-based subscriptions.</p>
|
|
30
|
+
* <p>Lists the Active Directory identity providers for user-based subscriptions.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -36,6 +36,13 @@ declare const ListIdentityProvidersCommand_base: {
|
|
|
36
36
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
37
37
|
* const input = { // ListIdentityProvidersRequest
|
|
38
38
|
* MaxResults: Number("int"),
|
|
39
|
+
* Filters: [ // FilterList
|
|
40
|
+
* { // Filter
|
|
41
|
+
* Attribute: "STRING_VALUE",
|
|
42
|
+
* Operation: "STRING_VALUE",
|
|
43
|
+
* Value: "STRING_VALUE",
|
|
44
|
+
* },
|
|
45
|
+
* ],
|
|
39
46
|
* NextToken: "STRING_VALUE",
|
|
40
47
|
* };
|
|
41
48
|
* const command = new ListIdentityProvidersCommand(input);
|
|
@@ -46,16 +53,34 @@ declare const ListIdentityProvidersCommand_base: {
|
|
|
46
53
|
* // IdentityProvider: { // IdentityProvider Union: only one key present
|
|
47
54
|
* // ActiveDirectoryIdentityProvider: { // ActiveDirectoryIdentityProvider
|
|
48
55
|
* // DirectoryId: "STRING_VALUE",
|
|
56
|
+
* // ActiveDirectorySettings: { // ActiveDirectorySettings
|
|
57
|
+
* // DomainName: "STRING_VALUE",
|
|
58
|
+
* // DomainIpv4List: [ // IpV4List
|
|
59
|
+
* // "STRING_VALUE",
|
|
60
|
+
* // ],
|
|
61
|
+
* // DomainCredentialsProvider: { // CredentialsProvider Union: only one key present
|
|
62
|
+
* // SecretsManagerCredentialsProvider: { // SecretsManagerCredentialsProvider
|
|
63
|
+
* // SecretId: "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // },
|
|
66
|
+
* // DomainNetworkSettings: { // DomainNetworkSettings
|
|
67
|
+
* // Subnets: [ // Subnets // required
|
|
68
|
+
* // "STRING_VALUE",
|
|
69
|
+
* // ],
|
|
70
|
+
* // },
|
|
71
|
+
* // },
|
|
72
|
+
* // ActiveDirectoryType: "STRING_VALUE",
|
|
49
73
|
* // },
|
|
50
74
|
* // },
|
|
51
75
|
* // Settings: { // Settings
|
|
52
|
-
* // Subnets: [ //
|
|
76
|
+
* // Subnets: [ // required
|
|
53
77
|
* // "STRING_VALUE",
|
|
54
78
|
* // ],
|
|
55
79
|
* // SecurityGroupId: "STRING_VALUE", // required
|
|
56
80
|
* // },
|
|
57
81
|
* // Product: "STRING_VALUE", // required
|
|
58
82
|
* // Status: "STRING_VALUE", // required
|
|
83
|
+
* // IdentityProviderArn: "STRING_VALUE",
|
|
59
84
|
* // FailureMessage: "STRING_VALUE",
|
|
60
85
|
* // },
|
|
61
86
|
* // ],
|
|
@@ -75,7 +100,7 @@ declare const ListIdentityProvidersCommand_base: {
|
|
|
75
100
|
*
|
|
76
101
|
* @throws {@link ConflictException} (server fault)
|
|
77
102
|
* <p>The request couldn't be completed because it conflicted with the current state of the
|
|
78
|
-
*
|
|
103
|
+
* resource.</p>
|
|
79
104
|
*
|
|
80
105
|
* @throws {@link InternalServerException} (server fault)
|
|
81
106
|
* <p>An exception occurred with the service.</p>
|
|
@@ -75,7 +75,7 @@ declare const ListInstancesCommand_base: {
|
|
|
75
75
|
*
|
|
76
76
|
* @throws {@link ConflictException} (server fault)
|
|
77
77
|
* <p>The request couldn't be completed because it conflicted with the current state of the
|
|
78
|
-
*
|
|
78
|
+
* resource.</p>
|
|
79
79
|
*
|
|
80
80
|
* @throws {@link InternalServerException} (server fault)
|
|
81
81
|
* <p>An exception occurred with the service.</p>
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerUserSubscriptionsClient";
|
|
4
|
+
import { ListLicenseServerEndpointsRequest, ListLicenseServerEndpointsResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListLicenseServerEndpointsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListLicenseServerEndpointsCommandInput extends ListLicenseServerEndpointsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListLicenseServerEndpointsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListLicenseServerEndpointsCommandOutput extends ListLicenseServerEndpointsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListLicenseServerEndpointsCommand_base: {
|
|
25
|
+
new (input: ListLicenseServerEndpointsCommandInput): import("@smithy/smithy-client").CommandImpl<ListLicenseServerEndpointsCommandInput, ListLicenseServerEndpointsCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [ListLicenseServerEndpointsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListLicenseServerEndpointsCommandInput, ListLicenseServerEndpointsCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>List the Remote Desktop Services (RDS) License Server endpoints </p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { LicenseManagerUserSubscriptionsClient, ListLicenseServerEndpointsCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
35
|
+
* // const { LicenseManagerUserSubscriptionsClient, ListLicenseServerEndpointsCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
36
|
+
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
37
|
+
* const input = { // ListLicenseServerEndpointsRequest
|
|
38
|
+
* MaxResults: Number("int"),
|
|
39
|
+
* Filters: [ // FilterList
|
|
40
|
+
* { // Filter
|
|
41
|
+
* Attribute: "STRING_VALUE",
|
|
42
|
+
* Operation: "STRING_VALUE",
|
|
43
|
+
* Value: "STRING_VALUE",
|
|
44
|
+
* },
|
|
45
|
+
* ],
|
|
46
|
+
* NextToken: "STRING_VALUE",
|
|
47
|
+
* };
|
|
48
|
+
* const command = new ListLicenseServerEndpointsCommand(input);
|
|
49
|
+
* const response = await client.send(command);
|
|
50
|
+
* // { // ListLicenseServerEndpointsResponse
|
|
51
|
+
* // LicenseServerEndpoints: [ // LicenseServerEndpointList
|
|
52
|
+
* // { // LicenseServerEndpoint
|
|
53
|
+
* // IdentityProviderArn: "STRING_VALUE",
|
|
54
|
+
* // ServerType: "STRING_VALUE",
|
|
55
|
+
* // ServerEndpoint: { // ServerEndpoint
|
|
56
|
+
* // Endpoint: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // StatusMessage: "STRING_VALUE",
|
|
59
|
+
* // LicenseServerEndpointId: "STRING_VALUE",
|
|
60
|
+
* // LicenseServerEndpointArn: "STRING_VALUE",
|
|
61
|
+
* // LicenseServerEndpointProvisioningStatus: "STRING_VALUE",
|
|
62
|
+
* // LicenseServers: [ // LicenseServerList
|
|
63
|
+
* // { // LicenseServer
|
|
64
|
+
* // ProvisioningStatus: "STRING_VALUE",
|
|
65
|
+
* // HealthStatus: "STRING_VALUE",
|
|
66
|
+
* // Ipv4Address: "STRING_VALUE",
|
|
67
|
+
* // },
|
|
68
|
+
* // ],
|
|
69
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
70
|
+
* // },
|
|
71
|
+
* // ],
|
|
72
|
+
* // NextToken: "STRING_VALUE",
|
|
73
|
+
* // };
|
|
74
|
+
*
|
|
75
|
+
* ```
|
|
76
|
+
*
|
|
77
|
+
* @param ListLicenseServerEndpointsCommandInput - {@link ListLicenseServerEndpointsCommandInput}
|
|
78
|
+
* @returns {@link ListLicenseServerEndpointsCommandOutput}
|
|
79
|
+
* @see {@link ListLicenseServerEndpointsCommandInput} for command's `input` shape.
|
|
80
|
+
* @see {@link ListLicenseServerEndpointsCommandOutput} for command's `response` shape.
|
|
81
|
+
* @see {@link LicenseManagerUserSubscriptionsClientResolvedConfig | config} for LicenseManagerUserSubscriptionsClient's `config` shape.
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
84
|
+
* <p>You don't have sufficient access to perform this action.</p>
|
|
85
|
+
*
|
|
86
|
+
* @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
|
+
*
|
|
90
|
+
* @throws {@link InternalServerException} (server fault)
|
|
91
|
+
* <p>An exception occurred with the service.</p>
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
94
|
+
* <p>The request failed because a service quota is exceeded.</p>
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
97
|
+
* <p>The request was denied because of request throttling. Retry the request.</p>
|
|
98
|
+
*
|
|
99
|
+
* @throws {@link ValidationException} (client fault)
|
|
100
|
+
* <p>A parameter is not valid.</p>
|
|
101
|
+
*
|
|
102
|
+
* @throws {@link LicenseManagerUserSubscriptionsServiceException}
|
|
103
|
+
* <p>Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.</p>
|
|
104
|
+
*
|
|
105
|
+
* @public
|
|
106
|
+
*/
|
|
107
|
+
export declare class ListLicenseServerEndpointsCommand extends ListLicenseServerEndpointsCommand_base {
|
|
108
|
+
/** @internal type navigation helper, not in runtime. */
|
|
109
|
+
protected static __types: {
|
|
110
|
+
api: {
|
|
111
|
+
input: ListLicenseServerEndpointsRequest;
|
|
112
|
+
output: ListLicenseServerEndpointsResponse;
|
|
113
|
+
};
|
|
114
|
+
sdk: {
|
|
115
|
+
input: ListLicenseServerEndpointsCommandInput;
|
|
116
|
+
output: ListLicenseServerEndpointsCommandOutput;
|
|
117
|
+
};
|
|
118
|
+
};
|
|
119
|
+
}
|
|
@@ -35,10 +35,27 @@ declare const ListProductSubscriptionsCommand_base: {
|
|
|
35
35
|
* // const { LicenseManagerUserSubscriptionsClient, ListProductSubscriptionsCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
36
36
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
37
37
|
* const input = { // ListProductSubscriptionsRequest
|
|
38
|
-
* Product: "STRING_VALUE",
|
|
38
|
+
* Product: "STRING_VALUE",
|
|
39
39
|
* IdentityProvider: { // IdentityProvider Union: only one key present
|
|
40
40
|
* ActiveDirectoryIdentityProvider: { // ActiveDirectoryIdentityProvider
|
|
41
41
|
* DirectoryId: "STRING_VALUE",
|
|
42
|
+
* ActiveDirectorySettings: { // ActiveDirectorySettings
|
|
43
|
+
* DomainName: "STRING_VALUE",
|
|
44
|
+
* DomainIpv4List: [ // IpV4List
|
|
45
|
+
* "STRING_VALUE",
|
|
46
|
+
* ],
|
|
47
|
+
* DomainCredentialsProvider: { // CredentialsProvider Union: only one key present
|
|
48
|
+
* SecretsManagerCredentialsProvider: { // SecretsManagerCredentialsProvider
|
|
49
|
+
* SecretId: "STRING_VALUE",
|
|
50
|
+
* },
|
|
51
|
+
* },
|
|
52
|
+
* DomainNetworkSettings: { // DomainNetworkSettings
|
|
53
|
+
* Subnets: [ // Subnets // required
|
|
54
|
+
* "STRING_VALUE",
|
|
55
|
+
* ],
|
|
56
|
+
* },
|
|
57
|
+
* },
|
|
58
|
+
* ActiveDirectoryType: "STRING_VALUE",
|
|
42
59
|
* },
|
|
43
60
|
* },
|
|
44
61
|
* MaxResults: Number("int"),
|
|
@@ -61,9 +78,27 @@ declare const ListProductSubscriptionsCommand_base: {
|
|
|
61
78
|
* // IdentityProvider: { // IdentityProvider Union: only one key present
|
|
62
79
|
* // ActiveDirectoryIdentityProvider: { // ActiveDirectoryIdentityProvider
|
|
63
80
|
* // DirectoryId: "STRING_VALUE",
|
|
81
|
+
* // ActiveDirectorySettings: { // ActiveDirectorySettings
|
|
82
|
+
* // DomainName: "STRING_VALUE",
|
|
83
|
+
* // DomainIpv4List: [ // IpV4List
|
|
84
|
+
* // "STRING_VALUE",
|
|
85
|
+
* // ],
|
|
86
|
+
* // DomainCredentialsProvider: { // CredentialsProvider Union: only one key present
|
|
87
|
+
* // SecretsManagerCredentialsProvider: { // SecretsManagerCredentialsProvider
|
|
88
|
+
* // SecretId: "STRING_VALUE",
|
|
89
|
+
* // },
|
|
90
|
+
* // },
|
|
91
|
+
* // DomainNetworkSettings: { // DomainNetworkSettings
|
|
92
|
+
* // Subnets: [ // Subnets // required
|
|
93
|
+
* // "STRING_VALUE",
|
|
94
|
+
* // ],
|
|
95
|
+
* // },
|
|
96
|
+
* // },
|
|
97
|
+
* // ActiveDirectoryType: "STRING_VALUE",
|
|
64
98
|
* // },
|
|
65
99
|
* // },
|
|
66
100
|
* // Status: "STRING_VALUE", // required
|
|
101
|
+
* // ProductUserArn: "STRING_VALUE",
|
|
67
102
|
* // StatusMessage: "STRING_VALUE",
|
|
68
103
|
* // Domain: "STRING_VALUE",
|
|
69
104
|
* // SubscriptionStartDate: "STRING_VALUE",
|
|
@@ -86,7 +121,7 @@ declare const ListProductSubscriptionsCommand_base: {
|
|
|
86
121
|
*
|
|
87
122
|
* @throws {@link ConflictException} (server fault)
|
|
88
123
|
* <p>The request couldn't be completed because it conflicted with the current state of the
|
|
89
|
-
*
|
|
124
|
+
* resource.</p>
|
|
90
125
|
*
|
|
91
126
|
* @throws {@link InternalServerException} (server fault)
|
|
92
127
|
* <p>An exception occurred with the service.</p>
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerUserSubscriptionsClient";
|
|
4
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListTagsForResourceCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListTagsForResourceCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListTagsForResourceCommand_base: {
|
|
25
|
+
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Returns the list of tags for the specified resource.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { LicenseManagerUserSubscriptionsClient, ListTagsForResourceCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
|
|
35
|
+
* // const { LicenseManagerUserSubscriptionsClient, ListTagsForResourceCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
36
|
+
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
37
|
+
* const input = { // ListTagsForResourceRequest
|
|
38
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
39
|
+
* };
|
|
40
|
+
* const command = new ListTagsForResourceCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* // { // ListTagsForResourceResponse
|
|
43
|
+
* // Tags: { // Tags
|
|
44
|
+
* // "<keys>": "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
48
|
+
* ```
|
|
49
|
+
*
|
|
50
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
51
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
52
|
+
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
53
|
+
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
54
|
+
* @see {@link LicenseManagerUserSubscriptionsClientResolvedConfig | config} for LicenseManagerUserSubscriptionsClient's `config` shape.
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link InternalServerException} (server fault)
|
|
57
|
+
* <p>An exception occurred with the service.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
60
|
+
* <p>The resource couldn't be found.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link ValidationException} (client fault)
|
|
63
|
+
* <p>A parameter is not valid.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link LicenseManagerUserSubscriptionsServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.</p>
|
|
67
|
+
*
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
70
|
+
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
71
|
+
/** @internal type navigation helper, not in runtime. */
|
|
72
|
+
protected static __types: {
|
|
73
|
+
api: {
|
|
74
|
+
input: ListTagsForResourceRequest;
|
|
75
|
+
output: ListTagsForResourceResponse;
|
|
76
|
+
};
|
|
77
|
+
sdk: {
|
|
78
|
+
input: ListTagsForResourceCommandInput;
|
|
79
|
+
output: ListTagsForResourceCommandOutput;
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
}
|
|
@@ -39,6 +39,23 @@ declare const ListUserAssociationsCommand_base: {
|
|
|
39
39
|
* IdentityProvider: { // IdentityProvider Union: only one key present
|
|
40
40
|
* ActiveDirectoryIdentityProvider: { // ActiveDirectoryIdentityProvider
|
|
41
41
|
* DirectoryId: "STRING_VALUE",
|
|
42
|
+
* ActiveDirectorySettings: { // ActiveDirectorySettings
|
|
43
|
+
* DomainName: "STRING_VALUE",
|
|
44
|
+
* DomainIpv4List: [ // IpV4List
|
|
45
|
+
* "STRING_VALUE",
|
|
46
|
+
* ],
|
|
47
|
+
* DomainCredentialsProvider: { // CredentialsProvider Union: only one key present
|
|
48
|
+
* SecretsManagerCredentialsProvider: { // SecretsManagerCredentialsProvider
|
|
49
|
+
* SecretId: "STRING_VALUE",
|
|
50
|
+
* },
|
|
51
|
+
* },
|
|
52
|
+
* DomainNetworkSettings: { // DomainNetworkSettings
|
|
53
|
+
* Subnets: [ // Subnets // required
|
|
54
|
+
* "STRING_VALUE",
|
|
55
|
+
* ],
|
|
56
|
+
* },
|
|
57
|
+
* },
|
|
58
|
+
* ActiveDirectoryType: "STRING_VALUE",
|
|
42
59
|
* },
|
|
43
60
|
* },
|
|
44
61
|
* MaxResults: Number("int"),
|
|
@@ -61,9 +78,27 @@ declare const ListUserAssociationsCommand_base: {
|
|
|
61
78
|
* // IdentityProvider: { // IdentityProvider Union: only one key present
|
|
62
79
|
* // ActiveDirectoryIdentityProvider: { // ActiveDirectoryIdentityProvider
|
|
63
80
|
* // DirectoryId: "STRING_VALUE",
|
|
81
|
+
* // ActiveDirectorySettings: { // ActiveDirectorySettings
|
|
82
|
+
* // DomainName: "STRING_VALUE",
|
|
83
|
+
* // DomainIpv4List: [ // IpV4List
|
|
84
|
+
* // "STRING_VALUE",
|
|
85
|
+
* // ],
|
|
86
|
+
* // DomainCredentialsProvider: { // CredentialsProvider Union: only one key present
|
|
87
|
+
* // SecretsManagerCredentialsProvider: { // SecretsManagerCredentialsProvider
|
|
88
|
+
* // SecretId: "STRING_VALUE",
|
|
89
|
+
* // },
|
|
90
|
+
* // },
|
|
91
|
+
* // DomainNetworkSettings: { // DomainNetworkSettings
|
|
92
|
+
* // Subnets: [ // Subnets // required
|
|
93
|
+
* // "STRING_VALUE",
|
|
94
|
+
* // ],
|
|
95
|
+
* // },
|
|
96
|
+
* // },
|
|
97
|
+
* // ActiveDirectoryType: "STRING_VALUE",
|
|
64
98
|
* // },
|
|
65
99
|
* // },
|
|
66
100
|
* // Status: "STRING_VALUE", // required
|
|
101
|
+
* // InstanceUserArn: "STRING_VALUE",
|
|
67
102
|
* // StatusMessage: "STRING_VALUE",
|
|
68
103
|
* // Domain: "STRING_VALUE",
|
|
69
104
|
* // AssociationDate: "STRING_VALUE",
|
|
@@ -86,7 +121,7 @@ declare const ListUserAssociationsCommand_base: {
|
|
|
86
121
|
*
|
|
87
122
|
* @throws {@link ConflictException} (server fault)
|
|
88
123
|
* <p>The request couldn't be completed because it conflicted with the current state of the
|
|
89
|
-
*
|
|
124
|
+
* resource.</p>
|
|
90
125
|
*
|
|
91
126
|
* @throws {@link InternalServerException} (server fault)
|
|
92
127
|
* <p>An exception occurred with the service.</p>
|
|
@@ -38,15 +38,35 @@ declare const RegisterIdentityProviderCommand_base: {
|
|
|
38
38
|
* IdentityProvider: { // IdentityProvider Union: only one key present
|
|
39
39
|
* ActiveDirectoryIdentityProvider: { // ActiveDirectoryIdentityProvider
|
|
40
40
|
* DirectoryId: "STRING_VALUE",
|
|
41
|
+
* ActiveDirectorySettings: { // ActiveDirectorySettings
|
|
42
|
+
* DomainName: "STRING_VALUE",
|
|
43
|
+
* DomainIpv4List: [ // IpV4List
|
|
44
|
+
* "STRING_VALUE",
|
|
45
|
+
* ],
|
|
46
|
+
* DomainCredentialsProvider: { // CredentialsProvider Union: only one key present
|
|
47
|
+
* SecretsManagerCredentialsProvider: { // SecretsManagerCredentialsProvider
|
|
48
|
+
* SecretId: "STRING_VALUE",
|
|
49
|
+
* },
|
|
50
|
+
* },
|
|
51
|
+
* DomainNetworkSettings: { // DomainNetworkSettings
|
|
52
|
+
* Subnets: [ // Subnets // required
|
|
53
|
+
* "STRING_VALUE",
|
|
54
|
+
* ],
|
|
55
|
+
* },
|
|
56
|
+
* },
|
|
57
|
+
* ActiveDirectoryType: "STRING_VALUE",
|
|
41
58
|
* },
|
|
42
59
|
* },
|
|
43
60
|
* Product: "STRING_VALUE", // required
|
|
44
61
|
* Settings: { // Settings
|
|
45
|
-
* Subnets: [ //
|
|
62
|
+
* Subnets: [ // required
|
|
46
63
|
* "STRING_VALUE",
|
|
47
64
|
* ],
|
|
48
65
|
* SecurityGroupId: "STRING_VALUE", // required
|
|
49
66
|
* },
|
|
67
|
+
* Tags: { // Tags
|
|
68
|
+
* "<keys>": "STRING_VALUE",
|
|
69
|
+
* },
|
|
50
70
|
* };
|
|
51
71
|
* const command = new RegisterIdentityProviderCommand(input);
|
|
52
72
|
* const response = await client.send(command);
|
|
@@ -55,16 +75,34 @@ declare const RegisterIdentityProviderCommand_base: {
|
|
|
55
75
|
* // IdentityProvider: { // IdentityProvider Union: only one key present
|
|
56
76
|
* // ActiveDirectoryIdentityProvider: { // ActiveDirectoryIdentityProvider
|
|
57
77
|
* // DirectoryId: "STRING_VALUE",
|
|
78
|
+
* // ActiveDirectorySettings: { // ActiveDirectorySettings
|
|
79
|
+
* // DomainName: "STRING_VALUE",
|
|
80
|
+
* // DomainIpv4List: [ // IpV4List
|
|
81
|
+
* // "STRING_VALUE",
|
|
82
|
+
* // ],
|
|
83
|
+
* // DomainCredentialsProvider: { // CredentialsProvider Union: only one key present
|
|
84
|
+
* // SecretsManagerCredentialsProvider: { // SecretsManagerCredentialsProvider
|
|
85
|
+
* // SecretId: "STRING_VALUE",
|
|
86
|
+
* // },
|
|
87
|
+
* // },
|
|
88
|
+
* // DomainNetworkSettings: { // DomainNetworkSettings
|
|
89
|
+
* // Subnets: [ // Subnets // required
|
|
90
|
+
* // "STRING_VALUE",
|
|
91
|
+
* // ],
|
|
92
|
+
* // },
|
|
93
|
+
* // },
|
|
94
|
+
* // ActiveDirectoryType: "STRING_VALUE",
|
|
58
95
|
* // },
|
|
59
96
|
* // },
|
|
60
97
|
* // Settings: { // Settings
|
|
61
|
-
* // Subnets: [ //
|
|
98
|
+
* // Subnets: [ // required
|
|
62
99
|
* // "STRING_VALUE",
|
|
63
100
|
* // ],
|
|
64
101
|
* // SecurityGroupId: "STRING_VALUE", // required
|
|
65
102
|
* // },
|
|
66
103
|
* // Product: "STRING_VALUE", // required
|
|
67
104
|
* // Status: "STRING_VALUE", // required
|
|
105
|
+
* // IdentityProviderArn: "STRING_VALUE",
|
|
68
106
|
* // FailureMessage: "STRING_VALUE",
|
|
69
107
|
* // },
|
|
70
108
|
* // };
|
|
@@ -82,7 +120,7 @@ declare const RegisterIdentityProviderCommand_base: {
|
|
|
82
120
|
*
|
|
83
121
|
* @throws {@link ConflictException} (server fault)
|
|
84
122
|
* <p>The request couldn't be completed because it conflicted with the current state of the
|
|
85
|
-
*
|
|
123
|
+
* resource.</p>
|
|
86
124
|
*
|
|
87
125
|
* @throws {@link InternalServerException} (server fault)
|
|
88
126
|
* <p>An exception occurred with the service.</p>
|
|
@@ -30,8 +30,8 @@ declare const StartProductSubscriptionCommand_base: {
|
|
|
30
30
|
* <p>Starts a product subscription for a user with the specified identity provider.</p>
|
|
31
31
|
* <note>
|
|
32
32
|
* <p>Your estimated bill for charges on the number of users and related costs will take 48
|
|
33
|
-
*
|
|
34
|
-
*
|
|
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
35
|
* </note>
|
|
36
36
|
* @example
|
|
37
37
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -44,10 +44,30 @@ declare const StartProductSubscriptionCommand_base: {
|
|
|
44
44
|
* IdentityProvider: { // IdentityProvider Union: only one key present
|
|
45
45
|
* ActiveDirectoryIdentityProvider: { // ActiveDirectoryIdentityProvider
|
|
46
46
|
* DirectoryId: "STRING_VALUE",
|
|
47
|
+
* ActiveDirectorySettings: { // ActiveDirectorySettings
|
|
48
|
+
* DomainName: "STRING_VALUE",
|
|
49
|
+
* DomainIpv4List: [ // IpV4List
|
|
50
|
+
* "STRING_VALUE",
|
|
51
|
+
* ],
|
|
52
|
+
* DomainCredentialsProvider: { // CredentialsProvider Union: only one key present
|
|
53
|
+
* SecretsManagerCredentialsProvider: { // SecretsManagerCredentialsProvider
|
|
54
|
+
* SecretId: "STRING_VALUE",
|
|
55
|
+
* },
|
|
56
|
+
* },
|
|
57
|
+
* DomainNetworkSettings: { // DomainNetworkSettings
|
|
58
|
+
* Subnets: [ // Subnets // required
|
|
59
|
+
* "STRING_VALUE",
|
|
60
|
+
* ],
|
|
61
|
+
* },
|
|
62
|
+
* },
|
|
63
|
+
* ActiveDirectoryType: "STRING_VALUE",
|
|
47
64
|
* },
|
|
48
65
|
* },
|
|
49
66
|
* Product: "STRING_VALUE", // required
|
|
50
67
|
* Domain: "STRING_VALUE",
|
|
68
|
+
* Tags: { // Tags
|
|
69
|
+
* "<keys>": "STRING_VALUE",
|
|
70
|
+
* },
|
|
51
71
|
* };
|
|
52
72
|
* const command = new StartProductSubscriptionCommand(input);
|
|
53
73
|
* const response = await client.send(command);
|
|
@@ -58,9 +78,27 @@ declare const StartProductSubscriptionCommand_base: {
|
|
|
58
78
|
* // IdentityProvider: { // IdentityProvider Union: only one key present
|
|
59
79
|
* // ActiveDirectoryIdentityProvider: { // ActiveDirectoryIdentityProvider
|
|
60
80
|
* // DirectoryId: "STRING_VALUE",
|
|
81
|
+
* // ActiveDirectorySettings: { // ActiveDirectorySettings
|
|
82
|
+
* // DomainName: "STRING_VALUE",
|
|
83
|
+
* // DomainIpv4List: [ // IpV4List
|
|
84
|
+
* // "STRING_VALUE",
|
|
85
|
+
* // ],
|
|
86
|
+
* // DomainCredentialsProvider: { // CredentialsProvider Union: only one key present
|
|
87
|
+
* // SecretsManagerCredentialsProvider: { // SecretsManagerCredentialsProvider
|
|
88
|
+
* // SecretId: "STRING_VALUE",
|
|
89
|
+
* // },
|
|
90
|
+
* // },
|
|
91
|
+
* // DomainNetworkSettings: { // DomainNetworkSettings
|
|
92
|
+
* // Subnets: [ // Subnets // required
|
|
93
|
+
* // "STRING_VALUE",
|
|
94
|
+
* // ],
|
|
95
|
+
* // },
|
|
96
|
+
* // },
|
|
97
|
+
* // ActiveDirectoryType: "STRING_VALUE",
|
|
61
98
|
* // },
|
|
62
99
|
* // },
|
|
63
100
|
* // Status: "STRING_VALUE", // required
|
|
101
|
+
* // ProductUserArn: "STRING_VALUE",
|
|
64
102
|
* // StatusMessage: "STRING_VALUE",
|
|
65
103
|
* // Domain: "STRING_VALUE",
|
|
66
104
|
* // SubscriptionStartDate: "STRING_VALUE",
|
|
@@ -81,7 +119,7 @@ declare const StartProductSubscriptionCommand_base: {
|
|
|
81
119
|
*
|
|
82
120
|
* @throws {@link ConflictException} (server fault)
|
|
83
121
|
* <p>The request couldn't be completed because it conflicted with the current state of the
|
|
84
|
-
*
|
|
122
|
+
* resource.</p>
|
|
85
123
|
*
|
|
86
124
|
* @throws {@link InternalServerException} (server fault)
|
|
87
125
|
* <p>An exception occurred with the service.</p>
|
|
@@ -23,7 +23,7 @@ export interface StopProductSubscriptionCommandOutput extends StopProductSubscri
|
|
|
23
23
|
}
|
|
24
24
|
declare const StopProductSubscriptionCommand_base: {
|
|
25
25
|
new (input: StopProductSubscriptionCommandInput): import("@smithy/smithy-client").CommandImpl<StopProductSubscriptionCommandInput, StopProductSubscriptionCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (
|
|
26
|
+
new (...[input]: [] | [StopProductSubscriptionCommandInput]): import("@smithy/smithy-client").CommandImpl<StopProductSubscriptionCommandInput, StopProductSubscriptionCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
@@ -35,13 +35,31 @@ declare const StopProductSubscriptionCommand_base: {
|
|
|
35
35
|
* // const { LicenseManagerUserSubscriptionsClient, StopProductSubscriptionCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
|
|
36
36
|
* const client = new LicenseManagerUserSubscriptionsClient(config);
|
|
37
37
|
* const input = { // StopProductSubscriptionRequest
|
|
38
|
-
* Username: "STRING_VALUE",
|
|
38
|
+
* Username: "STRING_VALUE",
|
|
39
39
|
* IdentityProvider: { // IdentityProvider Union: only one key present
|
|
40
40
|
* ActiveDirectoryIdentityProvider: { // ActiveDirectoryIdentityProvider
|
|
41
41
|
* DirectoryId: "STRING_VALUE",
|
|
42
|
+
* ActiveDirectorySettings: { // ActiveDirectorySettings
|
|
43
|
+
* DomainName: "STRING_VALUE",
|
|
44
|
+
* DomainIpv4List: [ // IpV4List
|
|
45
|
+
* "STRING_VALUE",
|
|
46
|
+
* ],
|
|
47
|
+
* DomainCredentialsProvider: { // CredentialsProvider Union: only one key present
|
|
48
|
+
* SecretsManagerCredentialsProvider: { // SecretsManagerCredentialsProvider
|
|
49
|
+
* SecretId: "STRING_VALUE",
|
|
50
|
+
* },
|
|
51
|
+
* },
|
|
52
|
+
* DomainNetworkSettings: { // DomainNetworkSettings
|
|
53
|
+
* Subnets: [ // Subnets // required
|
|
54
|
+
* "STRING_VALUE",
|
|
55
|
+
* ],
|
|
56
|
+
* },
|
|
57
|
+
* },
|
|
58
|
+
* ActiveDirectoryType: "STRING_VALUE",
|
|
42
59
|
* },
|
|
43
60
|
* },
|
|
44
|
-
* Product: "STRING_VALUE",
|
|
61
|
+
* Product: "STRING_VALUE",
|
|
62
|
+
* ProductUserArn: "STRING_VALUE",
|
|
45
63
|
* Domain: "STRING_VALUE",
|
|
46
64
|
* };
|
|
47
65
|
* const command = new StopProductSubscriptionCommand(input);
|
|
@@ -53,9 +71,27 @@ declare const StopProductSubscriptionCommand_base: {
|
|
|
53
71
|
* // IdentityProvider: { // IdentityProvider Union: only one key present
|
|
54
72
|
* // ActiveDirectoryIdentityProvider: { // ActiveDirectoryIdentityProvider
|
|
55
73
|
* // DirectoryId: "STRING_VALUE",
|
|
74
|
+
* // ActiveDirectorySettings: { // ActiveDirectorySettings
|
|
75
|
+
* // DomainName: "STRING_VALUE",
|
|
76
|
+
* // DomainIpv4List: [ // IpV4List
|
|
77
|
+
* // "STRING_VALUE",
|
|
78
|
+
* // ],
|
|
79
|
+
* // DomainCredentialsProvider: { // CredentialsProvider Union: only one key present
|
|
80
|
+
* // SecretsManagerCredentialsProvider: { // SecretsManagerCredentialsProvider
|
|
81
|
+
* // SecretId: "STRING_VALUE",
|
|
82
|
+
* // },
|
|
83
|
+
* // },
|
|
84
|
+
* // DomainNetworkSettings: { // DomainNetworkSettings
|
|
85
|
+
* // Subnets: [ // Subnets // required
|
|
86
|
+
* // "STRING_VALUE",
|
|
87
|
+
* // ],
|
|
88
|
+
* // },
|
|
89
|
+
* // },
|
|
90
|
+
* // ActiveDirectoryType: "STRING_VALUE",
|
|
56
91
|
* // },
|
|
57
92
|
* // },
|
|
58
93
|
* // Status: "STRING_VALUE", // required
|
|
94
|
+
* // ProductUserArn: "STRING_VALUE",
|
|
59
95
|
* // StatusMessage: "STRING_VALUE",
|
|
60
96
|
* // Domain: "STRING_VALUE",
|
|
61
97
|
* // SubscriptionStartDate: "STRING_VALUE",
|
|
@@ -76,7 +112,7 @@ declare const StopProductSubscriptionCommand_base: {
|
|
|
76
112
|
*
|
|
77
113
|
* @throws {@link ConflictException} (server fault)
|
|
78
114
|
* <p>The request couldn't be completed because it conflicted with the current state of the
|
|
79
|
-
*
|
|
115
|
+
* resource.</p>
|
|
80
116
|
*
|
|
81
117
|
* @throws {@link InternalServerException} (server fault)
|
|
82
118
|
* <p>An exception occurred with the service.</p>
|