@aws-sdk/client-license-manager 3.489.0 → 3.495.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/dist-cjs/LicenseManager.js +1 -111
- package/dist-cjs/LicenseManagerClient.js +1 -43
- package/dist-cjs/commands/AcceptGrantCommand.js +1 -28
- package/dist-cjs/commands/CheckInLicenseCommand.js +1 -28
- package/dist-cjs/commands/CheckoutBorrowLicenseCommand.js +1 -28
- package/dist-cjs/commands/CheckoutLicenseCommand.js +1 -28
- package/dist-cjs/commands/CreateGrantCommand.js +1 -28
- package/dist-cjs/commands/CreateGrantVersionCommand.js +1 -28
- package/dist-cjs/commands/CreateLicenseCommand.js +1 -28
- package/dist-cjs/commands/CreateLicenseConfigurationCommand.js +1 -28
- package/dist-cjs/commands/CreateLicenseConversionTaskForResourceCommand.js +1 -28
- package/dist-cjs/commands/CreateLicenseManagerReportGeneratorCommand.js +1 -28
- package/dist-cjs/commands/CreateLicenseVersionCommand.js +1 -28
- package/dist-cjs/commands/CreateTokenCommand.js +1 -28
- package/dist-cjs/commands/DeleteGrantCommand.js +1 -28
- package/dist-cjs/commands/DeleteLicenseCommand.js +1 -28
- package/dist-cjs/commands/DeleteLicenseConfigurationCommand.js +1 -28
- package/dist-cjs/commands/DeleteLicenseManagerReportGeneratorCommand.js +1 -28
- package/dist-cjs/commands/DeleteTokenCommand.js +1 -28
- package/dist-cjs/commands/ExtendLicenseConsumptionCommand.js +1 -28
- package/dist-cjs/commands/GetAccessTokenCommand.js +1 -28
- package/dist-cjs/commands/GetGrantCommand.js +1 -28
- package/dist-cjs/commands/GetLicenseCommand.js +1 -28
- package/dist-cjs/commands/GetLicenseConfigurationCommand.js +1 -28
- package/dist-cjs/commands/GetLicenseConversionTaskCommand.js +1 -28
- package/dist-cjs/commands/GetLicenseManagerReportGeneratorCommand.js +1 -28
- package/dist-cjs/commands/GetLicenseUsageCommand.js +1 -28
- package/dist-cjs/commands/GetServiceSettingsCommand.js +1 -28
- package/dist-cjs/commands/ListAssociationsForLicenseConfigurationCommand.js +1 -28
- package/dist-cjs/commands/ListDistributedGrantsCommand.js +1 -28
- package/dist-cjs/commands/ListFailuresForLicenseConfigurationOperationsCommand.js +1 -28
- package/dist-cjs/commands/ListLicenseConfigurationsCommand.js +1 -28
- package/dist-cjs/commands/ListLicenseConversionTasksCommand.js +1 -28
- package/dist-cjs/commands/ListLicenseManagerReportGeneratorsCommand.js +1 -28
- package/dist-cjs/commands/ListLicenseSpecificationsForResourceCommand.js +1 -28
- package/dist-cjs/commands/ListLicenseVersionsCommand.js +1 -28
- package/dist-cjs/commands/ListLicensesCommand.js +1 -28
- package/dist-cjs/commands/ListReceivedGrantsCommand.js +1 -28
- package/dist-cjs/commands/ListReceivedGrantsForOrganizationCommand.js +1 -28
- package/dist-cjs/commands/ListReceivedLicensesCommand.js +1 -28
- package/dist-cjs/commands/ListReceivedLicensesForOrganizationCommand.js +1 -28
- package/dist-cjs/commands/ListResourceInventoryCommand.js +1 -28
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
- package/dist-cjs/commands/ListTokensCommand.js +1 -28
- package/dist-cjs/commands/ListUsageForLicenseConfigurationCommand.js +1 -28
- package/dist-cjs/commands/RejectGrantCommand.js +1 -28
- package/dist-cjs/commands/TagResourceCommand.js +1 -28
- package/dist-cjs/commands/UntagResourceCommand.js +1 -28
- package/dist-cjs/commands/UpdateLicenseConfigurationCommand.js +1 -28
- package/dist-cjs/commands/UpdateLicenseManagerReportGeneratorCommand.js +1 -28
- package/dist-cjs/commands/UpdateLicenseSpecificationsForResourceCommand.js +1 -28
- package/dist-cjs/commands/UpdateServiceSettingsCommand.js +1 -28
- package/dist-cjs/commands/index.js +1 -53
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +4819 -10
- package/dist-cjs/models/LicenseManagerServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -401
- package/dist-cjs/protocols/Aws_json1_1.js +1 -3240
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +39 -39
|
@@ -1,111 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.LicenseManager = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
const AcceptGrantCommand_1 = require("./commands/AcceptGrantCommand");
|
|
6
|
-
const CheckInLicenseCommand_1 = require("./commands/CheckInLicenseCommand");
|
|
7
|
-
const CheckoutBorrowLicenseCommand_1 = require("./commands/CheckoutBorrowLicenseCommand");
|
|
8
|
-
const CheckoutLicenseCommand_1 = require("./commands/CheckoutLicenseCommand");
|
|
9
|
-
const CreateGrantCommand_1 = require("./commands/CreateGrantCommand");
|
|
10
|
-
const CreateGrantVersionCommand_1 = require("./commands/CreateGrantVersionCommand");
|
|
11
|
-
const CreateLicenseCommand_1 = require("./commands/CreateLicenseCommand");
|
|
12
|
-
const CreateLicenseConfigurationCommand_1 = require("./commands/CreateLicenseConfigurationCommand");
|
|
13
|
-
const CreateLicenseConversionTaskForResourceCommand_1 = require("./commands/CreateLicenseConversionTaskForResourceCommand");
|
|
14
|
-
const CreateLicenseManagerReportGeneratorCommand_1 = require("./commands/CreateLicenseManagerReportGeneratorCommand");
|
|
15
|
-
const CreateLicenseVersionCommand_1 = require("./commands/CreateLicenseVersionCommand");
|
|
16
|
-
const CreateTokenCommand_1 = require("./commands/CreateTokenCommand");
|
|
17
|
-
const DeleteGrantCommand_1 = require("./commands/DeleteGrantCommand");
|
|
18
|
-
const DeleteLicenseCommand_1 = require("./commands/DeleteLicenseCommand");
|
|
19
|
-
const DeleteLicenseConfigurationCommand_1 = require("./commands/DeleteLicenseConfigurationCommand");
|
|
20
|
-
const DeleteLicenseManagerReportGeneratorCommand_1 = require("./commands/DeleteLicenseManagerReportGeneratorCommand");
|
|
21
|
-
const DeleteTokenCommand_1 = require("./commands/DeleteTokenCommand");
|
|
22
|
-
const ExtendLicenseConsumptionCommand_1 = require("./commands/ExtendLicenseConsumptionCommand");
|
|
23
|
-
const GetAccessTokenCommand_1 = require("./commands/GetAccessTokenCommand");
|
|
24
|
-
const GetGrantCommand_1 = require("./commands/GetGrantCommand");
|
|
25
|
-
const GetLicenseCommand_1 = require("./commands/GetLicenseCommand");
|
|
26
|
-
const GetLicenseConfigurationCommand_1 = require("./commands/GetLicenseConfigurationCommand");
|
|
27
|
-
const GetLicenseConversionTaskCommand_1 = require("./commands/GetLicenseConversionTaskCommand");
|
|
28
|
-
const GetLicenseManagerReportGeneratorCommand_1 = require("./commands/GetLicenseManagerReportGeneratorCommand");
|
|
29
|
-
const GetLicenseUsageCommand_1 = require("./commands/GetLicenseUsageCommand");
|
|
30
|
-
const GetServiceSettingsCommand_1 = require("./commands/GetServiceSettingsCommand");
|
|
31
|
-
const ListAssociationsForLicenseConfigurationCommand_1 = require("./commands/ListAssociationsForLicenseConfigurationCommand");
|
|
32
|
-
const ListDistributedGrantsCommand_1 = require("./commands/ListDistributedGrantsCommand");
|
|
33
|
-
const ListFailuresForLicenseConfigurationOperationsCommand_1 = require("./commands/ListFailuresForLicenseConfigurationOperationsCommand");
|
|
34
|
-
const ListLicenseConfigurationsCommand_1 = require("./commands/ListLicenseConfigurationsCommand");
|
|
35
|
-
const ListLicenseConversionTasksCommand_1 = require("./commands/ListLicenseConversionTasksCommand");
|
|
36
|
-
const ListLicenseManagerReportGeneratorsCommand_1 = require("./commands/ListLicenseManagerReportGeneratorsCommand");
|
|
37
|
-
const ListLicensesCommand_1 = require("./commands/ListLicensesCommand");
|
|
38
|
-
const ListLicenseSpecificationsForResourceCommand_1 = require("./commands/ListLicenseSpecificationsForResourceCommand");
|
|
39
|
-
const ListLicenseVersionsCommand_1 = require("./commands/ListLicenseVersionsCommand");
|
|
40
|
-
const ListReceivedGrantsCommand_1 = require("./commands/ListReceivedGrantsCommand");
|
|
41
|
-
const ListReceivedGrantsForOrganizationCommand_1 = require("./commands/ListReceivedGrantsForOrganizationCommand");
|
|
42
|
-
const ListReceivedLicensesCommand_1 = require("./commands/ListReceivedLicensesCommand");
|
|
43
|
-
const ListReceivedLicensesForOrganizationCommand_1 = require("./commands/ListReceivedLicensesForOrganizationCommand");
|
|
44
|
-
const ListResourceInventoryCommand_1 = require("./commands/ListResourceInventoryCommand");
|
|
45
|
-
const ListTagsForResourceCommand_1 = require("./commands/ListTagsForResourceCommand");
|
|
46
|
-
const ListTokensCommand_1 = require("./commands/ListTokensCommand");
|
|
47
|
-
const ListUsageForLicenseConfigurationCommand_1 = require("./commands/ListUsageForLicenseConfigurationCommand");
|
|
48
|
-
const RejectGrantCommand_1 = require("./commands/RejectGrantCommand");
|
|
49
|
-
const TagResourceCommand_1 = require("./commands/TagResourceCommand");
|
|
50
|
-
const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
|
|
51
|
-
const UpdateLicenseConfigurationCommand_1 = require("./commands/UpdateLicenseConfigurationCommand");
|
|
52
|
-
const UpdateLicenseManagerReportGeneratorCommand_1 = require("./commands/UpdateLicenseManagerReportGeneratorCommand");
|
|
53
|
-
const UpdateLicenseSpecificationsForResourceCommand_1 = require("./commands/UpdateLicenseSpecificationsForResourceCommand");
|
|
54
|
-
const UpdateServiceSettingsCommand_1 = require("./commands/UpdateServiceSettingsCommand");
|
|
55
|
-
const LicenseManagerClient_1 = require("./LicenseManagerClient");
|
|
56
|
-
const commands = {
|
|
57
|
-
AcceptGrantCommand: AcceptGrantCommand_1.AcceptGrantCommand,
|
|
58
|
-
CheckInLicenseCommand: CheckInLicenseCommand_1.CheckInLicenseCommand,
|
|
59
|
-
CheckoutBorrowLicenseCommand: CheckoutBorrowLicenseCommand_1.CheckoutBorrowLicenseCommand,
|
|
60
|
-
CheckoutLicenseCommand: CheckoutLicenseCommand_1.CheckoutLicenseCommand,
|
|
61
|
-
CreateGrantCommand: CreateGrantCommand_1.CreateGrantCommand,
|
|
62
|
-
CreateGrantVersionCommand: CreateGrantVersionCommand_1.CreateGrantVersionCommand,
|
|
63
|
-
CreateLicenseCommand: CreateLicenseCommand_1.CreateLicenseCommand,
|
|
64
|
-
CreateLicenseConfigurationCommand: CreateLicenseConfigurationCommand_1.CreateLicenseConfigurationCommand,
|
|
65
|
-
CreateLicenseConversionTaskForResourceCommand: CreateLicenseConversionTaskForResourceCommand_1.CreateLicenseConversionTaskForResourceCommand,
|
|
66
|
-
CreateLicenseManagerReportGeneratorCommand: CreateLicenseManagerReportGeneratorCommand_1.CreateLicenseManagerReportGeneratorCommand,
|
|
67
|
-
CreateLicenseVersionCommand: CreateLicenseVersionCommand_1.CreateLicenseVersionCommand,
|
|
68
|
-
CreateTokenCommand: CreateTokenCommand_1.CreateTokenCommand,
|
|
69
|
-
DeleteGrantCommand: DeleteGrantCommand_1.DeleteGrantCommand,
|
|
70
|
-
DeleteLicenseCommand: DeleteLicenseCommand_1.DeleteLicenseCommand,
|
|
71
|
-
DeleteLicenseConfigurationCommand: DeleteLicenseConfigurationCommand_1.DeleteLicenseConfigurationCommand,
|
|
72
|
-
DeleteLicenseManagerReportGeneratorCommand: DeleteLicenseManagerReportGeneratorCommand_1.DeleteLicenseManagerReportGeneratorCommand,
|
|
73
|
-
DeleteTokenCommand: DeleteTokenCommand_1.DeleteTokenCommand,
|
|
74
|
-
ExtendLicenseConsumptionCommand: ExtendLicenseConsumptionCommand_1.ExtendLicenseConsumptionCommand,
|
|
75
|
-
GetAccessTokenCommand: GetAccessTokenCommand_1.GetAccessTokenCommand,
|
|
76
|
-
GetGrantCommand: GetGrantCommand_1.GetGrantCommand,
|
|
77
|
-
GetLicenseCommand: GetLicenseCommand_1.GetLicenseCommand,
|
|
78
|
-
GetLicenseConfigurationCommand: GetLicenseConfigurationCommand_1.GetLicenseConfigurationCommand,
|
|
79
|
-
GetLicenseConversionTaskCommand: GetLicenseConversionTaskCommand_1.GetLicenseConversionTaskCommand,
|
|
80
|
-
GetLicenseManagerReportGeneratorCommand: GetLicenseManagerReportGeneratorCommand_1.GetLicenseManagerReportGeneratorCommand,
|
|
81
|
-
GetLicenseUsageCommand: GetLicenseUsageCommand_1.GetLicenseUsageCommand,
|
|
82
|
-
GetServiceSettingsCommand: GetServiceSettingsCommand_1.GetServiceSettingsCommand,
|
|
83
|
-
ListAssociationsForLicenseConfigurationCommand: ListAssociationsForLicenseConfigurationCommand_1.ListAssociationsForLicenseConfigurationCommand,
|
|
84
|
-
ListDistributedGrantsCommand: ListDistributedGrantsCommand_1.ListDistributedGrantsCommand,
|
|
85
|
-
ListFailuresForLicenseConfigurationOperationsCommand: ListFailuresForLicenseConfigurationOperationsCommand_1.ListFailuresForLicenseConfigurationOperationsCommand,
|
|
86
|
-
ListLicenseConfigurationsCommand: ListLicenseConfigurationsCommand_1.ListLicenseConfigurationsCommand,
|
|
87
|
-
ListLicenseConversionTasksCommand: ListLicenseConversionTasksCommand_1.ListLicenseConversionTasksCommand,
|
|
88
|
-
ListLicenseManagerReportGeneratorsCommand: ListLicenseManagerReportGeneratorsCommand_1.ListLicenseManagerReportGeneratorsCommand,
|
|
89
|
-
ListLicensesCommand: ListLicensesCommand_1.ListLicensesCommand,
|
|
90
|
-
ListLicenseSpecificationsForResourceCommand: ListLicenseSpecificationsForResourceCommand_1.ListLicenseSpecificationsForResourceCommand,
|
|
91
|
-
ListLicenseVersionsCommand: ListLicenseVersionsCommand_1.ListLicenseVersionsCommand,
|
|
92
|
-
ListReceivedGrantsCommand: ListReceivedGrantsCommand_1.ListReceivedGrantsCommand,
|
|
93
|
-
ListReceivedGrantsForOrganizationCommand: ListReceivedGrantsForOrganizationCommand_1.ListReceivedGrantsForOrganizationCommand,
|
|
94
|
-
ListReceivedLicensesCommand: ListReceivedLicensesCommand_1.ListReceivedLicensesCommand,
|
|
95
|
-
ListReceivedLicensesForOrganizationCommand: ListReceivedLicensesForOrganizationCommand_1.ListReceivedLicensesForOrganizationCommand,
|
|
96
|
-
ListResourceInventoryCommand: ListResourceInventoryCommand_1.ListResourceInventoryCommand,
|
|
97
|
-
ListTagsForResourceCommand: ListTagsForResourceCommand_1.ListTagsForResourceCommand,
|
|
98
|
-
ListTokensCommand: ListTokensCommand_1.ListTokensCommand,
|
|
99
|
-
ListUsageForLicenseConfigurationCommand: ListUsageForLicenseConfigurationCommand_1.ListUsageForLicenseConfigurationCommand,
|
|
100
|
-
RejectGrantCommand: RejectGrantCommand_1.RejectGrantCommand,
|
|
101
|
-
TagResourceCommand: TagResourceCommand_1.TagResourceCommand,
|
|
102
|
-
UntagResourceCommand: UntagResourceCommand_1.UntagResourceCommand,
|
|
103
|
-
UpdateLicenseConfigurationCommand: UpdateLicenseConfigurationCommand_1.UpdateLicenseConfigurationCommand,
|
|
104
|
-
UpdateLicenseManagerReportGeneratorCommand: UpdateLicenseManagerReportGeneratorCommand_1.UpdateLicenseManagerReportGeneratorCommand,
|
|
105
|
-
UpdateLicenseSpecificationsForResourceCommand: UpdateLicenseSpecificationsForResourceCommand_1.UpdateLicenseSpecificationsForResourceCommand,
|
|
106
|
-
UpdateServiceSettingsCommand: UpdateServiceSettingsCommand_1.UpdateServiceSettingsCommand,
|
|
107
|
-
};
|
|
108
|
-
class LicenseManager extends LicenseManagerClient_1.LicenseManagerClient {
|
|
109
|
-
}
|
|
110
|
-
exports.LicenseManager = LicenseManager;
|
|
111
|
-
(0, smithy_client_1.createAggregatedClient)(commands, LicenseManager);
|
|
1
|
+
module.exports = require("./index.js");
|
|
@@ -1,43 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.LicenseManagerClient = exports.__Client = void 0;
|
|
4
|
-
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
5
|
-
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
6
|
-
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
7
|
-
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
8
|
-
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
9
|
-
const config_resolver_1 = require("@smithy/config-resolver");
|
|
10
|
-
const middleware_content_length_1 = require("@smithy/middleware-content-length");
|
|
11
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
12
|
-
const middleware_retry_1 = require("@smithy/middleware-retry");
|
|
13
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
14
|
-
Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
|
|
15
|
-
const EndpointParameters_1 = require("./endpoint/EndpointParameters");
|
|
16
|
-
const runtimeConfig_1 = require("./runtimeConfig");
|
|
17
|
-
const runtimeExtensions_1 = require("./runtimeExtensions");
|
|
18
|
-
class LicenseManagerClient extends smithy_client_1.Client {
|
|
19
|
-
constructor(...[configuration]) {
|
|
20
|
-
const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {});
|
|
21
|
-
const _config_1 = (0, EndpointParameters_1.resolveClientEndpointParameters)(_config_0);
|
|
22
|
-
const _config_2 = (0, config_resolver_1.resolveRegionConfig)(_config_1);
|
|
23
|
-
const _config_3 = (0, middleware_endpoint_1.resolveEndpointConfig)(_config_2);
|
|
24
|
-
const _config_4 = (0, middleware_retry_1.resolveRetryConfig)(_config_3);
|
|
25
|
-
const _config_5 = (0, middleware_host_header_1.resolveHostHeaderConfig)(_config_4);
|
|
26
|
-
const _config_6 = (0, middleware_signing_1.resolveAwsAuthConfig)(_config_5);
|
|
27
|
-
const _config_7 = (0, middleware_user_agent_1.resolveUserAgentConfig)(_config_6);
|
|
28
|
-
const _config_8 = (0, runtimeExtensions_1.resolveRuntimeExtensions)(_config_7, configuration?.extensions || []);
|
|
29
|
-
super(_config_8);
|
|
30
|
-
this.config = _config_8;
|
|
31
|
-
this.middlewareStack.use((0, middleware_retry_1.getRetryPlugin)(this.config));
|
|
32
|
-
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
33
|
-
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
34
|
-
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
35
|
-
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
36
|
-
this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
|
|
37
|
-
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
38
|
-
}
|
|
39
|
-
destroy() {
|
|
40
|
-
super.destroy();
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
exports.LicenseManagerClient = LicenseManagerClient;
|
|
1
|
+
module.exports = require("./index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AcceptGrantCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class AcceptGrantCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSLicenseManager", "AcceptGrant", {})
|
|
22
|
-
.n("LicenseManagerClient", "AcceptGrantCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_AcceptGrantCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_AcceptGrantCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.AcceptGrantCommand = AcceptGrantCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CheckInLicenseCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class CheckInLicenseCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSLicenseManager", "CheckInLicense", {})
|
|
22
|
-
.n("LicenseManagerClient", "CheckInLicenseCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_CheckInLicenseCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_CheckInLicenseCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CheckInLicenseCommand = CheckInLicenseCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CheckoutBorrowLicenseCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class CheckoutBorrowLicenseCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSLicenseManager", "CheckoutBorrowLicense", {})
|
|
22
|
-
.n("LicenseManagerClient", "CheckoutBorrowLicenseCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_CheckoutBorrowLicenseCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_CheckoutBorrowLicenseCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CheckoutBorrowLicenseCommand = CheckoutBorrowLicenseCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CheckoutLicenseCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class CheckoutLicenseCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSLicenseManager", "CheckoutLicense", {})
|
|
22
|
-
.n("LicenseManagerClient", "CheckoutLicenseCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_CheckoutLicenseCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_CheckoutLicenseCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CheckoutLicenseCommand = CheckoutLicenseCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateGrantCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class CreateGrantCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSLicenseManager", "CreateGrant", {})
|
|
22
|
-
.n("LicenseManagerClient", "CreateGrantCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_CreateGrantCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_CreateGrantCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateGrantCommand = CreateGrantCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateGrantVersionCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class CreateGrantVersionCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSLicenseManager", "CreateGrantVersion", {})
|
|
22
|
-
.n("LicenseManagerClient", "CreateGrantVersionCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_CreateGrantVersionCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_CreateGrantVersionCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateGrantVersionCommand = CreateGrantVersionCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateLicenseCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class CreateLicenseCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSLicenseManager", "CreateLicense", {})
|
|
22
|
-
.n("LicenseManagerClient", "CreateLicenseCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_CreateLicenseCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_CreateLicenseCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateLicenseCommand = CreateLicenseCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateLicenseConfigurationCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class CreateLicenseConfigurationCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSLicenseManager", "CreateLicenseConfiguration", {})
|
|
22
|
-
.n("LicenseManagerClient", "CreateLicenseConfigurationCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_CreateLicenseConfigurationCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_CreateLicenseConfigurationCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateLicenseConfigurationCommand = CreateLicenseConfigurationCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateLicenseConversionTaskForResourceCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class CreateLicenseConversionTaskForResourceCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSLicenseManager", "CreateLicenseConversionTaskForResource", {})
|
|
22
|
-
.n("LicenseManagerClient", "CreateLicenseConversionTaskForResourceCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_CreateLicenseConversionTaskForResourceCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_CreateLicenseConversionTaskForResourceCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateLicenseConversionTaskForResourceCommand = CreateLicenseConversionTaskForResourceCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateLicenseManagerReportGeneratorCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class CreateLicenseManagerReportGeneratorCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSLicenseManager", "CreateLicenseManagerReportGenerator", {})
|
|
22
|
-
.n("LicenseManagerClient", "CreateLicenseManagerReportGeneratorCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_CreateLicenseManagerReportGeneratorCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_CreateLicenseManagerReportGeneratorCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateLicenseManagerReportGeneratorCommand = CreateLicenseManagerReportGeneratorCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateLicenseVersionCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class CreateLicenseVersionCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSLicenseManager", "CreateLicenseVersion", {})
|
|
22
|
-
.n("LicenseManagerClient", "CreateLicenseVersionCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_CreateLicenseVersionCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_CreateLicenseVersionCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateLicenseVersionCommand = CreateLicenseVersionCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateTokenCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class CreateTokenCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSLicenseManager", "CreateToken", {})
|
|
22
|
-
.n("LicenseManagerClient", "CreateTokenCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_CreateTokenCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_CreateTokenCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateTokenCommand = CreateTokenCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteGrantCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DeleteGrantCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSLicenseManager", "DeleteGrant", {})
|
|
22
|
-
.n("LicenseManagerClient", "DeleteGrantCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DeleteGrantCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DeleteGrantCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteGrantCommand = DeleteGrantCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteLicenseCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DeleteLicenseCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSLicenseManager", "DeleteLicense", {})
|
|
22
|
-
.n("LicenseManagerClient", "DeleteLicenseCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DeleteLicenseCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DeleteLicenseCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteLicenseCommand = DeleteLicenseCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteLicenseConfigurationCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DeleteLicenseConfigurationCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSLicenseManager", "DeleteLicenseConfiguration", {})
|
|
22
|
-
.n("LicenseManagerClient", "DeleteLicenseConfigurationCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DeleteLicenseConfigurationCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DeleteLicenseConfigurationCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteLicenseConfigurationCommand = DeleteLicenseConfigurationCommand;
|
|
1
|
+
module.exports = require("../index.js");
|