@aws-sdk/client-license-manager 3.936.0 → 3.939.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +96 -0
- package/dist-cjs/index.js +605 -21
- package/dist-es/LicenseManager.js +24 -0
- package/dist-es/commands/CreateLicenseAssetGroupCommand.js +16 -0
- package/dist-es/commands/CreateLicenseAssetRulesetCommand.js +16 -0
- package/dist-es/commands/DeleteLicenseAssetGroupCommand.js +16 -0
- package/dist-es/commands/DeleteLicenseAssetRulesetCommand.js +16 -0
- package/dist-es/commands/GetLicenseAssetGroupCommand.js +16 -0
- package/dist-es/commands/GetLicenseAssetRulesetCommand.js +16 -0
- package/dist-es/commands/ListAssetsForLicenseAssetGroupCommand.js +16 -0
- package/dist-es/commands/ListLicenseAssetGroupsCommand.js +16 -0
- package/dist-es/commands/ListLicenseAssetRulesetsCommand.js +16 -0
- package/dist-es/commands/ListLicenseConfigurationsForOrganizationCommand.js +16 -0
- package/dist-es/commands/UpdateLicenseAssetGroupCommand.js +16 -0
- package/dist-es/commands/UpdateLicenseAssetRulesetCommand.js +16 -0
- package/dist-es/commands/index.js +12 -0
- package/dist-es/models/enums.js +7 -0
- package/dist-es/schemas/schemas_0.js +430 -21
- package/dist-types/LicenseManager.d.ts +87 -0
- package/dist-types/LicenseManagerClient.d.ts +14 -2
- package/dist-types/commands/CreateLicenseAssetGroupCommand.d.ts +116 -0
- package/dist-types/commands/CreateLicenseAssetRulesetCommand.d.ts +206 -0
- package/dist-types/commands/CreateLicenseConfigurationCommand.d.ts +1 -0
- package/dist-types/commands/CreateLicenseManagerReportGeneratorCommand.d.ts +8 -3
- package/dist-types/commands/DeleteLicenseAssetGroupCommand.d.ts +93 -0
- package/dist-types/commands/DeleteLicenseAssetRulesetCommand.d.ts +91 -0
- package/dist-types/commands/GetLicenseAssetGroupCommand.d.ts +115 -0
- package/dist-types/commands/GetLicenseAssetRulesetCommand.d.ts +202 -0
- package/dist-types/commands/GetLicenseConfigurationCommand.d.ts +1 -0
- package/dist-types/commands/GetLicenseManagerReportGeneratorCommand.d.ts +8 -3
- package/dist-types/commands/GetServiceSettingsCommand.d.ts +16 -0
- package/dist-types/commands/ListAssetsForLicenseAssetGroupCommand.d.ts +102 -0
- package/dist-types/commands/ListLicenseAssetGroupsCommand.d.ts +127 -0
- package/dist-types/commands/ListLicenseAssetRulesetsCommand.d.ts +215 -0
- package/dist-types/commands/ListLicenseConfigurationsCommand.d.ts +1 -0
- package/dist-types/commands/ListLicenseConfigurationsForOrganizationCommand.d.ts +153 -0
- package/dist-types/commands/ListLicenseManagerReportGeneratorsCommand.d.ts +8 -3
- package/dist-types/commands/ListResourceInventoryCommand.d.ts +8 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/TagResourceCommand.d.ts +3 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -0
- package/dist-types/commands/UpdateLicenseAssetGroupCommand.d.ts +112 -0
- package/dist-types/commands/UpdateLicenseAssetRulesetCommand.d.ts +201 -0
- package/dist-types/commands/UpdateLicenseConfigurationCommand.d.ts +1 -0
- package/dist-types/commands/UpdateLicenseManagerReportGeneratorCommand.d.ts +8 -3
- package/dist-types/commands/UpdateServiceSettingsCommand.d.ts +9 -0
- package/dist-types/commands/index.d.ts +12 -0
- package/dist-types/models/enums.d.ts +15 -0
- package/dist-types/models/models_0.d.ts +991 -4
- package/dist-types/schemas/schemas_0.d.ts +65 -1
- package/dist-types/ts3.4/LicenseManager.d.ts +213 -0
- package/dist-types/ts3.4/LicenseManagerClient.d.ts +72 -0
- package/dist-types/ts3.4/commands/CreateLicenseAssetGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateLicenseAssetRulesetCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteLicenseAssetGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteLicenseAssetRulesetCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetLicenseAssetGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetLicenseAssetRulesetCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAssetsForLicenseAssetGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListLicenseAssetGroupsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListLicenseAssetRulesetsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListLicenseConfigurationsForOrganizationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateLicenseAssetGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateLicenseAssetRulesetCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/dist-types/ts3.4/models/enums.d.ts +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +216 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +65 -0
- package/package.json +2 -2
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
LicenseManagerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../LicenseManagerClient";
|
|
8
|
+
import {
|
|
9
|
+
ListLicenseConfigurationsForOrganizationRequest,
|
|
10
|
+
ListLicenseConfigurationsForOrganizationResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListLicenseConfigurationsForOrganizationCommandInput
|
|
15
|
+
extends ListLicenseConfigurationsForOrganizationRequest {}
|
|
16
|
+
export interface ListLicenseConfigurationsForOrganizationCommandOutput
|
|
17
|
+
extends ListLicenseConfigurationsForOrganizationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListLicenseConfigurationsForOrganizationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListLicenseConfigurationsForOrganizationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListLicenseConfigurationsForOrganizationCommandInput,
|
|
24
|
+
ListLicenseConfigurationsForOrganizationCommandOutput,
|
|
25
|
+
LicenseManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListLicenseConfigurationsForOrganizationCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListLicenseConfigurationsForOrganizationCommandInput,
|
|
33
|
+
ListLicenseConfigurationsForOrganizationCommandOutput,
|
|
34
|
+
LicenseManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListLicenseConfigurationsForOrganizationCommand extends ListLicenseConfigurationsForOrganizationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListLicenseConfigurationsForOrganizationRequest;
|
|
44
|
+
output: ListLicenseConfigurationsForOrganizationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListLicenseConfigurationsForOrganizationCommandInput;
|
|
48
|
+
output: ListLicenseConfigurationsForOrganizationCommandOutput;
|
|
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
|
+
LicenseManagerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../LicenseManagerClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateLicenseAssetGroupRequest,
|
|
10
|
+
UpdateLicenseAssetGroupResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateLicenseAssetGroupCommandInput
|
|
15
|
+
extends UpdateLicenseAssetGroupRequest {}
|
|
16
|
+
export interface UpdateLicenseAssetGroupCommandOutput
|
|
17
|
+
extends UpdateLicenseAssetGroupResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateLicenseAssetGroupCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateLicenseAssetGroupCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateLicenseAssetGroupCommandInput,
|
|
24
|
+
UpdateLicenseAssetGroupCommandOutput,
|
|
25
|
+
LicenseManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: UpdateLicenseAssetGroupCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateLicenseAssetGroupCommandInput,
|
|
33
|
+
UpdateLicenseAssetGroupCommandOutput,
|
|
34
|
+
LicenseManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateLicenseAssetGroupCommand extends UpdateLicenseAssetGroupCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateLicenseAssetGroupRequest;
|
|
44
|
+
output: UpdateLicenseAssetGroupResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateLicenseAssetGroupCommandInput;
|
|
48
|
+
output: UpdateLicenseAssetGroupCommandOutput;
|
|
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
|
+
LicenseManagerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../LicenseManagerClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateLicenseAssetRulesetRequest,
|
|
10
|
+
UpdateLicenseAssetRulesetResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateLicenseAssetRulesetCommandInput
|
|
15
|
+
extends UpdateLicenseAssetRulesetRequest {}
|
|
16
|
+
export interface UpdateLicenseAssetRulesetCommandOutput
|
|
17
|
+
extends UpdateLicenseAssetRulesetResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateLicenseAssetRulesetCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateLicenseAssetRulesetCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateLicenseAssetRulesetCommandInput,
|
|
24
|
+
UpdateLicenseAssetRulesetCommandOutput,
|
|
25
|
+
LicenseManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: UpdateLicenseAssetRulesetCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateLicenseAssetRulesetCommandInput,
|
|
33
|
+
UpdateLicenseAssetRulesetCommandOutput,
|
|
34
|
+
LicenseManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateLicenseAssetRulesetCommand extends UpdateLicenseAssetRulesetCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateLicenseAssetRulesetRequest;
|
|
44
|
+
output: UpdateLicenseAssetRulesetResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateLicenseAssetRulesetCommandInput;
|
|
48
|
+
output: UpdateLicenseAssetRulesetCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -4,6 +4,8 @@ export * from "./CheckoutBorrowLicenseCommand";
|
|
|
4
4
|
export * from "./CheckoutLicenseCommand";
|
|
5
5
|
export * from "./CreateGrantCommand";
|
|
6
6
|
export * from "./CreateGrantVersionCommand";
|
|
7
|
+
export * from "./CreateLicenseAssetGroupCommand";
|
|
8
|
+
export * from "./CreateLicenseAssetRulesetCommand";
|
|
7
9
|
export * from "./CreateLicenseCommand";
|
|
8
10
|
export * from "./CreateLicenseConfigurationCommand";
|
|
9
11
|
export * from "./CreateLicenseConversionTaskForResourceCommand";
|
|
@@ -11,6 +13,8 @@ export * from "./CreateLicenseManagerReportGeneratorCommand";
|
|
|
11
13
|
export * from "./CreateLicenseVersionCommand";
|
|
12
14
|
export * from "./CreateTokenCommand";
|
|
13
15
|
export * from "./DeleteGrantCommand";
|
|
16
|
+
export * from "./DeleteLicenseAssetGroupCommand";
|
|
17
|
+
export * from "./DeleteLicenseAssetRulesetCommand";
|
|
14
18
|
export * from "./DeleteLicenseCommand";
|
|
15
19
|
export * from "./DeleteLicenseConfigurationCommand";
|
|
16
20
|
export * from "./DeleteLicenseManagerReportGeneratorCommand";
|
|
@@ -18,16 +22,22 @@ export * from "./DeleteTokenCommand";
|
|
|
18
22
|
export * from "./ExtendLicenseConsumptionCommand";
|
|
19
23
|
export * from "./GetAccessTokenCommand";
|
|
20
24
|
export * from "./GetGrantCommand";
|
|
25
|
+
export * from "./GetLicenseAssetGroupCommand";
|
|
26
|
+
export * from "./GetLicenseAssetRulesetCommand";
|
|
21
27
|
export * from "./GetLicenseCommand";
|
|
22
28
|
export * from "./GetLicenseConfigurationCommand";
|
|
23
29
|
export * from "./GetLicenseConversionTaskCommand";
|
|
24
30
|
export * from "./GetLicenseManagerReportGeneratorCommand";
|
|
25
31
|
export * from "./GetLicenseUsageCommand";
|
|
26
32
|
export * from "./GetServiceSettingsCommand";
|
|
33
|
+
export * from "./ListAssetsForLicenseAssetGroupCommand";
|
|
27
34
|
export * from "./ListAssociationsForLicenseConfigurationCommand";
|
|
28
35
|
export * from "./ListDistributedGrantsCommand";
|
|
29
36
|
export * from "./ListFailuresForLicenseConfigurationOperationsCommand";
|
|
37
|
+
export * from "./ListLicenseAssetGroupsCommand";
|
|
38
|
+
export * from "./ListLicenseAssetRulesetsCommand";
|
|
30
39
|
export * from "./ListLicenseConfigurationsCommand";
|
|
40
|
+
export * from "./ListLicenseConfigurationsForOrganizationCommand";
|
|
31
41
|
export * from "./ListLicenseConversionTasksCommand";
|
|
32
42
|
export * from "./ListLicenseManagerReportGeneratorsCommand";
|
|
33
43
|
export * from "./ListLicenseSpecificationsForResourceCommand";
|
|
@@ -44,6 +54,8 @@ export * from "./ListUsageForLicenseConfigurationCommand";
|
|
|
44
54
|
export * from "./RejectGrantCommand";
|
|
45
55
|
export * from "./TagResourceCommand";
|
|
46
56
|
export * from "./UntagResourceCommand";
|
|
57
|
+
export * from "./UpdateLicenseAssetGroupCommand";
|
|
58
|
+
export * from "./UpdateLicenseAssetRulesetCommand";
|
|
47
59
|
export * from "./UpdateLicenseConfigurationCommand";
|
|
48
60
|
export * from "./UpdateLicenseManagerReportGeneratorCommand";
|
|
49
61
|
export * from "./UpdateLicenseSpecificationsForResourceCommand";
|
|
@@ -131,11 +131,13 @@ export type ProductCodeType =
|
|
|
131
131
|
export declare const ReportFrequencyType: {
|
|
132
132
|
readonly DAY: "DAY";
|
|
133
133
|
readonly MONTH: "MONTH";
|
|
134
|
+
readonly ONE_TIME: "ONE_TIME";
|
|
134
135
|
readonly WEEK: "WEEK";
|
|
135
136
|
};
|
|
136
137
|
export type ReportFrequencyType =
|
|
137
138
|
(typeof ReportFrequencyType)[keyof typeof ReportFrequencyType];
|
|
138
139
|
export declare const ReportType: {
|
|
140
|
+
readonly LICENSE_ASSET_GROUP_USAGE_REPORT: "LicenseAssetGroupUsageReport";
|
|
139
141
|
readonly LICENSE_CONFIGURATION_SUMMARY_REPORT: "LicenseConfigurationSummaryReport";
|
|
140
142
|
readonly LICENSE_CONFIGURATION_USAGE_REPORT: "LicenseConfigurationUsageReport";
|
|
141
143
|
};
|
|
@@ -150,6 +152,13 @@ export declare const LicenseDeletionStatus: {
|
|
|
150
152
|
};
|
|
151
153
|
export type LicenseDeletionStatus =
|
|
152
154
|
(typeof LicenseDeletionStatus)[keyof typeof LicenseDeletionStatus];
|
|
155
|
+
export declare const LicenseAssetGroupStatus: {
|
|
156
|
+
readonly ACTIVE: "ACTIVE";
|
|
157
|
+
readonly DELETED: "DELETED";
|
|
158
|
+
readonly DISABLED: "DISABLED";
|
|
159
|
+
};
|
|
160
|
+
export type LicenseAssetGroupStatus =
|
|
161
|
+
(typeof LicenseAssetGroupStatus)[keyof typeof LicenseAssetGroupStatus];
|
|
153
162
|
export declare const ResourceType: {
|
|
154
163
|
readonly EC2_AMI: "EC2_AMI";
|
|
155
164
|
readonly EC2_HOST: "EC2_HOST";
|
|
@@ -7,6 +7,7 @@ import {
|
|
|
7
7
|
EntitlementUnit,
|
|
8
8
|
GrantStatus,
|
|
9
9
|
InventoryFilterCondition,
|
|
10
|
+
LicenseAssetGroupStatus,
|
|
10
11
|
LicenseConfigurationStatus,
|
|
11
12
|
LicenseConversionTaskStatus,
|
|
12
13
|
LicenseCountingType,
|
|
@@ -28,6 +29,23 @@ export interface AcceptGrantResponse {
|
|
|
28
29
|
Status?: GrantStatus | undefined;
|
|
29
30
|
Version?: string | undefined;
|
|
30
31
|
}
|
|
32
|
+
export interface MatchingRuleStatement {
|
|
33
|
+
KeyToMatch: string | undefined;
|
|
34
|
+
Constraint: string | undefined;
|
|
35
|
+
ValueToMatch: string[] | undefined;
|
|
36
|
+
}
|
|
37
|
+
export interface ScriptRuleStatement {
|
|
38
|
+
KeyToMatch: string | undefined;
|
|
39
|
+
Script: string | undefined;
|
|
40
|
+
}
|
|
41
|
+
export interface AndRuleStatement {
|
|
42
|
+
MatchingRuleStatements?: MatchingRuleStatement[] | undefined;
|
|
43
|
+
ScriptRuleStatements?: ScriptRuleStatement[] | undefined;
|
|
44
|
+
}
|
|
45
|
+
export interface Asset {
|
|
46
|
+
AssetArn?: string | undefined;
|
|
47
|
+
LatestAssetDiscoveryTime?: Date | undefined;
|
|
48
|
+
}
|
|
31
49
|
export interface AutomatedDiscoveryInformation {
|
|
32
50
|
LastRunTime?: Date | undefined;
|
|
33
51
|
}
|
|
@@ -165,6 +183,66 @@ export interface CreateLicenseResponse {
|
|
|
165
183
|
Status?: LicenseStatus | undefined;
|
|
166
184
|
Version?: string | undefined;
|
|
167
185
|
}
|
|
186
|
+
export interface LicenseAssetGroupConfiguration {
|
|
187
|
+
UsageDimension?: string | undefined;
|
|
188
|
+
}
|
|
189
|
+
export interface LicenseAssetGroupProperty {
|
|
190
|
+
Key: string | undefined;
|
|
191
|
+
Value: string | undefined;
|
|
192
|
+
}
|
|
193
|
+
export interface CreateLicenseAssetGroupRequest {
|
|
194
|
+
Name: string | undefined;
|
|
195
|
+
Description?: string | undefined;
|
|
196
|
+
LicenseAssetGroupConfigurations: LicenseAssetGroupConfiguration[] | undefined;
|
|
197
|
+
AssociatedLicenseAssetRulesetARNs: string[] | undefined;
|
|
198
|
+
Properties?: LicenseAssetGroupProperty[] | undefined;
|
|
199
|
+
Tags?: Tag[] | undefined;
|
|
200
|
+
ClientToken: string | undefined;
|
|
201
|
+
}
|
|
202
|
+
export interface CreateLicenseAssetGroupResponse {
|
|
203
|
+
LicenseAssetGroupArn: string | undefined;
|
|
204
|
+
Status: string | undefined;
|
|
205
|
+
}
|
|
206
|
+
export interface OrRuleStatement {
|
|
207
|
+
MatchingRuleStatements?: MatchingRuleStatement[] | undefined;
|
|
208
|
+
ScriptRuleStatements?: ScriptRuleStatement[] | undefined;
|
|
209
|
+
}
|
|
210
|
+
export interface InstanceRuleStatement {
|
|
211
|
+
AndRuleStatement?: AndRuleStatement | undefined;
|
|
212
|
+
OrRuleStatement?: OrRuleStatement | undefined;
|
|
213
|
+
MatchingRuleStatement?: MatchingRuleStatement | undefined;
|
|
214
|
+
ScriptRuleStatement?: ScriptRuleStatement | undefined;
|
|
215
|
+
}
|
|
216
|
+
export interface LicenseConfigurationRuleStatement {
|
|
217
|
+
AndRuleStatement?: AndRuleStatement | undefined;
|
|
218
|
+
OrRuleStatement?: OrRuleStatement | undefined;
|
|
219
|
+
MatchingRuleStatement?: MatchingRuleStatement | undefined;
|
|
220
|
+
}
|
|
221
|
+
export interface LicenseRuleStatement {
|
|
222
|
+
AndRuleStatement?: AndRuleStatement | undefined;
|
|
223
|
+
OrRuleStatement?: OrRuleStatement | undefined;
|
|
224
|
+
MatchingRuleStatement?: MatchingRuleStatement | undefined;
|
|
225
|
+
}
|
|
226
|
+
export interface RuleStatement {
|
|
227
|
+
LicenseConfigurationRuleStatement?:
|
|
228
|
+
| LicenseConfigurationRuleStatement
|
|
229
|
+
| undefined;
|
|
230
|
+
LicenseRuleStatement?: LicenseRuleStatement | undefined;
|
|
231
|
+
InstanceRuleStatement?: InstanceRuleStatement | undefined;
|
|
232
|
+
}
|
|
233
|
+
export interface LicenseAssetRule {
|
|
234
|
+
RuleStatement: RuleStatement | undefined;
|
|
235
|
+
}
|
|
236
|
+
export interface CreateLicenseAssetRulesetRequest {
|
|
237
|
+
Name: string | undefined;
|
|
238
|
+
Description?: string | undefined;
|
|
239
|
+
Rules: LicenseAssetRule[] | undefined;
|
|
240
|
+
Tags?: Tag[] | undefined;
|
|
241
|
+
ClientToken: string | undefined;
|
|
242
|
+
}
|
|
243
|
+
export interface CreateLicenseAssetRulesetResponse {
|
|
244
|
+
LicenseAssetRulesetArn: string | undefined;
|
|
245
|
+
}
|
|
168
246
|
export interface ProductInformationFilter {
|
|
169
247
|
ProductInformationFilterName: string | undefined;
|
|
170
248
|
ProductInformationFilterValue?: string[] | undefined;
|
|
@@ -184,6 +262,7 @@ export interface CreateLicenseConfigurationRequest {
|
|
|
184
262
|
Tags?: Tag[] | undefined;
|
|
185
263
|
DisassociateWhenNotFound?: boolean | undefined;
|
|
186
264
|
ProductInformationList?: ProductInformation[] | undefined;
|
|
265
|
+
LicenseExpiry?: number | undefined;
|
|
187
266
|
}
|
|
188
267
|
export interface CreateLicenseConfigurationResponse {
|
|
189
268
|
LicenseConfigurationArn?: string | undefined;
|
|
@@ -205,7 +284,10 @@ export interface CreateLicenseConversionTaskForResourceResponse {
|
|
|
205
284
|
LicenseConversionTaskId?: string | undefined;
|
|
206
285
|
}
|
|
207
286
|
export interface ReportContext {
|
|
208
|
-
licenseConfigurationArns
|
|
287
|
+
licenseConfigurationArns?: string[] | undefined;
|
|
288
|
+
licenseAssetGroupArns?: string[] | undefined;
|
|
289
|
+
reportStartDate?: Date | undefined;
|
|
290
|
+
reportEndDate?: Date | undefined;
|
|
209
291
|
}
|
|
210
292
|
export interface ReportFrequency {
|
|
211
293
|
value?: number | undefined;
|
|
@@ -272,6 +354,16 @@ export interface DeleteLicenseResponse {
|
|
|
272
354
|
Status?: LicenseDeletionStatus | undefined;
|
|
273
355
|
DeletionDate?: string | undefined;
|
|
274
356
|
}
|
|
357
|
+
export interface DeleteLicenseAssetGroupRequest {
|
|
358
|
+
LicenseAssetGroupArn: string | undefined;
|
|
359
|
+
}
|
|
360
|
+
export interface DeleteLicenseAssetGroupResponse {
|
|
361
|
+
Status: LicenseAssetGroupStatus | undefined;
|
|
362
|
+
}
|
|
363
|
+
export interface DeleteLicenseAssetRulesetRequest {
|
|
364
|
+
LicenseAssetRulesetArn: string | undefined;
|
|
365
|
+
}
|
|
366
|
+
export interface DeleteLicenseAssetRulesetResponse {}
|
|
275
367
|
export interface DeleteLicenseConfigurationRequest {
|
|
276
368
|
LicenseConfigurationArn: string | undefined;
|
|
277
369
|
}
|
|
@@ -347,6 +439,38 @@ export interface License {
|
|
|
347
439
|
export interface GetLicenseResponse {
|
|
348
440
|
License?: License | undefined;
|
|
349
441
|
}
|
|
442
|
+
export interface GetLicenseAssetGroupRequest {
|
|
443
|
+
LicenseAssetGroupArn: string | undefined;
|
|
444
|
+
}
|
|
445
|
+
export interface LicenseAssetGroup {
|
|
446
|
+
Name: string | undefined;
|
|
447
|
+
Description?: string | undefined;
|
|
448
|
+
LicenseAssetGroupConfigurations?:
|
|
449
|
+
| LicenseAssetGroupConfiguration[]
|
|
450
|
+
| undefined;
|
|
451
|
+
AssociatedLicenseAssetRulesetARNs: string[] | undefined;
|
|
452
|
+
Properties?: LicenseAssetGroupProperty[] | undefined;
|
|
453
|
+
LicenseAssetGroupArn: string | undefined;
|
|
454
|
+
Status: LicenseAssetGroupStatus | undefined;
|
|
455
|
+
StatusMessage?: string | undefined;
|
|
456
|
+
LatestUsageAnalysisTime?: Date | undefined;
|
|
457
|
+
LatestResourceDiscoveryTime?: Date | undefined;
|
|
458
|
+
}
|
|
459
|
+
export interface GetLicenseAssetGroupResponse {
|
|
460
|
+
LicenseAssetGroup: LicenseAssetGroup | undefined;
|
|
461
|
+
}
|
|
462
|
+
export interface GetLicenseAssetRulesetRequest {
|
|
463
|
+
LicenseAssetRulesetArn: string | undefined;
|
|
464
|
+
}
|
|
465
|
+
export interface LicenseAssetRuleset {
|
|
466
|
+
Name: string | undefined;
|
|
467
|
+
Description?: string | undefined;
|
|
468
|
+
Rules: LicenseAssetRule[] | undefined;
|
|
469
|
+
LicenseAssetRulesetArn: string | undefined;
|
|
470
|
+
}
|
|
471
|
+
export interface GetLicenseAssetRulesetResponse {
|
|
472
|
+
LicenseAssetRuleset: LicenseAssetRuleset | undefined;
|
|
473
|
+
}
|
|
350
474
|
export interface GetLicenseConfigurationRequest {
|
|
351
475
|
LicenseConfigurationArn: string | undefined;
|
|
352
476
|
}
|
|
@@ -376,6 +500,7 @@ export interface GetLicenseConfigurationResponse {
|
|
|
376
500
|
ProductInformationList?: ProductInformation[] | undefined;
|
|
377
501
|
AutomatedDiscoveryInformation?: AutomatedDiscoveryInformation | undefined;
|
|
378
502
|
DisassociateWhenNotFound?: boolean | undefined;
|
|
503
|
+
LicenseExpiry?: number | undefined;
|
|
379
504
|
}
|
|
380
505
|
export interface GetLicenseConversionTaskRequest {
|
|
381
506
|
LicenseConversionTaskId: string | undefined;
|
|
@@ -435,12 +560,38 @@ export interface GetServiceSettingsRequest {}
|
|
|
435
560
|
export interface OrganizationConfiguration {
|
|
436
561
|
EnableIntegration: boolean | undefined;
|
|
437
562
|
}
|
|
563
|
+
export interface CrossAccountDiscoveryServiceStatus {
|
|
564
|
+
Message?: string | undefined;
|
|
565
|
+
}
|
|
566
|
+
export interface RegionStatus {
|
|
567
|
+
Status?: string | undefined;
|
|
568
|
+
}
|
|
569
|
+
export interface CrossRegionDiscoveryStatus {
|
|
570
|
+
Message?: Record<string, RegionStatus> | undefined;
|
|
571
|
+
}
|
|
572
|
+
export interface ServiceStatus {
|
|
573
|
+
CrossAccountDiscovery?: CrossAccountDiscoveryServiceStatus | undefined;
|
|
574
|
+
CrossRegionDiscovery?: CrossRegionDiscoveryStatus | undefined;
|
|
575
|
+
}
|
|
438
576
|
export interface GetServiceSettingsResponse {
|
|
439
577
|
S3BucketArn?: string | undefined;
|
|
440
578
|
SnsTopicArn?: string | undefined;
|
|
441
579
|
OrganizationConfiguration?: OrganizationConfiguration | undefined;
|
|
442
580
|
EnableCrossAccountsDiscovery?: boolean | undefined;
|
|
443
581
|
LicenseManagerResourceShareArn?: string | undefined;
|
|
582
|
+
CrossRegionDiscoveryHomeRegion?: string | undefined;
|
|
583
|
+
CrossRegionDiscoverySourceRegions?: string[] | undefined;
|
|
584
|
+
ServiceStatus?: ServiceStatus | undefined;
|
|
585
|
+
}
|
|
586
|
+
export interface ListAssetsForLicenseAssetGroupRequest {
|
|
587
|
+
LicenseAssetGroupArn: string | undefined;
|
|
588
|
+
AssetType: string | undefined;
|
|
589
|
+
MaxResults?: number | undefined;
|
|
590
|
+
NextToken?: string | undefined;
|
|
591
|
+
}
|
|
592
|
+
export interface ListAssetsForLicenseAssetGroupResponse {
|
|
593
|
+
Assets?: Asset[] | undefined;
|
|
594
|
+
NextToken?: string | undefined;
|
|
444
595
|
}
|
|
445
596
|
export interface ListAssociationsForLicenseConfigurationRequest {
|
|
446
597
|
LicenseConfigurationArn: string | undefined;
|
|
@@ -493,6 +644,25 @@ export interface ListFailuresForLicenseConfigurationOperationsResponse {
|
|
|
493
644
|
LicenseOperationFailureList?: LicenseOperationFailure[] | undefined;
|
|
494
645
|
NextToken?: string | undefined;
|
|
495
646
|
}
|
|
647
|
+
export interface ListLicenseAssetGroupsRequest {
|
|
648
|
+
Filters?: Filter[] | undefined;
|
|
649
|
+
MaxResults?: number | undefined;
|
|
650
|
+
NextToken?: string | undefined;
|
|
651
|
+
}
|
|
652
|
+
export interface ListLicenseAssetGroupsResponse {
|
|
653
|
+
LicenseAssetGroups?: LicenseAssetGroup[] | undefined;
|
|
654
|
+
NextToken?: string | undefined;
|
|
655
|
+
}
|
|
656
|
+
export interface ListLicenseAssetRulesetsRequest {
|
|
657
|
+
Filters?: Filter[] | undefined;
|
|
658
|
+
ShowAWSManagedLicenseAssetRulesets?: boolean | undefined;
|
|
659
|
+
MaxResults?: number | undefined;
|
|
660
|
+
NextToken?: string | undefined;
|
|
661
|
+
}
|
|
662
|
+
export interface ListLicenseAssetRulesetsResponse {
|
|
663
|
+
LicenseAssetRulesets?: LicenseAssetRuleset[] | undefined;
|
|
664
|
+
NextToken?: string | undefined;
|
|
665
|
+
}
|
|
496
666
|
export interface ListLicenseConfigurationsRequest {
|
|
497
667
|
LicenseConfigurationArns?: string[] | undefined;
|
|
498
668
|
MaxResults?: number | undefined;
|
|
@@ -516,11 +686,22 @@ export interface LicenseConfiguration {
|
|
|
516
686
|
ManagedResourceSummaryList?: ManagedResourceSummary[] | undefined;
|
|
517
687
|
ProductInformationList?: ProductInformation[] | undefined;
|
|
518
688
|
AutomatedDiscoveryInformation?: AutomatedDiscoveryInformation | undefined;
|
|
689
|
+
LicenseExpiry?: number | undefined;
|
|
519
690
|
}
|
|
520
691
|
export interface ListLicenseConfigurationsResponse {
|
|
521
692
|
LicenseConfigurations?: LicenseConfiguration[] | undefined;
|
|
522
693
|
NextToken?: string | undefined;
|
|
523
694
|
}
|
|
695
|
+
export interface ListLicenseConfigurationsForOrganizationRequest {
|
|
696
|
+
LicenseConfigurationArns?: string[] | undefined;
|
|
697
|
+
MaxResults?: number | undefined;
|
|
698
|
+
NextToken?: string | undefined;
|
|
699
|
+
Filters?: Filter[] | undefined;
|
|
700
|
+
}
|
|
701
|
+
export interface ListLicenseConfigurationsForOrganizationResponse {
|
|
702
|
+
LicenseConfigurations?: LicenseConfiguration[] | undefined;
|
|
703
|
+
NextToken?: string | undefined;
|
|
704
|
+
}
|
|
524
705
|
export interface ListLicenseConversionTasksRequest {
|
|
525
706
|
NextToken?: string | undefined;
|
|
526
707
|
MaxResults?: number | undefined;
|
|
@@ -660,6 +841,12 @@ export interface ResourceInventory {
|
|
|
660
841
|
Platform?: string | undefined;
|
|
661
842
|
PlatformVersion?: string | undefined;
|
|
662
843
|
ResourceOwningAccountId?: string | undefined;
|
|
844
|
+
MarketplaceProductCodes?: string[] | undefined;
|
|
845
|
+
UsageOperation?: string | undefined;
|
|
846
|
+
AmiId?: string | undefined;
|
|
847
|
+
HostId?: string | undefined;
|
|
848
|
+
Region?: string | undefined;
|
|
849
|
+
InstanceType?: string | undefined;
|
|
663
850
|
}
|
|
664
851
|
export interface ListResourceInventoryResponse {
|
|
665
852
|
ResourceInventoryList?: ResourceInventory[] | undefined;
|
|
@@ -726,6 +913,32 @@ export interface UntagResourceRequest {
|
|
|
726
913
|
TagKeys: string[] | undefined;
|
|
727
914
|
}
|
|
728
915
|
export interface UntagResourceResponse {}
|
|
916
|
+
export interface UpdateLicenseAssetGroupRequest {
|
|
917
|
+
Name?: string | undefined;
|
|
918
|
+
Description?: string | undefined;
|
|
919
|
+
LicenseAssetGroupConfigurations?:
|
|
920
|
+
| LicenseAssetGroupConfiguration[]
|
|
921
|
+
| undefined;
|
|
922
|
+
AssociatedLicenseAssetRulesetARNs: string[] | undefined;
|
|
923
|
+
Properties?: LicenseAssetGroupProperty[] | undefined;
|
|
924
|
+
LicenseAssetGroupArn: string | undefined;
|
|
925
|
+
Status?: LicenseAssetGroupStatus | undefined;
|
|
926
|
+
ClientToken: string | undefined;
|
|
927
|
+
}
|
|
928
|
+
export interface UpdateLicenseAssetGroupResponse {
|
|
929
|
+
LicenseAssetGroupArn: string | undefined;
|
|
930
|
+
Status: string | undefined;
|
|
931
|
+
}
|
|
932
|
+
export interface UpdateLicenseAssetRulesetRequest {
|
|
933
|
+
Name?: string | undefined;
|
|
934
|
+
Description?: string | undefined;
|
|
935
|
+
Rules: LicenseAssetRule[] | undefined;
|
|
936
|
+
LicenseAssetRulesetArn: string | undefined;
|
|
937
|
+
ClientToken: string | undefined;
|
|
938
|
+
}
|
|
939
|
+
export interface UpdateLicenseAssetRulesetResponse {
|
|
940
|
+
LicenseAssetRulesetArn: string | undefined;
|
|
941
|
+
}
|
|
729
942
|
export interface UpdateLicenseConfigurationRequest {
|
|
730
943
|
LicenseConfigurationArn: string | undefined;
|
|
731
944
|
LicenseConfigurationStatus?: LicenseConfigurationStatus | undefined;
|
|
@@ -736,6 +949,7 @@ export interface UpdateLicenseConfigurationRequest {
|
|
|
736
949
|
Description?: string | undefined;
|
|
737
950
|
ProductInformationList?: ProductInformation[] | undefined;
|
|
738
951
|
DisassociateWhenNotFound?: boolean | undefined;
|
|
952
|
+
LicenseExpiry?: number | undefined;
|
|
739
953
|
}
|
|
740
954
|
export interface UpdateLicenseConfigurationResponse {}
|
|
741
955
|
export interface UpdateLicenseManagerReportGeneratorRequest {
|
|
@@ -759,5 +973,6 @@ export interface UpdateServiceSettingsRequest {
|
|
|
759
973
|
SnsTopicArn?: string | undefined;
|
|
760
974
|
OrganizationConfiguration?: OrganizationConfiguration | undefined;
|
|
761
975
|
EnableCrossAccountsDiscovery?: boolean | undefined;
|
|
976
|
+
EnabledDiscoverySourceRegions?: string[] | undefined;
|
|
762
977
|
}
|
|
763
978
|
export interface UpdateServiceSettingsResponse {}
|