@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,112 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient";
|
|
4
|
+
import { UpdateLicenseAssetGroupRequest, UpdateLicenseAssetGroupResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateLicenseAssetGroupCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateLicenseAssetGroupCommandInput extends UpdateLicenseAssetGroupRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateLicenseAssetGroupCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateLicenseAssetGroupCommandOutput extends UpdateLicenseAssetGroupResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateLicenseAssetGroupCommand_base: {
|
|
25
|
+
new (input: UpdateLicenseAssetGroupCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateLicenseAssetGroupCommandInput, UpdateLicenseAssetGroupCommandOutput, LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: UpdateLicenseAssetGroupCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateLicenseAssetGroupCommandInput, UpdateLicenseAssetGroupCommandOutput, LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Updates a license asset group.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { LicenseManagerClient, UpdateLicenseAssetGroupCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
35
|
+
* // const { LicenseManagerClient, UpdateLicenseAssetGroupCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
36
|
+
* // import type { LicenseManagerClientConfig } from "@aws-sdk/client-license-manager";
|
|
37
|
+
* const config = {}; // type is LicenseManagerClientConfig
|
|
38
|
+
* const client = new LicenseManagerClient(config);
|
|
39
|
+
* const input = { // UpdateLicenseAssetGroupRequest
|
|
40
|
+
* Name: "STRING_VALUE",
|
|
41
|
+
* Description: "STRING_VALUE",
|
|
42
|
+
* LicenseAssetGroupConfigurations: [ // LicenseAssetGroupConfigurationList
|
|
43
|
+
* { // LicenseAssetGroupConfiguration
|
|
44
|
+
* UsageDimension: "STRING_VALUE",
|
|
45
|
+
* },
|
|
46
|
+
* ],
|
|
47
|
+
* AssociatedLicenseAssetRulesetARNs: [ // LicenseAssetRulesetArnList // required
|
|
48
|
+
* "STRING_VALUE",
|
|
49
|
+
* ],
|
|
50
|
+
* Properties: [ // LicenseAssetGroupPropertyList
|
|
51
|
+
* { // LicenseAssetGroupProperty
|
|
52
|
+
* Key: "STRING_VALUE", // required
|
|
53
|
+
* Value: "STRING_VALUE", // required
|
|
54
|
+
* },
|
|
55
|
+
* ],
|
|
56
|
+
* LicenseAssetGroupArn: "STRING_VALUE", // required
|
|
57
|
+
* Status: "ACTIVE" || "DISABLED" || "DELETED",
|
|
58
|
+
* ClientToken: "STRING_VALUE", // required
|
|
59
|
+
* };
|
|
60
|
+
* const command = new UpdateLicenseAssetGroupCommand(input);
|
|
61
|
+
* const response = await client.send(command);
|
|
62
|
+
* // { // UpdateLicenseAssetGroupResponse
|
|
63
|
+
* // LicenseAssetGroupArn: "STRING_VALUE", // required
|
|
64
|
+
* // Status: "STRING_VALUE", // required
|
|
65
|
+
* // };
|
|
66
|
+
*
|
|
67
|
+
* ```
|
|
68
|
+
*
|
|
69
|
+
* @param UpdateLicenseAssetGroupCommandInput - {@link UpdateLicenseAssetGroupCommandInput}
|
|
70
|
+
* @returns {@link UpdateLicenseAssetGroupCommandOutput}
|
|
71
|
+
* @see {@link UpdateLicenseAssetGroupCommandInput} for command's `input` shape.
|
|
72
|
+
* @see {@link UpdateLicenseAssetGroupCommandOutput} for command's `response` shape.
|
|
73
|
+
* @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
76
|
+
* <p>Access to resource denied.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link AuthorizationException} (client fault)
|
|
79
|
+
* <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
|
|
80
|
+
* policy associated with this account.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
83
|
+
* <p>One or more parameter values are not valid.</p>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link RateLimitExceededException} (client fault)
|
|
86
|
+
* <p>Too many requests have been submitted. Try again after a brief wait.</p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link ServerInternalException} (server fault)
|
|
89
|
+
* <p>The server experienced an internal error. Try again.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link ValidationException} (client fault)
|
|
92
|
+
* <p>The provided input is not valid. Try your request again.</p>
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link LicenseManagerServiceException}
|
|
95
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
96
|
+
*
|
|
97
|
+
*
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
export declare class UpdateLicenseAssetGroupCommand extends UpdateLicenseAssetGroupCommand_base {
|
|
101
|
+
/** @internal type navigation helper, not in runtime. */
|
|
102
|
+
protected static __types: {
|
|
103
|
+
api: {
|
|
104
|
+
input: UpdateLicenseAssetGroupRequest;
|
|
105
|
+
output: UpdateLicenseAssetGroupResponse;
|
|
106
|
+
};
|
|
107
|
+
sdk: {
|
|
108
|
+
input: UpdateLicenseAssetGroupCommandInput;
|
|
109
|
+
output: UpdateLicenseAssetGroupCommandOutput;
|
|
110
|
+
};
|
|
111
|
+
};
|
|
112
|
+
}
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient";
|
|
4
|
+
import { UpdateLicenseAssetRulesetRequest, UpdateLicenseAssetRulesetResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateLicenseAssetRulesetCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateLicenseAssetRulesetCommandInput extends UpdateLicenseAssetRulesetRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateLicenseAssetRulesetCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateLicenseAssetRulesetCommandOutput extends UpdateLicenseAssetRulesetResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateLicenseAssetRulesetCommand_base: {
|
|
25
|
+
new (input: UpdateLicenseAssetRulesetCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateLicenseAssetRulesetCommandInput, UpdateLicenseAssetRulesetCommandOutput, LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: UpdateLicenseAssetRulesetCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateLicenseAssetRulesetCommandInput, UpdateLicenseAssetRulesetCommandOutput, LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Updates a license asset ruleset.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { LicenseManagerClient, UpdateLicenseAssetRulesetCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
35
|
+
* // const { LicenseManagerClient, UpdateLicenseAssetRulesetCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
36
|
+
* // import type { LicenseManagerClientConfig } from "@aws-sdk/client-license-manager";
|
|
37
|
+
* const config = {}; // type is LicenseManagerClientConfig
|
|
38
|
+
* const client = new LicenseManagerClient(config);
|
|
39
|
+
* const input = { // UpdateLicenseAssetRulesetRequest
|
|
40
|
+
* Name: "STRING_VALUE",
|
|
41
|
+
* Description: "STRING_VALUE",
|
|
42
|
+
* Rules: [ // LicenseAssetRuleList // required
|
|
43
|
+
* { // LicenseAssetRule
|
|
44
|
+
* RuleStatement: { // RuleStatement
|
|
45
|
+
* LicenseConfigurationRuleStatement: { // LicenseConfigurationRuleStatement
|
|
46
|
+
* AndRuleStatement: { // AndRuleStatement
|
|
47
|
+
* MatchingRuleStatements: [ // MatchingRuleStatementList
|
|
48
|
+
* { // MatchingRuleStatement
|
|
49
|
+
* KeyToMatch: "STRING_VALUE", // required
|
|
50
|
+
* Constraint: "STRING_VALUE", // required
|
|
51
|
+
* ValueToMatch: [ // StringList // required
|
|
52
|
+
* "STRING_VALUE",
|
|
53
|
+
* ],
|
|
54
|
+
* },
|
|
55
|
+
* ],
|
|
56
|
+
* ScriptRuleStatements: [ // ScriptRuleStatementList
|
|
57
|
+
* { // ScriptRuleStatement
|
|
58
|
+
* KeyToMatch: "STRING_VALUE", // required
|
|
59
|
+
* Script: "STRING_VALUE", // required
|
|
60
|
+
* },
|
|
61
|
+
* ],
|
|
62
|
+
* },
|
|
63
|
+
* OrRuleStatement: { // OrRuleStatement
|
|
64
|
+
* MatchingRuleStatements: [
|
|
65
|
+
* {
|
|
66
|
+
* KeyToMatch: "STRING_VALUE", // required
|
|
67
|
+
* Constraint: "STRING_VALUE", // required
|
|
68
|
+
* ValueToMatch: [ // required
|
|
69
|
+
* "STRING_VALUE",
|
|
70
|
+
* ],
|
|
71
|
+
* },
|
|
72
|
+
* ],
|
|
73
|
+
* ScriptRuleStatements: [
|
|
74
|
+
* {
|
|
75
|
+
* KeyToMatch: "STRING_VALUE", // required
|
|
76
|
+
* Script: "STRING_VALUE", // required
|
|
77
|
+
* },
|
|
78
|
+
* ],
|
|
79
|
+
* },
|
|
80
|
+
* MatchingRuleStatement: {
|
|
81
|
+
* KeyToMatch: "STRING_VALUE", // required
|
|
82
|
+
* Constraint: "STRING_VALUE", // required
|
|
83
|
+
* ValueToMatch: [ // required
|
|
84
|
+
* "STRING_VALUE",
|
|
85
|
+
* ],
|
|
86
|
+
* },
|
|
87
|
+
* },
|
|
88
|
+
* LicenseRuleStatement: { // LicenseRuleStatement
|
|
89
|
+
* AndRuleStatement: {
|
|
90
|
+
* MatchingRuleStatements: [
|
|
91
|
+
* {
|
|
92
|
+
* KeyToMatch: "STRING_VALUE", // required
|
|
93
|
+
* Constraint: "STRING_VALUE", // required
|
|
94
|
+
* ValueToMatch: [ // required
|
|
95
|
+
* "STRING_VALUE",
|
|
96
|
+
* ],
|
|
97
|
+
* },
|
|
98
|
+
* ],
|
|
99
|
+
* ScriptRuleStatements: [
|
|
100
|
+
* {
|
|
101
|
+
* KeyToMatch: "STRING_VALUE", // required
|
|
102
|
+
* Script: "STRING_VALUE", // required
|
|
103
|
+
* },
|
|
104
|
+
* ],
|
|
105
|
+
* },
|
|
106
|
+
* OrRuleStatement: {
|
|
107
|
+
* MatchingRuleStatements: [
|
|
108
|
+
* {
|
|
109
|
+
* KeyToMatch: "STRING_VALUE", // required
|
|
110
|
+
* Constraint: "STRING_VALUE", // required
|
|
111
|
+
* ValueToMatch: [ // required
|
|
112
|
+
* "STRING_VALUE",
|
|
113
|
+
* ],
|
|
114
|
+
* },
|
|
115
|
+
* ],
|
|
116
|
+
* ScriptRuleStatements: [
|
|
117
|
+
* {
|
|
118
|
+
* KeyToMatch: "STRING_VALUE", // required
|
|
119
|
+
* Script: "STRING_VALUE", // required
|
|
120
|
+
* },
|
|
121
|
+
* ],
|
|
122
|
+
* },
|
|
123
|
+
* MatchingRuleStatement: "<MatchingRuleStatement>",
|
|
124
|
+
* },
|
|
125
|
+
* InstanceRuleStatement: { // InstanceRuleStatement
|
|
126
|
+
* AndRuleStatement: {
|
|
127
|
+
* MatchingRuleStatements: [
|
|
128
|
+
* "<MatchingRuleStatement>",
|
|
129
|
+
* ],
|
|
130
|
+
* ScriptRuleStatements: [
|
|
131
|
+
* {
|
|
132
|
+
* KeyToMatch: "STRING_VALUE", // required
|
|
133
|
+
* Script: "STRING_VALUE", // required
|
|
134
|
+
* },
|
|
135
|
+
* ],
|
|
136
|
+
* },
|
|
137
|
+
* OrRuleStatement: {
|
|
138
|
+
* MatchingRuleStatements: "<MatchingRuleStatementList>",
|
|
139
|
+
* ScriptRuleStatements: "<ScriptRuleStatementList>",
|
|
140
|
+
* },
|
|
141
|
+
* MatchingRuleStatement: "<MatchingRuleStatement>",
|
|
142
|
+
* ScriptRuleStatement: "<ScriptRuleStatement>",
|
|
143
|
+
* },
|
|
144
|
+
* },
|
|
145
|
+
* },
|
|
146
|
+
* ],
|
|
147
|
+
* LicenseAssetRulesetArn: "STRING_VALUE", // required
|
|
148
|
+
* ClientToken: "STRING_VALUE", // required
|
|
149
|
+
* };
|
|
150
|
+
* const command = new UpdateLicenseAssetRulesetCommand(input);
|
|
151
|
+
* const response = await client.send(command);
|
|
152
|
+
* // { // UpdateLicenseAssetRulesetResponse
|
|
153
|
+
* // LicenseAssetRulesetArn: "STRING_VALUE", // required
|
|
154
|
+
* // };
|
|
155
|
+
*
|
|
156
|
+
* ```
|
|
157
|
+
*
|
|
158
|
+
* @param UpdateLicenseAssetRulesetCommandInput - {@link UpdateLicenseAssetRulesetCommandInput}
|
|
159
|
+
* @returns {@link UpdateLicenseAssetRulesetCommandOutput}
|
|
160
|
+
* @see {@link UpdateLicenseAssetRulesetCommandInput} for command's `input` shape.
|
|
161
|
+
* @see {@link UpdateLicenseAssetRulesetCommandOutput} for command's `response` shape.
|
|
162
|
+
* @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
|
|
163
|
+
*
|
|
164
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
165
|
+
* <p>Access to resource denied.</p>
|
|
166
|
+
*
|
|
167
|
+
* @throws {@link AuthorizationException} (client fault)
|
|
168
|
+
* <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
|
|
169
|
+
* policy associated with this account.</p>
|
|
170
|
+
*
|
|
171
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
172
|
+
* <p>One or more parameter values are not valid.</p>
|
|
173
|
+
*
|
|
174
|
+
* @throws {@link RateLimitExceededException} (client fault)
|
|
175
|
+
* <p>Too many requests have been submitted. Try again after a brief wait.</p>
|
|
176
|
+
*
|
|
177
|
+
* @throws {@link ServerInternalException} (server fault)
|
|
178
|
+
* <p>The server experienced an internal error. Try again.</p>
|
|
179
|
+
*
|
|
180
|
+
* @throws {@link ValidationException} (client fault)
|
|
181
|
+
* <p>The provided input is not valid. Try your request again.</p>
|
|
182
|
+
*
|
|
183
|
+
* @throws {@link LicenseManagerServiceException}
|
|
184
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
185
|
+
*
|
|
186
|
+
*
|
|
187
|
+
* @public
|
|
188
|
+
*/
|
|
189
|
+
export declare class UpdateLicenseAssetRulesetCommand extends UpdateLicenseAssetRulesetCommand_base {
|
|
190
|
+
/** @internal type navigation helper, not in runtime. */
|
|
191
|
+
protected static __types: {
|
|
192
|
+
api: {
|
|
193
|
+
input: UpdateLicenseAssetRulesetRequest;
|
|
194
|
+
output: UpdateLicenseAssetRulesetResponse;
|
|
195
|
+
};
|
|
196
|
+
sdk: {
|
|
197
|
+
input: UpdateLicenseAssetRulesetCommandInput;
|
|
198
|
+
output: UpdateLicenseAssetRulesetCommandOutput;
|
|
199
|
+
};
|
|
200
|
+
};
|
|
201
|
+
}
|
|
@@ -61,6 +61,7 @@ declare const UpdateLicenseConfigurationCommand_base: {
|
|
|
61
61
|
* },
|
|
62
62
|
* ],
|
|
63
63
|
* DisassociateWhenNotFound: true || false,
|
|
64
|
+
* LicenseExpiry: Number("long"),
|
|
64
65
|
* };
|
|
65
66
|
* const command = new UpdateLicenseConfigurationCommand(input);
|
|
66
67
|
* const response = await client.send(command);
|
|
@@ -41,16 +41,21 @@ declare const UpdateLicenseManagerReportGeneratorCommand_base: {
|
|
|
41
41
|
* LicenseManagerReportGeneratorArn: "STRING_VALUE", // required
|
|
42
42
|
* ReportGeneratorName: "STRING_VALUE", // required
|
|
43
43
|
* Type: [ // ReportTypeList // required
|
|
44
|
-
* "LicenseConfigurationSummaryReport" || "LicenseConfigurationUsageReport",
|
|
44
|
+
* "LicenseConfigurationSummaryReport" || "LicenseConfigurationUsageReport" || "LicenseAssetGroupUsageReport",
|
|
45
45
|
* ],
|
|
46
46
|
* ReportContext: { // ReportContext
|
|
47
|
-
* licenseConfigurationArns: [ // ArnList
|
|
47
|
+
* licenseConfigurationArns: [ // ArnList
|
|
48
48
|
* "STRING_VALUE",
|
|
49
49
|
* ],
|
|
50
|
+
* licenseAssetGroupArns: [
|
|
51
|
+
* "STRING_VALUE",
|
|
52
|
+
* ],
|
|
53
|
+
* reportStartDate: new Date("TIMESTAMP"),
|
|
54
|
+
* reportEndDate: new Date("TIMESTAMP"),
|
|
50
55
|
* },
|
|
51
56
|
* ReportFrequency: { // ReportFrequency
|
|
52
57
|
* value: Number("int"),
|
|
53
|
-
* period: "DAY" || "WEEK" || "MONTH",
|
|
58
|
+
* period: "DAY" || "WEEK" || "MONTH" || "ONE_TIME",
|
|
54
59
|
* },
|
|
55
60
|
* ClientToken: "STRING_VALUE", // required
|
|
56
61
|
* Description: "STRING_VALUE",
|
|
@@ -43,6 +43,9 @@ declare const UpdateServiceSettingsCommand_base: {
|
|
|
43
43
|
* EnableIntegration: true || false, // required
|
|
44
44
|
* },
|
|
45
45
|
* EnableCrossAccountsDiscovery: true || false,
|
|
46
|
+
* EnabledDiscoverySourceRegions: [ // StringList
|
|
47
|
+
* "STRING_VALUE",
|
|
48
|
+
* ],
|
|
46
49
|
* };
|
|
47
50
|
* const command = new UpdateServiceSettingsCommand(input);
|
|
48
51
|
* const response = await client.send(command);
|
|
@@ -63,6 +66,9 @@ declare const UpdateServiceSettingsCommand_base: {
|
|
|
63
66
|
* <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
|
|
64
67
|
* policy associated with this account.</p>
|
|
65
68
|
*
|
|
69
|
+
* @throws {@link ConflictException} (client fault)
|
|
70
|
+
* <p>There was a conflict processing the request. Try your request again.</p>
|
|
71
|
+
*
|
|
66
72
|
* @throws {@link InvalidParameterValueException} (client fault)
|
|
67
73
|
* <p>One or more parameter values are not valid.</p>
|
|
68
74
|
*
|
|
@@ -72,6 +78,9 @@ declare const UpdateServiceSettingsCommand_base: {
|
|
|
72
78
|
* @throws {@link ServerInternalException} (server fault)
|
|
73
79
|
* <p>The server experienced an internal error. Try again.</p>
|
|
74
80
|
*
|
|
81
|
+
* @throws {@link ValidationException} (client fault)
|
|
82
|
+
* <p>The provided input is not valid. Try your request again.</p>
|
|
83
|
+
*
|
|
75
84
|
* @throws {@link LicenseManagerServiceException}
|
|
76
85
|
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
77
86
|
*
|
|
@@ -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";
|
|
@@ -205,6 +205,7 @@ export type ProductCodeType = (typeof ProductCodeType)[keyof typeof ProductCodeT
|
|
|
205
205
|
export declare const ReportFrequencyType: {
|
|
206
206
|
readonly DAY: "DAY";
|
|
207
207
|
readonly MONTH: "MONTH";
|
|
208
|
+
readonly ONE_TIME: "ONE_TIME";
|
|
208
209
|
readonly WEEK: "WEEK";
|
|
209
210
|
};
|
|
210
211
|
/**
|
|
@@ -216,6 +217,7 @@ export type ReportFrequencyType = (typeof ReportFrequencyType)[keyof typeof Repo
|
|
|
216
217
|
* @enum
|
|
217
218
|
*/
|
|
218
219
|
export declare const ReportType: {
|
|
220
|
+
readonly LICENSE_ASSET_GROUP_USAGE_REPORT: "LicenseAssetGroupUsageReport";
|
|
219
221
|
readonly LICENSE_CONFIGURATION_SUMMARY_REPORT: "LicenseConfigurationSummaryReport";
|
|
220
222
|
readonly LICENSE_CONFIGURATION_USAGE_REPORT: "LicenseConfigurationUsageReport";
|
|
221
223
|
};
|
|
@@ -246,6 +248,19 @@ export declare const LicenseDeletionStatus: {
|
|
|
246
248
|
* @public
|
|
247
249
|
*/
|
|
248
250
|
export type LicenseDeletionStatus = (typeof LicenseDeletionStatus)[keyof typeof LicenseDeletionStatus];
|
|
251
|
+
/**
|
|
252
|
+
* @public
|
|
253
|
+
* @enum
|
|
254
|
+
*/
|
|
255
|
+
export declare const LicenseAssetGroupStatus: {
|
|
256
|
+
readonly ACTIVE: "ACTIVE";
|
|
257
|
+
readonly DELETED: "DELETED";
|
|
258
|
+
readonly DISABLED: "DISABLED";
|
|
259
|
+
};
|
|
260
|
+
/**
|
|
261
|
+
* @public
|
|
262
|
+
*/
|
|
263
|
+
export type LicenseAssetGroupStatus = (typeof LicenseAssetGroupStatus)[keyof typeof LicenseAssetGroupStatus];
|
|
249
264
|
/**
|
|
250
265
|
* @public
|
|
251
266
|
* @enum
|