@aws-sdk/client-license-manager-linux-subscriptions 3.952.0 → 3.954.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-cjs/index.js +146 -109
- package/dist-cjs/runtimeConfig.shared.js +6 -2
- package/dist-es/commands/DeregisterSubscriptionProviderCommand.js +2 -2
- package/dist-es/commands/GetRegisteredSubscriptionProviderCommand.js +2 -2
- package/dist-es/commands/GetServiceSettingsCommand.js +2 -2
- package/dist-es/commands/ListLinuxSubscriptionInstancesCommand.js +2 -2
- package/dist-es/commands/ListLinuxSubscriptionsCommand.js +2 -2
- package/dist-es/commands/ListRegisteredSubscriptionProvidersCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/RegisterSubscriptionProviderCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateServiceSettingsCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -2
- package/dist-es/schemas/schemas_0.js +85 -91
- package/dist-types/LicenseManagerLinuxSubscriptionsClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +44 -54
- package/dist-types/ts3.4/LicenseManagerLinuxSubscriptionsClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +43 -55
- package/package.json +34 -34
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListRegisteredSubscriptionProviders } from "../schemas/schemas_0";
|
|
4
|
+
import { ListRegisteredSubscriptionProviders$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListRegisteredSubscriptionProvidersCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListRegisteredSubscriptionProvidersCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("LicenseManagerLinuxSubscriptions", "ListRegisteredSubscriptionProviders", {})
|
|
13
13
|
.n("LicenseManagerLinuxSubscriptionsClient", "ListRegisteredSubscriptionProvidersCommand")
|
|
14
|
-
.sc(ListRegisteredSubscriptionProviders)
|
|
14
|
+
.sc(ListRegisteredSubscriptionProviders$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("LicenseManagerLinuxSubscriptions", "ListTagsForResource", {})
|
|
13
13
|
.n("LicenseManagerLinuxSubscriptionsClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { RegisterSubscriptionProvider } from "../schemas/schemas_0";
|
|
4
|
+
import { RegisterSubscriptionProvider$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RegisterSubscriptionProviderCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RegisterSubscriptionProviderCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("LicenseManagerLinuxSubscriptions", "RegisterSubscriptionProvider", {})
|
|
13
13
|
.n("LicenseManagerLinuxSubscriptionsClient", "RegisterSubscriptionProviderCommand")
|
|
14
|
-
.sc(RegisterSubscriptionProvider)
|
|
14
|
+
.sc(RegisterSubscriptionProvider$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("LicenseManagerLinuxSubscriptions", "TagResource", {})
|
|
13
13
|
.n("LicenseManagerLinuxSubscriptionsClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("LicenseManagerLinuxSubscriptions", "UntagResource", {})
|
|
13
13
|
.n("LicenseManagerLinuxSubscriptionsClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateServiceSettings } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateServiceSettings$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateServiceSettingsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateServiceSettingsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("LicenseManagerLinuxSubscriptions", "UpdateServiceSettings", {})
|
|
13
13
|
.n("LicenseManagerLinuxSubscriptionsClient", "UpdateServiceSettingsCommand")
|
|
14
|
-
.sc(UpdateServiceSettings)
|
|
14
|
+
.sc(UpdateServiceSettings$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./LicenseManagerLinuxSubscriptionsClient";
|
|
2
2
|
export * from "./LicenseManagerLinuxSubscriptions";
|
|
3
3
|
export * from "./commands";
|
|
4
|
+
export * from "./schemas/schemas_0";
|
|
4
5
|
export * from "./pagination";
|
|
5
6
|
export * from "./models/enums";
|
|
6
7
|
export * from "./models/errors";
|
|
@@ -23,8 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
27
|
-
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.licensemanagerlinuxsubscriptions",
|
|
29
|
+
version: "2018-05-10",
|
|
30
|
+
serviceTarget: "LicenseManagerLinuxSubscriptions",
|
|
31
|
+
},
|
|
28
32
|
serviceId: config?.serviceId ?? "License Manager Linux Subscriptions",
|
|
29
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
30
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
@@ -97,13 +97,13 @@ const _t = "tags";
|
|
|
97
97
|
const _tK = "tagKeys";
|
|
98
98
|
const n0 = "com.amazonaws.licensemanagerlinuxsubscriptions";
|
|
99
99
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
100
|
-
import { InternalServerException
|
|
101
|
-
import { LicenseManagerLinuxSubscriptionsServiceException
|
|
102
|
-
export var DeregisterSubscriptionProviderRequest = [3, n0, _DSPR, 0, [_SPA], [0]];
|
|
103
|
-
export var DeregisterSubscriptionProviderResponse = [3, n0, _DSPRe, 0, [], []];
|
|
104
|
-
export var Filter = [3, n0, _F, 0, [_N, _V, _O], [0, 64 | 0, 0]];
|
|
105
|
-
export var GetRegisteredSubscriptionProviderRequest = [3, n0, _GRSPR, 0, [_SPA], [0]];
|
|
106
|
-
export var GetRegisteredSubscriptionProviderResponse = [
|
|
100
|
+
import { InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, } from "../models/errors";
|
|
101
|
+
import { LicenseManagerLinuxSubscriptionsServiceException } from "../models/LicenseManagerLinuxSubscriptionsServiceException";
|
|
102
|
+
export var DeregisterSubscriptionProviderRequest$ = [3, n0, _DSPR, 0, [_SPA], [0]];
|
|
103
|
+
export var DeregisterSubscriptionProviderResponse$ = [3, n0, _DSPRe, 0, [], []];
|
|
104
|
+
export var Filter$ = [3, n0, _F, 0, [_N, _V, _O], [0, 64 | 0, 0]];
|
|
105
|
+
export var GetRegisteredSubscriptionProviderRequest$ = [3, n0, _GRSPR, 0, [_SPA], [0]];
|
|
106
|
+
export var GetRegisteredSubscriptionProviderResponse$ = [
|
|
107
107
|
3,
|
|
108
108
|
n0,
|
|
109
109
|
_GRSPRe,
|
|
@@ -111,16 +111,16 @@ export var GetRegisteredSubscriptionProviderResponse = [
|
|
|
111
111
|
[_SPA, _SPS, _SA, _SPSu, _SPSM, _LSDRT],
|
|
112
112
|
[0, 0, 0, 0, 0, 0],
|
|
113
113
|
];
|
|
114
|
-
export var GetServiceSettingsRequest = [3, n0, _GSSR, 0, [], []];
|
|
115
|
-
export var GetServiceSettingsResponse = [
|
|
114
|
+
export var GetServiceSettingsRequest$ = [3, n0, _GSSR, 0, [], []];
|
|
115
|
+
export var GetServiceSettingsResponse$ = [
|
|
116
116
|
3,
|
|
117
117
|
n0,
|
|
118
118
|
_GSSRe,
|
|
119
119
|
0,
|
|
120
120
|
[_LSD, _LSDS, _S, _SM, _HR],
|
|
121
|
-
[0, () => LinuxSubscriptionsDiscoverySettings
|
|
121
|
+
[0, () => LinuxSubscriptionsDiscoverySettings$, 0, 128 | 0, 64 | 0],
|
|
122
122
|
];
|
|
123
|
-
export var Instance = [
|
|
123
|
+
export var Instance$ = [
|
|
124
124
|
3,
|
|
125
125
|
n0,
|
|
126
126
|
_I,
|
|
@@ -128,10 +128,10 @@ export var Instance = [
|
|
|
128
128
|
[_AI, _IID, _IT, _AID, _S, _R, _UO, _PC, _LUT, _SN, _OV, _SPCT, _SPUT, _DS, _RWSP],
|
|
129
129
|
[0, 0, 0, 0, 0, 0, 0, 64 | 0, 0, 0, 0, 0, 0, 0, 0],
|
|
130
130
|
];
|
|
131
|
-
export var InternalServerException = [-3, n0, _ISE, { [_e]: _s }, [_m], [0]];
|
|
132
|
-
TypeRegistry.for(n0).registerError(InternalServerException
|
|
133
|
-
export var LinuxSubscriptionsDiscoverySettings = [3, n0, _LSDS, 0, [_SR, _OI], [64 | 0, 0]];
|
|
134
|
-
export var ListLinuxSubscriptionInstancesRequest = [
|
|
131
|
+
export var InternalServerException$ = [-3, n0, _ISE, { [_e]: _s }, [_m], [0]];
|
|
132
|
+
TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
133
|
+
export var LinuxSubscriptionsDiscoverySettings$ = [3, n0, _LSDS, 0, [_SR, _OI], [64 | 0, 0]];
|
|
134
|
+
export var ListLinuxSubscriptionInstancesRequest$ = [
|
|
135
135
|
3,
|
|
136
136
|
n0,
|
|
137
137
|
_LLSIR,
|
|
@@ -139,7 +139,7 @@ export var ListLinuxSubscriptionInstancesRequest = [
|
|
|
139
139
|
[_Fi, _MR, _NT],
|
|
140
140
|
[() => FilterList, 1, 0],
|
|
141
141
|
];
|
|
142
|
-
export var ListLinuxSubscriptionInstancesResponse = [
|
|
142
|
+
export var ListLinuxSubscriptionInstancesResponse$ = [
|
|
143
143
|
3,
|
|
144
144
|
n0,
|
|
145
145
|
_LLSIRi,
|
|
@@ -147,7 +147,7 @@ export var ListLinuxSubscriptionInstancesResponse = [
|
|
|
147
147
|
[_In, _NT],
|
|
148
148
|
[() => InstanceList, 0],
|
|
149
149
|
];
|
|
150
|
-
export var ListLinuxSubscriptionsRequest = [
|
|
150
|
+
export var ListLinuxSubscriptionsRequest$ = [
|
|
151
151
|
3,
|
|
152
152
|
n0,
|
|
153
153
|
_LLSR,
|
|
@@ -155,7 +155,7 @@ export var ListLinuxSubscriptionsRequest = [
|
|
|
155
155
|
[_Fi, _MR, _NT],
|
|
156
156
|
[() => FilterList, 1, 0],
|
|
157
157
|
];
|
|
158
|
-
export var ListLinuxSubscriptionsResponse = [
|
|
158
|
+
export var ListLinuxSubscriptionsResponse$ = [
|
|
159
159
|
3,
|
|
160
160
|
n0,
|
|
161
161
|
_LLSRi,
|
|
@@ -163,7 +163,7 @@ export var ListLinuxSubscriptionsResponse = [
|
|
|
163
163
|
[_Su, _NT],
|
|
164
164
|
[() => SubscriptionList, 0],
|
|
165
165
|
];
|
|
166
|
-
export var ListRegisteredSubscriptionProvidersRequest = [
|
|
166
|
+
export var ListRegisteredSubscriptionProvidersRequest$ = [
|
|
167
167
|
3,
|
|
168
168
|
n0,
|
|
169
169
|
_LRSPR,
|
|
@@ -171,7 +171,7 @@ export var ListRegisteredSubscriptionProvidersRequest = [
|
|
|
171
171
|
[_SPSub, _MR, _NT],
|
|
172
172
|
[64 | 0, 1, 0],
|
|
173
173
|
];
|
|
174
|
-
export var ListRegisteredSubscriptionProvidersResponse = [
|
|
174
|
+
export var ListRegisteredSubscriptionProvidersResponse$ = [
|
|
175
175
|
3,
|
|
176
176
|
n0,
|
|
177
177
|
_LRSPRi,
|
|
@@ -179,9 +179,9 @@ export var ListRegisteredSubscriptionProvidersResponse = [
|
|
|
179
179
|
[_RSP, _NT],
|
|
180
180
|
[() => RegisteredSubscriptionProviderList, 0],
|
|
181
181
|
];
|
|
182
|
-
export var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
|
|
183
|
-
export var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [[() => Tags, 0]]];
|
|
184
|
-
export var RegisteredSubscriptionProvider = [
|
|
182
|
+
export var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
|
|
183
|
+
export var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_t], [[() => Tags, 0]]];
|
|
184
|
+
export var RegisteredSubscriptionProvider$ = [
|
|
185
185
|
3,
|
|
186
186
|
n0,
|
|
187
187
|
_RSPe,
|
|
@@ -189,7 +189,7 @@ export var RegisteredSubscriptionProvider = [
|
|
|
189
189
|
[_SPA, _SPS, _SA, _SPSu, _SPSM, _LSDRT],
|
|
190
190
|
[0, 0, 0, 0, 0, 0],
|
|
191
191
|
];
|
|
192
|
-
export var RegisterSubscriptionProviderRequest = [
|
|
192
|
+
export var RegisterSubscriptionProviderRequest$ = [
|
|
193
193
|
3,
|
|
194
194
|
n0,
|
|
195
195
|
_RSPR,
|
|
@@ -197,7 +197,7 @@ export var RegisterSubscriptionProviderRequest = [
|
|
|
197
197
|
[_SPS, _SA, _T],
|
|
198
198
|
[0, 0, [() => Tags, 0]],
|
|
199
199
|
];
|
|
200
|
-
export var RegisterSubscriptionProviderResponse = [
|
|
200
|
+
export var RegisterSubscriptionProviderResponse$ = [
|
|
201
201
|
3,
|
|
202
202
|
n0,
|
|
203
203
|
_RSPRe,
|
|
@@ -205,10 +205,10 @@ export var RegisterSubscriptionProviderResponse = [
|
|
|
205
205
|
[_SPS, _SPA, _SPSu],
|
|
206
206
|
[0, 0, 0],
|
|
207
207
|
];
|
|
208
|
-
export var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c }, [_m], [0]];
|
|
209
|
-
TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
210
|
-
export var Subscription = [3, n0, _Sub, 0, [_N, _Ty, _IC], [0, 0, 1]];
|
|
211
|
-
export var TagResourceRequest = [
|
|
208
|
+
export var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c }, [_m], [0]];
|
|
209
|
+
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
210
|
+
export var Subscription$ = [3, n0, _Sub, 0, [_N, _Ty, _IC], [0, 0, 1]];
|
|
211
|
+
export var TagResourceRequest$ = [
|
|
212
212
|
3,
|
|
213
213
|
n0,
|
|
214
214
|
_TRR,
|
|
@@ -219,10 +219,10 @@ export var TagResourceRequest = [
|
|
|
219
219
|
[() => Tags, 0],
|
|
220
220
|
],
|
|
221
221
|
];
|
|
222
|
-
export var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
223
|
-
export var ThrottlingException = [-3, n0, _TE, { [_e]: _c }, [_m], [0]];
|
|
224
|
-
TypeRegistry.for(n0).registerError(ThrottlingException
|
|
225
|
-
export var UntagResourceRequest = [
|
|
222
|
+
export var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
|
|
223
|
+
export var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c }, [_m], [0]];
|
|
224
|
+
TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
225
|
+
export var UntagResourceRequest$ = [
|
|
226
226
|
3,
|
|
227
227
|
n0,
|
|
228
228
|
_URR,
|
|
@@ -233,26 +233,26 @@ export var UntagResourceRequest = [
|
|
|
233
233
|
[() => TagKeyList, { [_hQ]: _tK }],
|
|
234
234
|
],
|
|
235
235
|
];
|
|
236
|
-
export var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
237
|
-
export var UpdateServiceSettingsRequest = [
|
|
236
|
+
export var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
|
|
237
|
+
export var UpdateServiceSettingsRequest$ = [
|
|
238
238
|
3,
|
|
239
239
|
n0,
|
|
240
240
|
_USSR,
|
|
241
241
|
0,
|
|
242
242
|
[_LSD, _LSDS, _AU],
|
|
243
|
-
[0, () => LinuxSubscriptionsDiscoverySettings
|
|
243
|
+
[0, () => LinuxSubscriptionsDiscoverySettings$, 2],
|
|
244
244
|
];
|
|
245
|
-
export var UpdateServiceSettingsResponse = [
|
|
245
|
+
export var UpdateServiceSettingsResponse$ = [
|
|
246
246
|
3,
|
|
247
247
|
n0,
|
|
248
248
|
_USSRp,
|
|
249
249
|
0,
|
|
250
250
|
[_LSD, _LSDS, _S, _SM, _HR],
|
|
251
|
-
[0, () => LinuxSubscriptionsDiscoverySettings
|
|
251
|
+
[0, () => LinuxSubscriptionsDiscoverySettings$, 0, 128 | 0, 64 | 0],
|
|
252
252
|
];
|
|
253
|
-
export var ValidationException = [-3, n0, _VE, { [_e]: _c }, [_m], [0]];
|
|
254
|
-
TypeRegistry.for(n0).registerError(ValidationException
|
|
255
|
-
export var LicenseManagerLinuxSubscriptionsServiceException = [
|
|
253
|
+
export var ValidationException$ = [-3, n0, _VE, { [_e]: _c }, [_m], [0]];
|
|
254
|
+
TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
255
|
+
export var LicenseManagerLinuxSubscriptionsServiceException$ = [
|
|
256
256
|
-3,
|
|
257
257
|
_sm,
|
|
258
258
|
"LicenseManagerLinuxSubscriptionsServiceException",
|
|
@@ -260,108 +260,102 @@ export var LicenseManagerLinuxSubscriptionsServiceException = [
|
|
|
260
260
|
[],
|
|
261
261
|
[],
|
|
262
262
|
];
|
|
263
|
-
TypeRegistry.for(_sm).registerError(LicenseManagerLinuxSubscriptionsServiceException
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
];
|
|
274
|
-
export var
|
|
275
|
-
export var SubscriptionList = [1, n0, _SL, 0, () => Subscription];
|
|
276
|
-
export var SubscriptionProviderSourceList = 64 | 0;
|
|
277
|
-
export var TagKeyList = [1, n0, _TKL, 8, 0];
|
|
278
|
-
export var StringMap = 128 | 0;
|
|
279
|
-
export var Tags = [2, n0, _T, 8, 0, 0];
|
|
280
|
-
export var DeregisterSubscriptionProvider = [
|
|
263
|
+
TypeRegistry.for(_sm).registerError(LicenseManagerLinuxSubscriptionsServiceException$, LicenseManagerLinuxSubscriptionsServiceException);
|
|
264
|
+
var FilterList = [1, n0, _FL, 0, () => Filter$];
|
|
265
|
+
var InstanceList = [1, n0, _IL, 0, () => Instance$];
|
|
266
|
+
var ProductCodeList = 64 | 0;
|
|
267
|
+
var RegisteredSubscriptionProviderList = [1, n0, _RSPL, 0, () => RegisteredSubscriptionProvider$];
|
|
268
|
+
var StringList = 64 | 0;
|
|
269
|
+
var SubscriptionList = [1, n0, _SL, 0, () => Subscription$];
|
|
270
|
+
var SubscriptionProviderSourceList = 64 | 0;
|
|
271
|
+
var TagKeyList = [1, n0, _TKL, 8, 0];
|
|
272
|
+
var StringMap = 128 | 0;
|
|
273
|
+
var Tags = [2, n0, _T, 8, 0, 0];
|
|
274
|
+
export var DeregisterSubscriptionProvider$ = [
|
|
281
275
|
9,
|
|
282
276
|
n0,
|
|
283
277
|
_DSP,
|
|
284
278
|
{ [_h]: ["POST", "/subscription/DeregisterSubscriptionProvider", 200] },
|
|
285
|
-
() => DeregisterSubscriptionProviderRequest
|
|
286
|
-
() => DeregisterSubscriptionProviderResponse
|
|
279
|
+
() => DeregisterSubscriptionProviderRequest$,
|
|
280
|
+
() => DeregisterSubscriptionProviderResponse$,
|
|
287
281
|
];
|
|
288
|
-
export var GetRegisteredSubscriptionProvider = [
|
|
282
|
+
export var GetRegisteredSubscriptionProvider$ = [
|
|
289
283
|
9,
|
|
290
284
|
n0,
|
|
291
285
|
_GRSP,
|
|
292
286
|
{ [_h]: ["POST", "/subscription/GetRegisteredSubscriptionProvider", 200] },
|
|
293
|
-
() => GetRegisteredSubscriptionProviderRequest
|
|
294
|
-
() => GetRegisteredSubscriptionProviderResponse
|
|
287
|
+
() => GetRegisteredSubscriptionProviderRequest$,
|
|
288
|
+
() => GetRegisteredSubscriptionProviderResponse$,
|
|
295
289
|
];
|
|
296
|
-
export var GetServiceSettings = [
|
|
290
|
+
export var GetServiceSettings$ = [
|
|
297
291
|
9,
|
|
298
292
|
n0,
|
|
299
293
|
_GSS,
|
|
300
294
|
{ [_h]: ["POST", "/subscription/GetServiceSettings", 200] },
|
|
301
|
-
() => GetServiceSettingsRequest
|
|
302
|
-
() => GetServiceSettingsResponse
|
|
295
|
+
() => GetServiceSettingsRequest$,
|
|
296
|
+
() => GetServiceSettingsResponse$,
|
|
303
297
|
];
|
|
304
|
-
export var ListLinuxSubscriptionInstances = [
|
|
298
|
+
export var ListLinuxSubscriptionInstances$ = [
|
|
305
299
|
9,
|
|
306
300
|
n0,
|
|
307
301
|
_LLSI,
|
|
308
302
|
{ [_h]: ["POST", "/subscription/ListLinuxSubscriptionInstances", 200] },
|
|
309
|
-
() => ListLinuxSubscriptionInstancesRequest
|
|
310
|
-
() => ListLinuxSubscriptionInstancesResponse
|
|
303
|
+
() => ListLinuxSubscriptionInstancesRequest$,
|
|
304
|
+
() => ListLinuxSubscriptionInstancesResponse$,
|
|
311
305
|
];
|
|
312
|
-
export var ListLinuxSubscriptions = [
|
|
306
|
+
export var ListLinuxSubscriptions$ = [
|
|
313
307
|
9,
|
|
314
308
|
n0,
|
|
315
309
|
_LLS,
|
|
316
310
|
{ [_h]: ["POST", "/subscription/ListLinuxSubscriptions", 200] },
|
|
317
|
-
() => ListLinuxSubscriptionsRequest
|
|
318
|
-
() => ListLinuxSubscriptionsResponse
|
|
311
|
+
() => ListLinuxSubscriptionsRequest$,
|
|
312
|
+
() => ListLinuxSubscriptionsResponse$,
|
|
319
313
|
];
|
|
320
|
-
export var ListRegisteredSubscriptionProviders = [
|
|
314
|
+
export var ListRegisteredSubscriptionProviders$ = [
|
|
321
315
|
9,
|
|
322
316
|
n0,
|
|
323
317
|
_LRSP,
|
|
324
318
|
{ [_h]: ["POST", "/subscription/ListRegisteredSubscriptionProviders", 200] },
|
|
325
|
-
() => ListRegisteredSubscriptionProvidersRequest
|
|
326
|
-
() => ListRegisteredSubscriptionProvidersResponse
|
|
319
|
+
() => ListRegisteredSubscriptionProvidersRequest$,
|
|
320
|
+
() => ListRegisteredSubscriptionProvidersResponse$,
|
|
327
321
|
];
|
|
328
|
-
export var ListTagsForResource = [
|
|
322
|
+
export var ListTagsForResource$ = [
|
|
329
323
|
9,
|
|
330
324
|
n0,
|
|
331
325
|
_LTFR,
|
|
332
326
|
{ [_h]: ["GET", "/tags/{resourceArn}", 200] },
|
|
333
|
-
() => ListTagsForResourceRequest
|
|
334
|
-
() => ListTagsForResourceResponse
|
|
327
|
+
() => ListTagsForResourceRequest$,
|
|
328
|
+
() => ListTagsForResourceResponse$,
|
|
335
329
|
];
|
|
336
|
-
export var RegisterSubscriptionProvider = [
|
|
330
|
+
export var RegisterSubscriptionProvider$ = [
|
|
337
331
|
9,
|
|
338
332
|
n0,
|
|
339
333
|
_RSPeg,
|
|
340
334
|
{ [_h]: ["POST", "/subscription/RegisterSubscriptionProvider", 200] },
|
|
341
|
-
() => RegisterSubscriptionProviderRequest
|
|
342
|
-
() => RegisterSubscriptionProviderResponse
|
|
335
|
+
() => RegisterSubscriptionProviderRequest$,
|
|
336
|
+
() => RegisterSubscriptionProviderResponse$,
|
|
343
337
|
];
|
|
344
|
-
export var TagResource = [
|
|
338
|
+
export var TagResource$ = [
|
|
345
339
|
9,
|
|
346
340
|
n0,
|
|
347
341
|
_TR,
|
|
348
342
|
{ [_h]: ["PUT", "/tags/{resourceArn}", 200] },
|
|
349
|
-
() => TagResourceRequest
|
|
350
|
-
() => TagResourceResponse
|
|
343
|
+
() => TagResourceRequest$,
|
|
344
|
+
() => TagResourceResponse$,
|
|
351
345
|
];
|
|
352
|
-
export var UntagResource = [
|
|
346
|
+
export var UntagResource$ = [
|
|
353
347
|
9,
|
|
354
348
|
n0,
|
|
355
349
|
_UR,
|
|
356
350
|
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] },
|
|
357
|
-
() => UntagResourceRequest
|
|
358
|
-
() => UntagResourceResponse
|
|
351
|
+
() => UntagResourceRequest$,
|
|
352
|
+
() => UntagResourceResponse$,
|
|
359
353
|
];
|
|
360
|
-
export var UpdateServiceSettings = [
|
|
354
|
+
export var UpdateServiceSettings$ = [
|
|
361
355
|
9,
|
|
362
356
|
n0,
|
|
363
357
|
_USS,
|
|
364
358
|
{ [_h]: ["POST", "/subscription/UpdateServiceSettings", 200] },
|
|
365
|
-
() => UpdateServiceSettingsRequest
|
|
366
|
-
() => UpdateServiceSettingsResponse
|
|
359
|
+
() => UpdateServiceSettingsRequest$,
|
|
360
|
+
() => UpdateServiceSettingsResponse$,
|
|
367
361
|
];
|
|
@@ -5,7 +5,7 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
|
|
|
5
5
|
import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
|
|
8
|
-
import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type
|
|
8
|
+
import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type Decoder as __Decoder, type Encoder as __Encoder, type HashConstructor as __HashConstructor, type HttpHandlerOptions as __HttpHandlerOptions, type Logger as __Logger, type Provider as __Provider, type StreamCollector as __StreamCollector, type UrlParser as __UrlParser, AwsCredentialIdentityProvider, Provider, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { DeregisterSubscriptionProviderCommandInput, DeregisterSubscriptionProviderCommandOutput } from "./commands/DeregisterSubscriptionProviderCommand";
|
|
11
11
|
import { GetRegisteredSubscriptionProviderCommandInput, GetRegisteredSubscriptionProviderCommandOutput } from "./commands/GetRegisteredSubscriptionProviderCommand";
|
|
@@ -152,15 +152,6 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
152
152
|
* Optional extensions
|
|
153
153
|
*/
|
|
154
154
|
extensions?: RuntimeExtension[];
|
|
155
|
-
/**
|
|
156
|
-
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
157
|
-
* may be overridden. A default will always be set by the client.
|
|
158
|
-
* Available options depend on the service's supported protocols and will not be validated by
|
|
159
|
-
* the client.
|
|
160
|
-
* @alpha
|
|
161
|
-
*
|
|
162
|
-
*/
|
|
163
|
-
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
164
155
|
/**
|
|
165
156
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
166
157
|
*/
|
package/dist-types/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
10
10
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
11
11
|
export type { LicenseManagerLinuxSubscriptionsExtensionConfiguration } from "./extensionConfiguration";
|
|
12
12
|
export * from "./commands";
|
|
13
|
+
export * from "./schemas/schemas_0";
|
|
13
14
|
export * from "./pagination";
|
|
14
15
|
export * from "./models/enums";
|
|
15
16
|
export * from "./models/errors";
|
|
@@ -17,8 +17,13 @@ export declare const getRuntimeConfig: (config: LicenseManagerLinuxSubscriptions
|
|
|
17
17
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
18
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
19
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
20
|
-
apiVersion: string;
|
|
21
20
|
cacheMiddleware?: boolean | undefined;
|
|
21
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
22
|
+
protocolSettings: {
|
|
23
|
+
defaultNamespace?: string;
|
|
24
|
+
[setting: string]: unknown;
|
|
25
|
+
};
|
|
26
|
+
apiVersion: string;
|
|
22
27
|
urlParser: import("@smithy/types").UrlParser;
|
|
23
28
|
base64Decoder: import("@smithy/types").Decoder;
|
|
24
29
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -29,7 +34,6 @@ export declare const getRuntimeConfig: (config: LicenseManagerLinuxSubscriptions
|
|
|
29
34
|
profile?: string;
|
|
30
35
|
logger: import("@smithy/types").Logger;
|
|
31
36
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
33
37
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
34
38
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
35
39
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -19,8 +19,13 @@ export declare const getRuntimeConfig: (config: LicenseManagerLinuxSubscriptions
|
|
|
19
19
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
20
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
22
|
-
apiVersion: string;
|
|
23
22
|
cacheMiddleware?: boolean | undefined;
|
|
23
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
24
|
+
protocolSettings: {
|
|
25
|
+
defaultNamespace?: string;
|
|
26
|
+
[setting: string]: unknown;
|
|
27
|
+
};
|
|
28
|
+
apiVersion: string;
|
|
24
29
|
urlParser: import("@smithy/types").UrlParser;
|
|
25
30
|
base64Decoder: import("@smithy/types").Decoder;
|
|
26
31
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -31,7 +36,6 @@ export declare const getRuntimeConfig: (config: LicenseManagerLinuxSubscriptions
|
|
|
31
36
|
profile?: string;
|
|
32
37
|
logger: import("@smithy/types").Logger;
|
|
33
38
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
35
39
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
36
40
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
37
41
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -6,8 +6,13 @@ export declare const getRuntimeConfig: (config: LicenseManagerLinuxSubscriptions
|
|
|
6
6
|
runtime: string;
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
8
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
|
-
apiVersion: string;
|
|
10
9
|
cacheMiddleware?: boolean;
|
|
10
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
11
|
+
protocolSettings: {
|
|
12
|
+
defaultNamespace?: string;
|
|
13
|
+
[setting: string]: unknown;
|
|
14
|
+
};
|
|
15
|
+
apiVersion: string;
|
|
11
16
|
urlParser: import("@smithy/types").UrlParser;
|
|
12
17
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
13
18
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -27,7 +32,6 @@ export declare const getRuntimeConfig: (config: LicenseManagerLinuxSubscriptions
|
|
|
27
32
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
33
|
logger: import("@smithy/types").Logger;
|
|
29
34
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
31
35
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
32
36
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
37
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
1
2
|
import type { LicenseManagerLinuxSubscriptionsClientConfig } from "./LicenseManagerLinuxSubscriptionsClient";
|
|
2
3
|
/**
|
|
3
4
|
* @internal
|
|
@@ -14,7 +15,11 @@ export declare const getRuntimeConfig: (config: LicenseManagerLinuxSubscriptions
|
|
|
14
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").LicenseManagerLinuxSubscriptionsHttpAuthSchemeProvider;
|
|
15
16
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
17
|
logger: import("@smithy/types").Logger;
|
|
17
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").
|
|
18
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof AwsRestJsonProtocol;
|
|
19
|
+
protocolSettings: {
|
|
20
|
+
[setting: string]: unknown;
|
|
21
|
+
defaultNamespace?: string;
|
|
22
|
+
};
|
|
18
23
|
serviceId: string;
|
|
19
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
20
25
|
utf8Decoder: import("@smithy/types").Decoder;
|