@aws-sdk/client-license-manager-user-subscriptions 3.691.0 → 3.693.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.
Files changed (59) hide show
  1. package/README.md +48 -0
  2. package/dist-cjs/index.js +441 -8
  3. package/dist-es/LicenseManagerUserSubscriptions.js +12 -0
  4. package/dist-es/commands/AssociateUserCommand.js +2 -1
  5. package/dist-es/commands/CreateLicenseServerEndpointCommand.js +23 -0
  6. package/dist-es/commands/DeleteLicenseServerEndpointCommand.js +22 -0
  7. package/dist-es/commands/ListLicenseServerEndpointsCommand.js +22 -0
  8. package/dist-es/commands/ListTagsForResourceCommand.js +23 -0
  9. package/dist-es/commands/RegisterIdentityProviderCommand.js +2 -1
  10. package/dist-es/commands/StartProductSubscriptionCommand.js +2 -1
  11. package/dist-es/commands/TagResourceCommand.js +23 -0
  12. package/dist-es/commands/UntagResourceCommand.js +23 -0
  13. package/dist-es/commands/index.js +6 -0
  14. package/dist-es/models/models_0.js +69 -0
  15. package/dist-es/pagination/ListLicenseServerEndpointsPaginator.js +4 -0
  16. package/dist-es/pagination/index.js +1 -0
  17. package/dist-es/protocols/Aws_restJson1.js +189 -1
  18. package/dist-types/LicenseManagerUserSubscriptions.d.ts +47 -1
  19. package/dist-types/LicenseManagerUserSubscriptionsClient.d.ts +9 -3
  20. package/dist-types/commands/AssociateUserCommand.d.ts +41 -3
  21. package/dist-types/commands/CreateLicenseServerEndpointCommand.d.ts +109 -0
  22. package/dist-types/commands/DeleteLicenseServerEndpointCommand.d.ts +112 -0
  23. package/dist-types/commands/DeregisterIdentityProviderCommand.d.ts +41 -5
  24. package/dist-types/commands/DisassociateUserCommand.d.ts +40 -4
  25. package/dist-types/commands/ListIdentityProvidersCommand.d.ts +28 -3
  26. package/dist-types/commands/ListInstancesCommand.d.ts +1 -1
  27. package/dist-types/commands/ListLicenseServerEndpointsCommand.d.ts +119 -0
  28. package/dist-types/commands/ListProductSubscriptionsCommand.d.ts +37 -2
  29. package/dist-types/commands/ListTagsForResourceCommand.d.ts +82 -0
  30. package/dist-types/commands/ListUserAssociationsCommand.d.ts +36 -1
  31. package/dist-types/commands/RegisterIdentityProviderCommand.d.ts +41 -3
  32. package/dist-types/commands/StartProductSubscriptionCommand.d.ts +41 -3
  33. package/dist-types/commands/StopProductSubscriptionCommand.d.ts +40 -4
  34. package/dist-types/commands/TagResourceCommand.d.ts +81 -0
  35. package/dist-types/commands/UntagResourceCommand.d.ts +78 -0
  36. package/dist-types/commands/UpdateIdentityProviderSettingsCommand.d.ts +40 -4
  37. package/dist-types/commands/index.d.ts +6 -0
  38. package/dist-types/index.d.ts +1 -1
  39. package/dist-types/models/models_0.d.ts +728 -71
  40. package/dist-types/pagination/ListLicenseServerEndpointsPaginator.d.ts +7 -0
  41. package/dist-types/pagination/index.d.ts +1 -0
  42. package/dist-types/protocols/Aws_restJson1.d.ts +54 -0
  43. package/dist-types/ts3.4/LicenseManagerUserSubscriptions.d.ts +106 -0
  44. package/dist-types/ts3.4/LicenseManagerUserSubscriptionsClient.d.ts +36 -0
  45. package/dist-types/ts3.4/commands/CreateLicenseServerEndpointCommand.d.ts +51 -0
  46. package/dist-types/ts3.4/commands/DeleteLicenseServerEndpointCommand.d.ts +51 -0
  47. package/dist-types/ts3.4/commands/DeregisterIdentityProviderCommand.d.ts +1 -1
  48. package/dist-types/ts3.4/commands/DisassociateUserCommand.d.ts +1 -1
  49. package/dist-types/ts3.4/commands/ListLicenseServerEndpointsCommand.d.ts +51 -0
  50. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  51. package/dist-types/ts3.4/commands/StopProductSubscriptionCommand.d.ts +1 -1
  52. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  53. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  54. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  55. package/dist-types/ts3.4/models/models_0.d.ts +191 -11
  56. package/dist-types/ts3.4/pagination/ListLicenseServerEndpointsPaginator.d.ts +11 -0
  57. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  58. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +72 -0
  59. package/package.json +35 -35
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ LicenseManagerUserSubscriptionsClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../LicenseManagerUserSubscriptionsClient";
8
+ import {
9
+ UntagResourceRequest,
10
+ UntagResourceResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
15
+ export interface UntagResourceCommandOutput
16
+ extends UntagResourceResponse,
17
+ __MetadataBearer {}
18
+ declare const UntagResourceCommand_base: {
19
+ new (
20
+ input: UntagResourceCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ UntagResourceCommandInput,
23
+ UntagResourceCommandOutput,
24
+ LicenseManagerUserSubscriptionsClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: UntagResourceCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ UntagResourceCommandInput,
32
+ UntagResourceCommandOutput,
33
+ LicenseManagerUserSubscriptionsClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class UntagResourceCommand extends UntagResourceCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: UntagResourceRequest;
43
+ output: {};
44
+ };
45
+ sdk: {
46
+ input: UntagResourceCommandInput;
47
+ output: UntagResourceCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -1,11 +1,17 @@
1
1
  export * from "./AssociateUserCommand";
2
+ export * from "./CreateLicenseServerEndpointCommand";
3
+ export * from "./DeleteLicenseServerEndpointCommand";
2
4
  export * from "./DeregisterIdentityProviderCommand";
3
5
  export * from "./DisassociateUserCommand";
4
6
  export * from "./ListIdentityProvidersCommand";
5
7
  export * from "./ListInstancesCommand";
8
+ export * from "./ListLicenseServerEndpointsCommand";
6
9
  export * from "./ListProductSubscriptionsCommand";
10
+ export * from "./ListTagsForResourceCommand";
7
11
  export * from "./ListUserAssociationsCommand";
8
12
  export * from "./RegisterIdentityProviderCommand";
9
13
  export * from "./StartProductSubscriptionCommand";
10
14
  export * from "./StopProductSubscriptionCommand";
15
+ export * from "./TagResourceCommand";
16
+ export * from "./UntagResourceCommand";
11
17
  export * from "./UpdateIdentityProviderSettingsCommand";
@@ -7,8 +7,48 @@ export declare class AccessDeniedException extends __BaseException {
7
7
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
8
8
  );
9
9
  }
10
+ export interface SecretsManagerCredentialsProvider {
11
+ SecretId?: string | undefined;
12
+ }
13
+ export type CredentialsProvider =
14
+ | CredentialsProvider.SecretsManagerCredentialsProviderMember
15
+ | CredentialsProvider.$UnknownMember;
16
+ export declare namespace CredentialsProvider {
17
+ interface SecretsManagerCredentialsProviderMember {
18
+ SecretsManagerCredentialsProvider: SecretsManagerCredentialsProvider;
19
+ $unknown?: never;
20
+ }
21
+ interface $UnknownMember {
22
+ SecretsManagerCredentialsProvider?: never;
23
+ $unknown: [string, any];
24
+ }
25
+ interface Visitor<T> {
26
+ SecretsManagerCredentialsProvider: (
27
+ value: SecretsManagerCredentialsProvider
28
+ ) => T;
29
+ _: (name: string, value: any) => T;
30
+ }
31
+ const visit: <T>(value: CredentialsProvider, visitor: Visitor<T>) => T;
32
+ }
33
+ export interface DomainNetworkSettings {
34
+ Subnets: string[] | undefined;
35
+ }
36
+ export interface ActiveDirectorySettings {
37
+ DomainName?: string | undefined;
38
+ DomainIpv4List?: string[] | undefined;
39
+ DomainCredentialsProvider?: CredentialsProvider | undefined;
40
+ DomainNetworkSettings?: DomainNetworkSettings | undefined;
41
+ }
42
+ export declare const ActiveDirectoryType: {
43
+ readonly AWS_MANAGED: "AWS_MANAGED";
44
+ readonly SELF_MANAGED: "SELF_MANAGED";
45
+ };
46
+ export type ActiveDirectoryType =
47
+ (typeof ActiveDirectoryType)[keyof typeof ActiveDirectoryType];
10
48
  export interface ActiveDirectoryIdentityProvider {
11
49
  DirectoryId?: string | undefined;
50
+ ActiveDirectorySettings?: ActiveDirectorySettings | undefined;
51
+ ActiveDirectoryType?: ActiveDirectoryType | undefined;
12
52
  }
13
53
  export type IdentityProvider =
14
54
  | IdentityProvider.ActiveDirectoryIdentityProviderMember
@@ -35,12 +75,14 @@ export interface AssociateUserRequest {
35
75
  InstanceId: string | undefined;
36
76
  IdentityProvider: IdentityProvider | undefined;
37
77
  Domain?: string | undefined;
78
+ Tags?: Record<string, string> | undefined;
38
79
  }
39
80
  export interface InstanceUserSummary {
40
81
  Username: string | undefined;
41
82
  InstanceId: string | undefined;
42
83
  IdentityProvider: IdentityProvider | undefined;
43
84
  Status: string | undefined;
85
+ InstanceUserArn?: string | undefined;
44
86
  StatusMessage?: string | undefined;
45
87
  Domain?: string | undefined;
46
88
  AssociationDate?: string | undefined;
@@ -89,9 +131,93 @@ export declare class ValidationException extends __BaseException {
89
131
  opts: __ExceptionOptionType<ValidationException, __BaseException>
90
132
  );
91
133
  }
134
+ export interface RdsSalSettings {
135
+ RdsSalCredentialsProvider: CredentialsProvider | undefined;
136
+ }
137
+ export type ServerSettings =
138
+ | ServerSettings.RdsSalSettingsMember
139
+ | ServerSettings.$UnknownMember;
140
+ export declare namespace ServerSettings {
141
+ interface RdsSalSettingsMember {
142
+ RdsSalSettings: RdsSalSettings;
143
+ $unknown?: never;
144
+ }
145
+ interface $UnknownMember {
146
+ RdsSalSettings?: never;
147
+ $unknown: [string, any];
148
+ }
149
+ interface Visitor<T> {
150
+ RdsSalSettings: (value: RdsSalSettings) => T;
151
+ _: (name: string, value: any) => T;
152
+ }
153
+ const visit: <T>(value: ServerSettings, visitor: Visitor<T>) => T;
154
+ }
155
+ export declare const ServerType: {
156
+ readonly RDS_SAL: "RDS_SAL";
157
+ };
158
+ export type ServerType = (typeof ServerType)[keyof typeof ServerType];
159
+ export interface LicenseServerSettings {
160
+ ServerType: ServerType | undefined;
161
+ ServerSettings: ServerSettings | undefined;
162
+ }
163
+ export interface CreateLicenseServerEndpointRequest {
164
+ IdentityProviderArn: string | undefined;
165
+ LicenseServerSettings: LicenseServerSettings | undefined;
166
+ Tags?: Record<string, string> | undefined;
167
+ }
168
+ export interface CreateLicenseServerEndpointResponse {
169
+ IdentityProviderArn?: string | undefined;
170
+ LicenseServerEndpointArn?: string | undefined;
171
+ }
172
+ export interface DeleteLicenseServerEndpointRequest {
173
+ LicenseServerEndpointArn: string | undefined;
174
+ ServerType: ServerType | undefined;
175
+ }
176
+ export declare const LicenseServerEndpointProvisioningStatus: {
177
+ readonly DELETED: "DELETED";
178
+ readonly DELETING: "DELETING";
179
+ readonly DELETION_FAILED: "DELETION_FAILED";
180
+ readonly PROVISIONED: "PROVISIONED";
181
+ readonly PROVISIONING: "PROVISIONING";
182
+ readonly PROVISIONING_FAILED: "PROVISIONING_FAILED";
183
+ };
184
+ export type LicenseServerEndpointProvisioningStatus =
185
+ (typeof LicenseServerEndpointProvisioningStatus)[keyof typeof LicenseServerEndpointProvisioningStatus];
186
+ export declare const LicenseServerHealthStatus: {
187
+ readonly HEALTHY: "HEALTHY";
188
+ readonly NOT_APPLICABLE: "NOT_APPLICABLE";
189
+ readonly UNHEALTHY: "UNHEALTHY";
190
+ };
191
+ export type LicenseServerHealthStatus =
192
+ (typeof LicenseServerHealthStatus)[keyof typeof LicenseServerHealthStatus];
193
+ export interface LicenseServer {
194
+ ProvisioningStatus?: LicenseServerEndpointProvisioningStatus | undefined;
195
+ HealthStatus?: LicenseServerHealthStatus | undefined;
196
+ Ipv4Address?: string | undefined;
197
+ }
198
+ export interface ServerEndpoint {
199
+ Endpoint?: string | undefined;
200
+ }
201
+ export interface LicenseServerEndpoint {
202
+ IdentityProviderArn?: string | undefined;
203
+ ServerType?: ServerType | undefined;
204
+ ServerEndpoint?: ServerEndpoint | undefined;
205
+ StatusMessage?: string | undefined;
206
+ LicenseServerEndpointId?: string | undefined;
207
+ LicenseServerEndpointArn?: string | undefined;
208
+ LicenseServerEndpointProvisioningStatus?:
209
+ | LicenseServerEndpointProvisioningStatus
210
+ | undefined;
211
+ LicenseServers?: LicenseServer[] | undefined;
212
+ CreationTime?: Date | undefined;
213
+ }
214
+ export interface DeleteLicenseServerEndpointResponse {
215
+ LicenseServerEndpoint?: LicenseServerEndpoint | undefined;
216
+ }
92
217
  export interface DeregisterIdentityProviderRequest {
93
- IdentityProvider: IdentityProvider | undefined;
94
- Product: string | undefined;
218
+ IdentityProvider?: IdentityProvider | undefined;
219
+ Product?: string | undefined;
220
+ IdentityProviderArn?: string | undefined;
95
221
  }
96
222
  export interface Settings {
97
223
  Subnets: string[] | undefined;
@@ -102,15 +228,17 @@ export interface IdentityProviderSummary {
102
228
  Settings: Settings | undefined;
103
229
  Product: string | undefined;
104
230
  Status: string | undefined;
231
+ IdentityProviderArn?: string | undefined;
105
232
  FailureMessage?: string | undefined;
106
233
  }
107
234
  export interface DeregisterIdentityProviderResponse {
108
235
  IdentityProviderSummary: IdentityProviderSummary | undefined;
109
236
  }
110
237
  export interface DisassociateUserRequest {
111
- Username: string | undefined;
112
- InstanceId: string | undefined;
113
- IdentityProvider: IdentityProvider | undefined;
238
+ Username?: string | undefined;
239
+ InstanceId?: string | undefined;
240
+ IdentityProvider?: IdentityProvider | undefined;
241
+ InstanceUserArn?: string | undefined;
114
242
  Domain?: string | undefined;
115
243
  }
116
244
  export interface DisassociateUserResponse {
@@ -130,6 +258,7 @@ export interface InstanceSummary {
130
258
  }
131
259
  export interface ListIdentityProvidersRequest {
132
260
  MaxResults?: number | undefined;
261
+ Filters?: Filter[] | undefined;
133
262
  NextToken?: string | undefined;
134
263
  }
135
264
  export interface ListIdentityProvidersResponse {
@@ -145,8 +274,17 @@ export interface ListInstancesResponse {
145
274
  InstanceSummaries?: InstanceSummary[] | undefined;
146
275
  NextToken?: string | undefined;
147
276
  }
277
+ export interface ListLicenseServerEndpointsRequest {
278
+ MaxResults?: number | undefined;
279
+ Filters?: Filter[] | undefined;
280
+ NextToken?: string | undefined;
281
+ }
282
+ export interface ListLicenseServerEndpointsResponse {
283
+ LicenseServerEndpoints?: LicenseServerEndpoint[] | undefined;
284
+ NextToken?: string | undefined;
285
+ }
148
286
  export interface ListProductSubscriptionsRequest {
149
- Product: string | undefined;
287
+ Product?: string | undefined;
150
288
  IdentityProvider: IdentityProvider | undefined;
151
289
  MaxResults?: number | undefined;
152
290
  Filters?: Filter[] | undefined;
@@ -157,6 +295,7 @@ export interface ProductUserSummary {
157
295
  Product: string | undefined;
158
296
  IdentityProvider: IdentityProvider | undefined;
159
297
  Status: string | undefined;
298
+ ProductUserArn?: string | undefined;
160
299
  StatusMessage?: string | undefined;
161
300
  Domain?: string | undefined;
162
301
  SubscriptionStartDate?: string | undefined;
@@ -166,6 +305,12 @@ export interface ListProductSubscriptionsResponse {
166
305
  ProductUserSummaries?: ProductUserSummary[] | undefined;
167
306
  NextToken?: string | undefined;
168
307
  }
308
+ export interface ListTagsForResourceRequest {
309
+ ResourceArn: string | undefined;
310
+ }
311
+ export interface ListTagsForResourceResponse {
312
+ Tags?: Record<string, string> | undefined;
313
+ }
169
314
  export interface ListUserAssociationsRequest {
170
315
  InstanceId: string | undefined;
171
316
  IdentityProvider: IdentityProvider | undefined;
@@ -181,6 +326,7 @@ export interface RegisterIdentityProviderRequest {
181
326
  IdentityProvider: IdentityProvider | undefined;
182
327
  Product: string | undefined;
183
328
  Settings?: Settings | undefined;
329
+ Tags?: Record<string, string> | undefined;
184
330
  }
185
331
  export interface RegisterIdentityProviderResponse {
186
332
  IdentityProviderSummary: IdentityProviderSummary | undefined;
@@ -190,29 +336,63 @@ export interface StartProductSubscriptionRequest {
190
336
  IdentityProvider: IdentityProvider | undefined;
191
337
  Product: string | undefined;
192
338
  Domain?: string | undefined;
339
+ Tags?: Record<string, string> | undefined;
193
340
  }
194
341
  export interface StartProductSubscriptionResponse {
195
342
  ProductUserSummary: ProductUserSummary | undefined;
196
343
  }
197
344
  export interface StopProductSubscriptionRequest {
198
- Username: string | undefined;
199
- IdentityProvider: IdentityProvider | undefined;
200
- Product: string | undefined;
345
+ Username?: string | undefined;
346
+ IdentityProvider?: IdentityProvider | undefined;
347
+ Product?: string | undefined;
348
+ ProductUserArn?: string | undefined;
201
349
  Domain?: string | undefined;
202
350
  }
203
351
  export interface StopProductSubscriptionResponse {
204
352
  ProductUserSummary: ProductUserSummary | undefined;
205
353
  }
354
+ export interface TagResourceRequest {
355
+ ResourceArn: string | undefined;
356
+ Tags: Record<string, string> | undefined;
357
+ }
358
+ export interface TagResourceResponse {}
359
+ export interface UntagResourceRequest {
360
+ ResourceArn: string | undefined;
361
+ TagKeys: string[] | undefined;
362
+ }
363
+ export interface UntagResourceResponse {}
206
364
  export interface UpdateSettings {
207
365
  AddSubnets: string[] | undefined;
208
366
  RemoveSubnets: string[] | undefined;
209
367
  SecurityGroupId?: string | undefined;
210
368
  }
211
369
  export interface UpdateIdentityProviderSettingsRequest {
212
- IdentityProvider: IdentityProvider | undefined;
213
- Product: string | undefined;
370
+ IdentityProvider?: IdentityProvider | undefined;
371
+ Product?: string | undefined;
372
+ IdentityProviderArn?: string | undefined;
214
373
  UpdateSettings: UpdateSettings | undefined;
215
374
  }
216
375
  export interface UpdateIdentityProviderSettingsResponse {
217
376
  IdentityProviderSummary: IdentityProviderSummary | undefined;
218
377
  }
378
+ export declare const AssociateUserRequestFilterSensitiveLog: (
379
+ obj: AssociateUserRequest
380
+ ) => any;
381
+ export declare const CreateLicenseServerEndpointRequestFilterSensitiveLog: (
382
+ obj: CreateLicenseServerEndpointRequest
383
+ ) => any;
384
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
385
+ obj: ListTagsForResourceResponse
386
+ ) => any;
387
+ export declare const RegisterIdentityProviderRequestFilterSensitiveLog: (
388
+ obj: RegisterIdentityProviderRequest
389
+ ) => any;
390
+ export declare const StartProductSubscriptionRequestFilterSensitiveLog: (
391
+ obj: StartProductSubscriptionRequest
392
+ ) => any;
393
+ export declare const TagResourceRequestFilterSensitiveLog: (
394
+ obj: TagResourceRequest
395
+ ) => any;
396
+ export declare const UntagResourceRequestFilterSensitiveLog: (
397
+ obj: UntagResourceRequest
398
+ ) => any;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListLicenseServerEndpointsCommandInput,
4
+ ListLicenseServerEndpointsCommandOutput,
5
+ } from "../commands/ListLicenseServerEndpointsCommand";
6
+ import { LicenseManagerUserSubscriptionsPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListLicenseServerEndpoints: (
8
+ config: LicenseManagerUserSubscriptionsPaginationConfiguration,
9
+ input: ListLicenseServerEndpointsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListLicenseServerEndpointsCommandOutput>;
@@ -1,5 +1,6 @@
1
1
  export * from "./Interfaces";
2
2
  export * from "./ListIdentityProvidersPaginator";
3
3
  export * from "./ListInstancesPaginator";
4
+ export * from "./ListLicenseServerEndpointsPaginator";
4
5
  export * from "./ListProductSubscriptionsPaginator";
5
6
  export * from "./ListUserAssociationsPaginator";
@@ -7,6 +7,14 @@ import {
7
7
  AssociateUserCommandInput,
8
8
  AssociateUserCommandOutput,
9
9
  } from "../commands/AssociateUserCommand";
10
+ import {
11
+ CreateLicenseServerEndpointCommandInput,
12
+ CreateLicenseServerEndpointCommandOutput,
13
+ } from "../commands/CreateLicenseServerEndpointCommand";
14
+ import {
15
+ DeleteLicenseServerEndpointCommandInput,
16
+ DeleteLicenseServerEndpointCommandOutput,
17
+ } from "../commands/DeleteLicenseServerEndpointCommand";
10
18
  import {
11
19
  DeregisterIdentityProviderCommandInput,
12
20
  DeregisterIdentityProviderCommandOutput,
@@ -23,10 +31,18 @@ import {
23
31
  ListInstancesCommandInput,
24
32
  ListInstancesCommandOutput,
25
33
  } from "../commands/ListInstancesCommand";
34
+ import {
35
+ ListLicenseServerEndpointsCommandInput,
36
+ ListLicenseServerEndpointsCommandOutput,
37
+ } from "../commands/ListLicenseServerEndpointsCommand";
26
38
  import {
27
39
  ListProductSubscriptionsCommandInput,
28
40
  ListProductSubscriptionsCommandOutput,
29
41
  } from "../commands/ListProductSubscriptionsCommand";
42
+ import {
43
+ ListTagsForResourceCommandInput,
44
+ ListTagsForResourceCommandOutput,
45
+ } from "../commands/ListTagsForResourceCommand";
30
46
  import {
31
47
  ListUserAssociationsCommandInput,
32
48
  ListUserAssociationsCommandOutput,
@@ -43,6 +59,14 @@ import {
43
59
  StopProductSubscriptionCommandInput,
44
60
  StopProductSubscriptionCommandOutput,
45
61
  } from "../commands/StopProductSubscriptionCommand";
62
+ import {
63
+ TagResourceCommandInput,
64
+ TagResourceCommandOutput,
65
+ } from "../commands/TagResourceCommand";
66
+ import {
67
+ UntagResourceCommandInput,
68
+ UntagResourceCommandOutput,
69
+ } from "../commands/UntagResourceCommand";
46
70
  import {
47
71
  UpdateIdentityProviderSettingsCommandInput,
48
72
  UpdateIdentityProviderSettingsCommandOutput,
@@ -51,6 +75,14 @@ export declare const se_AssociateUserCommand: (
51
75
  input: AssociateUserCommandInput,
52
76
  context: __SerdeContext
53
77
  ) => Promise<__HttpRequest>;
78
+ export declare const se_CreateLicenseServerEndpointCommand: (
79
+ input: CreateLicenseServerEndpointCommandInput,
80
+ context: __SerdeContext
81
+ ) => Promise<__HttpRequest>;
82
+ export declare const se_DeleteLicenseServerEndpointCommand: (
83
+ input: DeleteLicenseServerEndpointCommandInput,
84
+ context: __SerdeContext
85
+ ) => Promise<__HttpRequest>;
54
86
  export declare const se_DeregisterIdentityProviderCommand: (
55
87
  input: DeregisterIdentityProviderCommandInput,
56
88
  context: __SerdeContext
@@ -67,10 +99,18 @@ export declare const se_ListInstancesCommand: (
67
99
  input: ListInstancesCommandInput,
68
100
  context: __SerdeContext
69
101
  ) => Promise<__HttpRequest>;
102
+ export declare const se_ListLicenseServerEndpointsCommand: (
103
+ input: ListLicenseServerEndpointsCommandInput,
104
+ context: __SerdeContext
105
+ ) => Promise<__HttpRequest>;
70
106
  export declare const se_ListProductSubscriptionsCommand: (
71
107
  input: ListProductSubscriptionsCommandInput,
72
108
  context: __SerdeContext
73
109
  ) => Promise<__HttpRequest>;
110
+ export declare const se_ListTagsForResourceCommand: (
111
+ input: ListTagsForResourceCommandInput,
112
+ context: __SerdeContext
113
+ ) => Promise<__HttpRequest>;
74
114
  export declare const se_ListUserAssociationsCommand: (
75
115
  input: ListUserAssociationsCommandInput,
76
116
  context: __SerdeContext
@@ -87,6 +127,14 @@ export declare const se_StopProductSubscriptionCommand: (
87
127
  input: StopProductSubscriptionCommandInput,
88
128
  context: __SerdeContext
89
129
  ) => Promise<__HttpRequest>;
130
+ export declare const se_TagResourceCommand: (
131
+ input: TagResourceCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const se_UntagResourceCommand: (
135
+ input: UntagResourceCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
90
138
  export declare const se_UpdateIdentityProviderSettingsCommand: (
91
139
  input: UpdateIdentityProviderSettingsCommandInput,
92
140
  context: __SerdeContext
@@ -95,6 +143,14 @@ export declare const de_AssociateUserCommand: (
95
143
  output: __HttpResponse,
96
144
  context: __SerdeContext
97
145
  ) => Promise<AssociateUserCommandOutput>;
146
+ export declare const de_CreateLicenseServerEndpointCommand: (
147
+ output: __HttpResponse,
148
+ context: __SerdeContext
149
+ ) => Promise<CreateLicenseServerEndpointCommandOutput>;
150
+ export declare const de_DeleteLicenseServerEndpointCommand: (
151
+ output: __HttpResponse,
152
+ context: __SerdeContext
153
+ ) => Promise<DeleteLicenseServerEndpointCommandOutput>;
98
154
  export declare const de_DeregisterIdentityProviderCommand: (
99
155
  output: __HttpResponse,
100
156
  context: __SerdeContext
@@ -111,10 +167,18 @@ export declare const de_ListInstancesCommand: (
111
167
  output: __HttpResponse,
112
168
  context: __SerdeContext
113
169
  ) => Promise<ListInstancesCommandOutput>;
170
+ export declare const de_ListLicenseServerEndpointsCommand: (
171
+ output: __HttpResponse,
172
+ context: __SerdeContext
173
+ ) => Promise<ListLicenseServerEndpointsCommandOutput>;
114
174
  export declare const de_ListProductSubscriptionsCommand: (
115
175
  output: __HttpResponse,
116
176
  context: __SerdeContext
117
177
  ) => Promise<ListProductSubscriptionsCommandOutput>;
178
+ export declare const de_ListTagsForResourceCommand: (
179
+ output: __HttpResponse,
180
+ context: __SerdeContext
181
+ ) => Promise<ListTagsForResourceCommandOutput>;
118
182
  export declare const de_ListUserAssociationsCommand: (
119
183
  output: __HttpResponse,
120
184
  context: __SerdeContext
@@ -131,6 +195,14 @@ export declare const de_StopProductSubscriptionCommand: (
131
195
  output: __HttpResponse,
132
196
  context: __SerdeContext
133
197
  ) => Promise<StopProductSubscriptionCommandOutput>;
198
+ export declare const de_TagResourceCommand: (
199
+ output: __HttpResponse,
200
+ context: __SerdeContext
201
+ ) => Promise<TagResourceCommandOutput>;
202
+ export declare const de_UntagResourceCommand: (
203
+ output: __HttpResponse,
204
+ context: __SerdeContext
205
+ ) => Promise<UntagResourceCommandOutput>;
134
206
  export declare const de_UpdateIdentityProviderSettingsCommand: (
135
207
  output: __HttpResponse,
136
208
  context: __SerdeContext
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.691.0",
4
+ "version": "3.693.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,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.691.0",
24
- "@aws-sdk/client-sts": "3.691.0",
25
- "@aws-sdk/core": "3.691.0",
26
- "@aws-sdk/credential-provider-node": "3.691.0",
27
- "@aws-sdk/middleware-host-header": "3.686.0",
28
- "@aws-sdk/middleware-logger": "3.686.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.691.0",
31
- "@aws-sdk/region-config-resolver": "3.686.0",
32
- "@aws-sdk/types": "3.686.0",
33
- "@aws-sdk/util-endpoints": "3.686.0",
34
- "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.691.0",
36
- "@smithy/config-resolver": "^3.0.10",
37
- "@smithy/core": "^2.5.1",
38
- "@smithy/fetch-http-handler": "^4.0.0",
39
- "@smithy/hash-node": "^3.0.8",
40
- "@smithy/invalid-dependency": "^3.0.8",
41
- "@smithy/middleware-content-length": "^3.0.10",
42
- "@smithy/middleware-endpoint": "^3.2.1",
43
- "@smithy/middleware-retry": "^3.0.25",
44
- "@smithy/middleware-serde": "^3.0.8",
45
- "@smithy/middleware-stack": "^3.0.8",
46
- "@smithy/node-config-provider": "^3.1.9",
47
- "@smithy/node-http-handler": "^3.2.5",
48
- "@smithy/protocol-http": "^4.1.5",
49
- "@smithy/smithy-client": "^3.4.2",
50
- "@smithy/types": "^3.6.0",
51
- "@smithy/url-parser": "^3.0.8",
23
+ "@aws-sdk/client-sso-oidc": "3.693.0",
24
+ "@aws-sdk/client-sts": "3.693.0",
25
+ "@aws-sdk/core": "3.693.0",
26
+ "@aws-sdk/credential-provider-node": "3.693.0",
27
+ "@aws-sdk/middleware-host-header": "3.693.0",
28
+ "@aws-sdk/middleware-logger": "3.693.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.693.0",
30
+ "@aws-sdk/middleware-user-agent": "3.693.0",
31
+ "@aws-sdk/region-config-resolver": "3.693.0",
32
+ "@aws-sdk/types": "3.692.0",
33
+ "@aws-sdk/util-endpoints": "3.693.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.693.0",
35
+ "@aws-sdk/util-user-agent-node": "3.693.0",
36
+ "@smithy/config-resolver": "^3.0.11",
37
+ "@smithy/core": "^2.5.2",
38
+ "@smithy/fetch-http-handler": "^4.1.0",
39
+ "@smithy/hash-node": "^3.0.9",
40
+ "@smithy/invalid-dependency": "^3.0.9",
41
+ "@smithy/middleware-content-length": "^3.0.11",
42
+ "@smithy/middleware-endpoint": "^3.2.2",
43
+ "@smithy/middleware-retry": "^3.0.26",
44
+ "@smithy/middleware-serde": "^3.0.9",
45
+ "@smithy/middleware-stack": "^3.0.9",
46
+ "@smithy/node-config-provider": "^3.1.10",
47
+ "@smithy/node-http-handler": "^3.3.0",
48
+ "@smithy/protocol-http": "^4.1.6",
49
+ "@smithy/smithy-client": "^3.4.3",
50
+ "@smithy/types": "^3.7.0",
51
+ "@smithy/url-parser": "^3.0.9",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.25",
56
- "@smithy/util-defaults-mode-node": "^3.0.25",
57
- "@smithy/util-endpoints": "^2.1.4",
58
- "@smithy/util-middleware": "^3.0.8",
59
- "@smithy/util-retry": "^3.0.8",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.26",
56
+ "@smithy/util-defaults-mode-node": "^3.0.26",
57
+ "@smithy/util-endpoints": "^2.1.5",
58
+ "@smithy/util-middleware": "^3.0.9",
59
+ "@smithy/util-retry": "^3.0.9",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
61
  "tslib": "^2.6.2"
62
62
  },