@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
@@ -1,14 +1,20 @@
1
1
  import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
2
  import { AssociateUserCommandInput, AssociateUserCommandOutput } from "./commands/AssociateUserCommand";
3
+ import { CreateLicenseServerEndpointCommandInput, CreateLicenseServerEndpointCommandOutput } from "./commands/CreateLicenseServerEndpointCommand";
4
+ import { DeleteLicenseServerEndpointCommandInput, DeleteLicenseServerEndpointCommandOutput } from "./commands/DeleteLicenseServerEndpointCommand";
3
5
  import { DeregisterIdentityProviderCommandInput, DeregisterIdentityProviderCommandOutput } from "./commands/DeregisterIdentityProviderCommand";
4
6
  import { DisassociateUserCommandInput, DisassociateUserCommandOutput } from "./commands/DisassociateUserCommand";
5
7
  import { ListIdentityProvidersCommandInput, ListIdentityProvidersCommandOutput } from "./commands/ListIdentityProvidersCommand";
6
8
  import { ListInstancesCommandInput, ListInstancesCommandOutput } from "./commands/ListInstancesCommand";
9
+ import { ListLicenseServerEndpointsCommandInput, ListLicenseServerEndpointsCommandOutput } from "./commands/ListLicenseServerEndpointsCommand";
7
10
  import { ListProductSubscriptionsCommandInput, ListProductSubscriptionsCommandOutput } from "./commands/ListProductSubscriptionsCommand";
11
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
8
12
  import { ListUserAssociationsCommandInput, ListUserAssociationsCommandOutput } from "./commands/ListUserAssociationsCommand";
9
13
  import { RegisterIdentityProviderCommandInput, RegisterIdentityProviderCommandOutput } from "./commands/RegisterIdentityProviderCommand";
10
14
  import { StartProductSubscriptionCommandInput, StartProductSubscriptionCommandOutput } from "./commands/StartProductSubscriptionCommand";
11
15
  import { StopProductSubscriptionCommandInput, StopProductSubscriptionCommandOutput } from "./commands/StopProductSubscriptionCommand";
16
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
17
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
12
18
  import { UpdateIdentityProviderSettingsCommandInput, UpdateIdentityProviderSettingsCommandOutput } from "./commands/UpdateIdentityProviderSettingsCommand";
13
19
  import { LicenseManagerUserSubscriptionsClient } from "./LicenseManagerUserSubscriptionsClient";
14
20
  export interface LicenseManagerUserSubscriptions {
@@ -18,15 +24,29 @@ export interface LicenseManagerUserSubscriptions {
18
24
  associateUser(args: AssociateUserCommandInput, options?: __HttpHandlerOptions): Promise<AssociateUserCommandOutput>;
19
25
  associateUser(args: AssociateUserCommandInput, cb: (err: any, data?: AssociateUserCommandOutput) => void): void;
20
26
  associateUser(args: AssociateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateUserCommandOutput) => void): void;
27
+ /**
28
+ * @see {@link CreateLicenseServerEndpointCommand}
29
+ */
30
+ createLicenseServerEndpoint(args: CreateLicenseServerEndpointCommandInput, options?: __HttpHandlerOptions): Promise<CreateLicenseServerEndpointCommandOutput>;
31
+ createLicenseServerEndpoint(args: CreateLicenseServerEndpointCommandInput, cb: (err: any, data?: CreateLicenseServerEndpointCommandOutput) => void): void;
32
+ createLicenseServerEndpoint(args: CreateLicenseServerEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLicenseServerEndpointCommandOutput) => void): void;
33
+ /**
34
+ * @see {@link DeleteLicenseServerEndpointCommand}
35
+ */
36
+ deleteLicenseServerEndpoint(args: DeleteLicenseServerEndpointCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLicenseServerEndpointCommandOutput>;
37
+ deleteLicenseServerEndpoint(args: DeleteLicenseServerEndpointCommandInput, cb: (err: any, data?: DeleteLicenseServerEndpointCommandOutput) => void): void;
38
+ deleteLicenseServerEndpoint(args: DeleteLicenseServerEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLicenseServerEndpointCommandOutput) => void): void;
21
39
  /**
22
40
  * @see {@link DeregisterIdentityProviderCommand}
23
41
  */
42
+ deregisterIdentityProvider(): Promise<DeregisterIdentityProviderCommandOutput>;
24
43
  deregisterIdentityProvider(args: DeregisterIdentityProviderCommandInput, options?: __HttpHandlerOptions): Promise<DeregisterIdentityProviderCommandOutput>;
25
44
  deregisterIdentityProvider(args: DeregisterIdentityProviderCommandInput, cb: (err: any, data?: DeregisterIdentityProviderCommandOutput) => void): void;
26
45
  deregisterIdentityProvider(args: DeregisterIdentityProviderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterIdentityProviderCommandOutput) => void): void;
