@aws-sdk/client-license-manager-user-subscriptions 3.933.0 → 3.935.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 +0 -24
- package/dist-es/index.js +1 -1
- package/dist-es/models/errors.js +85 -0
- package/dist-es/models/models_0.js +0 -85
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +2 -1
- package/dist-types/models/errors.d.ts +86 -0
- package/dist-types/models/models_0.d.ts +0 -86
- package/dist-types/ts3.4/index.d.ts +2 -1
- package/dist-types/ts3.4/models/errors.d.ts +49 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -49
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
package/dist-cjs/index.js
CHANGED
|
@@ -129,10 +129,6 @@ let AccessDeniedException$1 = class AccessDeniedException extends LicenseManager
|
|
|
129
129
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
130
|
}
|
|
131
131
|
};
|
|
132
|
-
const ActiveDirectoryType = {
|
|
133
|
-
AWS_MANAGED: "AWS_MANAGED",
|
|
134
|
-
SELF_MANAGED: "SELF_MANAGED",
|
|
135
|
-
};
|
|
136
132
|
let ConflictException$1 = class ConflictException extends LicenseManagerUserSubscriptionsServiceException$1 {
|
|
137
133
|
name = "ConflictException";
|
|
138
134
|
$fault = "server";
|
|
@@ -205,22 +201,6 @@ let ValidationException$1 = class ValidationException extends LicenseManagerUser
|
|
|
205
201
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
206
202
|
}
|
|
207
203
|
};
|
|
208
|
-
const ServerType = {
|
|
209
|
-
RDS_SAL: "RDS_SAL",
|
|
210
|
-
};
|
|
211
|
-
const LicenseServerEndpointProvisioningStatus = {
|
|
212
|
-
DELETED: "DELETED",
|
|
213
|
-
DELETING: "DELETING",
|
|
214
|
-
DELETION_FAILED: "DELETION_FAILED",
|
|
215
|
-
PROVISIONED: "PROVISIONED",
|
|
216
|
-
PROVISIONING: "PROVISIONING",
|
|
217
|
-
PROVISIONING_FAILED: "PROVISIONING_FAILED",
|
|
218
|
-
};
|
|
219
|
-
const LicenseServerHealthStatus = {
|
|
220
|
-
HEALTHY: "HEALTHY",
|
|
221
|
-
NOT_APPLICABLE: "NOT_APPLICABLE",
|
|
222
|
-
UNHEALTHY: "UNHEALTHY",
|
|
223
|
-
};
|
|
224
204
|
|
|
225
205
|
const _A = "Attribute";
|
|
226
206
|
const _AD = "AssociationDate";
|
|
@@ -1181,7 +1161,6 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1181
1161
|
get: function () { return smithyClient.Client; }
|
|
1182
1162
|
});
|
|
1183
1163
|
exports.AccessDeniedException = AccessDeniedException$1;
|
|
1184
|
-
exports.ActiveDirectoryType = ActiveDirectoryType;
|
|
1185
1164
|
exports.AssociateUserCommand = AssociateUserCommand;
|
|
1186
1165
|
exports.ConflictException = ConflictException$1;
|
|
1187
1166
|
exports.CreateLicenseServerEndpointCommand = CreateLicenseServerEndpointCommand;
|
|
@@ -1192,8 +1171,6 @@ exports.InternalServerException = InternalServerException$1;
|
|
|
1192
1171
|
exports.LicenseManagerUserSubscriptions = LicenseManagerUserSubscriptions;
|
|
1193
1172
|
exports.LicenseManagerUserSubscriptionsClient = LicenseManagerUserSubscriptionsClient;
|
|
1194
1173
|
exports.LicenseManagerUserSubscriptionsServiceException = LicenseManagerUserSubscriptionsServiceException$1;
|
|
1195
|
-
exports.LicenseServerEndpointProvisioningStatus = LicenseServerEndpointProvisioningStatus;
|
|
1196
|
-
exports.LicenseServerHealthStatus = LicenseServerHealthStatus;
|
|
1197
1174
|
exports.ListIdentityProvidersCommand = ListIdentityProvidersCommand;
|
|
1198
1175
|
exports.ListInstancesCommand = ListInstancesCommand;
|
|
1199
1176
|
exports.ListLicenseServerEndpointsCommand = ListLicenseServerEndpointsCommand;
|
|
@@ -1202,7 +1179,6 @@ exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
|
1202
1179
|
exports.ListUserAssociationsCommand = ListUserAssociationsCommand;
|
|
1203
1180
|
exports.RegisterIdentityProviderCommand = RegisterIdentityProviderCommand;
|
|
1204
1181
|
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
1205
|
-
exports.ServerType = ServerType;
|
|
1206
1182
|
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
1207
1183
|
exports.StartProductSubscriptionCommand = StartProductSubscriptionCommand;
|
|
1208
1184
|
exports.StopProductSubscriptionCommand = StopProductSubscriptionCommand;
|
package/dist-es/index.js
CHANGED
|
@@ -2,5 +2,5 @@ export * from "./LicenseManagerUserSubscriptionsClient";
|
|
|
2
2
|
export * from "./LicenseManagerUserSubscriptions";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
|
-
export * from "./models";
|
|
5
|
+
export * from "./models/errors";
|
|
6
6
|
export { LicenseManagerUserSubscriptionsServiceException } from "./models/LicenseManagerUserSubscriptionsServiceException";
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { LicenseManagerUserSubscriptionsServiceException as __BaseException } from "./LicenseManagerUserSubscriptionsServiceException";
|
|
2
|
+
export class AccessDeniedException extends __BaseException {
|
|
3
|
+
name = "AccessDeniedException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
constructor(opts) {
|
|
6
|
+
super({
|
|
7
|
+
name: "AccessDeniedException",
|
|
8
|
+
$fault: "client",
|
|
9
|
+
...opts,
|
|
10
|
+
});
|
|
11
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export class ConflictException extends __BaseException {
|
|
15
|
+
name = "ConflictException";
|
|
16
|
+
$fault = "server";
|
|
17
|
+
constructor(opts) {
|
|
18
|
+
super({
|
|
19
|
+
name: "ConflictException",
|
|
20
|
+
$fault: "server",
|
|
21
|
+
...opts,
|
|
22
|
+
});
|
|
23
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
export class InternalServerException extends __BaseException {
|
|
27
|
+
name = "InternalServerException";
|
|
28
|
+
$fault = "server";
|
|
29
|
+
constructor(opts) {
|
|
30
|
+
super({
|
|
31
|
+
name: "InternalServerException",
|
|
32
|
+
$fault: "server",
|
|
33
|
+
...opts,
|
|
34
|
+
});
|
|
35
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
39
|
+
name = "ResourceNotFoundException";
|
|
40
|
+
$fault = "client";
|
|
41
|
+
constructor(opts) {
|
|
42
|
+
super({
|
|
43
|
+
name: "ResourceNotFoundException",
|
|
44
|
+
$fault: "client",
|
|
45
|
+
...opts,
|
|
46
|
+
});
|
|
47
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
export class ServiceQuotaExceededException extends __BaseException {
|
|
51
|
+
name = "ServiceQuotaExceededException";
|
|
52
|
+
$fault = "client";
|
|
53
|
+
constructor(opts) {
|
|
54
|
+
super({
|
|
55
|
+
name: "ServiceQuotaExceededException",
|
|
56
|
+
$fault: "client",
|
|
57
|
+
...opts,
|
|
58
|
+
});
|
|
59
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
export class ThrottlingException extends __BaseException {
|
|
63
|
+
name = "ThrottlingException";
|
|
64
|
+
$fault = "client";
|
|
65
|
+
constructor(opts) {
|
|
66
|
+
super({
|
|
67
|
+
name: "ThrottlingException",
|
|
68
|
+
$fault: "client",
|
|
69
|
+
...opts,
|
|
70
|
+
});
|
|
71
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
export class ValidationException extends __BaseException {
|
|
75
|
+
name = "ValidationException";
|
|
76
|
+
$fault = "client";
|
|
77
|
+
constructor(opts) {
|
|
78
|
+
super({
|
|
79
|
+
name: "ValidationException",
|
|
80
|
+
$fault: "client",
|
|
81
|
+
...opts,
|
|
82
|
+
});
|
|
83
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
84
|
+
}
|
|
85
|
+
}
|
|
@@ -1,92 +1,7 @@
|
|
|
1
|
-
import { LicenseManagerUserSubscriptionsServiceException as __BaseException } from "./LicenseManagerUserSubscriptionsServiceException";
|
|
2
|
-
export class AccessDeniedException extends __BaseException {
|
|
3
|
-
name = "AccessDeniedException";
|
|
4
|
-
$fault = "client";
|
|
5
|
-
constructor(opts) {
|
|
6
|
-
super({
|
|
7
|
-
name: "AccessDeniedException",
|
|
8
|
-
$fault: "client",
|
|
9
|
-
...opts,
|
|
10
|
-
});
|
|
11
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
1
|
export const ActiveDirectoryType = {
|
|
15
2
|
AWS_MANAGED: "AWS_MANAGED",
|
|
16
3
|
SELF_MANAGED: "SELF_MANAGED",
|
|
17
4
|
};
|
|
18
|
-
export class ConflictException extends __BaseException {
|
|
19
|
-
name = "ConflictException";
|
|
20
|
-
$fault = "server";
|
|
21
|
-
constructor(opts) {
|
|
22
|
-
super({
|
|
23
|
-
name: "ConflictException",
|
|
24
|
-
$fault: "server",
|
|
25
|
-
...opts,
|
|
26
|
-
});
|
|
27
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
export class InternalServerException extends __BaseException {
|
|
31
|
-
name = "InternalServerException";
|
|
32
|
-
$fault = "server";
|
|
33
|
-
constructor(opts) {
|
|
34
|
-
super({
|
|
35
|
-
name: "InternalServerException",
|
|
36
|
-
$fault: "server",
|
|
37
|
-
...opts,
|
|
38
|
-
});
|
|
39
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
43
|
-
name = "ResourceNotFoundException";
|
|
44
|
-
$fault = "client";
|
|
45
|
-
constructor(opts) {
|
|
46
|
-
super({
|
|
47
|
-
name: "ResourceNotFoundException",
|
|
48
|
-
$fault: "client",
|
|
49
|
-
...opts,
|
|
50
|
-
});
|
|
51
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
export class ServiceQuotaExceededException extends __BaseException {
|
|
55
|
-
name = "ServiceQuotaExceededException";
|
|
56
|
-
$fault = "client";
|
|
57
|
-
constructor(opts) {
|
|
58
|
-
super({
|
|
59
|
-
name: "ServiceQuotaExceededException",
|
|
60
|
-
$fault: "client",
|
|
61
|
-
...opts,
|
|
62
|
-
});
|
|
63
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
export class ThrottlingException extends __BaseException {
|
|
67
|
-
name = "ThrottlingException";
|
|
68
|
-
$fault = "client";
|
|
69
|
-
constructor(opts) {
|
|
70
|
-
super({
|
|
71
|
-
name: "ThrottlingException",
|
|
72
|
-
$fault: "client",
|
|
73
|
-
...opts,
|
|
74
|
-
});
|
|
75
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
export class ValidationException extends __BaseException {
|
|
79
|
-
name = "ValidationException";
|
|
80
|
-
$fault = "client";
|
|
81
|
-
constructor(opts) {
|
|
82
|
-
super({
|
|
83
|
-
name: "ValidationException",
|
|
84
|
-
$fault: "client",
|
|
85
|
-
...opts,
|
|
86
|
-
});
|
|
87
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
5
|
export const ServerType = {
|
|
91
6
|
RDS_SAL: "RDS_SAL",
|
|
92
7
|
};
|
|
@@ -149,7 +149,7 @@ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.licensemanagerusersubscriptio
|
|
|
149
149
|
const _tK = "tagKeys";
|
|
150
150
|
const n0 = "com.amazonaws.licensemanagerusersubscriptions";
|
|
151
151
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
152
|
-
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/
|
|
152
|
+
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/errors";
|
|
153
153
|
import { LicenseManagerUserSubscriptionsServiceException as __LicenseManagerUserSubscriptionsServiceException } from "../models/LicenseManagerUserSubscriptionsServiceException";
|
|
154
154
|
export var AccessDeniedException = [
|
|
155
155
|
-3,
|
package/dist-types/index.d.ts
CHANGED
|
@@ -10,5 +10,6 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
10
10
|
export type { LicenseManagerUserSubscriptionsExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
12
12
|
export * from "./pagination";
|
|
13
|
-
export * from "./models";
|
|
13
|
+
export * from "./models/errors";
|
|
14
|
+
export type * from "./models/models_0";
|
|
14
15
|
export { LicenseManagerUserSubscriptionsServiceException } from "./models/LicenseManagerUserSubscriptionsServiceException";
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { LicenseManagerUserSubscriptionsServiceException as __BaseException } from "./LicenseManagerUserSubscriptionsServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>You don't have sufficient access to perform this action.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
+
readonly name: "AccessDeniedException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* <p>The request couldn't be completed because it conflicted with the current state of the resource.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
export declare class ConflictException extends __BaseException {
|
|
20
|
+
readonly name: "ConflictException";
|
|
21
|
+
readonly $fault: "server";
|
|
22
|
+
/**
|
|
23
|
+
* @internal
|
|
24
|
+
*/
|
|
25
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* <p>An exception occurred with the service.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
export declare class InternalServerException extends __BaseException {
|
|
32
|
+
readonly name: "InternalServerException";
|
|
33
|
+
readonly $fault: "server";
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* <p>The resource couldn't be found.</p>
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
44
|
+
readonly name: "ResourceNotFoundException";
|
|
45
|
+
readonly $fault: "client";
|
|
46
|
+
/**
|
|
47
|
+
* @internal
|
|
48
|
+
*/
|
|
49
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* <p>The request failed because a service quota is exceeded.</p>
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
56
|
+
readonly name: "ServiceQuotaExceededException";
|
|
57
|
+
readonly $fault: "client";
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
61
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* <p>The request was denied because of request throttling. Retry the request.</p>
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
export declare class ThrottlingException extends __BaseException {
|
|
68
|
+
readonly name: "ThrottlingException";
|
|
69
|
+
readonly $fault: "client";
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
73
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* <p>A parameter is not valid.</p>
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
export declare class ValidationException extends __BaseException {
|
|
80
|
+
readonly name: "ValidationException";
|
|
81
|
+
readonly $fault: "client";
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
85
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
86
|
+
}
|
|
@@ -1,17 +1,3 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { LicenseManagerUserSubscriptionsServiceException as __BaseException } from "./LicenseManagerUserSubscriptionsServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p>You don't have sufficient access to perform this action.</p>
|
|
5
|
-
* @public
|
|
6
|
-
*/
|
|
7
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
-
readonly name: "AccessDeniedException";
|
|
9
|
-
readonly $fault: "client";
|
|
10
|
-
/**
|
|
11
|
-
* @internal
|
|
12
|
-
*/
|
|
13
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
|
-
}
|
|
15
1
|
/**
|
|
16
2
|
* <p>Contains a credentials secret that's stored in Secrets Manager.</p>
|
|
17
3
|
* @public
|
|
@@ -266,78 +252,6 @@ export interface AssociateUserResponse {
|
|
|
266
252
|
*/
|
|
267
253
|
InstanceUserSummary: InstanceUserSummary | undefined;
|
|
268
254
|
}
|
|
269
|
-
/**
|
|
270
|
-
* <p>The request couldn't be completed because it conflicted with the current state of the resource.</p>
|
|
271
|
-
* @public
|
|
272
|
-
*/
|
|
273
|
-
export declare class ConflictException extends __BaseException {
|
|
274
|
-
readonly name: "ConflictException";
|
|
275
|
-
readonly $fault: "server";
|
|
276
|
-
/**
|
|
277
|
-
* @internal
|
|
278
|
-
*/
|
|
279
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
280
|
-
}
|
|
281
|
-
/**
|
|
282
|
-
* <p>An exception occurred with the service.</p>
|
|
283
|
-
* @public
|
|
284
|
-
*/
|
|
285
|
-
export declare class InternalServerException extends __BaseException {
|
|
286
|
-
readonly name: "InternalServerException";
|
|
287
|
-
readonly $fault: "server";
|
|
288
|
-
/**
|
|
289
|
-
* @internal
|
|
290
|
-
*/
|
|
291
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
292
|
-
}
|
|
293
|
-
/**
|
|
294
|
-
* <p>The resource couldn't be found.</p>
|
|
295
|
-
* @public
|
|
296
|
-
*/
|
|
297
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
298
|
-
readonly name: "ResourceNotFoundException";
|
|
299
|
-
readonly $fault: "client";
|
|
300
|
-
/**
|
|
301
|
-
* @internal
|
|
302
|
-
*/
|
|
303
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
304
|
-
}
|
|
305
|
-
/**
|
|
306
|
-
* <p>The request failed because a service quota is exceeded.</p>
|
|
307
|
-
* @public
|
|
308
|
-
*/
|
|
309
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
310
|
-
readonly name: "ServiceQuotaExceededException";
|
|
311
|
-
readonly $fault: "client";
|
|
312
|
-
/**
|
|
313
|
-
* @internal
|
|
314
|
-
*/
|
|
315
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
316
|
-
}
|
|
317
|
-
/**
|
|
318
|
-
* <p>The request was denied because of request throttling. Retry the request.</p>
|
|
319
|
-
* @public
|
|
320
|
-
*/
|
|
321
|
-
export declare class ThrottlingException extends __BaseException {
|
|
322
|
-
readonly name: "ThrottlingException";
|
|
323
|
-
readonly $fault: "client";
|
|
324
|
-
/**
|
|
325
|
-
* @internal
|
|
326
|
-
*/
|
|
327
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
328
|
-
}
|
|
329
|
-
/**
|
|
330
|
-
* <p>A parameter is not valid.</p>
|
|
331
|
-
* @public
|
|
332
|
-
*/
|
|
333
|
-
export declare class ValidationException extends __BaseException {
|
|
334
|
-
readonly name: "ValidationException";
|
|
335
|
-
readonly $fault: "client";
|
|
336
|
-
/**
|
|
337
|
-
* @internal
|
|
338
|
-
*/
|
|
339
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
340
|
-
}
|
|
341
255
|
/**
|
|
342
256
|
* <p>Server settings that are specific to a Remote Desktop Services (RDS) license server.</p>
|
|
343
257
|
* @public
|
|
@@ -5,5 +5,6 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { LicenseManagerUserSubscriptionsExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/errors";
|
|
9
|
+
export * from "./models/models_0";
|
|
9
10
|
export { LicenseManagerUserSubscriptionsServiceException } from "./models/LicenseManagerUserSubscriptionsServiceException";
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { LicenseManagerUserSubscriptionsServiceException as __BaseException } from "./LicenseManagerUserSubscriptionsServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
constructor(
|
|
7
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
+
);
|
|
9
|
+
}
|
|
10
|
+
export declare class ConflictException extends __BaseException {
|
|
11
|
+
readonly name: "ConflictException";
|
|
12
|
+
readonly $fault: "server";
|
|
13
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
14
|
+
}
|
|
15
|
+
export declare class InternalServerException extends __BaseException {
|
|
16
|
+
readonly name: "InternalServerException";
|
|
17
|
+
readonly $fault: "server";
|
|
18
|
+
constructor(
|
|
19
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
20
|
+
);
|
|
21
|
+
}
|
|
22
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
23
|
+
readonly name: "ResourceNotFoundException";
|
|
24
|
+
readonly $fault: "client";
|
|
25
|
+
constructor(
|
|
26
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
30
|
+
readonly name: "ServiceQuotaExceededException";
|
|
31
|
+
readonly $fault: "client";
|
|
32
|
+
constructor(
|
|
33
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
34
|
+
);
|
|
35
|
+
}
|
|
36
|
+
export declare class ThrottlingException extends __BaseException {
|
|
37
|
+
readonly name: "ThrottlingException";
|
|
38
|
+
readonly $fault: "client";
|
|
39
|
+
constructor(
|
|
40
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
41
|
+
);
|
|
42
|
+
}
|
|
43
|
+
export declare class ValidationException extends __BaseException {
|
|
44
|
+
readonly name: "ValidationException";
|
|
45
|
+
readonly $fault: "client";
|
|
46
|
+
constructor(
|
|
47
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
48
|
+
);
|
|
49
|
+
}
|
|
@@ -1,12 +1,3 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { LicenseManagerUserSubscriptionsServiceException as __BaseException } from "./LicenseManagerUserSubscriptionsServiceException";
|
|
3
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
-
readonly name: "AccessDeniedException";
|
|
5
|
-
readonly $fault: "client";
|
|
6
|
-
constructor(
|
|
7
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
-
);
|
|
9
|
-
}
|
|
10
1
|
export interface SecretsManagerCredentialsProvider {
|
|
11
2
|
SecretId?: string | undefined;
|
|
12
3
|
}
|
|
@@ -91,46 +82,6 @@ export interface InstanceUserSummary {
|
|
|
91
82
|
export interface AssociateUserResponse {
|
|
92
83
|
InstanceUserSummary: InstanceUserSummary | undefined;
|
|
93
84
|
}
|
|
94
|
-
export declare class ConflictException extends __BaseException {
|
|
95
|
-
readonly name: "ConflictException";
|
|
96
|
-
readonly $fault: "server";
|
|
97
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
98
|
-
}
|
|
99
|
-
export declare class InternalServerException extends __BaseException {
|
|
100
|
-
readonly name: "InternalServerException";
|
|
101
|
-
readonly $fault: "server";
|
|
102
|
-
constructor(
|
|
103
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
104
|
-
);
|
|
105
|
-
}
|
|
106
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
107
|
-
readonly name: "ResourceNotFoundException";
|
|
108
|
-
readonly $fault: "client";
|
|
109
|
-
constructor(
|
|
110
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
111
|
-
);
|
|
112
|
-
}
|
|
113
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
114
|
-
readonly name: "ServiceQuotaExceededException";
|
|
115
|
-
readonly $fault: "client";
|
|
116
|
-
constructor(
|
|
117
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
118
|
-
);
|
|
119
|
-
}
|
|
120
|
-
export declare class ThrottlingException extends __BaseException {
|
|
121
|
-
readonly name: "ThrottlingException";
|
|
122
|
-
readonly $fault: "client";
|
|
123
|
-
constructor(
|
|
124
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
125
|
-
);
|
|
126
|
-
}
|
|
127
|
-
export declare class ValidationException extends __BaseException {
|
|
128
|
-
readonly name: "ValidationException";
|
|
129
|
-
readonly $fault: "client";
|
|
130
|
-
constructor(
|
|
131
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
132
|
-
);
|
|
133
|
-
}
|
|
134
85
|
export interface RdsSalSettings {
|
|
135
86
|
RdsSalCredentialsProvider: CredentialsProvider | undefined;
|
|
136
87
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-license-manager-user-subscriptions",
|
|
3
3
|
"description": "AWS SDK for JavaScript License Manager User Subscriptions Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.935.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-user-subscriptions",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|