@aws-sdk/client-license-manager-linux-subscriptions 3.295.0 → 3.297.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.
@@ -5,17 +5,20 @@ import { ListLinuxSubscriptionsCommandInput, ListLinuxSubscriptionsCommandOutput
5
5
  import { UpdateServiceSettingsCommandInput, UpdateServiceSettingsCommandOutput } from "./commands/UpdateServiceSettingsCommand";
6
6
  import { LicenseManagerLinuxSubscriptionsClient } from "./LicenseManagerLinuxSubscriptionsClient";
7
7
  /**
8
+ * @public
8
9
  * <p>With License Manager, you can discover and track your commercial Linux subscriptions on running
9
10
  * Amazon EC2 instances.</p>
10
11
  */
11
12
  export declare class LicenseManagerLinuxSubscriptions extends LicenseManagerLinuxSubscriptionsClient {
12
13
  /**
14
+ * @public
13
15
  * <p>Lists the Linux subscriptions service settings.</p>
14
16
  */
15
17
  getServiceSettings(args: GetServiceSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetServiceSettingsCommandOutput>;
16
18
  getServiceSettings(args: GetServiceSettingsCommandInput, cb: (err: any, data?: GetServiceSettingsCommandOutput) => void): void;
17
19
  getServiceSettings(args: GetServiceSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetServiceSettingsCommandOutput) => void): void;
18
20
  /**
21
+ * @public
19
22
  * <p>Lists the running Amazon EC2 instances that were discovered with commercial Linux
20
23
  * subscriptions.</p>
21
24
  */
@@ -23,6 +26,7 @@ export declare class LicenseManagerLinuxSubscriptions extends LicenseManagerLinu
23
26
  listLinuxSubscriptionInstances(args: ListLinuxSubscriptionInstancesCommandInput, cb: (err: any, data?: ListLinuxSubscriptionInstancesCommandOutput) => void): void;
24
27
  listLinuxSubscriptionInstances(args: ListLinuxSubscriptionInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLinuxSubscriptionInstancesCommandOutput) => void): void;
25
28
  /**
29
+ * @public
26
30
  * <p>Lists the Linux subscriptions that have been discovered. If you have linked your
27
31
  * organization, the returned results will include data aggregated across your accounts in
28
32
  * Organizations.</p>
@@ -31,6 +35,7 @@ export declare class LicenseManagerLinuxSubscriptions extends LicenseManagerLinu
31
35
  listLinuxSubscriptions(args: ListLinuxSubscriptionsCommandInput, cb: (err: any, data?: ListLinuxSubscriptionsCommandOutput) => void): void;
32
36
  listLinuxSubscriptions(args: ListLinuxSubscriptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLinuxSubscriptionsCommandOutput) => void): void;
33
37
  /**
38
+ * @public
34
39
  * <p>Updates the service settings for Linux subscriptions.</p>
35
40
  */
36
41
  updateServiceSettings(args: UpdateServiceSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateServiceSettingsCommandOutput>;
@@ -12,15 +12,24 @@ import { ListLinuxSubscriptionInstancesCommandInput, ListLinuxSubscriptionInstan
12
12
  import { ListLinuxSubscriptionsCommandInput, ListLinuxSubscriptionsCommandOutput } from "./commands/ListLinuxSubscriptionsCommand";
13
13
  import { UpdateServiceSettingsCommandInput, UpdateServiceSettingsCommandOutput } from "./commands/UpdateServiceSettingsCommand";
14
14
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
15
+ /**
16
+ * @public
17
+ */
15
18
  export type ServiceInputTypes = GetServiceSettingsCommandInput | ListLinuxSubscriptionInstancesCommandInput | ListLinuxSubscriptionsCommandInput | UpdateServiceSettingsCommandInput;
19
+ /**
20
+ * @public
21
+ */
16
22
  export type ServiceOutputTypes = GetServiceSettingsCommandOutput | ListLinuxSubscriptionInstancesCommandOutput | ListLinuxSubscriptionsCommandOutput | UpdateServiceSettingsCommandOutput;
23
+ /**
24
+ * @public
25
+ */
17
26
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
18
27
  /**
19
28
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
20
29
  */
21
30
  requestHandler?: __HttpHandler;
22
31
  /**
23
- * A constructor for a class implementing the {@link __Checksum} interface
32
+ * A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
24
33
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
25
34
  * @internal
26
35
  */
@@ -110,23 +119,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
110
119
  */
111
120
  logger?: __Logger;
112
121
  /**
113
- * The {@link __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
122
+ * The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
114
123
  */
115
124
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
116
125
  }
126
+ /**
127
+ * @public
128
+ */
117
129
  type LicenseManagerLinuxSubscriptionsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
118
130
  /**
119
- * The configuration interface of LicenseManagerLinuxSubscriptionsClient class constructor that set the region, credentials and other options.
131
+ * @public
132
+ *
133
+ * The configuration interface of LicenseManagerLinuxSubscriptionsClient class constructor that set the region, credentials and other options.
120
134
  */
121
135
  export interface LicenseManagerLinuxSubscriptionsClientConfig extends LicenseManagerLinuxSubscriptionsClientConfigType {
122
136
  }
137
+ /**
138
+ * @public
139
+ */
123
140
  type LicenseManagerLinuxSubscriptionsClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
124
141
  /**
125
- * The resolved configuration interface of LicenseManagerLinuxSubscriptionsClient class. This is resolved and normalized from the {@link LicenseManagerLinuxSubscriptionsClientConfig | constructor configuration interface}.
142
+ * @public
143
+ *
144
+ * The resolved configuration interface of LicenseManagerLinuxSubscriptionsClient class. This is resolved and normalized from the {@link LicenseManagerLinuxSubscriptionsClientConfig | constructor configuration interface}.
126
145
  */
127
146
  export interface LicenseManagerLinuxSubscriptionsClientResolvedConfig extends LicenseManagerLinuxSubscriptionsClientResolvedConfigType {
128
147
  }
129
148
  /**
149
+ * @public
130
150
  * <p>With License Manager, you can discover and track your commercial Linux subscriptions on running
131
151
  * Amazon EC2 instances.</p>
132
152
  */
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { LicenseManagerLinuxSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerLinuxSubscriptionsClient";
5
5
  import { GetServiceSettingsRequest, GetServiceSettingsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetServiceSettingsCommand}.
8
10
  */
9
11
  export interface GetServiceSettingsCommandInput extends GetServiceSettingsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetServiceSettingsCommand}.
13
17
  */
14
18
  export interface GetServiceSettingsCommandOutput extends GetServiceSettingsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists the Linux subscriptions service settings.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetServiceSettingsCommandOutput extends GetServiceSettingsRespo
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetServiceSettingsCommandInput - {@link GetServiceSettingsCommandInput}
34
+ * @returns {@link GetServiceSettingsCommandOutput}
28
35
  * @see {@link GetServiceSettingsCommandInput} for command's `input` shape.
29
36
  * @see {@link GetServiceSettingsCommandOutput} for command's `response` shape.
30
37
  * @see {@link LicenseManagerLinuxSubscriptionsClientResolvedConfig | config} for LicenseManagerLinuxSubscriptionsClient's `config` shape.
@@ -43,11 +50,20 @@ export interface GetServiceSettingsCommandOutput extends GetServiceSettingsRespo
43
50
  export declare class GetServiceSettingsCommand extends $Command<GetServiceSettingsCommandInput, GetServiceSettingsCommandOutput, LicenseManagerLinuxSubscriptionsClientResolvedConfig> {
44
51
  readonly input: GetServiceSettingsCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: GetServiceSettingsCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerLinuxSubscriptionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetServiceSettingsCommandInput, GetServiceSettingsCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { LicenseManagerLinuxSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerLinuxSubscriptionsClient";
5
5
  import { ListLinuxSubscriptionInstancesRequest, ListLinuxSubscriptionInstancesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListLinuxSubscriptionInstancesCommand}.
8
10
  */
9
11
  export interface ListLinuxSubscriptionInstancesCommandInput extends ListLinuxSubscriptionInstancesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListLinuxSubscriptionInstancesCommand}.
13
17
  */
14
18
  export interface ListLinuxSubscriptionInstancesCommandOutput extends ListLinuxSubscriptionInstancesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists the running Amazon EC2 instances that were discovered with commercial Linux
18
23
  * subscriptions.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListLinuxSubscriptionInstancesCommandOutput extends ListLinuxSu
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListLinuxSubscriptionInstancesCommandInput - {@link ListLinuxSubscriptionInstancesCommandInput}
35
+ * @returns {@link ListLinuxSubscriptionInstancesCommandOutput}
29
36
  * @see {@link ListLinuxSubscriptionInstancesCommandInput} for command's `input` shape.
30
37
  * @see {@link ListLinuxSubscriptionInstancesCommandOutput} for command's `response` shape.
31
38
  * @see {@link LicenseManagerLinuxSubscriptionsClientResolvedConfig | config} for LicenseManagerLinuxSubscriptionsClient's `config` shape.
@@ -44,11 +51,20 @@ export interface ListLinuxSubscriptionInstancesCommandOutput extends ListLinuxSu
44
51
  export declare class ListLinuxSubscriptionInstancesCommand extends $Command<ListLinuxSubscriptionInstancesCommandInput, ListLinuxSubscriptionInstancesCommandOutput, LicenseManagerLinuxSubscriptionsClientResolvedConfig> {
45
52
  readonly input: ListLinuxSubscriptionInstancesCommandInput;
46
53
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
54
+ /**
55
+ * @public
56
+ */
47
57
  constructor(input: ListLinuxSubscriptionInstancesCommandInput);
48
58
  /**
49
59
  * @internal
50
60
  */
51
61
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerLinuxSubscriptionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListLinuxSubscriptionInstancesCommandInput, ListLinuxSubscriptionInstancesCommandOutput>;
62
+ /**
63
+ * @internal
64
+ */
52
65
  private serialize;
66
+ /**
67
+ * @internal
68
+ */
53
69
  private deserialize;
54
70
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { LicenseManagerLinuxSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerLinuxSubscriptionsClient";
5
5
  import { ListLinuxSubscriptionsRequest, ListLinuxSubscriptionsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListLinuxSubscriptionsCommand}.
8
10
  */
9
11
  export interface ListLinuxSubscriptionsCommandInput extends ListLinuxSubscriptionsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListLinuxSubscriptionsCommand}.
13
17
  */
14
18
  export interface ListLinuxSubscriptionsCommandOutput extends ListLinuxSubscriptionsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists the Linux subscriptions that have been discovered. If you have linked your
18
23
  * organization, the returned results will include data aggregated across your accounts in
19
24
  * Organizations.</p>
@@ -27,6 +32,8 @@ export interface ListLinuxSubscriptionsCommandOutput extends ListLinuxSubscripti
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param ListLinuxSubscriptionsCommandInput - {@link ListLinuxSubscriptionsCommandInput}
36
+ * @returns {@link ListLinuxSubscriptionsCommandOutput}
30
37
  * @see {@link ListLinuxSubscriptionsCommandInput} for command's `input` shape.
31
38
  * @see {@link ListLinuxSubscriptionsCommandOutput} for command's `response` shape.
32
39
  * @see {@link LicenseManagerLinuxSubscriptionsClientResolvedConfig | config} for LicenseManagerLinuxSubscriptionsClient's `config` shape.
@@ -45,11 +52,20 @@ export interface ListLinuxSubscriptionsCommandOutput extends ListLinuxSubscripti
45
52
  export declare class ListLinuxSubscriptionsCommand extends $Command<ListLinuxSubscriptionsCommandInput, ListLinuxSubscriptionsCommandOutput, LicenseManagerLinuxSubscriptionsClientResolvedConfig> {
46
53
  readonly input: ListLinuxSubscriptionsCommandInput;
47
54
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
55
+ /**
56
+ * @public
57
+ */
48
58
  constructor(input: ListLinuxSubscriptionsCommandInput);
49
59
  /**
50
60
  * @internal
51
61
  */
52
62
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerLinuxSubscriptionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListLinuxSubscriptionsCommandInput, ListLinuxSubscriptionsCommandOutput>;
63
+ /**
64
+ * @internal
65
+ */
53
66
  private serialize;
67
+ /**
68
+ * @internal
69
+ */
54
70
  private deserialize;
55
71
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { LicenseManagerLinuxSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerLinuxSubscriptionsClient";
5
5
  import { UpdateServiceSettingsRequest, UpdateServiceSettingsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateServiceSettingsCommand}.
8
10
  */
9
11
  export interface UpdateServiceSettingsCommandInput extends UpdateServiceSettingsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateServiceSettingsCommand}.
13
17
  */
14
18
  export interface UpdateServiceSettingsCommandOutput extends UpdateServiceSettingsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates the service settings for Linux subscriptions.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateServiceSettingsCommandOutput extends UpdateServiceSetting
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateServiceSettingsCommandInput - {@link UpdateServiceSettingsCommandInput}
34
+ * @returns {@link UpdateServiceSettingsCommandOutput}
28
35
  * @see {@link UpdateServiceSettingsCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateServiceSettingsCommandOutput} for command's `response` shape.
30
37
  * @see {@link LicenseManagerLinuxSubscriptionsClientResolvedConfig | config} for LicenseManagerLinuxSubscriptionsClient's `config` shape.
@@ -43,11 +50,20 @@ export interface UpdateServiceSettingsCommandOutput extends UpdateServiceSetting
43
50
  export declare class UpdateServiceSettingsCommand extends $Command<UpdateServiceSettingsCommandInput, UpdateServiceSettingsCommandOutput, LicenseManagerLinuxSubscriptionsClientResolvedConfig> {
44
51
  readonly input: UpdateServiceSettingsCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: UpdateServiceSettingsCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerLinuxSubscriptionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateServiceSettingsCommandInput, UpdateServiceSettingsCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from LicenseManagerLinuxSubscriptions service.
4
6
  */
5
7
  export declare class LicenseManagerLinuxSubscriptionsServiceException extends __ServiceException {
@@ -1,5 +1,8 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { LicenseManagerLinuxSubscriptionsServiceException as __BaseException } from "./LicenseManagerLinuxSubscriptionsServiceException";
3
+ /**
4
+ * @public
5
+ */
3
6
  export declare enum Operator {
4
7
  /**
5
8
  * Contains operator
@@ -15,6 +18,7 @@ export declare enum Operator {
15
18
  NOT_EQUAL = "NotEqual"
16
19
  }
17
20
  /**
21
+ * @public
18
22
  * <p>A filter object that is used to return more specific results from a describe operation.
19
23
  * Filters can be used to match a set of resources by specific criteria.</p>
20
24
  */
@@ -32,8 +36,14 @@ export interface Filter {
32
36
  */
33
37
  Operator?: Operator | string;
34
38
  }
39
+ /**
40
+ * @public
41
+ */
35
42
  export interface GetServiceSettingsRequest {
36
43
  }
44
+ /**
45
+ * @public
46
+ */
37
47
  export declare enum LinuxSubscriptionsDiscovery {
38
48
  /**
39
49
  * Disabled LinuxSubscriptionsDiscovery
@@ -44,6 +54,9 @@ export declare enum LinuxSubscriptionsDiscovery {
44
54
  */
45
55
  Enabled = "Enabled"
46
56
  }
57
+ /**
58
+ * @public
59
+ */
47
60
  export declare enum OrganizationIntegration {
48
61
  /**
49
62
  * Disabled OrganizationIntegration
@@ -55,6 +68,7 @@ export declare enum OrganizationIntegration {
55
68
  Enabled = "Enabled"
56
69
  }
57
70
  /**
71
+ * @public
58
72
  * <p>Lists the settings defined for discovering Linux subscriptions.</p>
59
73
  */
60
74
  export interface LinuxSubscriptionsDiscoverySettings {
@@ -67,6 +81,9 @@ export interface LinuxSubscriptionsDiscoverySettings {
67
81
  */
68
82
  OrganizationIntegration: OrganizationIntegration | string | undefined;
69
83
  }
84
+ /**
85
+ * @public
86
+ */
70
87
  export declare enum Status {
71
88
  /**
72
89
  * Completed status
@@ -85,6 +102,9 @@ export declare enum Status {
85
102
  */
86
103
  Successful = "Successful"
87
104
  }
105
+ /**
106
+ * @public
107
+ */
88
108
  export interface GetServiceSettingsResponse {
89
109
  /**
90
110
  * <p>Lists if discovery has been enabled for Linux subscriptions.</p>
@@ -110,6 +130,7 @@ export interface GetServiceSettingsResponse {
110
130
  HomeRegions?: string[];
111
131
  }
112
132
  /**
133
+ * @public
113
134
  * <p>An exception occurred with the service.</p>
114
135
  */
115
136
  export declare class InternalServerException extends __BaseException {
@@ -121,6 +142,7 @@ export declare class InternalServerException extends __BaseException {
121
142
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
122
143
  }
123
144
  /**
145
+ * @public
124
146
  * <p>The request was denied due to request throttling.</p>
125
147
  */
126
148
  export declare class ThrottlingException extends __BaseException {
@@ -132,6 +154,7 @@ export declare class ThrottlingException extends __BaseException {
132
154
  constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
133
155
  }
134
156
  /**
157
+ * @public
135
158
  * <p>The provided input is not valid. Try your request again.</p>
136
159
  */
137
160
  export declare class ValidationException extends __BaseException {
@@ -143,6 +166,7 @@ export declare class ValidationException extends __BaseException {
143
166
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
144
167
  }
145
168
  /**
169
+ * @public
146
170
  * <p>Details discovered information about a running instance using Linux subscriptions.</p>
147
171
  */
148
172
  export interface Instance {
@@ -191,6 +215,7 @@ export interface Instance {
191
215
  SubscriptionName?: string;
192
216
  }
193
217
  /**
218
+ * @public
194
219
  * NextToken length limit is half of ddb accepted limit.
195
220
  * Increase this limit if parameters in request increases.
196
221
  */
@@ -272,6 +297,9 @@ export interface ListLinuxSubscriptionInstancesRequest {
272
297
  */
273
298
  NextToken?: string;
274
299
  }
300
+ /**
301
+ * @public
302
+ */
275
303
  export interface ListLinuxSubscriptionInstancesResponse {
276
304
  /**
277
305
  * <p>An array that contains instance objects.</p>
@@ -283,6 +311,7 @@ export interface ListLinuxSubscriptionInstancesResponse {
283
311
  NextToken?: string;
284
312
  }
285
313
  /**
314
+ * @public
286
315
  * NextToken length limit is half of ddb accepted limit.
287
316
  * Increase this limit if parameters in request increases.
288
317
  */
@@ -330,6 +359,7 @@ export interface ListLinuxSubscriptionsRequest {
330
359
  NextToken?: string;
331
360
  }
332
361
  /**
362
+ * @public
333
363
  * <p>An object which details a discovered Linux subscription.</p>
334
364
  */
335
365
  export interface Subscription {
@@ -348,6 +378,9 @@ export interface Subscription {
348
378
  */
349
379
  InstanceCount?: number;
350
380
  }
381
+ /**
382
+ * @public
383
+ */
351
384
  export interface ListLinuxSubscriptionsResponse {
352
385
  /**
353
386
  * <p>An array that contains subscription objects.</p>
@@ -358,6 +391,9 @@ export interface ListLinuxSubscriptionsResponse {
358
391
  */
359
392
  NextToken?: string;
360
393
  }
394
+ /**
395
+ * @public
396
+ */
361
397
  export interface UpdateServiceSettingsRequest {
362
398
  /**
363
399
  * <p>Describes if the discovery of Linux subscriptions is enabled.</p>
@@ -374,6 +410,9 @@ export interface UpdateServiceSettingsRequest {
374
410
  */
375
411
  AllowUpdate?: boolean;
376
412
  }
413
+ /**
414
+ * @public
415
+ */
377
416
  export interface UpdateServiceSettingsResponse {
378
417
  /**
379
418
  * <p>Lists if discovery has been enabled for Linux subscriptions.</p>
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { LicenseManagerLinuxSubscriptionsClient } from "../LicenseManagerLinuxSubscriptionsClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface LicenseManagerLinuxSubscriptionsPaginationConfiguration extends PaginationConfiguration {
4
7
  client: LicenseManagerLinuxSubscriptionsClient;
5
8
  }
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListLinuxSubscriptionInstancesCommandInput, ListLinuxSubscriptionInstancesCommandOutput } from "../commands/ListLinuxSubscriptionInstancesCommand";
3
3
  import { LicenseManagerLinuxSubscriptionsPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListLinuxSubscriptionInstances(config: LicenseManagerLinuxSubscriptionsPaginationConfiguration, input: ListLinuxSubscriptionInstancesCommandInput, ...additionalArguments: any): Paginator<ListLinuxSubscriptionInstancesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListLinuxSubscriptionsCommandInput, ListLinuxSubscriptionsCommandOutput } from "../commands/ListLinuxSubscriptionsCommand";
3
3
  import { LicenseManagerLinuxSubscriptionsPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListLinuxSubscriptions(config: LicenseManagerLinuxSubscriptionsPaginationConfiguration, input: ListLinuxSubscriptionsCommandInput, ...additionalArguments: any): Paginator<ListLinuxSubscriptionsCommandOutput>;
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.295.0",
4
+ "version": "3.297.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",
@@ -20,37 +20,37 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.295.0",
24
- "@aws-sdk/config-resolver": "3.295.0",
25
- "@aws-sdk/credential-provider-node": "3.295.0",
26
- "@aws-sdk/fetch-http-handler": "3.295.0",
27
- "@aws-sdk/hash-node": "3.295.0",
28
- "@aws-sdk/invalid-dependency": "3.295.0",
29
- "@aws-sdk/middleware-content-length": "3.295.0",
30
- "@aws-sdk/middleware-endpoint": "3.295.0",
31
- "@aws-sdk/middleware-host-header": "3.295.0",
32
- "@aws-sdk/middleware-logger": "3.295.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.295.0",
34
- "@aws-sdk/middleware-retry": "3.295.0",
35
- "@aws-sdk/middleware-serde": "3.295.0",
36
- "@aws-sdk/middleware-signing": "3.295.0",
37
- "@aws-sdk/middleware-stack": "3.295.0",
38
- "@aws-sdk/middleware-user-agent": "3.295.0",
39
- "@aws-sdk/node-config-provider": "3.295.0",
40
- "@aws-sdk/node-http-handler": "3.295.0",
41
- "@aws-sdk/protocol-http": "3.295.0",
42
- "@aws-sdk/smithy-client": "3.295.0",
43
- "@aws-sdk/types": "3.295.0",
44
- "@aws-sdk/url-parser": "3.295.0",
23
+ "@aws-sdk/client-sts": "3.297.0",
24
+ "@aws-sdk/config-resolver": "3.296.0",
25
+ "@aws-sdk/credential-provider-node": "3.297.0",
26
+ "@aws-sdk/fetch-http-handler": "3.296.0",
27
+ "@aws-sdk/hash-node": "3.296.0",
28
+ "@aws-sdk/invalid-dependency": "3.296.0",
29
+ "@aws-sdk/middleware-content-length": "3.296.0",
30
+ "@aws-sdk/middleware-endpoint": "3.296.0",
31
+ "@aws-sdk/middleware-host-header": "3.296.0",
32
+ "@aws-sdk/middleware-logger": "3.296.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.296.0",
34
+ "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-serde": "3.296.0",
36
+ "@aws-sdk/middleware-signing": "3.296.0",
37
+ "@aws-sdk/middleware-stack": "3.296.0",
38
+ "@aws-sdk/middleware-user-agent": "3.296.0",
39
+ "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-http-handler": "3.296.0",
41
+ "@aws-sdk/protocol-http": "3.296.0",
42
+ "@aws-sdk/smithy-client": "3.296.0",
43
+ "@aws-sdk/types": "3.296.0",
44
+ "@aws-sdk/url-parser": "3.296.0",
45
45
  "@aws-sdk/util-base64": "3.295.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.295.0",
47
47
  "@aws-sdk/util-body-length-node": "3.295.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.295.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.295.0",
50
- "@aws-sdk/util-endpoints": "3.295.0",
51
- "@aws-sdk/util-retry": "3.295.0",
52
- "@aws-sdk/util-user-agent-browser": "3.295.0",
53
- "@aws-sdk/util-user-agent-node": "3.295.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.296.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.296.0",
50
+ "@aws-sdk/util-endpoints": "3.296.0",
51
+ "@aws-sdk/util-retry": "3.296.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.296.0",
53
+ "@aws-sdk/util-user-agent-node": "3.296.0",
54
54
  "@aws-sdk/util-utf8": "3.295.0",
55
55
  "tslib": "^2.5.0"
56
56
  },