@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,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListLicenseServerEndpointsCommandInput, ListLicenseServerEndpointsCommandOutput } from "../commands/ListLicenseServerEndpointsCommand";
3
+ import { LicenseManagerUserSubscriptionsPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListLicenseServerEndpoints: (config: LicenseManagerUserSubscriptionsPaginationConfiguration, input: ListLicenseServerEndpointsCommandInput, ...rest: any[]) => 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";
@@ -1,20 +1,34 @@
1
1
  import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
2
  import { SerdeContext as __SerdeContext } from "@smithy/types";
3
3
  import { AssociateUserCommandInput, AssociateUserCommandOutput } from "../commands/AssociateUserCommand";
4
+ import { CreateLicenseServerEndpointCommandInput, CreateLicenseServerEndpointCommandOutput } from "../commands/CreateLicenseServerEndpointCommand";
5
+ import { DeleteLicenseServerEndpointCommandInput, DeleteLicenseServerEndpointCommandOutput } from "../commands/DeleteLicenseServerEndpointCommand";
4
6
  import { DeregisterIdentityProviderCommandInput, DeregisterIdentityProviderCommandOutput } from "../commands/DeregisterIdentityProviderCommand";
5
7
  import { DisassociateUserCommandInput, DisassociateUserCommandOutput } from "../commands/DisassociateUserCommand";
6
8
  import { ListIdentityProvidersCommandInput, ListIdentityProvidersCommandOutput } from "../commands/ListIdentityProvidersCommand";
7
9
  import { ListInstancesCommandInput, ListInstancesCommandOutput } from "../commands/ListInstancesCommand";
10
+ import { ListLicenseServerEndpointsCommandInput, ListLicenseServerEndpointsCommandOutput } from "../commands/ListLicenseServerEndpointsCommand";
8
11
  import { ListProductSubscriptionsCommandInput, ListProductSubscriptionsCommandOutput } from "../commands/ListProductSubscriptionsCommand";
12
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
9
13
  import { ListUserAssociationsCommandInput, ListUserAssociationsCommandOutput } from "../commands/ListUserAssociationsCommand";
10
14
  import { RegisterIdentityProviderCommandInput, RegisterIdentityProviderCommandOutput } from "../commands/RegisterIdentityProviderCommand";
11
15
  import { StartProductSubscriptionCommandInput, StartProductSubscriptionCommandOutput } from "../commands/StartProductSubscriptionCommand";
12
16
  import { StopProductSubscriptionCommandInput, StopProductSubscriptionCommandOutput } from "../commands/StopProductSubscriptionCommand";
17
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
18
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
13
19
  import { UpdateIdentityProviderSettingsCommandInput, UpdateIdentityProviderSettingsCommandOutput } from "../commands/UpdateIdentityProviderSettingsCommand";
14
20
  /**
15
21
  * serializeAws_restJson1AssociateUserCommand
16
22
  */
17
23
  export declare const se_AssociateUserCommand: (input: AssociateUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
+ /**
25
+ * serializeAws_restJson1CreateLicenseServerEndpointCommand
26
+ */
27
+ export declare const se_CreateLicenseServerEndpointCommand: (input: CreateLicenseServerEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
+ /**
29
+ * serializeAws_restJson1DeleteLicenseServerEndpointCommand
30
+ */
31
+ export declare const se_DeleteLicenseServerEndpointCommand: (input: DeleteLicenseServerEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
32
  /**
19
33
  * serializeAws_restJson1DeregisterIdentityProviderCommand
20
34
  */
@@ -31,10 +45,18 @@ export declare const se_ListIdentityProvidersCommand: (input: ListIdentityProvid
31
45
  * serializeAws_restJson1ListInstancesCommand
32
46
  */
33
47
  export declare const se_ListInstancesCommand: (input: ListInstancesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
+ /**
49
+ * serializeAws_restJson1ListLicenseServerEndpointsCommand
50
+ */
51
+ export declare const se_ListLicenseServerEndpointsCommand: (input: ListLicenseServerEndpointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
52
  /**
35
53
  * serializeAws_restJson1ListProductSubscriptionsCommand
36
54
  */
37
55
  export declare const se_ListProductSubscriptionsCommand: (input: ListProductSubscriptionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
56
+ /**
57
+ * serializeAws_restJson1ListTagsForResourceCommand
58
+ */
59
+ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
60
  /**
39
61
  * serializeAws_restJson1ListUserAssociationsCommand
40
62
  */
@@ -51,6 +73,14 @@ export declare const se_StartProductSubscriptionCommand: (input: StartProductSub
51
73
  * serializeAws_restJson1StopProductSubscriptionCommand
52
74
  */
53
75
  export declare const se_StopProductSubscriptionCommand: (input: StopProductSubscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
76
+ /**
77
+ * serializeAws_restJson1TagResourceCommand
78
+ */
79
+ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
80
+ /**
81
+ * serializeAws_restJson1UntagResourceCommand
82
+ */
83
+ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
84
  /**
55
85
  * serializeAws_restJson1UpdateIdentityProviderSettingsCommand
56
86
  */
@@ -59,6 +89,14 @@ export declare const se_UpdateIdentityProviderSettingsCommand: (input: UpdateIde
59
89
  * deserializeAws_restJson1AssociateUserCommand
60
90
  */
61
91
  export declare const de_AssociateUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateUserCommandOutput>;
92
+ /**
93
+ * deserializeAws_restJson1CreateLicenseServerEndpointCommand
94
+ */
95
+ export declare const de_CreateLicenseServerEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLicenseServerEndpointCommandOutput>;
96
+ /**
97
+ * deserializeAws_restJson1DeleteLicenseServerEndpointCommand
98
+ */
99
+ export declare const de_DeleteLicenseServerEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteLicenseServerEndpointCommandOutput>;
62
100
  /**
63
101
  * deserializeAws_restJson1DeregisterIdentityProviderCommand
64
102
  */
@@ -75,10 +113,18 @@ export declare const de_ListIdentityProvidersCommand: (output: __HttpResponse, c
75
113
  * deserializeAws_restJson1ListInstancesCommand
76
114
  */
77
115
  export declare const de_ListInstancesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInstancesCommandOutput>;
116
+ /**
117
+ * deserializeAws_restJson1ListLicenseServerEndpointsCommand
118
+ */
119
+ export declare const de_ListLicenseServerEndpointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListLicenseServerEndpointsCommandOutput>;
78
120
  /**
79
121
  * deserializeAws_restJson1ListProductSubscriptionsCommand
80
122
  */
81
123
  export declare const de_ListProductSubscriptionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListProductSubscriptionsCommandOutput>;
124
+ /**
125
+ * deserializeAws_restJson1ListTagsForResourceCommand
126
+ */
127
+ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
82
128
  /**
83
129
  * deserializeAws_restJson1ListUserAssociationsCommand
84
130
  */
@@ -95,6 +141,14 @@ export declare const de_StartProductSubscriptionCommand: (output: __HttpResponse
95
141
  * deserializeAws_restJson1StopProductSubscriptionCommand
96
142
  */
97
143
  export declare const de_StopProductSubscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopProductSubscriptionCommandOutput>;
144
+ /**
145
+ * deserializeAws_restJson1TagResourceCommand
146
+ */
147
+ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
148
+ /**
149
+ * deserializeAws_restJson1UntagResourceCommand
150
+ */
151
+ export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
98
152
  /**
99
153
  * deserializeAws_restJson1UpdateIdentityProviderSettingsCommand
100
154
  */
@@ -3,6 +3,14 @@ import {
3
3
  AssociateUserCommandInput,
4
4
  AssociateUserCommandOutput,
5
5
  } from "./commands/AssociateUserCommand";
6
+ import {
7
+ CreateLicenseServerEndpointCommandInput,
8
+ CreateLicenseServerEndpointCommandOutput,
9
+ } from "./commands/CreateLicenseServerEndpointCommand";
10
+ import {
11
+ DeleteLicenseServerEndpointCommandInput,
12
+ DeleteLicenseServerEndpointCommandOutput,
13
+ } from "./commands/DeleteLicenseServerEndpointCommand";
6
14
  import {
7
15
  DeregisterIdentityProviderCommandInput,
8
16
  DeregisterIdentityProviderCommandOutput,
@@ -19,10 +27,18 @@ import {
19
27
  ListInstancesCommandInput,
20
28
  ListInstancesCommandOutput,
21
29
  } from "./commands/ListInstancesCommand";
30
+ import {
31
+ ListLicenseServerEndpointsCommandInput,
32
+ ListLicenseServerEndpointsCommandOutput,
33
+ } from "./commands/ListLicenseServerEndpointsCommand";
22
34
  import {
23
35
  ListProductSubscriptionsCommandInput,
24
36
  ListProductSubscriptionsCommandOutput,
25
37
  } from "./commands/ListProductSubscriptionsCommand";
38
+ import {
39
+ ListTagsForResourceCommandInput,
40
+ ListTagsForResourceCommandOutput,
41
+ } from "./commands/ListTagsForResourceCommand";
26
42
  import {
27
43
  ListUserAssociationsCommandInput,
28
44
  ListUserAssociationsCommandOutput,
@@ -39,6 +55,14 @@ import {
39
55
  StopProductSubscriptionCommandInput,
40
56
  StopProductSubscriptionCommandOutput,
41
57
  } from "./commands/StopProductSubscriptionCommand";
58
+ import {
59
+ TagResourceCommandInput,
60
+ TagResourceCommandOutput,
61
+ } from "./commands/TagResourceCommand";
62
+ import {
63
+ UntagResourceCommandInput,
64
+ UntagResourceCommandOutput,
65
+ } from "./commands/UntagResourceCommand";
42
66
  import {
43
67
  UpdateIdentityProviderSettingsCommandInput,
44
68
  UpdateIdentityProviderSettingsCommandOutput,
@@ -58,6 +82,33 @@ export interface LicenseManagerUserSubscriptions {
58
82
  options: __HttpHandlerOptions,
59
83
  cb: (err: any, data?: AssociateUserCommandOutput) => void
60
84
  ): void;
85
+ createLicenseServerEndpoint(
86
+ args: CreateLicenseServerEndpointCommandInput,
87
+ options?: __HttpHandlerOptions
88
+ ): Promise<CreateLicenseServerEndpointCommandOutput>;
89
+ createLicenseServerEndpoint(
90
+ args: CreateLicenseServerEndpointCommandInput,
91
+ cb: (err: any, data?: CreateLicenseServerEndpointCommandOutput) => void
92
+ ): void;
93
+ createLicenseServerEndpoint(
94
+ args: CreateLicenseServerEndpointCommandInput,
95
+ options: __HttpHandlerOptions,
96
+ cb: (err: any, data?: CreateLicenseServerEndpointCommandOutput) => void
97
+ ): void;
98
+ deleteLicenseServerEndpoint(
99
+ args: DeleteLicenseServerEndpointCommandInput,
100
+ options?: __HttpHandlerOptions
101
+ ): Promise<DeleteLicenseServerEndpointCommandOutput>;
102
+ deleteLicenseServerEndpoint(
103
+ args: DeleteLicenseServerEndpointCommandInput,
104
+ cb: (err: any, data?: DeleteLicenseServerEndpointCommandOutput) => void
105
+ ): void;
106
+ deleteLicenseServerEndpoint(
107
+ args: DeleteLicenseServerEndpointCommandInput,
108
+ options: __HttpHandlerOptions,
109
+ cb: (err: any, data?: DeleteLicenseServerEndpointCommandOutput) => void
110
+ ): void;
111
+ deregisterIdentityProvider(): Promise<DeregisterIdentityProviderCommandOutput>;
61
112
  deregisterIdentityProvider(
62
113
  args: DeregisterIdentityProviderCommandInput,
63
114
  options?: __HttpHandlerOptions
@@ -71,6 +122,7 @@ export interface LicenseManagerUserSubscriptions {
71
122
  options: __HttpHandlerOptions,
72
123
  cb: (err: any, data?: DeregisterIdentityProviderCommandOutput) => void
73
124
  ): void;
125
+ disassociateUser(): Promise<DisassociateUserCommandOutput>;
74
126
  disassociateUser(
75
127
  args: DisassociateUserCommandInput,
76
128
  options?: __HttpHandlerOptions
@@ -112,6 +164,20 @@ export interface LicenseManagerUserSubscriptions {
112
164
  options: __HttpHandlerOptions,
113
165
  cb: (err: any, data?: ListInstancesCommandOutput) => void
114
166
  ): void;
167
+ listLicenseServerEndpoints(): Promise<ListLicenseServerEndpointsCommandOutput>;
168
+ listLicenseServerEndpoints(
169
+ args: ListLicenseServerEndpointsCommandInput,
170
+ options?: __HttpHandlerOptions
171
+ ): Promise<ListLicenseServerEndpointsCommandOutput>;
172
+ listLicenseServerEndpoints(
173
+ args: ListLicenseServerEndpointsCommandInput,
174
+ cb: (err: any, data?: ListLicenseServerEndpointsCommandOutput) => void
175
+ ): void;
176
+ listLicenseServerEndpoints(
177
+ args: ListLicenseServerEndpointsCommandInput,
178
+ options: __HttpHandlerOptions,
179
+ cb: (err: any, data?: ListLicenseServerEndpointsCommandOutput) => void
180
+ ): void;
115
181
  listProductSubscriptions(
116
182
  args: ListProductSubscriptionsCommandInput,
117
183
  options?: __HttpHandlerOptions
@@ -125,6 +191,19 @@ export interface LicenseManagerUserSubscriptions {
125
191
  options: __HttpHandlerOptions,
126
192
  cb: (err: any, data?: ListProductSubscriptionsCommandOutput) => void
127
193
  ): void;
194
+ listTagsForResource(
195
+ args: ListTagsForResourceCommandInput,
196
+ options?: __HttpHandlerOptions
197
+ ): Promise<ListTagsForResourceCommandOutput>;
198
+ listTagsForResource(
199
+ args: ListTagsForResourceCommandInput,
200
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
201
+ ): void;
202
+ listTagsForResource(
203
+ args: ListTagsForResourceCommandInput,
204
+ options: __HttpHandlerOptions,
205
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
206
+ ): void;
128
207
  listUserAssociations(
129
208
  args: ListUserAssociationsCommandInput,
130
209
  options?: __HttpHandlerOptions
@@ -164,6 +243,7 @@ export interface LicenseManagerUserSubscriptions {
164
243
  options: __HttpHandlerOptions,
165
244
  cb: (err: any, data?: StartProductSubscriptionCommandOutput) => void
166
245
  ): void;
246
+ stopProductSubscription(): Promise<StopProductSubscriptionCommandOutput>;
167
247
  stopProductSubscription(
168
248
  args: StopProductSubscriptionCommandInput,
169
249
  options?: __HttpHandlerOptions
@@ -177,6 +257,32 @@ export interface LicenseManagerUserSubscriptions {
177
257
  options: __HttpHandlerOptions,
178
258
  cb: (err: any, data?: StopProductSubscriptionCommandOutput) => void
179
259
  ): void;
260
+ tagResource(
261
+ args: TagResourceCommandInput,
262
+ options?: __HttpHandlerOptions
263
+ ): Promise<TagResourceCommandOutput>;
264
+ tagResource(
265
+ args: TagResourceCommandInput,
266
+ cb: (err: any, data?: TagResourceCommandOutput) => void
267
+ ): void;
268
+ tagResource(
269
+ args: TagResourceCommandInput,
270
+ options: __HttpHandlerOptions,
271
+ cb: (err: any, data?: TagResourceCommandOutput) => void
272
+ ): void;
273
+ untagResource(
274
+ args: UntagResourceCommandInput,
275
+ options?: __HttpHandlerOptions
276
+ ): Promise<UntagResourceCommandOutput>;
277
+ untagResource(
278
+ args: UntagResourceCommandInput,
279
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
280
+ ): void;
281
+ untagResource(
282
+ args: UntagResourceCommandInput,
283
+ options: __HttpHandlerOptions,
284
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
285
+ ): void;
180
286
  updateIdentityProviderSettings(
181
287
  args: UpdateIdentityProviderSettingsCommandInput,
182
288
  options?: __HttpHandlerOptions
@@ -49,6 +49,14 @@ import {
49
49
  AssociateUserCommandInput,
50
50
  AssociateUserCommandOutput,
51
51
  } from "./commands/AssociateUserCommand";
52
+ import {
53
+ CreateLicenseServerEndpointCommandInput,
54
+ CreateLicenseServerEndpointCommandOutput,
55
+ } from "./commands/CreateLicenseServerEndpointCommand";
56
+ import {
57
+ DeleteLicenseServerEndpointCommandInput,
58
+ DeleteLicenseServerEndpointCommandOutput,
59
+ } from "./commands/DeleteLicenseServerEndpointCommand";
52
60
  import {
53
61
  DeregisterIdentityProviderCommandInput,
54
62
  DeregisterIdentityProviderCommandOutput,
@@ -65,10 +73,18 @@ import {
65
73
  ListInstancesCommandInput,
66
74
  ListInstancesCommandOutput,
67
75
  } from "./commands/ListInstancesCommand";
76
+ import {
77
+ ListLicenseServerEndpointsCommandInput,
78
+ ListLicenseServerEndpointsCommandOutput,
79
+ } from "./commands/ListLicenseServerEndpointsCommand";
68
80
  import {
69
81
  ListProductSubscriptionsCommandInput,
70
82
  ListProductSubscriptionsCommandOutput,
71
83
  } from "./commands/ListProductSubscriptionsCommand";
84
+ import {
85
+ ListTagsForResourceCommandInput,
86
+ ListTagsForResourceCommandOutput,
87
+ } from "./commands/ListTagsForResourceCommand";
72
88
  import {
73
89
  ListUserAssociationsCommandInput,
74
90
  ListUserAssociationsCommandOutput,
@@ -85,6 +101,14 @@ import {
85
101
  StopProductSubscriptionCommandInput,
86
102
  StopProductSubscriptionCommandOutput,
87
103
  } from "./commands/StopProductSubscriptionCommand";
104
+ import {
105
+ TagResourceCommandInput,
106
+ TagResourceCommandOutput,
107
+ } from "./commands/TagResourceCommand";
108
+ import {
109
+ UntagResourceCommandInput,
110
+ UntagResourceCommandOutput,
111
+ } from "./commands/UntagResourceCommand";
88
112
  import {
89
113
  UpdateIdentityProviderSettingsCommandInput,
90
114
  UpdateIdentityProviderSettingsCommandOutput,
@@ -98,27 +122,39 @@ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
98
122
  export { __Client };
99
123
  export type ServiceInputTypes =
100
124
  | AssociateUserCommandInput
125
+ | CreateLicenseServerEndpointCommandInput
126
+ | DeleteLicenseServerEndpointCommandInput
101
127
  | DeregisterIdentityProviderCommandInput
102
128
  | DisassociateUserCommandInput
103
129
  | ListIdentityProvidersCommandInput
104
130
  | ListInstancesCommandInput
131
+ | ListLicenseServerEndpointsCommandInput
105
132
  | ListProductSubscriptionsCommandInput
133
+ | ListTagsForResourceCommandInput
106
134
  | ListUserAssociationsCommandInput
107
135
  | RegisterIdentityProviderCommandInput
108
136
  | StartProductSubscriptionCommandInput
109
137
  | StopProductSubscriptionCommandInput
138
+ | TagResourceCommandInput
139
+ | UntagResourceCommandInput
110
140
  | UpdateIdentityProviderSettingsCommandInput;
111
141
  export type ServiceOutputTypes =
112
142
  | AssociateUserCommandOutput
143
+ | CreateLicenseServerEndpointCommandOutput
144
+ | DeleteLicenseServerEndpointCommandOutput
113
145
  | DeregisterIdentityProviderCommandOutput
114
146
  | DisassociateUserCommandOutput
115
147
  | ListIdentityProvidersCommandOutput
116
148
  | ListInstancesCommandOutput
149
+ | ListLicenseServerEndpointsCommandOutput
117
150
  | ListProductSubscriptionsCommandOutput
151
+ | ListTagsForResourceCommandOutput
118
152
  | ListUserAssociationsCommandOutput
119
153
  | RegisterIdentityProviderCommandOutput
120
154
  | StartProductSubscriptionCommandOutput
121
155
  | StopProductSubscriptionCommandOutput
156
+ | TagResourceCommandOutput
157
+ | UntagResourceCommandOutput
122
158
  | UpdateIdentityProviderSettingsCommandOutput;
123
159
  export interface ClientDefaults
124
160
  extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
@@ -0,0 +1,51 @@
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
+ CreateLicenseServerEndpointRequest,
10
+ CreateLicenseServerEndpointResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateLicenseServerEndpointCommandInput
15
+ extends CreateLicenseServerEndpointRequest {}
16
+ export interface CreateLicenseServerEndpointCommandOutput
17
+ extends CreateLicenseServerEndpointResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateLicenseServerEndpointCommand_base: {
20
+ new (
21
+ input: CreateLicenseServerEndpointCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateLicenseServerEndpointCommandInput,
24
+ CreateLicenseServerEndpointCommandOutput,
25
+ LicenseManagerUserSubscriptionsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: CreateLicenseServerEndpointCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateLicenseServerEndpointCommandInput,
33
+ CreateLicenseServerEndpointCommandOutput,
34
+ LicenseManagerUserSubscriptionsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateLicenseServerEndpointCommand extends CreateLicenseServerEndpointCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateLicenseServerEndpointRequest;
44
+ output: CreateLicenseServerEndpointResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateLicenseServerEndpointCommandInput;
48
+ output: CreateLicenseServerEndpointCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
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
+ DeleteLicenseServerEndpointRequest,
10
+ DeleteLicenseServerEndpointResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteLicenseServerEndpointCommandInput
15
+ extends DeleteLicenseServerEndpointRequest {}
16
+ export interface DeleteLicenseServerEndpointCommandOutput
17
+ extends DeleteLicenseServerEndpointResponse,
18
+ __MetadataBearer {}
19
+ declare const DeleteLicenseServerEndpointCommand_base: {
20
+ new (
21
+ input: DeleteLicenseServerEndpointCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteLicenseServerEndpointCommandInput,
24
+ DeleteLicenseServerEndpointCommandOutput,
25
+ LicenseManagerUserSubscriptionsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: DeleteLicenseServerEndpointCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteLicenseServerEndpointCommandInput,
33
+ DeleteLicenseServerEndpointCommandOutput,
34
+ LicenseManagerUserSubscriptionsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteLicenseServerEndpointCommand extends DeleteLicenseServerEndpointCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteLicenseServerEndpointRequest;
44
+ output: DeleteLicenseServerEndpointResponse;
45
+ };
46
+ sdk: {
47
+ input: DeleteLicenseServerEndpointCommandInput;
48
+ output: DeleteLicenseServerEndpointCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -27,7 +27,7 @@ declare const DeregisterIdentityProviderCommand_base: {
27
27
  ServiceOutputTypes
28
28
  >;
29
29
  new (
30
- __0_0: DeregisterIdentityProviderCommandInput
30
+ ...[input]: [] | [DeregisterIdentityProviderCommandInput]
31
31
  ): import("@smithy/smithy-client").CommandImpl<
32
32
  DeregisterIdentityProviderCommandInput,
33
33
  DeregisterIdentityProviderCommandOutput,
@@ -26,7 +26,7 @@ declare const DisassociateUserCommand_base: {
26
26
  ServiceOutputTypes
27
27
  >;
28
28
  new (
29
- __0_0: DisassociateUserCommandInput
29
+ ...[input]: [] | [DisassociateUserCommandInput]
30
30
  ): import("@smithy/smithy-client").CommandImpl<
31
31
  DisassociateUserCommandInput,
32
32
  DisassociateUserCommandOutput,
@@ -0,0 +1,51 @@
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
+ ListLicenseServerEndpointsRequest,
10
+ ListLicenseServerEndpointsResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListLicenseServerEndpointsCommandInput
15
+ extends ListLicenseServerEndpointsRequest {}
16
+ export interface ListLicenseServerEndpointsCommandOutput
17
+ extends ListLicenseServerEndpointsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListLicenseServerEndpointsCommand_base: {
20
+ new (
21
+ input: ListLicenseServerEndpointsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListLicenseServerEndpointsCommandInput,
24
+ ListLicenseServerEndpointsCommandOutput,
25
+ LicenseManagerUserSubscriptionsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [ListLicenseServerEndpointsCommandInput]
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListLicenseServerEndpointsCommandInput,
33
+ ListLicenseServerEndpointsCommandOutput,
34
+ LicenseManagerUserSubscriptionsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListLicenseServerEndpointsCommand extends ListLicenseServerEndpointsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListLicenseServerEndpointsRequest;
44
+ output: ListLicenseServerEndpointsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListLicenseServerEndpointsCommandInput;
48
+ output: ListLicenseServerEndpointsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
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
+ ListTagsForResourceRequest,
10
+ ListTagsForResourceResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListTagsForResourceCommandInput
15
+ extends ListTagsForResourceRequest {}
16
+ export interface ListTagsForResourceCommandOutput
17
+ extends ListTagsForResourceResponse,
18
+ __MetadataBearer {}
19
+ declare const ListTagsForResourceCommand_base: {
20
+ new (
21
+ input: ListTagsForResourceCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListTagsForResourceCommandInput,
24
+ ListTagsForResourceCommandOutput,
25
+ LicenseManagerUserSubscriptionsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: ListTagsForResourceCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListTagsForResourceCommandInput,
33
+ ListTagsForResourceCommandOutput,
34
+ LicenseManagerUserSubscriptionsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListTagsForResourceRequest;
44
+ output: ListTagsForResourceResponse;
45
+ };
46
+ sdk: {
47
+ input: ListTagsForResourceCommandInput;
48
+ output: ListTagsForResourceCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -27,7 +27,7 @@ declare const StopProductSubscriptionCommand_base: {
27
27
  ServiceOutputTypes
28
28
  >;
29
29
  new (
30
- __0_0: StopProductSubscriptionCommandInput
30
+ ...[input]: [] | [StopProductSubscriptionCommandInput]
31
31
  ): import("@smithy/smithy-client").CommandImpl<
32
32
  StopProductSubscriptionCommandInput,
33
33
  StopProductSubscriptionCommandOutput,
@@ -0,0 +1,47 @@
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface TagResourceCommandInput extends TagResourceRequest {}
12
+ export interface TagResourceCommandOutput
13
+ extends TagResourceResponse,
14
+ __MetadataBearer {}
15
+ declare const TagResourceCommand_base: {
16
+ new (
17
+ input: TagResourceCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ TagResourceCommandInput,
20
+ TagResourceCommandOutput,
21
+ LicenseManagerUserSubscriptionsClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: TagResourceCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ TagResourceCommandInput,
29
+ TagResourceCommandOutput,
30
+ LicenseManagerUserSubscriptionsClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class TagResourceCommand extends TagResourceCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: TagResourceRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: TagResourceCommandInput;
44
+ output: TagResourceCommandOutput;
45
+ };
46
+ };
47
+ }