27
46
  /**
28
47
  * @see {@link DisassociateUserCommand}
29
48
  */
49
+ disassociateUser(): Promise<DisassociateUserCommandOutput>;
30
50
  disassociateUser(args: DisassociateUserCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateUserCommandOutput>;
31
51
  disassociateUser(args: DisassociateUserCommandInput, cb: (err: any, data?: DisassociateUserCommandOutput) => void): void;
32
52
  disassociateUser(args: DisassociateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateUserCommandOutput) => void): void;
@@ -44,12 +64,25 @@ export interface LicenseManagerUserSubscriptions {
44
64
  listInstances(args: ListInstancesCommandInput, options?: __HttpHandlerOptions): Promise<ListInstancesCommandOutput>;
45
65
  listInstances(args: ListInstancesCommandInput, cb: (err: any, data?: ListInstancesCommandOutput) => void): void;
46
66
  listInstances(args: ListInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInstancesCommandOutput) => void): void;
67
+ /**
68
+ * @see {@link ListLicenseServerEndpointsCommand}
69
+ */
70
+ listLicenseServerEndpoints(): Promise<ListLicenseServerEndpointsCommandOutput>;
71
+ listLicenseServerEndpoints(args: ListLicenseServerEndpointsCommandInput, options?: __HttpHandlerOptions): Promise<ListLicenseServerEndpointsCommandOutput>;
72
+ listLicenseServerEndpoints(args: ListLicenseServerEndpointsCommandInput, cb: (err: any, data?: ListLicenseServerEndpointsCommandOutput) => void): void;
73
+ listLicenseServerEndpoints(args: ListLicenseServerEndpointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLicenseServerEndpointsCommandOutput) => void): void;
47
74
  /**
48
75
  * @see {@link ListProductSubscriptionsCommand}
49
76
  */
50
77
  listProductSubscriptions(args: ListProductSubscriptionsCommandInput, options?: __HttpHandlerOptions): Promise<ListProductSubscriptionsCommandOutput>;
51
78
  listProductSubscriptions(args: ListProductSubscriptionsCommandInput, cb: (err: any, data?: ListProductSubscriptionsCommandOutput) => void): void;
52
79
  listProductSubscriptions(args: ListProductSubscriptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProductSubscriptionsCommandOutput) => void): void;
80
+ /**
81
+ * @see {@link ListTagsForResourceCommand}
82
+ */
83
+ listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
84
+ listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
85
+ listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
53
86
  /**
54
87
  * @see {@link ListUserAssociationsCommand}
55
88
  */
@@ -71,9 +104,22 @@ export interface LicenseManagerUserSubscriptions {
71
104
  /**
72
105
  * @see {@link StopProductSubscriptionCommand}
73
106
  */
107
+ stopProductSubscription(): Promise<StopProductSubscriptionCommandOutput>;
74
108
  stopProductSubscription(args: StopProductSubscriptionCommandInput, options?: __HttpHandlerOptions): Promise<StopProductSubscriptionCommandOutput>;
75
109
  stopProductSubscription(args: StopProductSubscriptionCommandInput, cb: (err: any, data?: StopProductSubscriptionCommandOutput) => void): void;
76
110
  stopProductSubscription(args: StopProductSubscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopProductSubscriptionCommandOutput) => void): void;
111
+ /**
112
+ * @see {@link TagResourceCommand}
113
+ */
114
+ tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
115
+ tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
116
+ tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
117
+ /**
118
+ * @see {@link UntagResourceCommand}
119
+ */
120
+ untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
121
+ untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
122
+ untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
77
123
  /**
78
124
  * @see {@link UpdateIdentityProviderSettingsCommand}
79
125
  */
@@ -83,7 +129,7 @@ export interface LicenseManagerUserSubscriptions {
83
129
  }
84
130
  /**
85
131
  * <p>With License Manager, you can create user-based subscriptions to utilize licensed software with
86
- * a per user subscription fee on Amazon EC2 instances.</p>
132
+ * a per user subscription fee on Amazon EC2 instances.</p>
87
133
  * @public
88
134
  */
