@aws-sdk/client-license-manager-user-subscriptions 3.936.0 → 3.939.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 CHANGED
@@ -1152,6 +1152,27 @@ const paginateListProductSubscriptions = core.createPaginator(LicenseManagerUser
1152
1152
 
1153
1153
  const paginateListUserAssociations = core.createPaginator(LicenseManagerUserSubscriptionsClient, ListUserAssociationsCommand, "NextToken", "NextToken", "MaxResults");
1154
1154
 
1155
+ const ActiveDirectoryType = {
1156
+ AWS_MANAGED: "AWS_MANAGED",
1157
+ SELF_MANAGED: "SELF_MANAGED",
1158
+ };
1159
+ const ServerType = {
1160
+ RDS_SAL: "RDS_SAL",
1161
+ };
1162
+ const LicenseServerEndpointProvisioningStatus = {
1163
+ DELETED: "DELETED",
1164
+ DELETING: "DELETING",
1165
+ DELETION_FAILED: "DELETION_FAILED",
1166
+ PROVISIONED: "PROVISIONED",
1167
+ PROVISIONING: "PROVISIONING",
1168
+ PROVISIONING_FAILED: "PROVISIONING_FAILED",
1169
+ };
1170
+ const LicenseServerHealthStatus = {
1171
+ HEALTHY: "HEALTHY",
1172
+ NOT_APPLICABLE: "NOT_APPLICABLE",
1173
+ UNHEALTHY: "UNHEALTHY",
1174
+ };
1175
+
1155
1176
  Object.defineProperty(exports, "$Command", {
1156
1177
  enumerable: true,
1157
1178
  get: function () { return smithyClient.Command; }
@@ -1161,6 +1182,7 @@ Object.defineProperty(exports, "__Client", {
1161
1182
  get: function () { return smithyClient.Client; }
1162
1183
  });
1163
1184
  exports.AccessDeniedException = AccessDeniedException$1;
1185
+ exports.ActiveDirectoryType = ActiveDirectoryType;
1164
1186
  exports.AssociateUserCommand = AssociateUserCommand;
1165
1187
  exports.ConflictException = ConflictException$1;
1166
1188
  exports.CreateLicenseServerEndpointCommand = CreateLicenseServerEndpointCommand;
@@ -1171,6 +1193,8 @@ exports.InternalServerException = InternalServerException$1;
1171
1193
  exports.LicenseManagerUserSubscriptions = LicenseManagerUserSubscriptions;
1172
1194
  exports.LicenseManagerUserSubscriptionsClient = LicenseManagerUserSubscriptionsClient;
1173
1195
  exports.LicenseManagerUserSubscriptionsServiceException = LicenseManagerUserSubscriptionsServiceException$1;
1196
+ exports.LicenseServerEndpointProvisioningStatus = LicenseServerEndpointProvisioningStatus;
1197
+ exports.LicenseServerHealthStatus = LicenseServerHealthStatus;
1174
1198
  exports.ListIdentityProvidersCommand = ListIdentityProvidersCommand;
1175
1199
  exports.ListInstancesCommand = ListInstancesCommand;
1176
1200
  exports.ListLicenseServerEndpointsCommand = ListLicenseServerEndpointsCommand;
@@ -1179,6 +1203,7 @@ exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1179
1203
  exports.ListUserAssociationsCommand = ListUserAssociationsCommand;
1180
1204
  exports.RegisterIdentityProviderCommand = RegisterIdentityProviderCommand;
1181
1205
  exports.ResourceNotFoundException = ResourceNotFoundException$1;
1206
+ exports.ServerType = ServerType;
1182
1207
  exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
1183
1208
  exports.StartProductSubscriptionCommand = StartProductSubscriptionCommand;
1184
1209
  exports.StopProductSubscriptionCommand = StopProductSubscriptionCommand;
package/dist-es/index.js CHANGED
@@ -2,5 +2,6 @@ export * from "./LicenseManagerUserSubscriptionsClient";
2
2
  export * from "./LicenseManagerUserSubscriptions";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
+ export * from "./models/enums";
5
6
  export * from "./models/errors";
6
7
  export { LicenseManagerUserSubscriptionsServiceException } from "./models/LicenseManagerUserSubscriptionsServiceException";
@@ -0,0 +1,20 @@
1
+ export const ActiveDirectoryType = {
2
+ AWS_MANAGED: "AWS_MANAGED",
3
+ SELF_MANAGED: "SELF_MANAGED",
4
+ };
5
+ export const ServerType = {
6
+ RDS_SAL: "RDS_SAL",
7
+ };
8
+ export const LicenseServerEndpointProvisioningStatus = {
9
+ DELETED: "DELETED",
10
+ DELETING: "DELETING",
11
+ DELETION_FAILED: "DELETION_FAILED",
12
+ PROVISIONED: "PROVISIONED",
13
+ PROVISIONING: "PROVISIONING",
14
+ PROVISIONING_FAILED: "PROVISIONING_FAILED",
15
+ };
16
+ export const LicenseServerHealthStatus = {
17
+ HEALTHY: "HEALTHY",
18
+ NOT_APPLICABLE: "NOT_APPLICABLE",
19
+ UNHEALTHY: "UNHEALTHY",
20
+ };
@@ -1,20 +1 @@
1
- export const ActiveDirectoryType = {
2
- AWS_MANAGED: "AWS_MANAGED",
3
- SELF_MANAGED: "SELF_MANAGED",
4
- };
5
- export const ServerType = {
6
- RDS_SAL: "RDS_SAL",
7
- };
8
- export const LicenseServerEndpointProvisioningStatus = {
9
- DELETED: "DELETED",
10
- DELETING: "DELETING",
11
- DELETION_FAILED: "DELETION_FAILED",
12
- PROVISIONED: "PROVISIONED",
13
- PROVISIONING: "PROVISIONING",
14
- PROVISIONING_FAILED: "PROVISIONING_FAILED",
15
- };
16
- export const LicenseServerHealthStatus = {
17
- HEALTHY: "HEALTHY",
18
- NOT_APPLICABLE: "NOT_APPLICABLE",
19
- UNHEALTHY: "UNHEALTHY",
20
- };
1
+ export {};
@@ -10,6 +10,7 @@ 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/enums";
13
14
  export * from "./models/errors";
14
15
  export type * from "./models/models_0";
15
16
  export { LicenseManagerUserSubscriptionsServiceException } from "./models/LicenseManagerUserSubscriptionsServiceException";
@@ -0,0 +1,88 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const ActiveDirectoryType: {
6
+ /**
7
+ * AWS_MANAGED type of Active Directory
8
+ */
9
+ readonly AWS_MANAGED: "AWS_MANAGED";
10
+ /**
11
+ * SELF_MANAGED type of Active Directory
12
+ */
13
+ readonly SELF_MANAGED: "SELF_MANAGED";
14
+ };
15
+ /**
16
+ * @public
17
+ */
18
+ export type ActiveDirectoryType = (typeof ActiveDirectoryType)[keyof typeof ActiveDirectoryType];
19
+ /**
20
+ * @public
21
+ * @enum
22
+ */
23
+ export declare const ServerType: {
24
+ /**
25
+ *
26
+ */
27
+ readonly RDS_SAL: "RDS_SAL";
28
+ };
29
+ /**
30
+ * @public
31
+ */
32
+ export type ServerType = (typeof ServerType)[keyof typeof ServerType];
33
+ /**
34
+ * @public
35
+ * @enum
36
+ */
37
+ export declare const LicenseServerEndpointProvisioningStatus: {
38
+ /**
39
+ *
40
+ */
41
+ readonly DELETED: "DELETED";
42
+ /**
43
+ *
44
+ */
45
+ readonly DELETING: "DELETING";
46
+ /**
47
+ *
48
+ */
49
+ readonly DELETION_FAILED: "DELETION_FAILED";
50
+ /**
51
+ *
52
+ */
53
+ readonly PROVISIONED: "PROVISIONED";
54
+ /**
55
+ *
56
+ */
57
+ readonly PROVISIONING: "PROVISIONING";
58
+ /**
59
+ *
60
+ */
61
+ readonly PROVISIONING_FAILED: "PROVISIONING_FAILED";
62
+ };
63
+ /**
64
+ * @public
65
+ */
66
+ export type LicenseServerEndpointProvisioningStatus = (typeof LicenseServerEndpointProvisioningStatus)[keyof typeof LicenseServerEndpointProvisioningStatus];
67
+ /**
68
+ * @public
69
+ * @enum
70
+ */
71
+ export declare const LicenseServerHealthStatus: {
72
+ /**
73
+ *
74
+ */
75
+ readonly HEALTHY: "HEALTHY";
76
+ /**
77
+ *
78
+ */
79
+ readonly NOT_APPLICABLE: "NOT_APPLICABLE";
80
+ /**
81
+ *
82
+ */
83
+ readonly UNHEALTHY: "UNHEALTHY";
84
+ };
85
+ /**
86
+ * @public
87
+ */
88
+ export type LicenseServerHealthStatus = (typeof LicenseServerHealthStatus)[keyof typeof LicenseServerHealthStatus];
@@ -1,3 +1,4 @@
1
+ import { ActiveDirectoryType, LicenseServerEndpointProvisioningStatus, LicenseServerHealthStatus, ServerType } from "./enums";
1
2
  /**
2
3
  * <p>Contains a credentials secret that's stored in Secrets Manager.</p>
3
4
  * @public
@@ -84,24 +85,6 @@ export interface ActiveDirectorySettings {
84
85
  */
85
86
  DomainNetworkSettings?: DomainNetworkSettings | undefined;
86
87
  }
87
- /**
88
- * @public
89
- * @enum
90
- */
91
- export declare const ActiveDirectoryType: {
92
- /**
93
- * AWS_MANAGED type of Active Directory
94
- */
95
- readonly AWS_MANAGED: "AWS_MANAGED";
96
- /**
97
- * SELF_MANAGED type of Active Directory
98
- */
99
- readonly SELF_MANAGED: "SELF_MANAGED";
100
- };
101
- /**
102
- * @public
103
- */
104
- export type ActiveDirectoryType = (typeof ActiveDirectoryType)[keyof typeof ActiveDirectoryType];
105
88
  /**
106
89
  * <p>Details about an Active Directory identity provider.</p>
107
90
  * @public
@@ -296,20 +279,6 @@ export declare namespace ServerSettings {
296
279
  _: (name: string, value: any) => T;
297
280
  }
298
281
  }
299
- /**
300
- * @public
301
- * @enum
302
- */
303
- export declare const ServerType: {
304
- /**
305
- *
306
- */
307
- readonly RDS_SAL: "RDS_SAL";
308
- };
309
- /**
310
- * @public
311
- */
312
- export type ServerType = (typeof ServerType)[keyof typeof ServerType];
313
282
  /**
314
283
  * <p>The settings to configure your license server.</p>
315
284
  * @public
@@ -376,62 +345,6 @@ export interface DeleteLicenseServerEndpointRequest {
376
345
  */
377
346
  ServerType: ServerType | undefined;
378
347
  }
379
- /**
380
- * @public
381
- * @enum
382
- */
383
- export declare const LicenseServerEndpointProvisioningStatus: {
384
- /**
385
- *
386
- */
387
- readonly DELETED: "DELETED";
388
- /**
389
- *
390
- */
391
- readonly DELETING: "DELETING";
392
- /**
393
- *
394
- */
395
- readonly DELETION_FAILED: "DELETION_FAILED";
396
- /**
397
- *
398
- */
399
- readonly PROVISIONED: "PROVISIONED";
400
- /**
401
- *
402
- */
403
- readonly PROVISIONING: "PROVISIONING";
404
- /**
405
- *
406
- */
407
- readonly PROVISIONING_FAILED: "PROVISIONING_FAILED";
408
- };
409
- /**
410
- * @public
411
- */
412
- export type LicenseServerEndpointProvisioningStatus = (typeof LicenseServerEndpointProvisioningStatus)[keyof typeof LicenseServerEndpointProvisioningStatus];
413
- /**
414
- * @public
415
- * @enum
416
- */
417
- export declare const LicenseServerHealthStatus: {
418
- /**
419
- *
420
- */
421
- readonly HEALTHY: "HEALTHY";
422
- /**
423
- *
424
- */
425
- readonly NOT_APPLICABLE: "NOT_APPLICABLE";
426
- /**
427
- *
428
- */
429
- readonly UNHEALTHY: "UNHEALTHY";
430
- };
431
- /**
432
- * @public
433
- */
434
- export type LicenseServerHealthStatus = (typeof LicenseServerHealthStatus)[keyof typeof LicenseServerHealthStatus];
435
348
  /**
436
349
  * <p>Information about a Remote Desktop Services (RDS) license server.</p>
437
350
  * @public
@@ -5,6 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { LicenseManagerUserSubscriptionsExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
+ export * from "./models/enums";
8
9
  export * from "./models/errors";
9
10
  export * from "./models/models_0";
10
11
  export { LicenseManagerUserSubscriptionsServiceException } from "./models/LicenseManagerUserSubscriptionsServiceException";
@@ -0,0 +1,27 @@
1
+ export declare const ActiveDirectoryType: {
2
+ readonly AWS_MANAGED: "AWS_MANAGED";
3
+ readonly SELF_MANAGED: "SELF_MANAGED";
4
+ };
5
+ export type ActiveDirectoryType =
6
+ (typeof ActiveDirectoryType)[keyof typeof ActiveDirectoryType];
7
+ export declare const ServerType: {
8
+ readonly RDS_SAL: "RDS_SAL";
9
+ };
10
+ export type ServerType = (typeof ServerType)[keyof typeof ServerType];
11
+ export declare const LicenseServerEndpointProvisioningStatus: {
12
+ readonly DELETED: "DELETED";
13
+ readonly DELETING: "DELETING";
14
+ readonly DELETION_FAILED: "DELETION_FAILED";
15
+ readonly PROVISIONED: "PROVISIONED";
16
+ readonly PROVISIONING: "PROVISIONING";
17
+ readonly PROVISIONING_FAILED: "PROVISIONING_FAILED";
18
+ };
19
+ export type LicenseServerEndpointProvisioningStatus =
20
+ (typeof LicenseServerEndpointProvisioningStatus)[keyof typeof LicenseServerEndpointProvisioningStatus];
21
+ export declare const LicenseServerHealthStatus: {
22
+ readonly HEALTHY: "HEALTHY";
23
+ readonly NOT_APPLICABLE: "NOT_APPLICABLE";
24
+ readonly UNHEALTHY: "UNHEALTHY";
25
+ };
26
+ export type LicenseServerHealthStatus =
27
+ (typeof LicenseServerHealthStatus)[keyof typeof LicenseServerHealthStatus];
@@ -1,3 +1,9 @@
1
+ import {
2
+ ActiveDirectoryType,
3
+ LicenseServerEndpointProvisioningStatus,
4
+ LicenseServerHealthStatus,
5
+ ServerType,
6
+ } from "./enums";
1
7
  export interface SecretsManagerCredentialsProvider {
2
8
  SecretId?: string | undefined;
3
9
  }
@@ -30,12 +36,6 @@ export interface ActiveDirectorySettings {
30
36
  DomainCredentialsProvider?: CredentialsProvider | undefined;
31
37
  DomainNetworkSettings?: DomainNetworkSettings | undefined;
32
38
  }
33
- export declare const ActiveDirectoryType: {
34
- readonly AWS_MANAGED: "AWS_MANAGED";
35
- readonly SELF_MANAGED: "SELF_MANAGED";
36
- };
37
- export type ActiveDirectoryType =
38
- (typeof ActiveDirectoryType)[keyof typeof ActiveDirectoryType];
39
39
  export interface ActiveDirectoryIdentityProvider {
40
40
  DirectoryId?: string | undefined;
41
41
  ActiveDirectorySettings?: ActiveDirectorySettings | undefined;
@@ -102,10 +102,6 @@ export declare namespace ServerSettings {
102
102
  _: (name: string, value: any) => T;
103
103
  }
104
104
  }
105
- export declare const ServerType: {
106
- readonly RDS_SAL: "RDS_SAL";
107
- };
108
- export type ServerType = (typeof ServerType)[keyof typeof ServerType];
109
105
  export interface LicenseServerSettings {
110
106
  ServerType: ServerType | undefined;
111
107
  ServerSettings: ServerSettings | undefined;
@@ -123,23 +119,6 @@ export interface DeleteLicenseServerEndpointRequest {
123
119
  LicenseServerEndpointArn: string | undefined;
124
120
  ServerType: ServerType | undefined;
125
121
  }
126
- export declare const LicenseServerEndpointProvisioningStatus: {
127
- readonly DELETED: "DELETED";
128
- readonly DELETING: "DELETING";
129
- readonly DELETION_FAILED: "DELETION_FAILED";
130
- readonly PROVISIONED: "PROVISIONED";
131
- readonly PROVISIONING: "PROVISIONING";
132
- readonly PROVISIONING_FAILED: "PROVISIONING_FAILED";
133
- };
134
- export type LicenseServerEndpointProvisioningStatus =
135
- (typeof LicenseServerEndpointProvisioningStatus)[keyof typeof LicenseServerEndpointProvisioningStatus];
136
- export declare const LicenseServerHealthStatus: {
137
- readonly HEALTHY: "HEALTHY";
138
- readonly NOT_APPLICABLE: "NOT_APPLICABLE";
139
- readonly UNHEALTHY: "UNHEALTHY";
140
- };
141
- export type LicenseServerHealthStatus =
142
- (typeof LicenseServerHealthStatus)[keyof typeof LicenseServerHealthStatus];
143
122
  export interface LicenseServer {
144
123
  ProvisioningStatus?: LicenseServerEndpointProvisioningStatus | undefined;
145
124
  HealthStatus?: LicenseServerHealthStatus | undefined;
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.936.0",
4
+ "version": "3.939.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",
@@ -21,7 +21,7 @@
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
23
  "@aws-sdk/core": "3.936.0",
24
- "@aws-sdk/credential-provider-node": "3.936.0",
24
+ "@aws-sdk/credential-provider-node": "3.939.0",
25
25
  "@aws-sdk/middleware-host-header": "3.936.0",
26
26
  "@aws-sdk/middleware-logger": "3.936.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.936.0",