@aws-sdk/client-license-manager-user-subscriptions 3.529.1 → 3.535.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.
Files changed (35) hide show
  1. package/dist-types/LicenseManagerUserSubscriptions.d.ts +3 -1
  2. package/dist-types/LicenseManagerUserSubscriptionsClient.d.ts +1 -1
  3. package/dist-types/commands/AssociateUserCommand.d.ts +2 -1
  4. package/dist-types/commands/DeregisterIdentityProviderCommand.d.ts +2 -1
  5. package/dist-types/commands/DisassociateUserCommand.d.ts +2 -1
  6. package/dist-types/commands/ListIdentityProvidersCommand.d.ts +2 -1
  7. package/dist-types/commands/ListInstancesCommand.d.ts +2 -1
  8. package/dist-types/commands/ListProductSubscriptionsCommand.d.ts +2 -1
  9. package/dist-types/commands/ListUserAssociationsCommand.d.ts +2 -1
  10. package/dist-types/commands/RegisterIdentityProviderCommand.d.ts +2 -1
  11. package/dist-types/commands/StartProductSubscriptionCommand.d.ts +2 -1
  12. package/dist-types/commands/StopProductSubscriptionCommand.d.ts +2 -1
  13. package/dist-types/commands/UpdateIdentityProviderSettingsCommand.d.ts +2 -1
  14. package/dist-types/models/models_0.d.ts +106 -106
  15. package/dist-types/runtimeConfig.browser.d.ts +2 -2
  16. package/dist-types/runtimeConfig.d.ts +2 -2
  17. package/dist-types/runtimeConfig.native.d.ts +2 -2
  18. package/dist-types/runtimeConfig.shared.d.ts +2 -2
  19. package/dist-types/ts3.4/LicenseManagerUserSubscriptions.d.ts +2 -0
  20. package/dist-types/ts3.4/commands/AssociateUserCommand.d.ts +9 -0
  21. package/dist-types/ts3.4/commands/DeregisterIdentityProviderCommand.d.ts +9 -0
  22. package/dist-types/ts3.4/commands/DisassociateUserCommand.d.ts +9 -0
  23. package/dist-types/ts3.4/commands/ListIdentityProvidersCommand.d.ts +9 -0
  24. package/dist-types/ts3.4/commands/ListInstancesCommand.d.ts +9 -0
  25. package/dist-types/ts3.4/commands/ListProductSubscriptionsCommand.d.ts +9 -0
  26. package/dist-types/ts3.4/commands/ListUserAssociationsCommand.d.ts +9 -0
  27. package/dist-types/ts3.4/commands/RegisterIdentityProviderCommand.d.ts +9 -0
  28. package/dist-types/ts3.4/commands/StartProductSubscriptionCommand.d.ts +9 -0
  29. package/dist-types/ts3.4/commands/StopProductSubscriptionCommand.d.ts +9 -0
  30. package/dist-types/ts3.4/commands/UpdateIdentityProviderSettingsCommand.d.ts +9 -0
  31. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
  32. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
  33. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
  34. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -2
  35. package/package.json +40 -40
@@ -1,8 +1,8 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { LicenseManagerUserSubscriptionsServiceException as __BaseException } from "./LicenseManagerUserSubscriptionsServiceException";
3
3
  /**
4
- * @public
5
4
  * <p>You don't have sufficient access to perform this action.</p>
5
+ * @public
6
6
  */