89
135
  export declare class LicenseManagerUserSubscriptions extends LicenseManagerUserSubscriptionsClient implements LicenseManagerUserSubscriptions {
@@ -8,15 +8,21 @@ import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration
8
8
  import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
9
9
  import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
10
10
  import { AssociateUserCommandInput, AssociateUserCommandOutput } from "./commands/AssociateUserCommand";
11
+ import { CreateLicenseServerEndpointCommandInput, CreateLicenseServerEndpointCommandOutput } from "./commands/CreateLicenseServerEndpointCommand";
12
+ import { DeleteLicenseServerEndpointCommandInput, DeleteLicenseServerEndpointCommandOutput } from "./commands/DeleteLicenseServerEndpointCommand";
11
13
  import { DeregisterIdentityProviderCommandInput, DeregisterIdentityProviderCommandOutput } from "./commands/DeregisterIdentityProviderCommand";
12
14
  import { DisassociateUserCommandInput, DisassociateUserCommandOutput } from "./commands/DisassociateUserCommand";
13
15
  import { ListIdentityProvidersCommandInput, ListIdentityProvidersCommandOutput } from "./commands/ListIdentityProvidersCommand";
14
16
  import { ListInstancesCommandInput, ListInstancesCommandOutput } from "./commands/ListInstancesCommand";
17
+ import { ListLicenseServerEndpointsCommandInput, ListLicenseServerEndpointsCommandOutput } from "./commands/ListLicenseServerEndpointsCommand";
15
18
  import { ListProductSubscriptionsCommandInput, ListProductSubscriptionsCommandOutput } from "./commands/ListProductSubscriptionsCommand";
19
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
16
20
  import { ListUserAssociationsCommandInput, ListUserAssociationsCommandOutput } from "./commands/ListUserAssociationsCommand";
17
21
  import { RegisterIdentityProviderCommandInput, RegisterIdentityProviderCommandOutput } from "./commands/RegisterIdentityProviderCommand";
18
22
  import { StartProductSubscriptionCommandInput, StartProductSubscriptionCommandOutput } from "./commands/StartProductSubscriptionCommand";
19
23
  import { StopProductSubscriptionCommandInput, StopProductSubscriptionCommandOutput } from "./commands/StopProductSubscriptionCommand";
24
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
25
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
20
26
  import { UpdateIdentityProviderSettingsCommandInput, UpdateIdentityProviderSettingsCommandOutput } from "./commands/UpdateIdentityProviderSettingsCommand";
21
27
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
22
28
  import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
@@ -24,11 +30,11 @@ export { __Client };
24
30
  /**
25
31
  * @public
26
32
  */
27
- export type ServiceInputTypes = AssociateUserCommandInput | DeregisterIdentityProviderCommandInput | DisassociateUserCommandInput | ListIdentityProvidersCommandInput | ListInstancesCommandInput | ListProductSubscriptionsCommandInput | ListUserAssociationsCommandInput | RegisterIdentityProviderCommandInput | StartProductSubscriptionCommandInput | StopProductSubscriptionCommandInput | UpdateIdentityProviderSettingsCommandInput;
33
+ export type ServiceInputTypes = AssociateUserCommandInput | CreateLicenseServerEndpointCommandInput | DeleteLicenseServerEndpointCommandInput | DeregisterIdentityProviderCommandInput | DisassociateUserCommandInput | ListIdentityProvidersCommandInput | ListInstancesCommandInput | ListLicenseServerEndpointsCommandInput | ListProductSubscriptionsCommandInput | ListTagsForResourceCommandInput | ListUserAssociationsCommandInput | RegisterIdentityProviderCommandInput | StartProductSubscriptionCommandInput | StopProductSubscriptionCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateIdentityProviderSettingsCommandInput;
28
34
  /**
29
35
  * @public
30
36
  */
31
- export type ServiceOutputTypes = AssociateUserCommandOutput | DeregisterIdentityProviderCommandOutput | DisassociateUserCommandOutput | ListIdentityProvidersCommandOutput | ListInstancesCommandOutput | ListProductSubscriptionsCommandOutput | ListUserAssociationsCommandOutput | RegisterIdentityProviderCommandOutput | StartProductSubscriptionCommandOutput | StopProductSubscriptionCommandOutput | UpdateIdentityProviderSettingsCommandOutput;
37
+ export type ServiceOutputTypes = AssociateUserCommandOutput | CreateLicenseServerEndpointCommandOutput | DeleteLicenseServerEndpointCommandOutput | DeregisterIdentityProviderCommandOutput | DisassociateUserCommandOutput | ListIdentityProvidersCommandOutput | ListInstancesCommandOutput | ListLicenseServerEndpointsCommandOutput | ListProductSubscriptionsCommandOutput | ListTagsForResourceCommandOutput | ListUserAssociationsCommandOutput | RegisterIdentityProviderCommandOutput | StartProductSubscriptionCommandOutput | StopProductSubscriptionCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateIdentityProviderSettingsCommandOutput;
32
38
  /**
33
39
  * @public
34
40
  */
@@ -163,7 +169,7 @@ export interface LicenseManagerUserSubscriptionsClientResolvedConfig extends Lic
163
169
  }
164
170
  /**
165
171
  * <p>With License Manager, you can create user-based subscriptions to utilize licensed software with
166
- * a per user subscription fee on Amazon EC2 instances.</p>
172
+ * a per user subscription fee on Amazon EC2 instances.</p>
167
173
  * @public
168
174
  */
