@aws-sdk/client-license-manager-linux-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.
- package/dist-types/LicenseManagerLinuxSubscriptions.d.ts +4 -1
- package/dist-types/LicenseManagerLinuxSubscriptionsClient.d.ts +1 -1
- package/dist-types/commands/GetServiceSettingsCommand.d.ts +2 -1
- package/dist-types/commands/ListLinuxSubscriptionInstancesCommand.d.ts +2 -1
- package/dist-types/commands/ListLinuxSubscriptionsCommand.d.ts +2 -1
- package/dist-types/commands/UpdateServiceSettingsCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +50 -50
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +2 -2
- package/dist-types/ts3.4/LicenseManagerLinuxSubscriptions.d.ts +3 -0
- package/dist-types/ts3.4/commands/GetServiceSettingsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListLinuxSubscriptionInstancesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListLinuxSubscriptionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateServiceSettingsCommand.d.ts +9 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -2
- package/package.json +40 -40
|
@@ -8,18 +8,21 @@ export interface LicenseManagerLinuxSubscriptions {
|
|
|
8
8
|
/**
|
|
9
9
|
* @see {@link GetServiceSettingsCommand}
|
|
10
10
|
*/
|
|
11
|
+
getServiceSettings(): Promise<GetServiceSettingsCommandOutput>;
|
|
11
12
|
getServiceSettings(args: GetServiceSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetServiceSettingsCommandOutput>;
|
|
12
13
|
getServiceSettings(args: GetServiceSettingsCommandInput, cb: (err: any, data?: GetServiceSettingsCommandOutput) => void): void;
|
|
13
14
|
getServiceSettings(args: GetServiceSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetServiceSettingsCommandOutput) => void): void;
|
|
14
15
|
/**
|
|
15
16
|
* @see {@link ListLinuxSubscriptionInstancesCommand}
|
|
16
17
|
*/
|
|
18
|
+
listLinuxSubscriptionInstances(): Promise<ListLinuxSubscriptionInstancesCommandOutput>;
|
|
17
19
|
listLinuxSubscriptionInstances(args: ListLinuxSubscriptionInstancesCommandInput, options?: __HttpHandlerOptions): Promise<ListLinuxSubscriptionInstancesCommandOutput>;
|
|
18
20
|
listLinuxSubscriptionInstances(args: ListLinuxSubscriptionInstancesCommandInput, cb: (err: any, data?: ListLinuxSubscriptionInstancesCommandOutput) => void): void;
|
|
19
21
|
listLinuxSubscriptionInstances(args: ListLinuxSubscriptionInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLinuxSubscriptionInstancesCommandOutput) => void): void;
|
|
20
22
|
/**
|
|
21
23
|
* @see {@link ListLinuxSubscriptionsCommand}
|
|
22
24
|
*/
|
|
25
|
+
listLinuxSubscriptions(): Promise<ListLinuxSubscriptionsCommandOutput>;
|
|
23
26
|
listLinuxSubscriptions(args: ListLinuxSubscriptionsCommandInput, options?: __HttpHandlerOptions): Promise<ListLinuxSubscriptionsCommandOutput>;
|
|
24
27
|
listLinuxSubscriptions(args: ListLinuxSubscriptionsCommandInput, cb: (err: any, data?: ListLinuxSubscriptionsCommandOutput) => void): void;
|
|
25
28
|
listLinuxSubscriptions(args: ListLinuxSubscriptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLinuxSubscriptionsCommandOutput) => void): void;
|
|
@@ -31,9 +34,9 @@ export interface LicenseManagerLinuxSubscriptions {
|
|
|
31
34
|
updateServiceSettings(args: UpdateServiceSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateServiceSettingsCommandOutput) => void): void;
|
|
32
35
|
}
|
|
33
36
|
/**
|
|
34
|
-
* @public
|
|
35
37
|
* <p>With License Manager, you can discover and track your commercial Linux subscriptions on running
|
|
36
38
|
* Amazon EC2 instances.</p>
|
|
39
|
+
* @public
|
|
37
40
|
*/
|
|
38
41
|
export declare class LicenseManagerLinuxSubscriptions extends LicenseManagerLinuxSubscriptionsClient implements LicenseManagerLinuxSubscriptions {
|
|
39
42
|
}
|
|
@@ -155,9 +155,9 @@ export type LicenseManagerLinuxSubscriptionsClientResolvedConfigType = __SmithyR
|
|
|
155
155
|
export interface LicenseManagerLinuxSubscriptionsClientResolvedConfig extends LicenseManagerLinuxSubscriptionsClientResolvedConfigType {
|
|
156
156
|
}
|
|
157
157
|
/**
|
|
158
|
-
* @public
|
|
159
158
|
* <p>With License Manager, you can discover and track your commercial Linux subscriptions on running
|
|
160
159
|
* Amazon EC2 instances.</p>
|
|
160
|
+
* @public
|
|
161
161
|
*/
|
|
162
162
|
export declare class LicenseManagerLinuxSubscriptionsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, LicenseManagerLinuxSubscriptionsClientResolvedConfig> {
|
|
163
163
|
/**
|
|
@@ -22,10 +22,10 @@ export interface GetServiceSettingsCommandOutput extends GetServiceSettingsRespo
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetServiceSettingsCommand_base: {
|
|
24
24
|
new (input: GetServiceSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<GetServiceSettingsCommandInput, GetServiceSettingsCommandOutput, LicenseManagerLinuxSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [GetServiceSettingsCommandInput]): import("@smithy/smithy-client").CommandImpl<GetServiceSettingsCommandInput, GetServiceSettingsCommandOutput, LicenseManagerLinuxSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists the Linux subscriptions service settings.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -73,6 +73,7 @@ declare const GetServiceSettingsCommand_base: {
|
|
|
73
73
|
* @throws {@link LicenseManagerLinuxSubscriptionsServiceException}
|
|
74
74
|
* <p>Base exception class for all service exceptions from LicenseManagerLinuxSubscriptions service.</p>
|
|
75
75
|
*
|
|
76
|
+
* @public
|
|
76
77
|
*/
|
|
77
78
|
export declare class GetServiceSettingsCommand extends GetServiceSettingsCommand_base {
|
|
78
79
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListLinuxSubscriptionInstancesCommandOutput extends ListLinuxSu
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListLinuxSubscriptionInstancesCommand_base: {
|
|
24
24
|
new (input: ListLinuxSubscriptionInstancesCommandInput): import("@smithy/smithy-client").CommandImpl<ListLinuxSubscriptionInstancesCommandInput, ListLinuxSubscriptionInstancesCommandOutput, LicenseManagerLinuxSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListLinuxSubscriptionInstancesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListLinuxSubscriptionInstancesCommandInput, ListLinuxSubscriptionInstancesCommandOutput, LicenseManagerLinuxSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists the running Amazon EC2 instances that were discovered with commercial Linux
|
|
30
30
|
* subscriptions.</p>
|
|
31
31
|
* @example
|
|
@@ -89,6 +89,7 @@ declare const ListLinuxSubscriptionInstancesCommand_base: {
|
|
|
89
89
|
* @throws {@link LicenseManagerLinuxSubscriptionsServiceException}
|
|
90
90
|
* <p>Base exception class for all service exceptions from LicenseManagerLinuxSubscriptions service.</p>
|
|
91
91
|
*
|
|
92
|
+
* @public
|
|
92
93
|
*/
|
|
93
94
|
export declare class ListLinuxSubscriptionInstancesCommand extends ListLinuxSubscriptionInstancesCommand_base {
|
|
94
95
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListLinuxSubscriptionsCommandOutput extends ListLinuxSubscripti
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListLinuxSubscriptionsCommand_base: {
|
|
24
24
|
new (input: ListLinuxSubscriptionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListLinuxSubscriptionsCommandInput, ListLinuxSubscriptionsCommandOutput, LicenseManagerLinuxSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListLinuxSubscriptionsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListLinuxSubscriptionsCommandInput, ListLinuxSubscriptionsCommandOutput, LicenseManagerLinuxSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists the Linux subscriptions that have been discovered. If you have linked your
|
|
30
30
|
* organization, the returned results will include data aggregated across your accounts in
|
|
31
31
|
* Organizations.</p>
|
|
@@ -81,6 +81,7 @@ declare const ListLinuxSubscriptionsCommand_base: {
|
|
|
81
81
|
* @throws {@link LicenseManagerLinuxSubscriptionsServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from LicenseManagerLinuxSubscriptions service.</p>
|
|
83
83
|
*
|
|
84
|
+
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class ListLinuxSubscriptionsCommand extends ListLinuxSubscriptionsCommand_base {
|
|
86
87
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateServiceSettingsCommandOutput extends UpdateServiceSetting
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateServiceSettingsCommand_base: {
|
|
24
24
|
new (input: UpdateServiceSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateServiceSettingsCommandInput, UpdateServiceSettingsCommandOutput, LicenseManagerLinuxSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateServiceSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateServiceSettingsCommandInput, UpdateServiceSettingsCommandOutput, LicenseManagerLinuxSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates the service settings for Linux subscriptions.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -82,6 +82,7 @@ declare const UpdateServiceSettingsCommand_base: {
|
|
|
82
82
|
* @throws {@link LicenseManagerLinuxSubscriptionsServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from LicenseManagerLinuxSubscriptions service.</p>
|
|
84
84
|
*
|
|
85
|
+
* @public
|
|
85
86
|
*/
|
|
86
87
|
export declare class UpdateServiceSettingsCommand extends UpdateServiceSettingsCommand_base {
|
|
87
88
|
}
|
|
@@ -23,24 +23,24 @@ export declare const Operator: {
|
|
|
23
23
|
*/
|
|
24
24
|
export type Operator = (typeof Operator)[keyof typeof Operator];
|
|
25
25
|
/**
|
|
26
|
-
* @public
|
|
27
26
|
* <p>A filter object that is used to return more specific results from a describe operation.
|
|
28
27
|
* Filters can be used to match a set of resources by specific criteria.</p>
|
|
28
|
+
* @public
|
|
29
29
|
*/
|
|
30
30
|
export interface Filter {
|
|
31
31
|
/**
|
|
32
|
-
* @public
|
|
33
32
|
* <p>The type of name to filter by.</p>
|
|
33
|
+
* @public
|
|
34
34
|
*/
|
|
35
35
|
Name?: string;
|
|
36
36
|
/**
|
|
37
|
-
* @public
|
|
38
37
|
* <p>One or more values for the name to filter by.</p>
|
|
38
|
+
* @public
|
|
39
39
|
*/
|
|
40
40
|
Values?: string[];
|
|
41
41
|
/**
|
|
42
|
-
* @public
|
|
43
42
|
* <p>An operator for filtering results.</p>
|
|
43
|
+
* @public
|
|
44
44
|
*/
|
|
45
45
|
Operator?: Operator;
|
|
46
46
|
}
|
|
@@ -86,18 +86,18 @@ export declare const OrganizationIntegration: {
|
|
|
86
86
|
*/
|
|
87
87
|
export type OrganizationIntegration = (typeof OrganizationIntegration)[keyof typeof OrganizationIntegration];
|
|
88
88
|
/**
|
|
89
|
-
* @public
|
|
90
89
|
* <p>Lists the settings defined for discovering Linux subscriptions.</p>
|
|
90
|
+
* @public
|
|
91
91
|
*/
|
|
92
92
|
export interface LinuxSubscriptionsDiscoverySettings {
|
|
93
93
|
/**
|
|
94
|
-
* @public
|
|
95
94
|
* <p>The Regions in which to discover data for Linux subscriptions.</p>
|
|
95
|
+
* @public
|
|
96
96
|
*/
|
|
97
97
|
SourceRegions: string[] | undefined;
|
|
98
98
|
/**
|
|
99
|
-
* @public
|
|
100
99
|
* <p>Details if you have enabled resource discovery across your accounts in Organizations.</p>
|
|
100
|
+
* @public
|
|
101
101
|
*/
|
|
102
102
|
OrganizationIntegration: OrganizationIntegration | undefined;
|
|
103
103
|
}
|
|
@@ -132,36 +132,36 @@ export type Status = (typeof Status)[keyof typeof Status];
|
|
|
132
132
|
*/
|
|
133
133
|
export interface GetServiceSettingsResponse {
|
|
134
134
|
/**
|
|
135
|
-
* @public
|
|
136
135
|
* <p>Lists if discovery has been enabled for Linux subscriptions.</p>
|
|
136
|
+
* @public
|
|
137
137
|
*/
|
|
138
138
|
LinuxSubscriptionsDiscovery?: LinuxSubscriptionsDiscovery;
|
|
139
139
|
/**
|
|
140
|
-
* @public
|
|
141
140
|
* <p>Lists the settings defined for Linux subscriptions discovery. The settings include if
|
|
142
141
|
* Organizations integration has been enabled, and which Regions data will be aggregated from.</p>
|
|
142
|
+
* @public
|
|
143
143
|
*/
|
|
144
144
|
LinuxSubscriptionsDiscoverySettings?: LinuxSubscriptionsDiscoverySettings;
|
|
145
145
|
/**
|
|
146
|
-
* @public
|
|
147
146
|
* <p>Indicates the status of Linux subscriptions settings being applied.</p>
|
|
147
|
+
* @public
|
|
148
148
|
*/
|
|
149
149
|
Status?: Status;
|
|
150
150
|
/**
|
|
151
|
-
* @public
|
|
152
151
|
* <p>A message which details the Linux subscriptions service settings current status.</p>
|
|
152
|
+
* @public
|
|
153
153
|
*/
|
|
154
154
|
StatusMessage?: Record<string, string>;
|
|
155
155
|
/**
|
|
156
|
-
* @public
|
|
157
156
|
* <p>The Region in which License Manager displays the aggregated data for Linux
|
|
158
157
|
* subscriptions.</p>
|
|
158
|
+
* @public
|
|
159
159
|
*/
|
|
160
160
|
HomeRegions?: string[];
|
|
161
161
|
}
|
|
162
162
|
/**
|
|
163
|
-
* @public
|
|
164
163
|
* <p>An exception occurred with the service.</p>
|
|
164
|
+
* @public
|
|
165
165
|
*/
|
|
166
166
|
export declare class InternalServerException extends __BaseException {
|
|
167
167
|
readonly name: "InternalServerException";
|
|
@@ -172,8 +172,8 @@ export declare class InternalServerException extends __BaseException {
|
|
|
172
172
|
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
173
173
|
}
|
|
174
174
|
/**
|
|
175
|
-
* @public
|
|
176
175
|
* <p>The request was denied due to request throttling.</p>
|
|
176
|
+
* @public
|
|
177
177
|
*/
|
|
178
178
|
export declare class ThrottlingException extends __BaseException {
|
|
179
179
|
readonly name: "ThrottlingException";
|
|
@@ -184,8 +184,8 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
184
184
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
185
185
|
}
|
|
186
186
|
/**
|
|
187
|
-
* @public
|
|
188
187
|
* <p>The provided input is not valid. Try your request again.</p>
|
|
188
|
+
* @public
|
|
189
189
|
*/
|
|
190
190
|
export declare class ValidationException extends __BaseException {
|
|
191
191
|
readonly name: "ValidationException";
|
|
@@ -196,72 +196,71 @@ export declare class ValidationException extends __BaseException {
|
|
|
196
196
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
197
197
|
}
|
|
198
198
|
/**
|
|
199
|
-
* @public
|
|
200
199
|
* <p>Details discovered information about a running instance using Linux subscriptions.</p>
|
|
200
|
+
* @public
|
|
201
201
|
*/
|
|
202
202
|
export interface Instance {
|
|
203
203
|
/**
|
|
204
|
-
* @public
|
|
205
204
|
* <p>The AMI ID used to launch the instance.</p>
|
|
205
|
+
* @public
|
|
206
206
|
*/
|
|
207
207
|
AmiId?: string;
|
|
208
208
|
/**
|
|
209
|
-
* @public
|
|
210
209
|
* <p>The instance ID of the resource.</p>
|
|
210
|
+
* @public
|
|
211
211
|
*/
|
|
212
212
|
InstanceID?: string;
|
|
213
213
|
/**
|
|
214
|
-
* @public
|
|
215
214
|
* <p>The instance type of the resource.</p>
|
|
215
|
+
* @public
|
|
216
216
|
*/
|
|
217
217
|
InstanceType?: string;
|
|
218
218
|
/**
|
|
219
|
-
* @public
|
|
220
219
|
* <p>The account ID which owns the instance.</p>
|
|
220
|
+
* @public
|
|
221
221
|
*/
|
|
222
222
|
AccountID?: string;
|
|
223
223
|
/**
|
|
224
|
-
* @public
|
|
225
224
|
* <p>The status of the instance.</p>
|
|
225
|
+
* @public
|
|
226
226
|
*/
|
|
227
227
|
Status?: string;
|
|
228
228
|
/**
|
|
229
|
-
* @public
|
|
230
229
|
* <p>The Region the instance is running in.</p>
|
|
230
|
+
* @public
|
|
231
231
|
*/
|
|
232
232
|
Region?: string;
|
|
233
233
|
/**
|
|
234
|
-
* @public
|
|
235
234
|
* <p>The usage operation of the instance. For more information, see For more information, see
|
|
236
235
|
* <a href="https://docs.aws.amazon.com/license-manager/latest/userguide/linux-subscriptions-usage-operation.html">Usage
|
|
237
236
|
* operation values</a> in the <i>License Manager User Guide</i>.</p>
|
|
237
|
+
* @public
|
|
238
238
|
*/
|
|
239
239
|
UsageOperation?: string;
|
|
240
240
|
/**
|
|
241
|
-
* @public
|
|
242
241
|
* <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
|
|
243
242
|
* operation values</a> in the <i>License Manager User Guide</i> .</p>
|
|
243
|
+
* @public
|
|
244
244
|
*/
|
|
245
245
|
ProductCode?: string[];
|
|
246
246
|
/**
|
|
247
|
-
* @public
|
|
248
247
|
* <p>The time in which the last discovery updated the instance details.</p>
|
|
248
|
+
* @public
|
|
249
249
|
*/
|
|
250
250
|
LastUpdatedTime?: string;
|
|
251
251
|
/**
|
|
252
|
-
* @public
|
|
253
252
|
* <p>The name of the subscription being used by the instance.</p>
|
|
253
|
+
* @public
|
|
254
254
|
*/
|
|
255
255
|
SubscriptionName?: string;
|
|
256
256
|
}
|
|
257
257
|
/**
|
|
258
|
-
* @public
|
|
259
258
|
* NextToken length limit is half of ddb accepted limit.
|
|
260
259
|
* Increase this limit if parameters in request increases.
|
|
260
|
+
* @public
|
|
261
261
|
*/
|
|
262
262
|
export interface ListLinuxSubscriptionInstancesRequest {
|
|
263
263
|
/**
|
|
264
|
-
* @public
|
|
265
264
|
* <p>An array of structures that you can use to filter the results to those that match one or
|
|
266
265
|
* more sets of key-value pairs that you specify. For example, you can filter by the name of
|
|
267
266
|
* <code>AmiID</code> with an optional operator to see subscriptions that match, partially
|
|
@@ -327,16 +326,17 @@ export interface ListLinuxSubscriptionInstancesRequest {
|
|
|
327
326
|
* </p>
|
|
328
327
|
* </li>
|
|
329
328
|
* </ul>
|
|
329
|
+
* @public
|
|
330
330
|
*/
|
|
331
331
|
Filters?: Filter[];
|
|
332
332
|
/**
|
|
333
|
-
* @public
|
|
334
333
|
* <p>Maximum number of results to return in a single call.</p>
|
|
334
|
+
* @public
|
|
335
335
|
*/
|
|
336
336
|
MaxResults?: number;
|
|
337
337
|
/**
|
|
338
|
-
* @public
|
|
339
338
|
* <p>Token for the next set of results.</p>
|
|
339
|
+
* @public
|
|
340
340
|
*/
|
|
341
341
|
NextToken?: string;
|
|
342
342
|
}
|
|
@@ -345,24 +345,23 @@ export interface ListLinuxSubscriptionInstancesRequest {
|
|
|
345
345
|
*/
|
|
346
346
|
export interface ListLinuxSubscriptionInstancesResponse {
|
|
347
347
|
/**
|
|
348
|
-
* @public
|
|
349
348
|
* <p>An array that contains instance objects.</p>
|
|
349
|
+
* @public
|
|
350
350
|
*/
|
|
351
351
|
Instances?: Instance[];
|
|
352
352
|
/**
|
|
353
|
-
* @public
|
|
354
353
|
* <p>Token for the next set of results.</p>
|
|
354
|
+
* @public
|
|
355
355
|
*/
|
|
356
356
|
NextToken?: string;
|
|
357
357
|
}
|
|
358
358
|
/**
|
|
359
|
-
* @public
|
|
360
359
|
* NextToken length limit is half of ddb accepted limit.
|
|
361
360
|
* Increase this limit if parameters in request increases.
|
|
361
|
+
* @public
|
|
362
362
|
*/
|
|
363
363
|
export interface ListLinuxSubscriptionsRequest {
|
|
364
364
|
/**
|
|
365
|
-
* @public
|
|
366
365
|
* <p>An array of structures that you can use to filter the results to those that match one or
|
|
367
366
|
* more sets of key-value pairs that you specify. For example, you can filter by the name of
|
|
368
367
|
* <code>Subscription</code> with an optional operator to see subscriptions that match,
|
|
@@ -393,39 +392,40 @@ export interface ListLinuxSubscriptionsRequest {
|
|
|
393
392
|
* </p>
|
|
394
393
|
* </li>
|
|
395
394
|
* </ul>
|
|
395
|
+
* @public
|
|
396
396
|
*/
|
|
397
397
|
Filters?: Filter[];
|
|
398
398
|
/**
|
|
399
|
-
* @public
|
|
400
399
|
* <p>Maximum number of results to return in a single call.</p>
|
|
400
|
+
* @public
|
|
401
401
|
*/
|
|
402
402
|
MaxResults?: number;
|
|
403
403
|
/**
|
|
404
|
-
* @public
|
|
405
404
|
* <p>Token for the next set of results.</p>
|
|
405
|
+
* @public
|
|
406
406
|
*/
|
|
407
407
|
NextToken?: string;
|
|
408
408
|
}
|
|
409
409
|
/**
|
|
410
|
-
* @public
|
|
411
410
|
* <p>An object which details a discovered Linux subscription.</p>
|
|
411
|
+
* @public
|
|
412
412
|
*/
|
|
413
413
|
export interface Subscription {
|
|
414
414
|
/**
|
|
415
|
-
* @public
|
|
416
415
|
* <p>The name of the subscription.</p>
|
|
416
|
+
* @public
|
|
417
417
|
*/
|
|
418
418
|
Name?: string;
|
|
419
419
|
/**
|
|
420
|
-
* @public
|
|
421
420
|
* <p>The type of subscription. The type can be subscription-included with Amazon EC2, Bring Your Own
|
|
422
421
|
* Subscription model (BYOS), or from the Amazon Web Services Marketplace. Certain subscriptions may use licensing from the
|
|
423
422
|
* Amazon Web Services Marketplace as well as OS licensing from Amazon EC2 or BYOS.</p>
|
|
423
|
+
* @public
|
|
424
424
|
*/
|
|
425
425
|
Type?: string;
|
|
426
426
|
/**
|
|
427
|
-
* @public
|
|
428
427
|
* <p>The total amount of running instances using this subscription.</p>
|
|
428
|
+
* @public
|
|
429
429
|
*/
|
|
430
430
|
InstanceCount?: number;
|
|
431
431
|
}
|
|
@@ -434,13 +434,13 @@ export interface Subscription {
|
|
|
434
434
|
*/
|
|
435
435
|
export interface ListLinuxSubscriptionsResponse {
|
|
436
436
|
/**
|
|
437
|
-
* @public
|
|
438
437
|
* <p>An array that contains subscription objects.</p>
|
|
438
|
+
* @public
|
|
439
439
|
*/
|
|
440
440
|
Subscriptions?: Subscription[];
|
|
441
441
|
/**
|
|
442
|
-
* @public
|
|
443
442
|
* <p>Token for the next set of results.</p>
|
|
443
|
+
* @public
|
|
444
444
|
*/
|
|
445
445
|
NextToken?: string;
|
|
446
446
|
}
|
|
@@ -449,20 +449,20 @@ export interface ListLinuxSubscriptionsResponse {
|
|
|
449
449
|
*/
|
|
450
450
|
export interface UpdateServiceSettingsRequest {
|
|
451
451
|
/**
|
|
452
|
-
* @public
|
|
453
452
|
* <p>Describes if the discovery of Linux subscriptions is enabled.</p>
|
|
453
|
+
* @public
|
|
454
454
|
*/
|
|
455
455
|
LinuxSubscriptionsDiscovery: LinuxSubscriptionsDiscovery | undefined;
|
|
456
456
|
/**
|
|
457
|
-
* @public
|
|
458
457
|
* <p>The settings defined for Linux subscriptions discovery. The settings include if Organizations
|
|
459
458
|
* integration has been enabled, and which Regions data will be aggregated from.</p>
|
|
459
|
+
* @public
|
|
460
460
|
*/
|
|
461
461
|
LinuxSubscriptionsDiscoverySettings: LinuxSubscriptionsDiscoverySettings | undefined;
|
|
462
462
|
/**
|
|
463
|
-
* @public
|
|
464
463
|
* <p>Describes if updates are allowed to the service settings for Linux subscriptions. If you
|
|
465
464
|
* allow updates, you can aggregate Linux subscription data in more than one home Region.</p>
|
|
465
|
+
* @public
|
|
466
466
|
*/
|
|
467
467
|
AllowUpdate?: boolean;
|
|
468
468
|
}
|
|
@@ -471,30 +471,30 @@ export interface UpdateServiceSettingsRequest {
|
|
|
471
471
|
*/
|
|
472
472
|
export interface UpdateServiceSettingsResponse {
|
|
473
473
|
/**
|
|
474
|
-
* @public
|
|
475
474
|
* <p>Lists if discovery has been enabled for Linux subscriptions.</p>
|
|
475
|
+
* @public
|
|
476
476
|
*/
|
|
477
477
|
LinuxSubscriptionsDiscovery?: LinuxSubscriptionsDiscovery;
|
|
478
478
|
/**
|
|
479
|
-
* @public
|
|
480
479
|
* <p>The settings defined for Linux subscriptions discovery. The settings include if Organizations
|
|
481
480
|
* integration has been enabled, and which Regions data will be aggregated from.</p>
|
|
481
|
+
* @public
|
|
482
482
|
*/
|
|
483
483
|
LinuxSubscriptionsDiscoverySettings?: LinuxSubscriptionsDiscoverySettings;
|
|
484
484
|
/**
|
|
485
|
-
* @public
|
|
486
485
|
* <p>Indicates the status of Linux subscriptions settings being applied.</p>
|
|
486
|
+
* @public
|
|
487
487
|
*/
|
|
488
488
|
Status?: Status;
|
|
489
489
|
/**
|
|
490
|
-
* @public
|
|
491
490
|
* <p>A message which details the Linux subscriptions service settings current status.</p>
|
|
491
|
+
* @public
|
|
492
492
|
*/
|
|
493
493
|
StatusMessage?: Record<string, string>;
|
|
494
494
|
/**
|
|
495
|
-
* @public
|
|
496
495
|
* <p>The Region in which License Manager displays the aggregated data for Linux
|
|
497
496
|
* subscriptions.</p>
|
|
497
|
+
* @public
|
|
498
498
|
*/
|
|
499
499
|
HomeRegions?: string[];
|
|
500
500
|
}
|
|
@@ -20,9 +20,9 @@ export declare const getRuntimeConfig: (config: LicenseManagerLinuxSubscriptions
|
|
|
20
20
|
apiVersion: string;
|
|
21
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
22
|
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
-
base64Encoder:
|
|
23
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
24
24
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
25
|
-
utf8Encoder:
|
|
25
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
serviceId: string;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -20,9 +20,9 @@ export declare const getRuntimeConfig: (config: LicenseManagerLinuxSubscriptions
|
|
|
20
20
|
apiVersion: string;
|
|
21
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
22
|
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
-
base64Encoder:
|
|
23
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
24
24
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
25
|
-
utf8Encoder:
|
|
25
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
serviceId: string;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -11,9 +11,9 @@ export declare const getRuntimeConfig: (config: LicenseManagerLinuxSubscriptions
|
|
|
11
11
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@smithy/types").Decoder;
|
|
14
|
-
base64Encoder:
|
|
14
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
15
15
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
16
|
-
utf8Encoder:
|
|
16
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
17
17
|
disableHostPrefix: boolean;
|
|
18
18
|
serviceId: string;
|
|
19
19
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -5,7 +5,7 @@ import { LicenseManagerLinuxSubscriptionsClientConfig } from "./LicenseManagerLi
|
|
|
5
5
|
export declare const getRuntimeConfig: (config: LicenseManagerLinuxSubscriptionsClientConfig) => {
|
|
6
6
|
apiVersion: string;
|
|
7
7
|
base64Decoder: import("@smithy/types").Decoder;
|
|
8
|
-
base64Encoder:
|
|
8
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
9
9
|
disableHostPrefix: boolean;
|
|
10
10
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
11
|
logger?: import("@smithy/types").Logger | undefined;
|
|
@@ -17,5 +17,5 @@ export declare const getRuntimeConfig: (config: LicenseManagerLinuxSubscriptions
|
|
|
17
17
|
serviceId: string;
|
|
18
18
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
19
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
20
|
-
utf8Encoder:
|
|
20
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
21
21
|
};
|
|
@@ -17,6 +17,7 @@ import {
|
|
|
17
17
|
} from "./commands/UpdateServiceSettingsCommand";
|
|
18
18
|
import { LicenseManagerLinuxSubscriptionsClient } from "./LicenseManagerLinuxSubscriptionsClient";
|
|
19
19
|
export interface LicenseManagerLinuxSubscriptions {
|
|
20
|
+
getServiceSettings(): Promise<GetServiceSettingsCommandOutput>;
|
|
20
21
|
getServiceSettings(
|
|
21
22
|
args: GetServiceSettingsCommandInput,
|
|
22
23
|
options?: __HttpHandlerOptions
|
|
@@ -30,6 +31,7 @@ export interface LicenseManagerLinuxSubscriptions {
|
|
|
30
31
|
options: __HttpHandlerOptions,
|
|
31
32
|
cb: (err: any, data?: GetServiceSettingsCommandOutput) => void
|
|
32
33
|
): void;
|
|
34
|
+
listLinuxSubscriptionInstances(): Promise<ListLinuxSubscriptionInstancesCommandOutput>;
|
|
33
35
|
listLinuxSubscriptionInstances(
|
|
34
36
|
args: ListLinuxSubscriptionInstancesCommandInput,
|
|
35
37
|
options?: __HttpHandlerOptions
|
|
@@ -43,6 +45,7 @@ export interface LicenseManagerLinuxSubscriptions {
|
|
|
43
45
|
options: __HttpHandlerOptions,
|
|
44
46
|
cb: (err: any, data?: ListLinuxSubscriptionInstancesCommandOutput) => void
|
|
45
47
|
): void;
|
|
48
|
+
listLinuxSubscriptions(): Promise<ListLinuxSubscriptionsCommandOutput>;
|
|
46
49
|
listLinuxSubscriptions(
|
|
47
50
|
args: ListLinuxSubscriptionsCommandInput,
|
|
48
51
|
options?: __HttpHandlerOptions
|
|
@@ -25,6 +25,15 @@ declare const GetServiceSettingsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [GetServiceSettingsCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetServiceSettingsCommandInput,
|
|
32
|
+
GetServiceSettingsCommandOutput,
|
|
33
|
+
LicenseManagerLinuxSubscriptionsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class GetServiceSettingsCommand extends GetServiceSettingsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const ListLinuxSubscriptionInstancesCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [ListLinuxSubscriptionInstancesCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListLinuxSubscriptionInstancesCommandInput,
|
|
32
|
+
ListLinuxSubscriptionInstancesCommandOutput,
|
|
33
|
+
LicenseManagerLinuxSubscriptionsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class ListLinuxSubscriptionInstancesCommand extends ListLinuxSubscriptionInstancesCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const ListLinuxSubscriptionsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [ListLinuxSubscriptionsCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListLinuxSubscriptionsCommandInput,
|
|
32
|
+
ListLinuxSubscriptionsCommandOutput,
|
|
33
|
+
LicenseManagerLinuxSubscriptionsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class ListLinuxSubscriptionsCommand extends ListLinuxSubscriptionsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const UpdateServiceSettingsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: UpdateServiceSettingsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
UpdateServiceSettingsCommandInput,
|
|
32
|
+
UpdateServiceSettingsCommandOutput,
|
|
33
|
+
LicenseManagerLinuxSubscriptionsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class UpdateServiceSettingsCommand extends UpdateServiceSettingsCommand_base {}
|
|
@@ -27,9 +27,9 @@ export declare const getRuntimeConfig: (
|
|
|
27
27
|
apiVersion: string;
|
|
28
28
|
urlParser: import("@smithy/types").UrlParser;
|
|
29
29
|
base64Decoder: import("@smithy/types").Decoder;
|
|
30
|
-
base64Encoder:
|
|
30
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
31
31
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
32
|
-
utf8Encoder:
|
|
32
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
33
33
|
disableHostPrefix: boolean;
|
|
34
34
|
serviceId: string;
|
|
35
35
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,9 +31,9 @@ export declare const getRuntimeConfig: (
|
|
|
31
31
|
apiVersion: string;
|
|
32
32
|
urlParser: import("@smithy/types").UrlParser;
|
|
33
33
|
base64Decoder: import("@smithy/types").Decoder;
|
|
34
|
-
base64Encoder:
|
|
34
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
35
35
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
36
|
-
utf8Encoder:
|
|
36
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
37
37
|
disableHostPrefix: boolean;
|
|
38
38
|
serviceId: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
@@ -15,9 +15,9 @@ export declare const getRuntimeConfig: (
|
|
|
15
15
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
16
16
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
17
17
|
base64Decoder: import("@smithy/types").Decoder;
|
|
18
|
-
base64Encoder:
|
|
18
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
19
19
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
20
|
-
utf8Encoder:
|
|
20
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
21
21
|
disableHostPrefix: boolean;
|
|
22
22
|
serviceId: string;
|
|
23
23
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -4,7 +4,7 @@ export declare const getRuntimeConfig: (
|
|
|
4
4
|
) => {
|
|
5
5
|
apiVersion: string;
|
|
6
6
|
base64Decoder: import("@smithy/types").Decoder;
|
|
7
|
-
base64Encoder:
|
|
7
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
8
8
|
disableHostPrefix: boolean;
|
|
9
9
|
endpointProvider: (
|
|
10
10
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
@@ -19,5 +19,5 @@ export declare const getRuntimeConfig: (
|
|
|
19
19
|
serviceId: string;
|
|
20
20
|
urlParser: import("@smithy/types").UrlParser;
|
|
21
21
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
22
|
-
utf8Encoder:
|
|
22
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
23
23
|
};
|
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.
|
|
4
|
+
"version": "3.535.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-license-manager-linux-subscriptions",
|
|
@@ -20,47 +20,47 @@
|
|
|
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.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
-
"@smithy/config-resolver": "^2.
|
|
36
|
-
"@smithy/core": "^1.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.
|
|
38
|
-
"@smithy/hash-node": "^2.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.
|
|
42
|
-
"@smithy/middleware-retry": "^2.
|
|
43
|
-
"@smithy/middleware-serde": "^2.
|
|
44
|
-
"@smithy/middleware-stack": "^2.
|
|
45
|
-
"@smithy/node-config-provider": "^2.
|
|
46
|
-
"@smithy/node-http-handler": "^2.
|
|
47
|
-
"@smithy/protocol-http": "^3.
|
|
48
|
-
"@smithy/smithy-client": "^2.
|
|
49
|
-
"@smithy/types": "^2.
|
|
50
|
-
"@smithy/url-parser": "^2.
|
|
51
|
-
"@smithy/util-base64": "^2.
|
|
52
|
-
"@smithy/util-body-length-browser": "^2.
|
|
53
|
-
"@smithy/util-body-length-node": "^2.
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.
|
|
56
|
-
"@smithy/util-endpoints": "^1.
|
|
57
|
-
"@smithy/util-middleware": "^2.
|
|
58
|
-
"@smithy/util-retry": "^2.
|
|
59
|
-
"@smithy/util-utf8": "^2.
|
|
60
|
-
"tslib": "^2.
|
|
23
|
+
"@aws-sdk/client-sts": "3.535.0",
|
|
24
|
+
"@aws-sdk/core": "3.535.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.535.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.535.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.535.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.535.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.535.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.535.0",
|
|
31
|
+
"@aws-sdk/types": "3.535.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.535.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.535.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.535.0",
|
|
35
|
+
"@smithy/config-resolver": "^2.2.0",
|
|
36
|
+
"@smithy/core": "^1.4.0",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.5.0",
|
|
38
|
+
"@smithy/hash-node": "^2.2.0",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.2.0",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.2.0",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.5.0",
|
|
42
|
+
"@smithy/middleware-retry": "^2.2.0",
|
|
43
|
+
"@smithy/middleware-serde": "^2.3.0",
|
|
44
|
+
"@smithy/middleware-stack": "^2.2.0",
|
|
45
|
+
"@smithy/node-config-provider": "^2.3.0",
|
|
46
|
+
"@smithy/node-http-handler": "^2.5.0",
|
|
47
|
+
"@smithy/protocol-http": "^3.3.0",
|
|
48
|
+
"@smithy/smithy-client": "^2.5.0",
|
|
49
|
+
"@smithy/types": "^2.12.0",
|
|
50
|
+
"@smithy/url-parser": "^2.2.0",
|
|
51
|
+
"@smithy/util-base64": "^2.3.0",
|
|
52
|
+
"@smithy/util-body-length-browser": "^2.2.0",
|
|
53
|
+
"@smithy/util-body-length-node": "^2.3.0",
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.2.0",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.3.0",
|
|
56
|
+
"@smithy/util-endpoints": "^1.2.0",
|
|
57
|
+
"@smithy/util-middleware": "^2.2.0",
|
|
58
|
+
"@smithy/util-retry": "^2.2.0",
|
|
59
|
+
"@smithy/util-utf8": "^2.3.0",
|
|
60
|
+
"tslib": "^2.6.2"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@smithy/service-client-documentation-generator": "^2.
|
|
63
|
+
"@smithy/service-client-documentation-generator": "^2.2.0",
|
|
64
64
|
"@tsconfig/node14": "1.0.3",
|
|
65
65
|
"@types/node": "^14.14.31",
|
|
66
66
|
"concurrently": "7.0.0",
|