@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
|
@@ -12,6 +12,107 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
12
12
|
*/
|
|
13
13
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* <p>Contains a credentials secret that's stored in Secrets Manager.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
export interface SecretsManagerCredentialsProvider {
|
|
20
|
+
/**
|
|
21
|
+
* <p>The ID of the Secrets Manager secret that contains credentials.</p>
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
SecretId?: string | undefined;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* <p>Contains information about the credential provider for user
|
|
28
|
+
* administration.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
export type CredentialsProvider = CredentialsProvider.SecretsManagerCredentialsProviderMember | CredentialsProvider.$UnknownMember;
|
|
32
|
+
/**
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
export declare namespace CredentialsProvider {
|
|
36
|
+
/**
|
|
37
|
+
* <p>Identifies the Secrets Manager secret that contains credentials needed for
|
|
38
|
+
* user administration in the Active Directory.</p>
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
41
|
+
interface SecretsManagerCredentialsProviderMember {
|
|
42
|
+
SecretsManagerCredentialsProvider: SecretsManagerCredentialsProvider;
|
|
43
|
+
$unknown?: never;
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
48
|
+
interface $UnknownMember {
|
|
49
|
+
SecretsManagerCredentialsProvider?: never;
|
|
50
|
+
$unknown: [string, any];
|
|
51
|
+
}
|
|
52
|
+
interface Visitor<T> {
|
|
53
|
+
SecretsManagerCredentialsProvider: (value: SecretsManagerCredentialsProvider) => T;
|
|
54
|
+
_: (name: string, value: any) => T;
|
|
55
|
+
}
|
|
56
|
+
const visit: <T>(value: CredentialsProvider, visitor: Visitor<T>) => T;
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* <p>Contains network settings for the Active Directory domain.</p>
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
62
|
+
export interface DomainNetworkSettings {
|
|
63
|
+
/**
|
|
64
|
+
* <p>Contains a list of subnets that apply for the Active Directory domain.</p>
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
Subnets: string[] | undefined;
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* <p>Contains network access and credential details that are needed for
|
|
71
|
+
* user administration in the Active Directory.</p>
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
export interface ActiveDirectorySettings {
|
|
75
|
+
/**
|
|
76
|
+
* <p>The domain name for the Active Directory.</p>
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
DomainName?: string | undefined;
|
|
80
|
+
/**
|
|
81
|
+
* <p>A list of domain IPv4 addresses that are used for the Active Directory.</p>
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
DomainIpv4List?: string[] | undefined;
|
|
85
|
+
/**
|
|
86
|
+
* <p>Points to the <code>CredentialsProvider</code> resource that contains
|
|
87
|
+
* information about the credential provider for user administration.</p>
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
90
|
+
DomainCredentialsProvider?: CredentialsProvider | undefined;
|
|
91
|
+
/**
|
|
92
|
+
* <p>The <code>DomainNetworkSettings</code> resource contains an array of
|
|
93
|
+
* subnets that apply for the Active Directory.</p>
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
96
|
+
DomainNetworkSettings?: DomainNetworkSettings | undefined;
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* @public
|
|
100
|
+
* @enum
|
|
101
|
+
*/
|
|
102
|
+
export declare const ActiveDirectoryType: {
|
|
103
|
+
/**
|
|
104
|
+
* AWS_MANAGED type of Active Directory
|
|
105
|
+
*/
|
|
106
|
+
readonly AWS_MANAGED: "AWS_MANAGED";
|
|
107
|
+
/**
|
|
108
|
+
* SELF_MANAGED type of Active Directory
|
|
109
|
+
*/
|
|
110
|
+
readonly SELF_MANAGED: "SELF_MANAGED";
|
|
111
|
+
};
|
|
112
|
+
/**
|
|
113
|
+
* @public
|
|
114
|
+
*/
|
|
115
|
+
export type ActiveDirectoryType = (typeof ActiveDirectoryType)[keyof typeof ActiveDirectoryType];
|
|
15
116
|
/**
|
|
16
117
|
* <p>Details about an Active Directory identity provider.</p>
|
|
17
118
|
* @public
|
|
@@ -22,9 +123,22 @@ export interface ActiveDirectoryIdentityProvider {
|
|
|
22
123
|
* @public
|
|
23
124
|
*/
|
|
24
125
|
DirectoryId?: string | undefined;
|
|
126
|
+
/**
|
|
127
|
+
* <p>The <code>ActiveDirectorySettings</code> resource contains details about
|
|
128
|
+
* the Active Directory, including network access details such as domain name and IP
|
|
129
|
+
* addresses, and the credential provider for user administration.</p>
|
|
130
|
+
* @public
|
|
131
|
+
*/
|
|
132
|
+
ActiveDirectorySettings?: ActiveDirectorySettings | undefined;
|
|
133
|
+
/**
|
|
134
|
+
* <p>The type of Active Directory – either a self-managed Active Directory or an
|
|
135
|
+
* Amazon Web Services Managed Active Directory.</p>
|
|
136
|
+
* @public
|
|
137
|
+
*/
|
|
138
|
+
ActiveDirectoryType?: ActiveDirectoryType | undefined;
|
|
25
139
|
}
|
|
26
140
|
/**
|
|
27
|
-
* <p>
|
|
141
|
+
* <p>Refers to an identity provider.</p>
|
|
28
142
|
* @public
|
|
29
143
|
*/
|
|
30
144
|
export type IdentityProvider = IdentityProvider.ActiveDirectoryIdentityProviderMember | IdentityProvider.$UnknownMember;
|
|
@@ -33,7 +147,8 @@ export type IdentityProvider = IdentityProvider.ActiveDirectoryIdentityProviderM
|
|
|
33
147
|
*/
|
|
34
148
|
export declare namespace IdentityProvider {
|
|
35
149
|
/**
|
|
36
|
-
* <p>
|
|
150
|
+
* <p>The <code>ActiveDirectoryIdentityProvider</code> resource contains settings
|
|
151
|
+
* and other details about a specific Active Directory identity provider.</p>
|
|
37
152
|
* @public
|
|
38
153
|
*/
|
|
39
154
|
interface ActiveDirectoryIdentityProviderMember {
|
|
@@ -58,25 +173,30 @@ export declare namespace IdentityProvider {
|
|
|
58
173
|
*/
|
|
59
174
|
export interface AssociateUserRequest {
|
|
60
175
|
/**
|
|
61
|
-
* <p>The user name from the identity provider
|
|
176
|
+
* <p>The user name from the identity provider.</p>
|
|
62
177
|
* @public
|
|
63
178
|
*/
|
|
64
179
|
Username: string | undefined;
|
|
65
180
|
/**
|
|
66
|
-
* <p>The ID of the EC2 instance
|
|
181
|
+
* <p>The ID of the EC2 instance that provides the user-based subscription.</p>
|
|
67
182
|
* @public
|
|
68
183
|
*/
|
|
69
184
|
InstanceId: string | undefined;
|
|
70
185
|
/**
|
|
71
|
-
* <p>The identity provider
|
|
186
|
+
* <p>The identity provider for the user.</p>
|
|
72
187
|
* @public
|
|
73
188
|
*/
|
|
74
189
|
IdentityProvider: IdentityProvider | undefined;
|
|
75
190
|
/**
|
|
76
|
-
* <p>The domain name of the user.</p>
|
|
191
|
+
* <p>The domain name of the Active Directory that contains information for the user to associate.</p>
|
|
77
192
|
* @public
|
|
78
193
|
*/
|
|
79
194
|
Domain?: string | undefined;
|
|
195
|
+
/**
|
|
196
|
+
* <p>The tags that apply for the user association.</p>
|
|
197
|
+
* @public
|
|
198
|
+
*/
|
|
199
|
+
Tags?: Record<string, string> | undefined;
|
|
80
200
|
}
|
|
81
201
|
/**
|
|
82
202
|
* <p>Describes users of an EC2 instance providing user-based subscriptions.</p>
|
|
@@ -89,12 +209,13 @@ export interface InstanceUserSummary {
|
|
|
89
209
|
*/
|
|
90
210
|
Username: string | undefined;
|
|
91
211
|
/**
|
|
92
|
-
* <p>The ID of the EC2 instance
|
|
212
|
+
* <p>The ID of the EC2 instance that provides user-based subscriptions.</p>
|
|
93
213
|
* @public
|
|
94
214
|
*/
|
|
95
215
|
InstanceId: string | undefined;
|
|
96
216
|
/**
|
|
97
|
-
* <p>
|
|
217
|
+
* <p>The <code>IdentityProvider</code> resource specifies details
|
|
218
|
+
* about the identity provider.</p>
|
|
98
219
|
* @public
|
|
99
220
|
*/
|
|
100
221
|
IdentityProvider: IdentityProvider | undefined;
|
|
@@ -103,13 +224,18 @@ export interface InstanceUserSummary {
|
|
|
103
224
|
* @public
|
|
104
225
|
*/
|
|
105
226
|
Status: string | undefined;
|
|
227
|
+
/**
|
|
228
|
+
* <p>The Amazon Resource Name (ARN) that identifies the instance user.</p>
|
|
229
|
+
* @public
|
|
230
|
+
*/
|
|
231
|
+
InstanceUserArn?: string | undefined;
|
|
106
232
|
/**
|
|
107
233
|
* <p>The status message for users of an EC2 instance.</p>
|
|
108
234
|
* @public
|
|
109
235
|
*/
|
|
110
236
|
StatusMessage?: string | undefined;
|
|
111
237
|
/**
|
|
112
|
-
* <p>The domain name of the user.</p>
|
|
238
|
+
* <p>The domain name of the Active Directory that contains the user information for the product subscription.</p>
|
|
113
239
|
* @public
|
|
114
240
|
*/
|
|
115
241
|
Domain?: string | undefined;
|
|
@@ -136,7 +262,7 @@ export interface AssociateUserResponse {
|
|
|
136
262
|
}
|
|
137
263
|
/**
|
|
138
264
|
* <p>The request couldn't be completed because it conflicted with the current state of the
|
|
139
|
-
*
|
|
265
|
+
* resource.</p>
|
|
140
266
|
* @public
|
|
141
267
|
*/
|
|
142
268
|
export declare class ConflictException extends __BaseException {
|
|
@@ -207,26 +333,320 @@ export declare class ValidationException extends __BaseException {
|
|
|
207
333
|
*/
|
|
208
334
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
209
335
|
}
|
|
336
|
+
/**
|
|
337
|
+
* <p>Server settings that are specific to a Remote Desktop Services (RDS) license server.</p>
|
|
338
|
+
* @public
|
|
339
|
+
*/
|
|
340
|
+
export interface RdsSalSettings {
|
|
341
|
+
/**
|
|
342
|
+
* <p>The <code>CredentialsProvider</code> resource contains a reference to
|
|
343
|
+
* the credentials provider that's used for RDS license server user administration.</p>
|
|
344
|
+
* @public
|
|
345
|
+
*/
|
|
346
|
+
RdsSalCredentialsProvider: CredentialsProvider | undefined;
|
|
347
|
+
}
|
|
348
|
+
/**
|
|
349
|
+
* <p>Contains settings for a specific server.</p>
|
|
350
|
+
* @public
|
|
351
|
+
*/
|
|
352
|
+
export type ServerSettings = ServerSettings.RdsSalSettingsMember | ServerSettings.$UnknownMember;
|
|
353
|
+
/**
|
|
354
|
+
* @public
|
|
355
|
+
*/
|
|
356
|
+
export declare namespace ServerSettings {
|
|
357
|
+
/**
|
|
358
|
+
* <p>The <code>RdsSalSettings</code> resource contains settings to configure
|
|
359
|
+
* a specific Remote Desktop Services (RDS) license server.</p>
|
|
360
|
+
* @public
|
|
361
|
+
*/
|
|
362
|
+
interface RdsSalSettingsMember {
|
|
363
|
+
RdsSalSettings: RdsSalSettings;
|
|
364
|
+
$unknown?: never;
|
|
365
|
+
}
|
|
366
|
+
/**
|
|
367
|
+
* @public
|
|
368
|
+
*/
|
|
369
|
+
interface $UnknownMember {
|
|
370
|
+
RdsSalSettings?: never;
|
|
371
|
+
$unknown: [string, any];
|
|
372
|
+
}
|
|
373
|
+
interface Visitor<T> {
|
|
374
|
+
RdsSalSettings: (value: RdsSalSettings) => T;
|
|
375
|
+
_: (name: string, value: any) => T;
|
|
376
|
+
}
|
|
377
|
+
const visit: <T>(value: ServerSettings, visitor: Visitor<T>) => T;
|
|
378
|
+
}
|
|
379
|
+
/**
|
|
380
|
+
* @public
|
|
381
|
+
* @enum
|
|
382
|
+
*/
|
|
383
|
+
export declare const ServerType: {
|
|
384
|
+
/**
|
|
385
|
+
*
|
|
386
|
+
*/
|
|
387
|
+
readonly RDS_SAL: "RDS_SAL";
|
|
388
|
+
};
|
|
389
|
+
/**
|
|
390
|
+
* @public
|
|
391
|
+
*/
|
|
392
|
+
export type ServerType = (typeof ServerType)[keyof typeof ServerType];
|
|
393
|
+
/**
|
|
394
|
+
* <p>The settings to configure your license server.</p>
|
|
395
|
+
* @public
|
|
396
|
+
*/
|
|
397
|
+
export interface LicenseServerSettings {
|
|
398
|
+
/**
|
|
399
|
+
* <p>The type of license server.</p>
|
|
400
|
+
* @public
|
|
401
|
+
*/
|
|
402
|
+
ServerType: ServerType | undefined;
|
|
403
|
+
/**
|
|
404
|
+
* <p>The <code>ServerSettings</code> resource contains the settings for your
|
|
405
|
+
* server.</p>
|
|
406
|
+
* @public
|
|
407
|
+
*/
|
|
408
|
+
ServerSettings: ServerSettings | undefined;
|
|
409
|
+
}
|
|
410
|
+
/**
|
|
411
|
+
* @public
|
|
412
|
+
*/
|
|
413
|
+
export interface CreateLicenseServerEndpointRequest {
|
|
414
|
+
/**
|
|
415
|
+
* <p>The Amazon Resource Name (ARN) that identifies the <code>IdentityProvider</code> resource that contains details
|
|
416
|
+
* about a registered identity provider. In the case of Active Directory, that can be
|
|
417
|
+
* a self-managed Active Directory or an Amazon Web Services Managed Active Directory that contains user identity details.</p>
|
|
418
|
+
* @public
|
|
419
|
+
*/
|
|
420
|
+
IdentityProviderArn: string | undefined;
|
|
421
|
+
/**
|
|
422
|
+
* <p>The <code>LicenseServerSettings</code> resource to create for the endpoint. The
|
|
423
|
+
* settings include the type of license server and the Secrets Manager secret that
|
|
424
|
+
* enables administrators to add or remove users associated with the
|
|
425
|
+
* license server.</p>
|
|
426
|
+
* @public
|
|
427
|
+
*/
|
|
428
|
+
LicenseServerSettings: LicenseServerSettings | undefined;
|
|
429
|
+
/**
|
|
430
|
+
* <p>The tags that apply for the license server endpoint.</p>
|
|
431
|
+
* @public
|
|
432
|
+
*/
|
|
433
|
+
Tags?: Record<string, string> | undefined;
|
|
434
|
+
}
|
|
435
|
+
/**
|
|
436
|
+
* @public
|
|
437
|
+
*/
|
|
438
|
+
export interface CreateLicenseServerEndpointResponse {
|
|
439
|
+
/**
|
|
440
|
+
* <p>The Amazon Resource Name (ARN) of the identity provider specified in the request.</p>
|
|
441
|
+
* @public
|
|
442
|
+
*/
|
|
443
|
+
IdentityProviderArn?: string | undefined;
|
|
444
|
+
/**
|
|
445
|
+
* <p>The ARN of the <code>LicenseServerEndpoint</code> resource.</p>
|
|
446
|
+
* @public
|
|
447
|
+
*/
|
|
448
|
+
LicenseServerEndpointArn?: string | undefined;
|
|
449
|
+
}
|
|
450
|
+
/**
|
|
451
|
+
* @public
|
|
452
|
+
*/
|
|
453
|
+
export interface DeleteLicenseServerEndpointRequest {
|
|
454
|
+
/**
|
|
455
|
+
* <p>The Amazon Resource Name (ARN) that identifies the <code>LicenseServerEndpoint</code>
|
|
456
|
+
* resource to delete.</p>
|
|
457
|
+
* @public
|
|
458
|
+
*/
|
|
459
|
+
LicenseServerEndpointArn: string | undefined;
|
|
460
|
+
/**
|
|
461
|
+
* <p>The type of License Server that the delete request refers to.</p>
|
|
462
|
+
* @public
|
|
463
|
+
*/
|
|
464
|
+
ServerType: ServerType | undefined;
|
|
465
|
+
}
|
|
466
|
+
/**
|
|
467
|
+
* @public
|
|
468
|
+
* @enum
|
|
469
|
+
*/
|
|
470
|
+
export declare const LicenseServerEndpointProvisioningStatus: {
|
|
471
|
+
/**
|
|
472
|
+
*
|
|
473
|
+
*/
|
|
474
|
+
readonly DELETED: "DELETED";
|
|
475
|
+
/**
|
|
476
|
+
*
|
|
477
|
+
*/
|
|
478
|
+
readonly DELETING: "DELETING";
|
|
479
|
+
/**
|
|
480
|
+
*
|
|
481
|
+
*/
|
|
482
|
+
readonly DELETION_FAILED: "DELETION_FAILED";
|
|
483
|
+
/**
|
|
484
|
+
*
|
|
485
|
+
*/
|
|
486
|
+
readonly PROVISIONED: "PROVISIONED";
|
|
487
|
+
/**
|
|
488
|
+
*
|
|
489
|
+
*/
|
|
490
|
+
readonly PROVISIONING: "PROVISIONING";
|
|
491
|
+
/**
|
|
492
|
+
*
|
|
493
|
+
*/
|
|
494
|
+
readonly PROVISIONING_FAILED: "PROVISIONING_FAILED";
|
|
495
|
+
};
|
|
496
|
+
/**
|
|
497
|
+
* @public
|
|
498
|
+
*/
|
|
499
|
+
export type LicenseServerEndpointProvisioningStatus = (typeof LicenseServerEndpointProvisioningStatus)[keyof typeof LicenseServerEndpointProvisioningStatus];
|
|
500
|
+
/**
|
|
501
|
+
* @public
|
|
502
|
+
* @enum
|
|
503
|
+
*/
|
|
504
|
+
export declare const LicenseServerHealthStatus: {
|
|
505
|
+
/**
|
|
506
|
+
*
|
|
507
|
+
*/
|
|
508
|
+
readonly HEALTHY: "HEALTHY";
|
|
509
|
+
/**
|
|
510
|
+
*
|
|
511
|
+
*/
|
|
512
|
+
readonly NOT_APPLICABLE: "NOT_APPLICABLE";
|
|
513
|
+
/**
|
|
514
|
+
*
|
|
515
|
+
*/
|
|
516
|
+
readonly UNHEALTHY: "UNHEALTHY";
|
|
517
|
+
};
|
|
518
|
+
/**
|
|
519
|
+
* @public
|
|
520
|
+
*/
|
|
521
|
+
export type LicenseServerHealthStatus = (typeof LicenseServerHealthStatus)[keyof typeof LicenseServerHealthStatus];
|
|
522
|
+
/**
|
|
523
|
+
* <p>Information about a Remote Desktop Services (RDS) license server.</p>
|
|
524
|
+
* @public
|
|
525
|
+
*/
|
|
526
|
+
export interface LicenseServer {
|
|
527
|
+
/**
|
|
528
|
+
* <p>The current state of the provisioning process for the RDS
|
|
529
|
+
* license server.</p>
|
|
530
|
+
* @public
|
|
531
|
+
*/
|
|
532
|
+
ProvisioningStatus?: LicenseServerEndpointProvisioningStatus | undefined;
|
|
533
|
+
/**
|
|
534
|
+
* <p>The health status of the RDS license server.</p>
|
|
535
|
+
* @public
|
|
536
|
+
*/
|
|
537
|
+
HealthStatus?: LicenseServerHealthStatus | undefined;
|
|
538
|
+
/**
|
|
539
|
+
* <p>A list of domain IPv4 addresses that are used for the RDS
|
|
540
|
+
* license server.</p>
|
|
541
|
+
* @public
|
|
542
|
+
*/
|
|
543
|
+
Ipv4Address?: string | undefined;
|
|
544
|
+
}
|
|
545
|
+
/**
|
|
546
|
+
* <p>A network endpoint through which you can access one or more servers.</p>
|
|
547
|
+
* @public
|
|
548
|
+
*/
|
|
549
|
+
export interface ServerEndpoint {
|
|
550
|
+
/**
|
|
551
|
+
* <p>The network address of the endpoint.</p>
|
|
552
|
+
* @public
|
|
553
|
+
*/
|
|
554
|
+
Endpoint?: string | undefined;
|
|
555
|
+
}
|
|
556
|
+
/**
|
|
557
|
+
* <p>Contains details about a network endpoint for a Remote Desktop Services (RDS)
|
|
558
|
+
* license server.</p>
|
|
559
|
+
* @public
|
|
560
|
+
*/
|
|
561
|
+
export interface LicenseServerEndpoint {
|
|
562
|
+
/**
|
|
563
|
+
* <p>The Amazon Resource Name (ARN) of the identity provider that's associated with
|
|
564
|
+
* the RDS license server endpoint.</p>
|
|
565
|
+
* @public
|
|
566
|
+
*/
|
|
567
|
+
IdentityProviderArn?: string | undefined;
|
|
568
|
+
/**
|
|
569
|
+
* <p>The type of license server.</p>
|
|
570
|
+
* @public
|
|
571
|
+
*/
|
|
572
|
+
ServerType?: ServerType | undefined;
|
|
573
|
+
/**
|
|
574
|
+
* <p>The <code>ServerEndpoint</code> resource contains the network
|
|
575
|
+
* address of the RDS license server endpoint.</p>
|
|
576
|
+
* @public
|
|
577
|
+
*/
|
|
578
|
+
ServerEndpoint?: ServerEndpoint | undefined;
|
|
579
|
+
/**
|
|
580
|
+
* <p>The message associated with the provisioning status, if there is one.</p>
|
|
581
|
+
* @public
|
|
582
|
+
*/
|
|
583
|
+
StatusMessage?: string | undefined;
|
|
584
|
+
/**
|
|
585
|
+
* <p>The ID of the license server endpoint.</p>
|
|
586
|
+
* @public
|
|
587
|
+
*/
|
|
588
|
+
LicenseServerEndpointId?: string | undefined;
|
|
589
|
+
/**
|
|
590
|
+
* <p>The ARN of the <code>ServerEndpoint</code> resource for the RDS
|
|
591
|
+
* license server.</p>
|
|
592
|
+
* @public
|
|
593
|
+
*/
|
|
594
|
+
LicenseServerEndpointArn?: string | undefined;
|
|
595
|
+
/**
|
|
596
|
+
* <p>The current state of the provisioning process for the RDS license
|
|
597
|
+
* server endpoint</p>
|
|
598
|
+
* @public
|
|
599
|
+
*/
|
|
600
|
+
LicenseServerEndpointProvisioningStatus?: LicenseServerEndpointProvisioningStatus | undefined;
|
|
601
|
+
/**
|
|
602
|
+
* <p>An array of <code>LicenseServer</code> resources that represent the
|
|
603
|
+
* license servers that are accessed through this endpoint.</p>
|
|
604
|
+
* @public
|
|
605
|
+
*/
|
|
606
|
+
LicenseServers?: LicenseServer[] | undefined;
|
|
607
|
+
/**
|
|
608
|
+
* <p>The timestamp when License Manager created the license server endpoint.</p>
|
|
609
|
+
* @public
|
|
610
|
+
*/
|
|
611
|
+
CreationTime?: Date | undefined;
|
|
612
|
+
}
|
|
613
|
+
/**
|
|
614
|
+
* @public
|
|
615
|
+
*/
|
|
616
|
+
export interface DeleteLicenseServerEndpointResponse {
|
|
617
|
+
/**
|
|
618
|
+
* <p>Shows details from the <code>LicenseServerEndpoint</code> resource that was deleted.</p>
|
|
619
|
+
* @public
|
|
620
|
+
*/
|
|
621
|
+
LicenseServerEndpoint?: LicenseServerEndpoint | undefined;
|
|
622
|
+
}
|
|
210
623
|
/**
|
|
211
624
|
* @public
|
|
212
625
|
*/
|
|
213
626
|
export interface DeregisterIdentityProviderRequest {
|
|
214
627
|
/**
|
|
215
|
-
* <p>An object that specifies details for the identity provider.</p>
|
|
628
|
+
* <p>An object that specifies details for the Active Directory identity provider.</p>
|
|
216
629
|
* @public
|
|
217
630
|
*/
|
|
218
|
-
IdentityProvider
|
|
631
|
+
IdentityProvider?: IdentityProvider | undefined;
|
|
219
632
|
/**
|
|
220
633
|
* <p>The name of the user-based subscription product.</p>
|
|
634
|
+
* <p>Valid values: <code>VISUAL_STUDIO_ENTERPRISE</code> | <code>VISUAL_STUDIO_PROFESSIONAL</code> | <code>OFFICE_PROFESSIONAL_PLUS</code>
|
|
635
|
+
* </p>
|
|
221
636
|
* @public
|
|
222
637
|
*/
|
|
223
|
-
Product
|
|
638
|
+
Product?: string | undefined;
|
|
639
|
+
/**
|
|
640
|
+
* <p>The Amazon Resource Name (ARN) that identifies the identity provider to deregister.</p>
|
|
641
|
+
* @public
|
|
642
|
+
*/
|
|
643
|
+
IdentityProviderArn?: string | undefined;
|
|
224
644
|
}
|
|
225
645
|
/**
|
|
226
646
|
* <p>The registered identity provider’s product related configuration settings such as the
|
|
227
|
-
*
|
|
228
|
-
*
|
|
229
|
-
*
|
|
647
|
+
* subnets to provision VPC endpoints, and the security group ID that is associated with the VPC
|
|
648
|
+
* endpoints. The security group should permit inbound TCP port 1688 communication from resources
|
|
649
|
+
* in the VPC.</p>
|
|
230
650
|
* @public
|
|
231
651
|
*/
|
|
232
652
|
export interface Settings {
|
|
@@ -237,7 +657,7 @@ export interface Settings {
|
|
|
237
657
|
Subnets: string[] | undefined;
|
|
238
658
|
/**
|
|
239
659
|
* <p>A security group ID that allows inbound TCP port 1688 communication between resources in
|
|
240
|
-
*
|
|
660
|
+
* your VPC and the VPC endpoint for activation servers.</p>
|
|
241
661
|
* @public
|
|
242
662
|
*/
|
|
243
663
|
SecurityGroupId: string | undefined;
|
|
@@ -248,13 +668,15 @@ export interface Settings {
|
|
|
248
668
|
*/
|
|
249
669
|
export interface IdentityProviderSummary {
|
|
250
670
|
/**
|
|
251
|
-
* <p>
|
|
671
|
+
* <p>The <code>IdentityProvider</code> resource contains information about
|
|
672
|
+
* an identity provider.</p>
|
|
252
673
|
* @public
|
|
253
674
|
*/
|
|
254
675
|
IdentityProvider: IdentityProvider | undefined;
|
|
255
676
|
/**
|
|
256
|
-
* <p>
|
|
257
|
-
*
|
|
677
|
+
* <p>The <code>Settings</code> resource contains details about the registered
|
|
678
|
+
* identity provider’s product related configuration settings, such as the
|
|
679
|
+
* subnets to provision VPC endpoints.</p>
|
|
258
680
|
* @public
|
|
259
681
|
*/
|
|
260
682
|
Settings: Settings | undefined;
|
|
@@ -264,10 +686,15 @@ export interface IdentityProviderSummary {
|
|
|
264
686
|
*/
|
|
265
687
|
Product: string | undefined;
|
|
266
688
|
/**
|
|
267
|
-
* <p>The status of
|
|
689
|
+
* <p>The status of the identity provider.</p>
|
|
268
690
|
* @public
|
|
269
691
|
*/
|
|
270
692
|
Status: string | undefined;
|
|
693
|
+
/**
|
|
694
|
+
* <p>The Amazon Resource Name (ARN) of the identity provider.</p>
|
|
695
|
+
* @public
|
|
696
|
+
*/
|
|
697
|
+
IdentityProviderArn?: string | undefined;
|
|
271
698
|
/**
|
|
272
699
|
* <p>The failure message associated with an identity provider.</p>
|
|
273
700
|
* @public
|
|
@@ -289,22 +716,27 @@ export interface DeregisterIdentityProviderResponse {
|
|
|
289
716
|
*/
|
|
290
717
|
export interface DisassociateUserRequest {
|
|
291
718
|
/**
|
|
292
|
-
* <p>The user name from the identity provider for the user.</p>
|
|
719
|
+
* <p>The user name from the Active Directory identity provider for the user.</p>
|
|
293
720
|
* @public
|
|
294
721
|
*/
|
|
295
|
-
Username
|
|
722
|
+
Username?: string | undefined;
|
|
296
723
|
/**
|
|
297
|
-
* <p>The ID of the EC2 instance
|
|
724
|
+
* <p>The ID of the EC2 instance which provides user-based subscriptions.</p>
|
|
298
725
|
* @public
|
|
299
726
|
*/
|
|
300
|
-
InstanceId
|
|
727
|
+
InstanceId?: string | undefined;
|
|
301
728
|
/**
|
|
302
|
-
* <p>An object that specifies details for the identity provider.</p>
|
|
729
|
+
* <p>An object that specifies details for the Active Directory identity provider.</p>
|
|
303
730
|
* @public
|
|
304
731
|
*/
|
|
305
|
-
IdentityProvider
|
|
732
|
+
IdentityProvider?: IdentityProvider | undefined;
|
|
306
733
|
/**
|
|
307
|
-
* <p>The
|
|
734
|
+
* <p>The Amazon Resource Name (ARN) of the user to disassociate from the EC2 instance.</p>
|
|
735
|
+
* @public
|
|
736
|
+
*/
|
|
737
|
+
InstanceUserArn?: string | undefined;
|
|
738
|
+
/**
|
|
739
|
+
* <p>The domain name of the Active Directory that contains information for the user to disassociate.</p>
|
|
308
740
|
* @public
|
|
309
741
|
*/
|
|
310
742
|
Domain?: string | undefined;
|
|
@@ -321,8 +753,8 @@ export interface DisassociateUserResponse {
|
|
|
321
753
|
}
|
|
322
754
|
/**
|
|
323
755
|
* <p>A filter name and value pair that is used to return more specific results from a describe
|
|
324
|
-
*
|
|
325
|
-
*
|
|
756
|
+
* or list operation. You can use filters can be used to match a set of resources by specific
|
|
757
|
+
* criteria, such as tags, attributes, or IDs.</p>
|
|
326
758
|
* @public
|
|
327
759
|
*/
|
|
328
760
|
export interface Filter {
|
|
@@ -378,12 +810,26 @@ export interface InstanceSummary {
|
|
|
378
810
|
*/
|
|
379
811
|
export interface ListIdentityProvidersRequest {
|
|
380
812
|
/**
|
|
381
|
-
* <p>
|
|
813
|
+
* <p>The maximum number of results to return from a single request.</p>
|
|
382
814
|
* @public
|
|
383
815
|
*/
|
|
384
816
|
MaxResults?: number | undefined;
|
|
385
817
|
/**
|
|
386
|
-
* <p>
|
|
818
|
+
* <p>You can use the following filters to streamline results:</p>
|
|
819
|
+
* <ul>
|
|
820
|
+
* <li>
|
|
821
|
+
* <p>Product</p>
|
|
822
|
+
* </li>
|
|
823
|
+
* <li>
|
|
824
|
+
* <p>DirectoryId</p>
|
|
825
|
+
* </li>
|
|
826
|
+
* </ul>
|
|
827
|
+
* @public
|
|
828
|
+
*/
|
|
829
|
+
Filters?: Filter[] | undefined;
|
|
830
|
+
/**
|
|
831
|
+
* <p>A token to specify where to start paginating. This is the nextToken
|
|
832
|
+
* from a previously truncated response.</p>
|
|
387
833
|
* @public
|
|
388
834
|
*/
|
|
389
835
|
NextToken?: string | undefined;
|
|
@@ -393,12 +839,15 @@ export interface ListIdentityProvidersRequest {
|
|
|
393
839
|
*/
|
|
394
840
|
export interface ListIdentityProvidersResponse {
|
|
395
841
|
/**
|
|
396
|
-
* <p>
|
|
842
|
+
* <p>An array of <code>IdentityProviderSummary</code> resources that contain
|
|
843
|
+
* details about the Active Directory identity providers that meet the request criteria.</p>
|
|
397
844
|
* @public
|
|
398
845
|
*/
|
|
399
846
|
IdentityProviderSummaries: IdentityProviderSummary[] | undefined;
|
|
400
847
|
/**
|
|
401
|
-
* <p>
|
|
848
|
+
* <p>The next token used for paginated responses. When this field isn't empty,
|
|
849
|
+
* there are additional elements that the service hasn't included in this request. Use this token
|
|
850
|
+
* with the next request to retrieve additional objects.</p>
|
|
402
851
|
* @public
|
|
403
852
|
*/
|
|
404
853
|
NextToken?: string | undefined;
|
|
@@ -408,18 +857,26 @@ export interface ListIdentityProvidersResponse {
|
|
|
408
857
|
*/
|
|
409
858
|
export interface ListInstancesRequest {
|
|
410
859
|
/**
|
|
411
|
-
* <p>
|
|
860
|
+
* <p>The maximum number of results to return from a single request.</p>
|
|
412
861
|
* @public
|
|
413
862
|
*/
|
|
414
863
|
MaxResults?: number | undefined;
|
|
415
864
|
/**
|
|
416
|
-
* <p>
|
|
865
|
+
* <p>A token to specify where to start paginating. This is the nextToken
|
|
866
|
+
* from a previously truncated response.</p>
|
|
417
867
|
* @public
|
|
418
868
|
*/
|
|
419
869
|
NextToken?: string | undefined;
|
|
420
870
|
/**
|
|
421
|
-
* <p>
|
|
422
|
-
*
|
|
871
|
+
* <p>You can use the following filters to streamline results:</p>
|
|
872
|
+
* <ul>
|
|
873
|
+
* <li>
|
|
874
|
+
* <p>Status</p>
|
|
875
|
+
* </li>
|
|
876
|
+
* <li>
|
|
877
|
+
* <p>InstanceId</p>
|
|
878
|
+
* </li>
|
|
879
|
+
* </ul>
|
|
423
880
|
* @public
|
|
424
881
|
*/
|
|
425
882
|
Filters?: Filter[] | undefined;
|
|
@@ -429,12 +886,61 @@ export interface ListInstancesRequest {
|
|
|
429
886
|
*/
|
|
430
887
|
export interface ListInstancesResponse {
|
|
431
888
|
/**
|
|
432
|
-
* <p>
|
|
889
|
+
* <p>An array of <code>InstanceSummary</code> resources that contain details
|
|
890
|
+
* about the instances that provide user-based subscriptions and also meet the
|
|
891
|
+
* request criteria.</p>
|
|
433
892
|
* @public
|
|
434
893
|
*/
|
|
435
894
|
InstanceSummaries?: InstanceSummary[] | undefined;
|
|
436
895
|
/**
|
|
437
|
-
* <p>
|
|
896
|
+
* <p>The next token used for paginated responses. When this field isn't empty,
|
|
897
|
+
* there are additional elements that the service hasn't included in this request. Use this token
|
|
898
|
+
* with the next request to retrieve additional objects.</p>
|
|
899
|
+
* @public
|
|
900
|
+
*/
|
|
901
|
+
NextToken?: string | undefined;
|
|
902
|
+
}
|
|
903
|
+
/**
|
|
904
|
+
* @public
|
|
905
|
+
*/
|
|
906
|
+
export interface ListLicenseServerEndpointsRequest {
|
|
907
|
+
/**
|
|
908
|
+
* <p>The maximum number of results to return from a single request.</p>
|
|
909
|
+
* @public
|
|
910
|
+
*/
|
|
911
|
+
MaxResults?: number | undefined;
|
|
912
|
+
/**
|
|
913
|
+
* <p>You can use the following filters to streamline results:</p>
|
|
914
|
+
* <ul>
|
|
915
|
+
* <li>
|
|
916
|
+
* <p>IdentityProviderArn</p>
|
|
917
|
+
* </li>
|
|
918
|
+
* </ul>
|
|
919
|
+
* @public
|
|
920
|
+
*/
|
|
921
|
+
Filters?: Filter[] | undefined;
|
|
922
|
+
/**
|
|
923
|
+
* <p>A token to specify where to start paginating. This is the nextToken
|
|
924
|
+
* from a previously truncated response.</p>
|
|
925
|
+
* @public
|
|
926
|
+
*/
|
|
927
|
+
NextToken?: string | undefined;
|
|
928
|
+
}
|
|
929
|
+
/**
|
|
930
|
+
* @public
|
|
931
|
+
*/
|
|
932
|
+
export interface ListLicenseServerEndpointsResponse {
|
|
933
|
+
/**
|
|
934
|
+
* <p>An array of <code>LicenseServerEndpoint</code> resources that
|
|
935
|
+
* contain detailed information about the RDS License Servers that meet
|
|
936
|
+
* the request criteria.</p>
|
|
937
|
+
* @public
|
|
938
|
+
*/
|
|
939
|
+
LicenseServerEndpoints?: LicenseServerEndpoint[] | undefined;
|
|
940
|
+
/**
|
|
941
|
+
* <p>The next token used for paginated responses. When this field isn't empty,
|
|
942
|
+
* there are additional elements that the service hasn't included in this request. Use this token
|
|
943
|
+
* with the next request to retrieve additional objects.</p>
|
|
438
944
|
* @public
|
|
439
945
|
*/
|
|
440
946
|
NextToken?: string | undefined;
|
|
@@ -445,38 +951,51 @@ export interface ListInstancesResponse {
|
|
|
445
951
|
export interface ListProductSubscriptionsRequest {
|
|
446
952
|
/**
|
|
447
953
|
* <p>The name of the user-based subscription product.</p>
|
|
954
|
+
* <p>Valid values: <code>VISUAL_STUDIO_ENTERPRISE</code> | <code>VISUAL_STUDIO_PROFESSIONAL</code> | <code>OFFICE_PROFESSIONAL_PLUS</code>
|
|
955
|
+
* </p>
|
|
448
956
|
* @public
|
|
449
957
|
*/
|
|
450
|
-
Product
|
|
958
|
+
Product?: string | undefined;
|
|
451
959
|
/**
|
|
452
960
|
* <p>An object that specifies details for the identity provider.</p>
|
|
453
961
|
* @public
|
|
454
962
|
*/
|
|
455
963
|
IdentityProvider: IdentityProvider | undefined;
|
|
456
964
|
/**
|
|
457
|
-
* <p>
|
|
965
|
+
* <p>The maximum number of results to return from a single request.</p>
|
|
458
966
|
* @public
|
|
459
967
|
*/
|
|
460
968
|
MaxResults?: number | undefined;
|
|
461
969
|
/**
|
|
462
|
-
* <p>
|
|
463
|
-
*
|
|
970
|
+
* <p>You can use the following filters to streamline results:</p>
|
|
971
|
+
* <ul>
|
|
972
|
+
* <li>
|
|
973
|
+
* <p>Status</p>
|
|
974
|
+
* </li>
|
|
975
|
+
* <li>
|
|
976
|
+
* <p>Username</p>
|
|
977
|
+
* </li>
|
|
978
|
+
* <li>
|
|
979
|
+
* <p>Domain</p>
|
|
980
|
+
* </li>
|
|
981
|
+
* </ul>
|
|
464
982
|
* @public
|
|
465
983
|
*/
|
|
466
984
|
Filters?: Filter[] | undefined;
|
|
467
985
|
/**
|
|
468
|
-
* <p>
|
|
986
|
+
* <p>A token to specify where to start paginating. This is the nextToken
|
|
987
|
+
* from a previously truncated response.</p>
|
|
469
988
|
* @public
|
|
470
989
|
*/
|
|
471
990
|
NextToken?: string | undefined;
|
|
472
991
|
}
|
|
473
992
|
/**
|
|
474
|
-
* <p>
|
|
993
|
+
* <p>A summary of the user-based subscription products for a specific user.</p>
|
|
475
994
|
* @public
|
|
476
995
|
*/
|
|
477
996
|
export interface ProductUserSummary {
|
|
478
997
|
/**
|
|
479
|
-
* <p>The user name from the identity provider
|
|
998
|
+
* <p>The user name from the identity provider for this product user.</p>
|
|
480
999
|
* @public
|
|
481
1000
|
*/
|
|
482
1001
|
Username: string | undefined;
|
|
@@ -491,17 +1010,22 @@ export interface ProductUserSummary {
|
|
|
491
1010
|
*/
|
|
492
1011
|
IdentityProvider: IdentityProvider | undefined;
|
|
493
1012
|
/**
|
|
494
|
-
* <p>The status of a product for
|
|
1013
|
+
* <p>The status of a product for this user.</p>
|
|
495
1014
|
* @public
|
|
496
1015
|
*/
|
|
497
1016
|
Status: string | undefined;
|
|
498
1017
|
/**
|
|
499
|
-
* <p>The
|
|
1018
|
+
* <p>The Amazon Resource Name (ARN) for this product user.</p>
|
|
1019
|
+
* @public
|
|
1020
|
+
*/
|
|
1021
|
+
ProductUserArn?: string | undefined;
|
|
1022
|
+
/**
|
|
1023
|
+
* <p>The status message for a product for this user.</p>
|
|
500
1024
|
* @public
|
|
501
1025
|
*/
|
|
502
1026
|
StatusMessage?: string | undefined;
|
|
503
1027
|
/**
|
|
504
|
-
* <p>The domain name of the user.</p>
|
|
1028
|
+
* <p>The domain name of the Active Directory that contains the user information for the product subscription.</p>
|
|
505
1029
|
* @public
|
|
506
1030
|
*/
|
|
507
1031
|
Domain?: string | undefined;
|
|
@@ -526,11 +1050,33 @@ export interface ListProductSubscriptionsResponse {
|
|
|
526
1050
|
*/
|
|
527
1051
|
ProductUserSummaries?: ProductUserSummary[] | undefined;
|
|
528
1052
|
/**
|
|
529
|
-
* <p>
|
|
1053
|
+
* <p>The next token used for paginated responses. When this field isn't empty,
|
|
1054
|
+
* there are additional elements that the service hasn't included in this request. Use this token
|
|
1055
|
+
* with the next request to retrieve additional objects.</p>
|
|
530
1056
|
* @public
|
|
531
1057
|
*/
|
|
532
1058
|
NextToken?: string | undefined;
|
|
533
1059
|
}
|
|
1060
|
+
/**
|
|
1061
|
+
* @public
|
|
1062
|
+
*/
|
|
1063
|
+
export interface ListTagsForResourceRequest {
|
|
1064
|
+
/**
|
|
1065
|
+
* <p>The Amazon Resource Name (ARN) of the resource whose tags you want to retrieve.</p>
|
|
1066
|
+
* @public
|
|
1067
|
+
*/
|
|
1068
|
+
ResourceArn: string | undefined;
|
|
1069
|
+
}
|
|
1070
|
+
/**
|
|
1071
|
+
* @public
|
|
1072
|
+
*/
|
|
1073
|
+
export interface ListTagsForResourceResponse {
|
|
1074
|
+
/**
|
|
1075
|
+
* <p>The tags for the specified resource.</p>
|
|
1076
|
+
* @public
|
|
1077
|
+
*/
|
|
1078
|
+
Tags?: Record<string, string> | undefined;
|
|
1079
|
+
}
|
|
534
1080
|
/**
|
|
535
1081
|
* @public
|
|
536
1082
|
*/
|
|
@@ -546,18 +1092,29 @@ export interface ListUserAssociationsRequest {
|
|
|
546
1092
|
*/
|
|
547
1093
|
IdentityProvider: IdentityProvider | undefined;
|
|
548
1094
|
/**
|
|
549
|
-
* <p>
|
|
1095
|
+
* <p>The maximum number of results to return from a single request.</p>
|
|
550
1096
|
* @public
|
|
551
1097
|
*/
|
|
552
1098
|
MaxResults?: number | undefined;
|
|
553
1099
|
/**
|
|
554
|
-
* <p>
|
|
555
|
-
*
|
|
1100
|
+
* <p>You can use the following filters to streamline results:</p>
|
|
1101
|
+
* <ul>
|
|
1102
|
+
* <li>
|
|
1103
|
+
* <p>Status</p>
|
|
1104
|
+
* </li>
|
|
1105
|
+
* <li>
|
|
1106
|
+
* <p>Username</p>
|
|
1107
|
+
* </li>
|
|
1108
|
+
* <li>
|
|
1109
|
+
* <p>Domain</p>
|
|
1110
|
+
* </li>
|
|
1111
|
+
* </ul>
|
|
556
1112
|
* @public
|
|
557
1113
|
*/
|
|
558
1114
|
Filters?: Filter[] | undefined;
|
|
559
1115
|
/**
|
|
560
|
-
* <p>
|
|
1116
|
+
* <p>A token to specify where to start paginating. This is the nextToken
|
|
1117
|
+
* from a previously truncated response.</p>
|
|
561
1118
|
* @public
|
|
562
1119
|
*/
|
|
563
1120
|
NextToken?: string | undefined;
|
|
@@ -572,7 +1129,9 @@ export interface ListUserAssociationsResponse {
|
|
|
572
1129
|
*/
|
|
573
1130
|
InstanceUserSummaries?: InstanceUserSummary[] | undefined;
|
|
574
1131
|
/**
|
|
575
|
-
* <p>
|
|
1132
|
+
* <p>The next token used for paginated responses. When this field isn't empty,
|
|
1133
|
+
* there are additional elements that the service hasn't included in this request. Use this token
|
|
1134
|
+
* with the next request to retrieve additional objects.</p>
|
|
576
1135
|
* @public
|
|
577
1136
|
*/
|
|
578
1137
|
NextToken?: string | undefined;
|
|
@@ -582,21 +1141,28 @@ export interface ListUserAssociationsResponse {
|
|
|
582
1141
|
*/
|
|
583
1142
|
export interface RegisterIdentityProviderRequest {
|
|
584
1143
|
/**
|
|
585
|
-
* <p>An object that specifies details for the identity provider.</p>
|
|
1144
|
+
* <p>An object that specifies details for the identity provider to register.</p>
|
|
586
1145
|
* @public
|
|
587
1146
|
*/
|
|
588
1147
|
IdentityProvider: IdentityProvider | undefined;
|
|
589
1148
|
/**
|
|
590
1149
|
* <p>The name of the user-based subscription product.</p>
|
|
1150
|
+
* <p>Valid values: <code>VISUAL_STUDIO_ENTERPRISE</code> | <code>VISUAL_STUDIO_PROFESSIONAL</code> | <code>OFFICE_PROFESSIONAL_PLUS</code>
|
|
1151
|
+
* </p>
|
|
591
1152
|
* @public
|
|
592
1153
|
*/
|
|
593
1154
|
Product: string | undefined;
|
|
594
1155
|
/**
|
|
595
|
-
* <p>The registered identity provider’s product related configuration
|
|
596
|
-
*
|
|
1156
|
+
* <p>The registered identity provider’s product related configuration
|
|
1157
|
+
* settings such as the subnets to provision VPC endpoints.</p>
|
|
597
1158
|
* @public
|
|
598
1159
|
*/
|
|
599
1160
|
Settings?: Settings | undefined;
|
|
1161
|
+
/**
|
|
1162
|
+
* <p>The tags that apply to the identity provider's registration.</p>
|
|
1163
|
+
* @public
|
|
1164
|
+
*/
|
|
1165
|
+
Tags?: Record<string, string> | undefined;
|
|
600
1166
|
}
|
|
601
1167
|
/**
|
|
602
1168
|
* @public
|
|
@@ -624,14 +1190,22 @@ export interface StartProductSubscriptionRequest {
|
|
|
624
1190
|
IdentityProvider: IdentityProvider | undefined;
|
|
625
1191
|
/**
|
|
626
1192
|
* <p>The name of the user-based subscription product.</p>
|
|
1193
|
+
* <p>Valid values: <code>VISUAL_STUDIO_ENTERPRISE</code> | <code>VISUAL_STUDIO_PROFESSIONAL</code> | <code>OFFICE_PROFESSIONAL_PLUS</code>
|
|
1194
|
+
* </p>
|
|
627
1195
|
* @public
|
|
628
1196
|
*/
|
|
629
1197
|
Product: string | undefined;
|
|
630
1198
|
/**
|
|
631
|
-
* <p>The domain name of the user
|
|
1199
|
+
* <p>The domain name of the Active Directory that contains the user for whom to start the product
|
|
1200
|
+
* subscription.</p>
|
|
632
1201
|
* @public
|
|
633
1202
|
*/
|
|
634
1203
|
Domain?: string | undefined;
|
|
1204
|
+
/**
|
|
1205
|
+
* <p>The tags that apply to the product subscription.</p>
|
|
1206
|
+
* @public
|
|
1207
|
+
*/
|
|
1208
|
+
Tags?: Record<string, string> | undefined;
|
|
635
1209
|
}
|
|
636
1210
|
/**
|
|
637
1211
|
* @public
|
|
@@ -651,19 +1225,27 @@ export interface StopProductSubscriptionRequest {
|
|
|
651
1225
|
* <p>The user name from the identity provider for the user.</p>
|
|
652
1226
|
* @public
|
|
653
1227
|
*/
|
|
654
|
-
Username
|
|
1228
|
+
Username?: string | undefined;
|
|
655
1229
|
/**
|
|
656
1230
|
* <p>An object that specifies details for the identity provider.</p>
|
|
657
1231
|
* @public
|
|
658
1232
|
*/
|
|
659
|
-
IdentityProvider
|
|
1233
|
+
IdentityProvider?: IdentityProvider | undefined;
|
|
660
1234
|
/**
|
|
661
1235
|
* <p>The name of the user-based subscription product.</p>
|
|
1236
|
+
* <p>Valid values: <code>VISUAL_STUDIO_ENTERPRISE</code> | <code>VISUAL_STUDIO_PROFESSIONAL</code> | <code>OFFICE_PROFESSIONAL_PLUS</code>
|
|
1237
|
+
* </p>
|
|
662
1238
|
* @public
|
|
663
1239
|
*/
|
|
664
|
-
Product
|
|
1240
|
+
Product?: string | undefined;
|
|
665
1241
|
/**
|
|
666
|
-
* <p>The
|
|
1242
|
+
* <p>The Amazon Resource Name (ARN) of the product user.</p>
|
|
1243
|
+
* @public
|
|
1244
|
+
*/
|
|
1245
|
+
ProductUserArn?: string | undefined;
|
|
1246
|
+
/**
|
|
1247
|
+
* <p>The domain name of the Active Directory that contains the user for whom to stop the product
|
|
1248
|
+
* subscription.</p>
|
|
667
1249
|
* @public
|
|
668
1250
|
*/
|
|
669
1251
|
Domain?: string | undefined;
|
|
@@ -678,15 +1260,55 @@ export interface StopProductSubscriptionResponse {
|
|
|
678
1260
|
*/
|
|
679
1261
|
ProductUserSummary: ProductUserSummary | undefined;
|
|
680
1262
|
}
|
|
1263
|
+
/**
|
|
1264
|
+
* @public
|
|
1265
|
+
*/
|
|
1266
|
+
export interface TagResourceRequest {
|
|
1267
|
+
/**
|
|
1268
|
+
* <p>The Amazon Resource Name (ARN) of the resource that you want to tag.</p>
|
|
1269
|
+
* @public
|
|
1270
|
+
*/
|
|
1271
|
+
ResourceArn: string | undefined;
|
|
1272
|
+
/**
|
|
1273
|
+
* <p>The tags to apply to the specified resource.</p>
|
|
1274
|
+
* @public
|
|
1275
|
+
*/
|
|
1276
|
+
Tags: Record<string, string> | undefined;
|
|
1277
|
+
}
|
|
1278
|
+
/**
|
|
1279
|
+
* @public
|
|
1280
|
+
*/
|
|
1281
|
+
export interface TagResourceResponse {
|
|
1282
|
+
}
|
|
1283
|
+
/**
|
|
1284
|
+
* @public
|
|
1285
|
+
*/
|
|
1286
|
+
export interface UntagResourceRequest {
|
|
1287
|
+
/**
|
|
1288
|
+
* <p>The Amazon Resource Name (ARN) of the resource that you want to remove tags from.</p>
|
|
1289
|
+
* @public
|
|
1290
|
+
*/
|
|
1291
|
+
ResourceArn: string | undefined;
|
|
1292
|
+
/**
|
|
1293
|
+
* <p>The tag keys to remove from the resource.</p>
|
|
1294
|
+
* @public
|
|
1295
|
+
*/
|
|
1296
|
+
TagKeys: string[] | undefined;
|
|
1297
|
+
}
|
|
1298
|
+
/**
|
|
1299
|
+
* @public
|
|
1300
|
+
*/
|
|
1301
|
+
export interface UntagResourceResponse {
|
|
1302
|
+
}
|
|
681
1303
|
/**
|
|
682
1304
|
* <p>Updates the registered identity provider’s product related configuration settings such as
|
|
683
|
-
*
|
|
1305
|
+
* the subnets to provision VPC endpoints.</p>
|
|
684
1306
|
* @public
|
|
685
1307
|
*/
|
|
686
1308
|
export interface UpdateSettings {
|
|
687
1309
|
/**
|
|
688
1310
|
* <p>The ID of one or more subnets in which License Manager will create a VPC endpoint for products that
|
|
689
|
-
*
|
|
1311
|
+
* require connectivity to activation servers.</p>
|
|
690
1312
|
* @public
|
|
691
1313
|
*/
|
|
692
1314
|
AddSubnets: string[] | undefined;
|
|
@@ -697,7 +1319,7 @@ export interface UpdateSettings {
|
|
|
697
1319
|
RemoveSubnets: string[] | undefined;
|
|
698
1320
|
/**
|
|
699
1321
|
* <p>A security group ID that allows inbound TCP port 1688 communication between resources in
|
|
700
|
-
*
|
|
1322
|
+
* your VPC and the VPC endpoints for activation servers.</p>
|
|
701
1323
|
* @public
|
|
702
1324
|
*/
|
|
703
1325
|
SecurityGroupId?: string | undefined;
|
|
@@ -707,18 +1329,25 @@ export interface UpdateSettings {
|
|
|
707
1329
|
*/
|
|
708
1330
|
export interface UpdateIdentityProviderSettingsRequest {
|
|
709
1331
|
/**
|
|
710
|
-
* <p>
|
|
1332
|
+
* <p>Refers to an identity provider.</p>
|
|
711
1333
|
* @public
|
|
712
1334
|
*/
|
|
713
|
-
IdentityProvider
|
|
1335
|
+
IdentityProvider?: IdentityProvider | undefined;
|
|
714
1336
|
/**
|
|
715
1337
|
* <p>The name of the user-based subscription product.</p>
|
|
1338
|
+
* <p>Valid values: <code>VISUAL_STUDIO_ENTERPRISE</code> | <code>VISUAL_STUDIO_PROFESSIONAL</code> | <code>OFFICE_PROFESSIONAL_PLUS</code>
|
|
1339
|
+
* </p>
|
|
716
1340
|
* @public
|
|
717
1341
|
*/
|
|
718
|
-
Product
|
|
1342
|
+
Product?: string | undefined;
|
|
1343
|
+
/**
|
|
1344
|
+
* <p>The Amazon Resource Name (ARN) of the identity provider to update.</p>
|
|
1345
|
+
* @public
|
|
1346
|
+
*/
|
|
1347
|
+
IdentityProviderArn?: string | undefined;
|
|
719
1348
|
/**
|
|
720
1349
|
* <p>Updates the registered identity provider’s product related configuration settings. You can
|
|
721
|
-
*
|
|
1350
|
+
* update any combination of settings in a single operation such as the:</p>
|
|
722
1351
|
* <ul>
|
|
723
1352
|
* <li>
|
|
724
1353
|
* <p>Subnets which you want to add to provision VPC endpoints.</p>
|
|
@@ -744,3 +1373,31 @@ export interface UpdateIdentityProviderSettingsResponse {
|
|
|
744
1373
|
*/
|
|
745
1374
|
IdentityProviderSummary: IdentityProviderSummary | undefined;
|
|
746
1375
|
}
|
|
1376
|
+
/**
|
|
1377
|
+
* @internal
|
|
1378
|
+
*/
|
|
1379
|
+
export declare const AssociateUserRequestFilterSensitiveLog: (obj: AssociateUserRequest) => any;
|
|
1380
|
+
/**
|
|
1381
|
+
* @internal
|
|
1382
|
+
*/
|
|
1383
|
+
export declare const CreateLicenseServerEndpointRequestFilterSensitiveLog: (obj: CreateLicenseServerEndpointRequest) => any;
|
|
1384
|
+
/**
|
|
1385
|
+
* @internal
|
|
1386
|
+
*/
|
|
1387
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1388
|
+
/**
|
|
1389
|
+
* @internal
|
|
1390
|
+
*/
|
|
1391
|
+
export declare const RegisterIdentityProviderRequestFilterSensitiveLog: (obj: RegisterIdentityProviderRequest) => any;
|
|
1392
|
+
/**
|
|
1393
|
+
* @internal
|
|
1394
|
+
*/
|
|
1395
|
+
export declare const StartProductSubscriptionRequestFilterSensitiveLog: (obj: StartProductSubscriptionRequest) => any;
|
|
1396
|
+
/**
|
|
1397
|
+
* @internal
|
|
1398
|
+
*/
|
|
1399
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1400
|
+
/**
|
|
1401
|
+
* @internal
|
|
1402
|
+
*/
|
|
1403
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|