@aws-sdk/client-license-manager-linux-subscriptions 3.379.1 → 3.382.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.
@@ -29,14 +29,17 @@ export type Operator = (typeof Operator)[keyof typeof Operator];
29
29
  */
30
30
  export interface Filter {
31
31
  /**
32
+ * @public
32
33
  * <p>The type of name to filter by.</p>
33
34
  */
34
35
  Name?: string;
35
36
  /**
37
+ * @public
36
38
  * <p>One or more values for the name to filter by.</p>
37
39
  */
38
40
  Values?: string[];
39
41
  /**
42
+ * @public
40
43
  * <p>An operator for filtering results.</p>
41
44
  */
42
45
  Operator?: Operator | string;
@@ -88,10 +91,12 @@ export type OrganizationIntegration = (typeof OrganizationIntegration)[keyof typ
88
91
  */
89
92
  export interface LinuxSubscriptionsDiscoverySettings {
90
93
  /**
94
+ * @public
91
95
  * <p>The Regions in which to discover data for Linux subscriptions.</p>
92
96
  */
93
97
  SourceRegions: string[] | undefined;
94
98
  /**
99
+ * @public
95
100
  * <p>Details if you have enabled resource discovery across your accounts in Organizations.</p>
96
101
  */
97
102
  OrganizationIntegration: OrganizationIntegration | string | undefined;
@@ -127,23 +132,28 @@ export type Status = (typeof Status)[keyof typeof Status];
127
132
  */
128
133
  export interface GetServiceSettingsResponse {
129
134
  /**
135
+ * @public
130
136
  * <p>Lists if discovery has been enabled for Linux subscriptions.</p>
131
137
  */
132
138
  LinuxSubscriptionsDiscovery?: LinuxSubscriptionsDiscovery | string;
133
139
  /**
140
+ * @public
134
141
  * <p>Lists the settings defined for Linux subscriptions discovery. The settings include if
135
142
  * Organizations integration has been enabled, and which Regions data will be aggregated from.</p>
136
143
  */
137
144
  LinuxSubscriptionsDiscoverySettings?: LinuxSubscriptionsDiscoverySettings;
138
145
  /**
146
+ * @public
139
147
  * <p>Indicates the status of Linux subscriptions settings being applied.</p>
140
148
  */
141
149
  Status?: Status | string;
142
150
  /**
151
+ * @public
143
152
  * <p>A message which details the Linux subscriptions service settings current status.</p>
144
153
  */
145
154
  StatusMessage?: Record<string, string>;
146
155
  /**
156
+ * @public
147
157
  * <p>The Region in which License Manager displays the aggregated data for Linux
148
158
  * subscriptions.</p>
149
159
  */
@@ -191,45 +201,55 @@ export declare class ValidationException extends __BaseException {
191
201
  */
192
202
  export interface Instance {
193
203
  /**
204
+ * @public
194
205
  * <p>The AMI ID used to launch the instance.</p>
195
206
  */
196
207
  AmiId?: string;
197
208
  /**
209
+ * @public
198
210
  * <p>The instance ID of the resource.</p>
199
211
  */
200
212
  InstanceID?: string;
201
213
  /**
214
+ * @public
202
215
  * <p>The instance type of the resource.</p>
203
216
  */
204
217
  InstanceType?: string;
205
218
  /**
219
+ * @public
206
220
  * <p>The account ID which owns the instance.</p>
207
221
  */
208
222
  AccountID?: string;
209
223
  /**
224
+ * @public
210
225
  * <p>The status of the instance.</p>
211
226
  */
212
227
  Status?: string;
213
228
  /**
229
+ * @public
214
230
  * <p>The Region the instance is running in.</p>
215
231
  */
216
232
  Region?: string;
217
233
  /**
234
+ * @public
218
235
  * <p>The usage operation of the instance. For more information, see For more information, see
219
236
  * <a href="https://docs.aws.amazon.com/license-manager/latest/userguide/linux-subscriptions-usage-operation.html">Usage
220
237
  * operation values</a> in the <i>License Manager User Guide</i>.</p>
221
238
  */
222
239
  UsageOperation?: string;
223
240
  /**
241
+ * @public
224
242
  * <p>The product code for the instance. For more information, see <a href="https://docs.aws.amazon.com/license-manager/latest/userguide/linux-subscriptions-usage-operation.html">Usage
225
243
  * operation values</a> in the <i>License Manager User Guide</i> .</p>
226
244
  */
227
245
  ProductCode?: string[];
228
246
  /**
247
+ * @public
229
248
  * <p>The time in which the last discovery updated the instance details.</p>
230
249
  */
231
250
  LastUpdatedTime?: string;
232
251
  /**
252
+ * @public
233
253
  * <p>The name of the subscription being used by the instance.</p>
234
254
  */
235
255
  SubscriptionName?: string;
@@ -241,6 +261,7 @@ export interface Instance {
241
261
  */
242
262
  export interface ListLinuxSubscriptionInstancesRequest {
243
263
  /**
264
+ * @public
244
265
  * <p>An array of structures that you can use to filter the results to those that match one or
245
266
  * more sets of key-value pairs that you specify. For example, you can filter by the name of
246
267
  * <code>AmiID</code> with an optional operator to see subscriptions that match, partially
@@ -309,10 +330,12 @@ export interface ListLinuxSubscriptionInstancesRequest {
309
330
  */
310
331
  Filters?: Filter[];
311
332
  /**
333
+ * @public
312
334
  * <p>Maximum number of results to return in a single call.</p>
313
335
  */
314
336
  MaxResults?: number;
315
337
  /**
338
+ * @public
316
339
  * <p>Token for the next set of results.</p>
317
340
  */
318
341
  NextToken?: string;
@@ -322,10 +345,12 @@ export interface ListLinuxSubscriptionInstancesRequest {
322
345
  */
323
346
  export interface ListLinuxSubscriptionInstancesResponse {
324
347
  /**
348
+ * @public
325
349
  * <p>An array that contains instance objects.</p>
326
350
  */
327
351
  Instances?: Instance[];
328
352
  /**
353
+ * @public
329
354
  * <p>Token for the next set of results.</p>
330
355
  */
331
356
  NextToken?: string;
@@ -337,6 +362,7 @@ export interface ListLinuxSubscriptionInstancesResponse {
337
362
  */
338
363
  export interface ListLinuxSubscriptionsRequest {
339
364
  /**
365
+ * @public
340
366
  * <p>An array of structures that you can use to filter the results to those that match one or
341
367
  * more sets of key-value pairs that you specify. For example, you can filter by the name of
342
368
  * <code>Subscription</code> with an optional operator to see subscriptions that match,
@@ -370,10 +396,12 @@ export interface ListLinuxSubscriptionsRequest {
370
396
  */
371
397
  Filters?: Filter[];
372
398
  /**
399
+ * @public
373
400
  * <p>Maximum number of results to return in a single call.</p>
374
401
  */
375
402
  MaxResults?: number;
376
403
  /**
404
+ * @public
377
405
  * <p>Token for the next set of results.</p>
378
406
  */
379
407
  NextToken?: string;
@@ -384,16 +412,19 @@ export interface ListLinuxSubscriptionsRequest {
384
412
  */
385
413
  export interface Subscription {
386
414
  /**
415
+ * @public
387
416
  * <p>The name of the subscription.</p>
388
417
  */
389
418
  Name?: string;
390
419
  /**
420
+ * @public
391
421
  * <p>The type of subscription. The type can be subscription-included with Amazon EC2, Bring Your Own
392
422
  * Subscription model (BYOS), or from the Amazon Web Services Marketplace. Certain subscriptions may use licensing from the
393
423
  * Amazon Web Services Marketplace as well as OS licensing from Amazon EC2 or BYOS.</p>
394
424
  */
395
425
  Type?: string;
396
426
  /**
427
+ * @public
397
428
  * <p>The total amount of running instances using this subscription.</p>
398
429
  */
399
430
  InstanceCount?: number;
@@ -403,10 +434,12 @@ export interface Subscription {
403
434
  */
404
435
  export interface ListLinuxSubscriptionsResponse {
405
436
  /**
437
+ * @public
406
438
  * <p>An array that contains subscription objects.</p>
407
439
  */
408
440
  Subscriptions?: Subscription[];
409
441
  /**
442
+ * @public
410
443
  * <p>Token for the next set of results.</p>
411
444
  */
412
445
  NextToken?: string;
@@ -416,15 +449,18 @@ export interface ListLinuxSubscriptionsResponse {
416
449
  */
417
450
  export interface UpdateServiceSettingsRequest {
418
451
  /**
452
+ * @public
419
453
  * <p>Describes if the discovery of Linux subscriptions is enabled.</p>
420
454
  */
421
455
  LinuxSubscriptionsDiscovery: LinuxSubscriptionsDiscovery | string | undefined;
422
456
  /**
457
+ * @public
423
458
  * <p>The settings defined for Linux subscriptions discovery. The settings include if Organizations
424
459
  * integration has been enabled, and which Regions data will be aggregated from.</p>
425
460
  */
426
461
  LinuxSubscriptionsDiscoverySettings: LinuxSubscriptionsDiscoverySettings | undefined;
427
462
  /**
463
+ * @public
428
464
  * <p>Describes if updates are allowed to the service settings for Linux subscriptions. If you
429
465
  * allow updates, you can aggregate Linux subscription data in more than one home Region.</p>
430
466
  */
@@ -435,23 +471,28 @@ export interface UpdateServiceSettingsRequest {
435
471
  */
436
472
  export interface UpdateServiceSettingsResponse {
437
473
  /**
474
+ * @public
438
475
  * <p>Lists if discovery has been enabled for Linux subscriptions.</p>
439
476
  */
440
477
  LinuxSubscriptionsDiscovery?: LinuxSubscriptionsDiscovery | string;
441
478
  /**
479
+ * @public
442
480
  * <p>The settings defined for Linux subscriptions discovery. The settings include if Organizations
443
481
  * integration has been enabled, and which Regions data will be aggregated from.</p>
444
482
  */
445
483
  LinuxSubscriptionsDiscoverySettings?: LinuxSubscriptionsDiscoverySettings;
446
484
  /**
485
+ * @public
447
486
  * <p>Indicates the status of Linux subscriptions settings being applied.</p>
448
487
  */
449
488
  Status?: Status | string;
450
489
  /**
490
+ * @public
451
491
  * <p>A message which details the Linux subscriptions service settings current status.</p>
452
492
  */
453
493
  StatusMessage?: Record<string, string>;
454
494
  /**
495
+ * @public
455
496
  * <p>The Region in which License Manager displays the aggregated data for Linux
456
497
  * subscriptions.</p>
457
498
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-license-manager-linux-subscriptions",
3
3
  "description": "AWS SDK for JavaScript License Manager Linux Subscriptions Client for Node.js, Browser and React Native",
4
- "version": "3.379.1",
4
+ "version": "3.382.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,15 +21,15 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.379.1",
25
- "@aws-sdk/credential-provider-node": "3.379.1",
24
+ "@aws-sdk/client-sts": "3.382.0",
25
+ "@aws-sdk/credential-provider-node": "3.382.0",
26
26
  "@aws-sdk/middleware-host-header": "3.379.1",
27
27
  "@aws-sdk/middleware-logger": "3.378.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.378.0",
29
29
  "@aws-sdk/middleware-signing": "3.379.1",
30
- "@aws-sdk/middleware-user-agent": "3.379.1",
30
+ "@aws-sdk/middleware-user-agent": "3.382.0",
31
31
  "@aws-sdk/types": "3.378.0",
32
- "@aws-sdk/util-endpoints": "3.378.0",
32
+ "@aws-sdk/util-endpoints": "3.382.0",
33
33
  "@aws-sdk/util-user-agent-browser": "3.378.0",
34
34
  "@aws-sdk/util-user-agent-node": "3.378.0",
35
35
  "@smithy/config-resolver": "^2.0.1",