169
175
  export declare class LicenseManagerUserSubscriptionsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, LicenseManagerUserSubscriptionsClientResolvedConfig> {
@@ -30,8 +30,8 @@ declare const AssociateUserCommand_base: {
30
30
  * <p>Associates the user to an EC2 instance to utilize user-based subscriptions.</p>
31
31
  * <note>
32
32
  * <p>Your estimated bill for charges on the number of users and related costs will take 48
33
- * hours to appear for billing periods that haven't closed (marked as <b>Pending</b> billing status) in Amazon Web Services Billing. For more information, see <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/invoice.html">Viewing your
34
- * monthly charges</a> in the <i>Amazon Web Services Billing User Guide</i>.</p>
33
+ * hours to appear for billing periods that haven't closed (marked as <b>Pending</b> billing status) in Amazon Web Services Billing. For more information, see <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/invoice.html">Viewing your
34
+ * monthly charges</a> in the <i>Amazon Web Services Billing User Guide</i>.</p>
35
35
  * </note>
36
36
  * @example
37
37
  * Use a bare-bones client and the command you need to make an API call.
@@ -45,9 +45,29 @@ declare const AssociateUserCommand_base: {
45
45
  * IdentityProvider: { // IdentityProvider Union: only one key present
46
46
  * ActiveDirectoryIdentityProvider: { // ActiveDirectoryIdentityProvider
47
47
  * DirectoryId: "STRING_VALUE",
48
+ * ActiveDirectorySettings: { // ActiveDirectorySettings
49
+ * DomainName: "STRING_VALUE",
50
+ * DomainIpv4List: [ // IpV4List
51
+ * "STRING_VALUE",
52
+ * ],
53
+ * DomainCredentialsProvider: { // CredentialsProvider Union: only one key present
54
+ * SecretsManagerCredentialsProvider: { // SecretsManagerCredentialsProvider
55
+ * SecretId: "STRING_VALUE",
56
+ * },
57
+ * },
58
+ * DomainNetworkSettings: { // DomainNetworkSettings
59
+ * Subnets: [ // Subnets // required
60
+ * "STRING_VALUE",
61
+ * ],
62
+ * },
63
+ * },
64
+ * ActiveDirectoryType: "STRING_VALUE",
48
65
  * },
49
66
  * },
50
67
  * Domain: "STRING_VALUE",
68
+ * Tags: { // Tags
69
+ * "<keys>": "STRING_VALUE",
70
+ * },
51
71
  * };
52
72
  * const command = new AssociateUserCommand(input);
53
73
  * const response = await client.send(command);
@@ -58,9 +78,27 @@ declare const AssociateUserCommand_base: {
58
78
  * // IdentityProvider: { // IdentityProvider Union: only one key present
59
79
  * // ActiveDirectoryIdentityProvider: { // ActiveDirectoryIdentityProvider
60
80
  * // DirectoryId: "STRING_VALUE",
81
+ * // ActiveDirectorySettings: { // ActiveDirectorySettings
82
+ * // DomainName: "STRING_VALUE",
83
+ * // DomainIpv4List: [ // IpV4List
84
+ * // "STRING_VALUE",
85
+ * // ],
86
+ * // DomainCredentialsProvider: { // CredentialsProvider Union: only one key present
87
+ * // SecretsManagerCredentialsProvider: { // SecretsManagerCredentialsProvider
88
+ * // SecretId: "STRING_VALUE",
89
+ * // },
90
+ * // },
91
+ * // DomainNetworkSettings: { // DomainNetworkSettings
92
+ * // Subnets: [ // Subnets // required
93
+ * // "STRING_VALUE",
94
+ * // ],
95
+ * // },
96
+ * // },
97
+ * // ActiveDirectoryType: "STRING_VALUE",
61
98
  * // },
62
99
  * // },
63
100
  * // Status: "STRING_VALUE", // required
101
+ * // InstanceUserArn: "STRING_VALUE",
64
102
  * // StatusMessage: "STRING_VALUE",
65
103
  * // Domain: "STRING_VALUE",
66
104
  * // AssociationDate: "STRING_VALUE",
@@ -81,7 +119,7 @@ declare const AssociateUserCommand_base: {
81
119
  *
82
120
  * @throws {@link ConflictException} (server fault)
83
121
  * <p>The request couldn't be completed because it conflicted with the current state of the
84
- * resource.</p>
122
+ * resource.</p>
85
123
  *
86
124
  * @throws {@link InternalServerException} (server fault)
87
125
  * <p>An exception occurred with the service.</p>
@@ -0,0 +1,109 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerUserSubscriptionsClient";
4
+ import { CreateLicenseServerEndpointRequest, CreateLicenseServerEndpointResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CreateLicenseServerEndpointCommand}.
14
+ */
15
+ export interface CreateLicenseServerEndpointCommandInput extends CreateLicenseServerEndpointRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CreateLicenseServerEndpointCommand}.
21
+ */
22
+ export interface CreateLicenseServerEndpointCommandOutput extends CreateLicenseServerEndpointResponse, __MetadataBearer {
23
+ }
24
+ declare const CreateLicenseServerEndpointCommand_base: {
25
+ new (input: CreateLicenseServerEndpointCommandInput): import("@smithy/smithy-client").CommandImpl<CreateLicenseServerEndpointCommandInput, CreateLicenseServerEndpointCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: CreateLicenseServerEndpointCommandInput): import("@smithy/smithy-client").CommandImpl<CreateLicenseServerEndpointCommandInput, CreateLicenseServerEndpointCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Creates a network endpoint for the Remote Desktop Services (RDS) license server.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { LicenseManagerUserSubscriptionsClient, CreateLicenseServerEndpointCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
35
+ * // const { LicenseManagerUserSubscriptionsClient, CreateLicenseServerEndpointCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
36
+ * const client = new LicenseManagerUserSubscriptionsClient(config);
37
+ * const input = { // CreateLicenseServerEndpointRequest
38
+ * IdentityProviderArn: "STRING_VALUE", // required
39
+ * LicenseServerSettings: { // LicenseServerSettings
40
+ * ServerType: "STRING_VALUE", // required
41
+ * ServerSettings: { // ServerSettings Union: only one key present
42
+ * RdsSalSettings: { // RdsSalSettings
43
+ * RdsSalCredentialsProvider: { // CredentialsProvider Union: only one key present
44
+ * SecretsManagerCredentialsProvider: { // SecretsManagerCredentialsProvider
45
+ * SecretId: "STRING_VALUE",
46
+ * },
47
+ * },
48
+ * },
49
+ * },
50
+ * },
51
+ * Tags: { // Tags
52
+ * "<keys>": "STRING_VALUE",
53
+ * },
54
+ * };
55
+ * const command = new CreateLicenseServerEndpointCommand(input);
56
+ * const response = await client.send(command);
57
+ * // { // CreateLicenseServerEndpointResponse
58
+ * // IdentityProviderArn: "STRING_VALUE",
59
+ * // LicenseServerEndpointArn: "STRING_VALUE",
60
+ * // };
61
+ *
62
+ * ```
63
+ *
64
+ * @param CreateLicenseServerEndpointCommandInput - {@link CreateLicenseServerEndpointCommandInput}
65
+ * @returns {@link CreateLicenseServerEndpointCommandOutput}
66
+ * @see {@link CreateLicenseServerEndpointCommandInput} for command's `input` shape.
67
+ * @see {@link CreateLicenseServerEndpointCommandOutput} for command's `response` shape.
68
+ * @see {@link LicenseManagerUserSubscriptionsClientResolvedConfig | config} for LicenseManagerUserSubscriptionsClient's `config` shape.
69
+ *
70
+ * @throws {@link AccessDeniedException} (client fault)
71
+ * <p>You don't have sufficient access to perform this action.</p>
72
+ *
73
+ * @throws {@link ConflictException} (server fault)
74
+ * <p>The request couldn't be completed because it conflicted with the current state of the
75
+ * resource.</p>
76
+ *
77
+ * @throws {@link InternalServerException} (server fault)
78
+ * <p>An exception occurred with the service.</p>
79
+ *
80
+ * @throws {@link ResourceNotFoundException} (client fault)
81
+ * <p>The resource couldn't be found.</p>
82
+ *
83
+ * @throws {@link ServiceQuotaExceededException} (client fault)
84
+ * <p>The request failed because a service quota is exceeded.</p>
85
+ *
86
+ * @throws {@link ThrottlingException} (client fault)
87
+ * <p>The request was denied because of request throttling. Retry the request.</p>
88
+ *
89
+ * @throws {@link ValidationException} (client fault)
90
+ * <p>A parameter is not valid.</p>
91
+ *
92
+ * @throws {@link LicenseManagerUserSubscriptionsServiceException}
93
+ * <p>Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.</p>
94
+ *
95
+ * @public
96
+ */
97
+ export declare class CreateLicenseServerEndpointCommand extends CreateLicenseServerEndpointCommand_base {
98
+ /** @internal type navigation helper, not in runtime. */
99
+ protected static __types: {
100
+ api: {
101
+ input: CreateLicenseServerEndpointRequest;
102
+ output: CreateLicenseServerEndpointResponse;
103
+ };
104
+ sdk: {
105
+ input: CreateLicenseServerEndpointCommandInput;
106
+ output: CreateLicenseServerEndpointCommandOutput;
107
+ };
108
+ };
109
+ }
@@ -0,0 +1,112 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerUserSubscriptionsClient";
4
+ import { DeleteLicenseServerEndpointRequest, DeleteLicenseServerEndpointResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DeleteLicenseServerEndpointCommand}.
14
+ */
15
+ export interface DeleteLicenseServerEndpointCommandInput extends DeleteLicenseServerEndpointRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DeleteLicenseServerEndpointCommand}.
21
+ */
22
+ export interface DeleteLicenseServerEndpointCommandOutput extends DeleteLicenseServerEndpointResponse, __MetadataBearer {
23
+ }
24
+ declare const DeleteLicenseServerEndpointCommand_base: {
25
+ new (input: DeleteLicenseServerEndpointCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteLicenseServerEndpointCommandInput, DeleteLicenseServerEndpointCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: DeleteLicenseServerEndpointCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteLicenseServerEndpointCommandInput, DeleteLicenseServerEndpointCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Deletes a <code>LicenseServerEndpoint</code> resource.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { LicenseManagerUserSubscriptionsClient, DeleteLicenseServerEndpointCommand } from "@aws-sdk/client-license-manager-user-subscriptions"; // ES Modules import
35
+ * // const { LicenseManagerUserSubscriptionsClient, DeleteLicenseServerEndpointCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
36
+ * const client = new LicenseManagerUserSubscriptionsClient(config);
37
+ * const input = { // DeleteLicenseServerEndpointRequest
38
+ * LicenseServerEndpointArn: "STRING_VALUE", // required
39
+ * ServerType: "STRING_VALUE", // required
40
+ * };
41
+ * const command = new DeleteLicenseServerEndpointCommand(input);
42
+ * const response = await client.send(command);
43
+ * // { // DeleteLicenseServerEndpointResponse
44
+ * // LicenseServerEndpoint: { // LicenseServerEndpoint
45
+ * // IdentityProviderArn: "STRING_VALUE",
46
+ * // ServerType: "STRING_VALUE",
47
+ * // ServerEndpoint: { // ServerEndpoint
48
+ * // Endpoint: "STRING_VALUE",
49
+ * // },
50
+ * // StatusMessage: "STRING_VALUE",
51
+ * // LicenseServerEndpointId: "STRING_VALUE",
52
+ * // LicenseServerEndpointArn: "STRING_VALUE",
53
+ * // LicenseServerEndpointProvisioningStatus: "STRING_VALUE",
54
+ * // LicenseServers: [ // LicenseServerList
55
+ * // { // LicenseServer
56
+ * // ProvisioningStatus: "STRING_VALUE",
57
+ * // HealthStatus: "STRING_VALUE",
58
+ * // Ipv4Address: "STRING_VALUE",
59
+ * // },
60
+ * // ],
61
+ * // CreationTime: new Date("TIMESTAMP"),
62
+ * // },
63
+ * // };
64
+ *
65
+ * ```
66
+ *
67
+ * @param DeleteLicenseServerEndpointCommandInput - {@link DeleteLicenseServerEndpointCommandInput}
68
+ * @returns {@link DeleteLicenseServerEndpointCommandOutput}
69
+ * @see {@link DeleteLicenseServerEndpointCommandInput} for command's `input` shape.
70
+ * @see {@link DeleteLicenseServerEndpointCommandOutput} for command's `response` shape.
71
+ * @see {@link LicenseManagerUserSubscriptionsClientResolvedConfig | config} for LicenseManagerUserSubscriptionsClient's `config` shape.
72
+ *
73
+ * @throws {@link AccessDeniedException} (client fault)
74
+ * <p>You don't have sufficient access to perform this action.</p>
75
+ *
76
+ * @throws {@link ConflictException} (server fault)
77
+ * <p>The request couldn't be completed because it conflicted with the current state of the
78
+ * resource.</p>
79
+ *
80
+ * @throws {@link InternalServerException} (server fault)
81
+ * <p>An exception occurred with the service.</p>
82
+ *
83
+ * @throws {@link ResourceNotFoundException} (client fault)
84
+ * <p>The resource couldn't be found.</p>
85
+ *
86
+ * @throws {@link ServiceQuotaExceededException} (client fault)
87
+ * <p>The request failed because a service quota is exceeded.</p>
88
+ *
89
+ * @throws {@link ThrottlingException} (client fault)
90
+ * <p>The request was denied because of request throttling. Retry the request.</p>
91
+ *
92
+ * @throws {@link ValidationException} (client fault)
93
+ * <p>A parameter is not valid.</p>
94
+ *
95
+ * @throws {@link LicenseManagerUserSubscriptionsServiceException}
96
+ * <p>Base exception class for all service exceptions from LicenseManagerUserSubscriptions service.</p>
97
+ *
98
+ * @public
99
+ */
100
+ export declare class DeleteLicenseServerEndpointCommand extends DeleteLicenseServerEndpointCommand_base {
101
+ /** @internal type navigation helper, not in runtime. */
102
+ protected static __types: {
103
+ api: {
104
+ input: DeleteLicenseServerEndpointRequest;
105
+ output: DeleteLicenseServerEndpointResponse;
106
+ };
107
+ sdk: {
108
+ input: DeleteLicenseServerEndpointCommandInput;
109
+ output: DeleteLicenseServerEndpointCommandOutput;
110
+ };
111
+ };
112
+ }
@@ -23,11 +23,11 @@ export interface DeregisterIdentityProviderCommandOutput extends DeregisterIdent
23
23
  }
24
24
  declare const DeregisterIdentityProviderCommand_base: {
25
25
  new (input: DeregisterIdentityProviderCommandInput): import("@smithy/smithy-client").CommandImpl<DeregisterIdentityProviderCommandInput, DeregisterIdentityProviderCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: DeregisterIdentityProviderCommandInput): import("@smithy/smithy-client").CommandImpl<DeregisterIdentityProviderCommandInput, DeregisterIdentityProviderCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [DeregisterIdentityProviderCommandInput]): import("@smithy/smithy-client").CommandImpl<DeregisterIdentityProviderCommandInput, DeregisterIdentityProviderCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Deregisters the identity provider from providing user-based subscriptions.</p>
30
+ * <p>Deregisters the Active Directory identity provider from License Manager user-based subscriptions.</p>
31
31
  * @example
32
32
  * Use a bare-bones client and the command you need to make an API call.
33
33
  * ```javascript
@@ -38,9 +38,27 @@ declare const DeregisterIdentityProviderCommand_base: {
38
38
  * IdentityProvider: { // IdentityProvider Union: only one key present
39
39
  * ActiveDirectoryIdentityProvider: { // ActiveDirectoryIdentityProvider
40
40
  * DirectoryId: "STRING_VALUE",
41
+ * ActiveDirectorySettings: { // ActiveDirectorySettings
42
+ * DomainName: "STRING_VALUE",
43
+ * DomainIpv4List: [ // IpV4List
44
+ * "STRING_VALUE",
45
+ * ],
46
+ * DomainCredentialsProvider: { // CredentialsProvider Union: only one key present
47
+ * SecretsManagerCredentialsProvider: { // SecretsManagerCredentialsProvider
48
+ * SecretId: "STRING_VALUE",
49
+ * },
50
+ * },
51
+ * DomainNetworkSettings: { // DomainNetworkSettings
52
+ * Subnets: [ // Subnets // required
53
+ * "STRING_VALUE",
54
+ * ],
55
+ * },
56
+ * },
57
+ * ActiveDirectoryType: "STRING_VALUE",
41
58
  * },
42
59
  * },
43
- * Product: "STRING_VALUE", // required
60
+ * Product: "STRING_VALUE",
61
+ * IdentityProviderArn: "STRING_VALUE",
44
62
  * };
45
63
  * const command = new DeregisterIdentityProviderCommand(input);
46
64
  * const response = await client.send(command);
@@ -49,16 +67,34 @@ declare const DeregisterIdentityProviderCommand_base: {
49
67
  * // IdentityProvider: { // IdentityProvider Union: only one key present
50
68
  * // ActiveDirectoryIdentityProvider: { // ActiveDirectoryIdentityProvider
51
69
  * // DirectoryId: "STRING_VALUE",
70
+ * // ActiveDirectorySettings: { // ActiveDirectorySettings
71
+ * // DomainName: "STRING_VALUE",
72
+ * // DomainIpv4List: [ // IpV4List
73
+ * // "STRING_VALUE",
74
+ * // ],
75
+ * // DomainCredentialsProvider: { // CredentialsProvider Union: only one key present
76
+ * // SecretsManagerCredentialsProvider: { // SecretsManagerCredentialsProvider
77
+ * // SecretId: "STRING_VALUE",
78
+ * // },
79
+ * // },
80
+ * // DomainNetworkSettings: { // DomainNetworkSettings
81
+ * // Subnets: [ // Subnets // required
82
+ * // "STRING_VALUE",
83
+ * // ],
84
+ * // },
85
+ * // },
86
+ * // ActiveDirectoryType: "STRING_VALUE",
52
87
  * // },
53
88
  * // },
54
89
  * // Settings: { // Settings
55
- * // Subnets: [ // Subnets // required
90
+ * // Subnets: [ // required
56
91
  * // "STRING_VALUE",
57
92
  * // ],
58
93
  * // SecurityGroupId: "STRING_VALUE", // required
59
94
  * // },
60
95
  * // Product: "STRING_VALUE", // required
61
96
  * // Status: "STRING_VALUE", // required
97
+ * // IdentityProviderArn: "STRING_VALUE",
62
98
  * // FailureMessage: "STRING_VALUE",
63
99
  * // },
64
100
  * // };
@@ -76,7 +112,7 @@ declare const DeregisterIdentityProviderCommand_base: {
76
112
  *
77
113
  * @throws {@link ConflictException} (server fault)
78
114
  * <p>The request couldn't be completed because it conflicted with the current state of the
79
- * resource.</p>
115
+ * resource.</p>
80
116
  *
81
117
  * @throws {@link InternalServerException} (server fault)
82
118
  * <p>An exception occurred with the service.</p>
@@ -23,7 +23,7 @@ export interface DisassociateUserCommandOutput extends DisassociateUserResponse,
23
23
  }
24
24
  declare const DisassociateUserCommand_base: {
25
25
  new (input: DisassociateUserCommandInput): import("@smithy/smithy-client").CommandImpl<DisassociateUserCommandInput, DisassociateUserCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: DisassociateUserCommandInput): import("@smithy/smithy-client").CommandImpl<DisassociateUserCommandInput, DisassociateUserCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [DisassociateUserCommandInput]): import("@smithy/smithy-client").CommandImpl<DisassociateUserCommandInput, DisassociateUserCommandOutput, LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
@@ -35,13 +35,31 @@ declare const DisassociateUserCommand_base: {
35
35
  * // const { LicenseManagerUserSubscriptionsClient, DisassociateUserCommand } = require("@aws-sdk/client-license-manager-user-subscriptions"); // CommonJS import
36
36
  * const client = new LicenseManagerUserSubscriptionsClient(config);
37
37
  * const input = { // DisassociateUserRequest
38
- * Username: "STRING_VALUE", // required
39
- * InstanceId: "STRING_VALUE", // required
38
+ * Username: "STRING_VALUE",
39
+ * InstanceId: "STRING_VALUE",
40
40
  * IdentityProvider: { // IdentityProvider Union: only one key present
41
41
  * ActiveDirectoryIdentityProvider: { // ActiveDirectoryIdentityProvider
42
42
  * DirectoryId: "STRING_VALUE",
43
+ * ActiveDirectorySettings: { // ActiveDirectorySettings
44
+ * DomainName: "STRING_VALUE",
45
+ * DomainIpv4List: [ // IpV4List
46
+ * "STRING_VALUE",
47
+ * ],
48
+ * DomainCredentialsProvider: { // CredentialsProvider Union: only one key present
49
+ * SecretsManagerCredentialsProvider: { // SecretsManagerCredentialsProvider
50
+ * SecretId: "STRING_VALUE",
51
+ * },
52
+ * },
53
+ * DomainNetworkSettings: { // DomainNetworkSettings
54
+ * Subnets: [ // Subnets // required
55
+ * "STRING_VALUE",
56
+ * ],
57
+ * },
58
+ * },
59
+ * ActiveDirectoryType: "STRING_VALUE",
43
60
  * },
44
61
  * },
62
+ * InstanceUserArn: "STRING_VALUE",
45
63
  * Domain: "STRING_VALUE",
46
64
  * };
47
65
  * const command = new DisassociateUserCommand(input);
@@ -53,9 +71,27 @@ declare const DisassociateUserCommand_base: {
53
71
  * // IdentityProvider: { // IdentityProvider Union: only one key present
54
72
  * // ActiveDirectoryIdentityProvider: { // ActiveDirectoryIdentityProvider
55
73
  * // DirectoryId: "STRING_VALUE",
74
+ * // ActiveDirectorySettings: { // ActiveDirectorySettings
75
+ * // DomainName: "STRING_VALUE",
76
+ * // DomainIpv4List: [ // IpV4List
77
+ * // "STRING_VALUE",
78
+ * // ],
79
+ * // DomainCredentialsProvider: { // CredentialsProvider Union: only one key present
80
+ * // SecretsManagerCredentialsProvider: { // SecretsManagerCredentialsProvider
81
+ * // SecretId: "STRING_VALUE",
82
+ * // },
83
+ * // },
84
+ * // DomainNetworkSettings: { // DomainNetworkSettings
85
+ * // Subnets: [ // Subnets // required
86
+ * // "STRING_VALUE",
87
+ * // ],
88
+ * // },
89
+ * // },
90
+ * // ActiveDirectoryType: "STRING_VALUE",
56
91
  * // },
57
92
  * // },
58
93
  * // Status: "STRING_VALUE", // required
94
+ * // InstanceUserArn: "STRING_VALUE",
59
95
  * // StatusMessage: "STRING_VALUE",
60
96
  * // Domain: "STRING_VALUE",
61
97
  * // AssociationDate: "STRING_VALUE",
@@ -76,7 +112,7 @@ declare const DisassociateUserCommand_base: {
76
112
  *
77
113
  * @throws {@link ConflictException} (server fault)
78
114
  * <p>The request couldn't be completed because it conflicted with the current state of the
79
- * resource.</p>
115
+ * resource.</p>
80
116
  *
81
117
  * @throws {@link InternalServerException} (server fault)
82
118
  * <p>An exception occurred with the service.</p>