7
7
  export declare class AccessDeniedException extends __BaseException {
8
8
  readonly name: "AccessDeniedException";
@@ -13,19 +13,19 @@ export declare class AccessDeniedException extends __BaseException {
13
13
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
14
14
  }
15
15
  /**
16
- * @public
17
16
  * <p>Details about an Active Directory identity provider.</p>
17
+ * @public
18
18
  */
19
19
  export interface ActiveDirectoryIdentityProvider {
20
20
  /**
21
- * @public
22
21
  * <p>The directory ID for an Active Directory identity provider.</p>
22
+ * @public
23
23
  */
24
24
  DirectoryId?: string;
25
25
  }
26
26
  /**
27
- * @public
28
27
  * <p>Details about an identity provider.</p>
28
+ * @public
29
29
  */
30
30
  export type IdentityProvider = IdentityProvider.ActiveDirectoryIdentityProviderMember | IdentityProvider.$UnknownMember;
31
31
  /**
@@ -33,8 +33,8 @@ export type IdentityProvider = IdentityProvider.ActiveDirectoryIdentityProviderM
33
33
  */
34
34
  export declare namespace IdentityProvider {
35
35
  /**
36
- * @public
37
36
  * <p>An object that details an Active Directory identity provider.</p>
37
+ * @public
38
38
  */
39
39
  interface ActiveDirectoryIdentityProviderMember {
40
40
  ActiveDirectoryIdentityProvider: ActiveDirectoryIdentityProvider;
@@ -58,69 +58,69 @@ export declare namespace IdentityProvider {
58
58
  */
59
59
  export interface AssociateUserRequest {
60
60
  /**
61
- * @public
62
61
  * <p>The user name from the identity provider for the user.</p>
62
+ * @public
63
63
  */
64
64
  Username: string | undefined;
65
65
  /**
66
- * @public
67
66
  * <p>The ID of the EC2 instance, which provides user-based subscriptions.</p>
67
+ * @public
68
68
  */
69
69
  InstanceId: string | undefined;
70
70
  /**
71
- * @public
72
71
  * <p>The identity provider of the user.</p>
72
+ * @public
73
73
  */
74
74
  IdentityProvider: IdentityProvider | undefined;
75
75
  /**
76
- * @public
77
76
  * <p>The domain name of the user.</p>
77
+ * @public
78
78
  */
79
79
  Domain?: string;
80
80
  }
81
81
  /**
82
- * @public
83
82
  * <p>Describes users of an EC2 instance providing user-based subscriptions.</p>
83
+ * @public
84
84
  */
85
85
  export interface InstanceUserSummary {
86
86
  /**
87
- * @public
88
87
  * <p>The user name from the identity provider for the user.</p>
88
+ * @public
89
89
  */
90
90
  Username: string | undefined;
91
91
  /**
92
- * @public
93
92
  * <p>The ID of the EC2 instance, which provides user-based subscriptions.</p>
93
+ * @public
94
94
  */
95
95
  InstanceId: string | undefined;
96
96
  /**
97
- * @public
98
97
  * <p>An object that specifies details for the identity provider.</p>
98
+ * @public
99
99
  */
100
100
  IdentityProvider: IdentityProvider | undefined;
101
101
  /**
102
- * @public
103
102
  * <p>The status of a user associated with an EC2 instance.</p>
103
+ * @public
104
104
  */
105
105
  Status: string | undefined;
106
106
  /**
107
- * @public
108
107
  * <p>The status message for users of an EC2 instance.</p>
108
+ * @public
109
109
  */
110
110
  StatusMessage?: string;
111
111
  /**
112
- * @public
113
112
  * <p>The domain name of the user.</p>
113
+ * @public
114
114
  */
115
115
  Domain?: string;
116
116
  /**
117
- * @public
118
117
  * <p>The date a user was associated with an EC2 instance.</p>
118
+ * @public
119
119
  */
120
120
  AssociationDate?: string;
121
121
  /**
122
- * @public
123
122
  * <p>The date a user was disassociated from an EC2 instance.</p>
123
+ * @public
124
124
  */
125
125
  DisassociationDate?: string;
126
126
  }
@@ -129,15 +129,15 @@ export interface InstanceUserSummary {
129
129
  */
130
130
  export interface AssociateUserResponse {
131
131
  /**
132
- * @public
133
132
  * <p>Metadata that describes the associate user operation.</p>
133
+ * @public
134
134
  */
135
135
  InstanceUserSummary: InstanceUserSummary | undefined;
136
136
  }
137
137
  /**
138
- * @public
139
138
  * <p>The request couldn't be completed because it conflicted with the current state of the
140
139
  * resource.</p>
140
+ * @public
141
141
  */
142
142
  export declare class ConflictException extends __BaseException {
143
143
  readonly name: "ConflictException";
@@ -148,8 +148,8 @@ export declare class ConflictException extends __BaseException {
148
148
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
149
149
  }
150
150
  /**
151
- * @public
152
151
  * <p>An exception occurred with the service.</p>
152
+ * @public
153
153
  */
154
154
  export declare class InternalServerException extends __BaseException {
155
155
  readonly name: "InternalServerException";
@@ -160,8 +160,8 @@ export declare class InternalServerException extends __BaseException {
160
160
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
161
161
  }
162
162
  /**
163
- * @public
164
163
  * <p>The resource couldn't be found.</p>
164
+ * @public
165
165
  */
166
166
  export declare class ResourceNotFoundException extends __BaseException {
167
167
  readonly name: "ResourceNotFoundException";
@@ -172,8 +172,8 @@ export declare class ResourceNotFoundException extends __BaseException {
172
172
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
173
173
  }
174
174
  /**
175
- * @public
176
175
  * <p>The request failed because a service quota is exceeded.</p>
176
+ * @public
177
177
  */
178
178
  export declare class ServiceQuotaExceededException extends __BaseException {
179
179
  readonly name: "ServiceQuotaExceededException";
@@ -184,8 +184,8 @@ export declare class ServiceQuotaExceededException extends __BaseException {
184
184
  constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
185
185
  }
186
186
  /**
187
- * @public
188
187
  * <p>The request was denied because of request throttling. Retry the request.</p>
188
+ * @public
189
189
  */
190
190
  export declare class ThrottlingException extends __BaseException {
191
191
  readonly name: "ThrottlingException";
@@ -196,8 +196,8 @@ export declare class ThrottlingException extends __BaseException {
196
196
  constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
197
197
  }
198
198
  /**
199
- * @public
200
199
  * <p>A parameter is not valid.</p>
200
+ * @public
201
201
  */
202
202
  export declare class ValidationException extends __BaseException {
203
203
  readonly name: "ValidationException";
@@ -212,65 +212,65 @@ export declare class ValidationException extends __BaseException {
212
212
  */
213
213
  export interface DeregisterIdentityProviderRequest {
214
214
  /**
215
- * @public
216
215
  * <p>An object that specifies details for the identity provider.</p>
216
+ * @public
217
217
  */
218
218
  IdentityProvider: IdentityProvider | undefined;
219
219
  /**
220
- * @public
221
220
  * <p>The name of the user-based subscription product.</p>
221
+ * @public
222
222
  */
223
223
  Product: string | undefined;
224
224
  }
225
225
  /**
226
- * @public
227
226
  * <p>The registered identity provider’s product related configuration settings such as the
228
227
  * subnets to provision VPC endpoints, and the security group ID that is associated with the VPC
229
228
  * endpoints. The security group should permit inbound TCP port 1688 communication from resources
230
229
  * in the VPC.</p>
230
+ * @public
231
231
  */
232
232
  export interface Settings {
233
233
  /**
234
- * @public
235
234
  * <p>The subnets defined for the registered identity provider.</p>
235
+ * @public
236
236
  */
237
237
  Subnets: string[] | undefined;
238
238
  /**
239
- * @public
240
239
  * <p>A security group ID that allows inbound TCP port 1688 communication between resources in
241
240
  * your VPC and the VPC endpoint for activation servers.</p>
241
+ * @public
242
242
  */
243
243
  SecurityGroupId: string | undefined;
244
244
  }
245
245
  /**
246
- * @public
247
246
  * <p>Describes an identity provider.</p>
247
+ * @public
248
248
  */
249
249
  export interface IdentityProviderSummary {
250
250
  /**
251
- * @public
252
251
  * <p>An object that specifies details for the identity provider.</p>
252
+ * @public
253
253
  */
254
254
  IdentityProvider: IdentityProvider | undefined;
255
255
  /**
256
- * @public
257
256
  * <p>An object that details the registered identity provider’s product related configuration
258
257
  * settings such as the subnets to provision VPC endpoints.</p>
258
+ * @public
259
259
  */
260
260
  Settings: Settings | undefined;
261
261
  /**
262
- * @public
263
262
  * <p>The name of the user-based subscription product.</p>
263
+ * @public
264
264
  */
265
265
  Product: string | undefined;
266
266
  /**
267
- * @public
268
267
  * <p>The status of an identity provider.</p>
268
+ * @public
269
269
  */
270
270
  Status: string | undefined;
271
271
  /**
272
- * @public
273
272
  * <p>The failure message associated with an identity provider.</p>
273
+ * @public
274
274
  */
275
275
  FailureMessage?: string;
276
276
  }
@@ -279,8 +279,8 @@ export interface IdentityProviderSummary {
279
279
  */
280
280
  export interface DeregisterIdentityProviderResponse {
281
281
  /**
282
- * @public
283
282
  * <p>Metadata that describes the results of an identity provider operation.</p>
283
+ * @public
284
284
  */
285
285
  IdentityProviderSummary: IdentityProviderSummary | undefined;
286
286
  }
@@ -289,23 +289,23 @@ export interface DeregisterIdentityProviderResponse {
289
289
  */
290
290
  export interface DisassociateUserRequest {
291
291
  /**
292
- * @public
293
292
  * <p>The user name from the identity provider for the user.</p>
293
+ * @public
294
294
  */
295
295
  Username: string | undefined;
296
296
  /**
297
- * @public
298
297
  * <p>The ID of the EC2 instance, which provides user-based subscriptions.</p>
298
+ * @public
299
299
  */
300
300
  InstanceId: string | undefined;
301
301
  /**
302
- * @public
303
302
  * <p>An object that specifies details for the identity provider.</p>
303
+ * @public
304
304
  */
305
305
  IdentityProvider: IdentityProvider | undefined;
306
306
  /**
307
- * @public
308
307
  * <p>The domain name of the user.</p>
308
+ * @public
309
309
  */
310
310
  Domain?: string;
311
311
  }
@@ -314,62 +314,62 @@ export interface DisassociateUserRequest {
314
314
  */
315
315
  export interface DisassociateUserResponse {
316
316
  /**
317
- * @public
318
317
  * <p>Metadata that describes the associate user operation.</p>
318
+ * @public
319
319
  */
320
320
  InstanceUserSummary: InstanceUserSummary | undefined;
321
321
  }
322
322
  /**
323
- * @public
324
323
  * <p>A filter name and value pair that is used to return more specific results from a describe
325
324
  * operation. Filters can be used to match a set of resources by specific criteria, such as tags,
326
325
  * attributes, or IDs.</p>
326
+ * @public
327
327
  */
328
328
  export interface Filter {
329
329
  /**
330
- * @public
331
330
  * <p>The name of an attribute to use as a filter.</p>
331
+ * @public
332
332
  */
333
333
  Attribute?: string;
334
334
  /**
335
- * @public
336
335
  * <p>The type of search (For example, eq, geq, leq)</p>
336
+ * @public
337
337
  */
338
338
  Operation?: string;
339
339
  /**
340
- * @public
341
340
  * <p>Value of the filter.</p>
341
+ * @public
342
342
  */
343
343
  Value?: string;
344
344
  }
345
345
  /**
346
- * @public
347
346
  * <p>Describes an EC2 instance providing user-based subscriptions.</p>
347
+ * @public
348
348
  */
349
349
  export interface InstanceSummary {
350
350
  /**
351
- * @public
352
351
  * <p>The ID of the EC2 instance, which provides user-based subscriptions.</p>
352
+ * @public
353
353
  */
354
354
  InstanceId: string | undefined;
355
355
  /**
356
- * @public
357
356
  * <p>The status of an EC2 instance resource.</p>
357
+ * @public
358
358
  */
359
359
  Status: string | undefined;
360
360
  /**
361
- * @public
362
361
  * <p>A list of provided user-based subscription products.</p>
362
+ * @public
363
363
  */
364
364
  Products: string[] | undefined;
365
365
  /**
366
- * @public
367
366
  * <p>The date of the last status check.</p>
367
+ * @public
368
368
  */
369
369
  LastStatusCheckDate?: string;
370
370
  /**
371
- * @public
372
371
  * <p>The status message for an EC2 instance.</p>
372
+ * @public
373
373
  */
374
374
  StatusMessage?: string;
375
375
  }
@@ -378,13 +378,13 @@ export interface InstanceSummary {
378
378
  */
379
379
  export interface ListIdentityProvidersRequest {
380
380
  /**
381
- * @public
382
381
  * <p>Maximum number of results to return in a single call.</p>
382
+ * @public
383
383
  */
384
384
  MaxResults?: number;
385
385
  /**
386
- * @public
387
386
  * <p>Token for the next set of results.</p>
387
+ * @public
388
388
  */
389
389
  NextToken?: string;
390
390
  }
@@ -393,13 +393,13 @@ export interface ListIdentityProvidersRequest {
393
393
  */
394
394
  export interface ListIdentityProvidersResponse {
395
395
  /**
396
- * @public
397
396
  * <p>Metadata that describes the list identity providers operation.</p>
397
+ * @public
398
398
  */
399
399
  IdentityProviderSummaries: IdentityProviderSummary[] | undefined;
400
400
  /**
401
- * @public
402
401
  * <p>Token for the next set of results.</p>
402
+ * @public
403
403
  */
404
404
  NextToken?: string;
405
405
  }
@@ -408,19 +408,19 @@ export interface ListIdentityProvidersResponse {
408
408
  */
409
409
  export interface ListInstancesRequest {
410
410
  /**
411
- * @public
412
411
  * <p>Maximum number of results to return in a single call.</p>
412
+ * @public
413
413
  */
414
414
  MaxResults?: number;
415
415
  /**
416
- * @public
417
416
  * <p>Token for the next set of results.</p>
417
+ * @public
418
418
  */
419
419
  NextToken?: string;
420
420
  /**
421
- * @public
422
421
  * <p>An array of structures that you can use to filter the results to those that match one or
423
422
  * more sets of key-value pairs that you specify.</p>
423
+ * @public
424
424
  */
425
425
  Filters?: Filter[];
426
426
  }
@@ -429,13 +429,13 @@ export interface ListInstancesRequest {
429
429
  */
430
430
  export interface ListInstancesResponse {
431
431
  /**
432
- * @public
433
432
  * <p>Metadata that describes the list instances operation.</p>
433
+ * @public
434
434
  */
435
435
  InstanceSummaries?: InstanceSummary[];
436
436
  /**
437
- * @public
438
437
  * <p>Token for the next set of results.</p>
438
+ * @public
439
439
  */
440
440
  NextToken?: string;
441
441
  }
@@ -444,75 +444,75 @@ export interface ListInstancesResponse {
444
444
  */
445
445
  export interface ListProductSubscriptionsRequest {
446
446
  /**
447
- * @public
448
447
  * <p>The name of the user-based subscription product.</p>
448
+ * @public
449
449
  */
450
450
  Product: string | undefined;
451
451
  /**
452
- * @public
453
452
  * <p>An object that specifies details for the identity provider.</p>
453
+ * @public
454
454
  */
455
455
  IdentityProvider: IdentityProvider | undefined;
456
456
  /**
457
- * @public
458
457
  * <p>Maximum number of results to return in a single call.</p>
458
+ * @public
459
459
  */
460
460
  MaxResults?: number;
461
461
  /**
462
- * @public
463
462
  * <p>An array of structures that you can use to filter the results to those that match one or
464
463
  * more sets of key-value pairs that you specify.</p>
464
+ * @public
465
465
  */
466
466
  Filters?: Filter[];
467
467
  /**
468
- * @public
469
468
  * <p>Token for the next set of results.</p>
469
+ * @public
470
470
  */
471
471
  NextToken?: string;
472
472
  }
473
473
  /**
474
- * @public
475
474
  * <p>The summary of the user-based subscription products for a user.</p>
475
+ * @public
476
476
  */
477
477
  export interface ProductUserSummary {
478
478
  /**
479
- * @public
480
479
  * <p>The user name from the identity provider of the user.</p>
480
+ * @public
481
481
  */
482
482
  Username: string | undefined;
483
483
  /**
484
- * @public
485
484
  * <p>The name of the user-based subscription product.</p>
485
+ * @public
486
486
  */
487
487
  Product: string | undefined;
488
488
  /**
489
- * @public
490
489
  * <p>An object that specifies details for the identity provider.</p>
490
+ * @public
491
491
  */
492
492
  IdentityProvider: IdentityProvider | undefined;
493
493
  /**
494
- * @public
495
494
  * <p>The status of a product for a user.</p>
495
+ * @public
496
496
  */
497
497
  Status: string | undefined;
498
498
  /**
499
- * @public
500
499
  * <p>The status message for a product for a user.</p>
500
+ * @public
501
501
  */
502
502
  StatusMessage?: string;
503
503
  /**
504
- * @public
505
504
  * <p>The domain name of the user.</p>
505
+ * @public
506
506
  */
507
507
  Domain?: string;
508
508
  /**
509
- * @public
510
509
  * <p>The start date of a subscription.</p>
510
+ * @public
511
511
  */
512
512
  SubscriptionStartDate?: string;
513
513
  /**
514
- * @public
515
514
  * <p>The end date of a subscription.</p>
515
+ * @public
516
516
  */
517
517
  SubscriptionEndDate?: string;
518
518
  }
@@ -521,13 +521,13 @@ export interface ProductUserSummary {
521
521
  */
522
522
  export interface ListProductSubscriptionsResponse {
523
523
  /**
524
- * @public
525
524
  * <p>Metadata that describes the list product subscriptions operation.</p>
525
+ * @public
526
526
  */
527
527
  ProductUserSummaries?: ProductUserSummary[];
528
528
  /**
529
- * @public
530
529
  * <p>Token for the next set of results.</p>
530
+ * @public
531
531
  */
532
532
  NextToken?: string;
533
533
  }
@@ -536,29 +536,29 @@ export interface ListProductSubscriptionsResponse {
536
536
  */
537
537
  export interface ListUserAssociationsRequest {
538
538
  /**
539
- * @public
540
539
  * <p>The ID of the EC2 instance, which provides user-based subscriptions.</p>
540
+ * @public
541
541
  */
542
542
  InstanceId: string | undefined;
543
543
  /**
544
- * @public
545
544
  * <p>An object that specifies details for the identity provider.</p>
545
+ * @public
546
546
  */
547
547
  IdentityProvider: IdentityProvider | undefined;
548
548
  /**
549
- * @public
550
549
  * <p>Maximum number of results to return in a single call.</p>
550
+ * @public
551
551
  */
552
552
  MaxResults?: number;
553
553
  /**
554
- * @public
555
554
  * <p>An array of structures that you can use to filter the results to those that match one or
556
555
  * more sets of key-value pairs that you specify.</p>
556
+ * @public
557
557
  */
558
558
  Filters?: Filter[];
559
559
  /**
560
- * @public
561
560
  * <p>Token for the next set of results.</p>
561
+ * @public
562
562
  */
563
563
  NextToken?: string;
564
564
  }
@@ -567,13 +567,13 @@ export interface ListUserAssociationsRequest {
567
567
  */
568
568
  export interface ListUserAssociationsResponse {
569
569
  /**
570
- * @public
571
570
  * <p>Metadata that describes the list user association operation.</p>
571
+ * @public
572
572
  */
573
573
  InstanceUserSummaries?: InstanceUserSummary[];
574
574
  /**
575
- * @public
576
575
  * <p>Token for the next set of results.</p>
576
+ * @public
577
577
  */
578
578
  NextToken?: string;
579
579
  }
@@ -582,19 +582,19 @@ export interface ListUserAssociationsResponse {
582
582
  */
583
583
  export interface RegisterIdentityProviderRequest {
584
584
  /**
585
- * @public
586
585
  * <p>An object that specifies details for the identity provider.</p>
586
+ * @public
587
587
  */
588
588
  IdentityProvider: IdentityProvider | undefined;
589
589
  /**
590
- * @public
591
590
  * <p>The name of the user-based subscription product.</p>
591
+ * @public
592
592
  */
593
593
  Product: string | undefined;
594
594
  /**
595
- * @public
596
595
  * <p>The registered identity provider’s product related configuration settings such as the
597
596
  * subnets to provision VPC endpoints.</p>
597
+ * @public
598
598
  */
599
599
  Settings?: Settings;
600
600
  }
@@ -603,8 +603,8 @@ export interface RegisterIdentityProviderRequest {
603
603
  */
604
604
  export interface RegisterIdentityProviderResponse {
605
605
  /**
606
- * @public
607
606
  * <p>Metadata that describes the results of an identity provider operation.</p>
607
+ * @public
608
608
  */
609
609
  IdentityProviderSummary: IdentityProviderSummary | undefined;
610
610
  }
@@ -613,23 +613,23 @@ export interface RegisterIdentityProviderResponse {
613
613
  */
614
614
  export interface StartProductSubscriptionRequest {
615
615
  /**
616
- * @public
617
616
  * <p>The user name from the identity provider of the user.</p>
617
+ * @public
618
618
  */
619
619
  Username: string | undefined;
620
620
  /**
621
- * @public
622
621
  * <p>An object that specifies details for the identity provider.</p>
622
+ * @public
623
623
  */
624
624
  IdentityProvider: IdentityProvider | undefined;
625
625
  /**
626
- * @public
627
626
  * <p>The name of the user-based subscription product.</p>
627
+ * @public
628
628
  */
629
629
  Product: string | undefined;
630
630
  /**
631
- * @public
632
631
  * <p>The domain name of the user.</p>
632
+ * @public
633
633
  */
634
634
  Domain?: string;
635
635
  }
@@ -638,8 +638,8 @@ export interface StartProductSubscriptionRequest {
638
638
  */
639
639
  export interface StartProductSubscriptionResponse {
640
640
  /**
641
- * @public
642
641
  * <p>Metadata that describes the start product subscription operation.</p>
642
+ * @public
643
643
  */
644
644
  ProductUserSummary: ProductUserSummary | undefined;
645
645
  }
@@ -648,23 +648,23 @@ export interface StartProductSubscriptionResponse {
648
648
  */
649
649
  export interface StopProductSubscriptionRequest {
650
650
  /**
651
- * @public
652
651
  * <p>The user name from the identity provider for the user.</p>
652
+ * @public
653
653
  */
654
654
  Username: string | undefined;
655
655
  /**
656
- * @public
657
656
  * <p>An object that specifies details for the identity provider.</p>
657
+ * @public
658
658
  */
659
659
  IdentityProvider: IdentityProvider | undefined;
660
660
  /**
661
- * @public
662
661
  * <p>The name of the user-based subscription product.</p>
662
+ * @public
663
663
  */
664
664
  Product: string | undefined;
665
665
  /**
666
- * @public
667
666
  * <p>The domain name of the user.</p>
667
+ * @public
668
668
  */
669
669
  Domain?: string;
670
670
  }
@@ -673,32 +673,32 @@ export interface StopProductSubscriptionRequest {
673
673
  */
674
674
  export interface StopProductSubscriptionResponse {
675
675
  /**
676
- * @public
677
676
  * <p>Metadata that describes the start product subscription operation.</p>
677
+ * @public
678
678
  */
679
679
  ProductUserSummary: ProductUserSummary | undefined;
680
680
  }
681
681
  /**
682
- * @public
683
682
  * <p>Updates the registered identity provider’s product related configuration settings such as
684
683
  * the subnets to provision VPC endpoints.</p>
684
+ * @public
685
685
  */
686
686
  export interface UpdateSettings {
687
687
  /**
688
- * @public
689
688
  * <p>The ID of one or more subnets in which License Manager will create a VPC endpoint for products that
690
689
  * require connectivity to activation servers.</p>
690
+ * @public
691
691
  */
692
692
  AddSubnets: string[] | undefined;
693
693
  /**
694
- * @public
695
694
  * <p>The ID of one or more subnets to remove.</p>
695
+ * @public
696
696
  */
697
697
  RemoveSubnets: string[] | undefined;
698
698
  /**
699
- * @public
700
699
  * <p>A security group ID that allows inbound TCP port 1688 communication between resources in
701
700
  * your VPC and the VPC endpoints for activation servers.</p>
701
+ * @public
702
702
  */
703
703
  SecurityGroupId?: string;
704
704
  }
@@ -707,17 +707,16 @@ export interface UpdateSettings {
707
707
  */
708
708
  export interface UpdateIdentityProviderSettingsRequest {
709
709
  /**
710
- * @public
711
710
  * <p>Details about an identity provider.</p>
711
+ * @public
712
712
  */
713
713
  IdentityProvider: IdentityProvider | undefined;
714
714
  /**
715
- * @public
716
715
  * <p>The name of the user-based subscription product.</p>
716
+ * @public
717
717
  */
718
718
  Product: string | undefined;
719
719
  /**
720
- * @public
721
720
  * <p>Updates the registered identity provider’s product related configuration settings. You can
722
721
  * update any combination of settings in a single operation such as the:</p>
723
722
  * <ul>
@@ -731,6 +730,7 @@ export interface UpdateIdentityProviderSettingsRequest {
731
730
  * <p>Security group ID which permits traffic to the VPC endpoints.</p>
732
731
  * </li>
733
732
  * </ul>
733
+ * @public
734
734
  */
735
735
  UpdateSettings: UpdateSettings | undefined;
736
736
  }
@@ -739,8 +739,8 @@ export interface UpdateIdentityProviderSettingsRequest {
739
739
  */
740
740
  export interface UpdateIdentityProviderSettingsResponse {
741
741
  /**
742
- * @public
743
742
  * <p>Describes an identity provider.</p>
743
+ * @public
744
744
  */
745
745
  IdentityProviderSummary: IdentityProviderSummary | undefined;
746
746
  }