@aws-sdk/client-marketplace-metering 3.1077.0 → 3.1078.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/index.js +12 -43
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/BatchMeterUsageCommand.js +2 -14
- package/dist-es/commands/MeterUsageCommand.js +2 -14
- package/dist-es/commands/RegisterUsageCommand.js +2 -14
- package/dist-es/commands/ResolveCustomerCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/BatchMeterUsageCommand.d.ts +4 -9
- package/dist-types/commands/MeterUsageCommand.d.ts +3 -8
- package/dist-types/commands/RegisterUsageCommand.d.ts +3 -8
- package/dist-types/commands/ResolveCustomerCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1 -1
- package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/commands/BatchMeterUsageCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/MeterUsageCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/RegisterUsageCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ResolveCustomerCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/package.json +8 -8
package/dist-cjs/index.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
2
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin } = require("@smithy/core");
|
|
3
|
-
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client,
|
|
4
|
-
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createAggregatedClient } = require("@smithy/core/client");
|
|
4
|
+
const { Command: $Command } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = $Command;
|
|
5
6
|
exports.__Client = Client;
|
|
6
7
|
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
8
|
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
@@ -68,7 +69,7 @@ const commonParams = {
|
|
|
68
69
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
69
70
|
};
|
|
70
71
|
|
|
71
|
-
var version = "3.
|
|
72
|
+
var version = "3.1077.0";
|
|
72
73
|
var packageInfo = {
|
|
73
74
|
version: version};
|
|
74
75
|
|
|
@@ -800,52 +801,20 @@ class MarketplaceMeteringClient extends Client {
|
|
|
800
801
|
}
|
|
801
802
|
}
|
|
802
803
|
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
})
|
|
809
|
-
.s("AWSMPMeteringService", "BatchMeterUsage", {})
|
|
810
|
-
.n("MarketplaceMeteringClient", "BatchMeterUsageCommand")
|
|
811
|
-
.sc(BatchMeterUsage$)
|
|
812
|
-
.build() {
|
|
804
|
+
const command = makeBuilder(commonParams, "AWSMPMeteringService", "MarketplaceMeteringClient", getEndpointPlugin);
|
|
805
|
+
const _ep0 = {};
|
|
806
|
+
const _mw0 = (Command, cs, config, o) => [];
|
|
807
|
+
|
|
808
|
+
class BatchMeterUsageCommand extends command(_ep0, _mw0, "BatchMeterUsage", BatchMeterUsage$) {
|
|
813
809
|
}
|
|
814
810
|
|
|
815
|
-
class MeterUsageCommand extends
|
|
816
|
-
.classBuilder()
|
|
817
|
-
.ep(commonParams)
|
|
818
|
-
.m(function (Command, cs, config, o) {
|
|
819
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
820
|
-
})
|
|
821
|
-
.s("AWSMPMeteringService", "MeterUsage", {})
|
|
822
|
-
.n("MarketplaceMeteringClient", "MeterUsageCommand")
|
|
823
|
-
.sc(MeterUsage$)
|
|
824
|
-
.build() {
|
|
811
|
+
class MeterUsageCommand extends command(_ep0, _mw0, "MeterUsage", MeterUsage$) {
|
|
825
812
|
}
|
|
826
813
|
|
|
827
|
-
class RegisterUsageCommand extends
|
|
828
|
-
.classBuilder()
|
|
829
|
-
.ep(commonParams)
|
|
830
|
-
.m(function (Command, cs, config, o) {
|
|
831
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
832
|
-
})
|
|
833
|
-
.s("AWSMPMeteringService", "RegisterUsage", {})
|
|
834
|
-
.n("MarketplaceMeteringClient", "RegisterUsageCommand")
|
|
835
|
-
.sc(RegisterUsage$)
|
|
836
|
-
.build() {
|
|
814
|
+
class RegisterUsageCommand extends command(_ep0, _mw0, "RegisterUsage", RegisterUsage$) {
|
|
837
815
|
}
|
|
838
816
|
|
|
839
|
-
class ResolveCustomerCommand extends
|
|
840
|
-
.classBuilder()
|
|
841
|
-
.ep(commonParams)
|
|
842
|
-
.m(function (Command, cs, config, o) {
|
|
843
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
844
|
-
})
|
|
845
|
-
.s("AWSMPMeteringService", "ResolveCustomer", {})
|
|
846
|
-
.n("MarketplaceMeteringClient", "ResolveCustomerCommand")
|
|
847
|
-
.sc(ResolveCustomer$)
|
|
848
|
-
.build() {
|
|
817
|
+
class ResolveCustomerCommand extends command(_ep0, _mw0, "ResolveCustomer", ResolveCustomer$) {
|
|
849
818
|
}
|
|
850
819
|
|
|
851
820
|
const commands = {
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { makeBuilder } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "./endpoint/EndpointParameters";
|
|
4
|
+
export const command = makeBuilder(commonParams, "AWSMPMeteringService", "MarketplaceMeteringClient", getEndpointPlugin);
|
|
5
|
+
export const _ep0 = {};
|
|
6
|
+
export const _mw0 = (Command, cs, config, o) => [];
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { BatchMeterUsage$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class BatchMeterUsageCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSMPMeteringService", "BatchMeterUsage", {})
|
|
13
|
-
.n("MarketplaceMeteringClient", "BatchMeterUsageCommand")
|
|
14
|
-
.sc(BatchMeterUsage$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class BatchMeterUsageCommand extends command(_ep0, _mw0, "BatchMeterUsage", BatchMeterUsage$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { MeterUsage$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class MeterUsageCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSMPMeteringService", "MeterUsage", {})
|
|
13
|
-
.n("MarketplaceMeteringClient", "MeterUsageCommand")
|
|
14
|
-
.sc(MeterUsage$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class MeterUsageCommand extends command(_ep0, _mw0, "MeterUsage", MeterUsage$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { RegisterUsage$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class RegisterUsageCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSMPMeteringService", "RegisterUsage", {})
|
|
13
|
-
.n("MarketplaceMeteringClient", "RegisterUsageCommand")
|
|
14
|
-
.sc(RegisterUsage$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class RegisterUsageCommand extends command(_ep0, _mw0, "RegisterUsage", RegisterUsage$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { ResolveCustomer$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class ResolveCustomerCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSMPMeteringService", "ResolveCustomer", {})
|
|
13
|
-
.n("MarketplaceMeteringClient", "ResolveCustomerCommand")
|
|
14
|
-
.sc(ResolveCustomer$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class ResolveCustomerCommand extends command(_ep0, _mw0, "ResolveCustomer", ResolveCustomer$) {
|
|
16
4
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./MarketplaceMeteringClient";
|
|
2
2
|
export * from "./MarketplaceMetering";
|
|
3
3
|
export * from "./commands";
|
|
4
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
4
5
|
export * from "./schemas/schemas_0";
|
|
5
6
|
export * from "./models/enums";
|
|
6
7
|
export * from "./models/errors";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import type { MarketplaceMeteringClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./MarketplaceMeteringClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
|
|
7
|
+
new (input: I): import("@smithy/core/client").CommandImpl<I, O, MarketplaceMeteringClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
8
|
+
new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, MarketplaceMeteringClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
9
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
15
|
+
/**
|
|
16
|
+
* @internal
|
|
17
|
+
*/
|
|
18
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { MarketplaceMeteringClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MarketplaceMeteringClient";
|
|
4
2
|
import type { BatchMeterUsageRequest, BatchMeterUsageResult } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface BatchMeterUsageCommandInput extends BatchMeterUsageRequest {
|
|
|
22
19
|
export interface BatchMeterUsageCommandOutput extends BatchMeterUsageResult, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const BatchMeterUsageCommand_base: {
|
|
25
|
-
new (input: BatchMeterUsageCommandInput): import("@smithy/core/client").CommandImpl<BatchMeterUsageCommandInput, BatchMeterUsageCommandOutput, MarketplaceMeteringClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: BatchMeterUsageCommandInput): import("@smithy/core/client").CommandImpl<BatchMeterUsageCommandInput, BatchMeterUsageCommandOutput, MarketplaceMeteringClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: BatchMeterUsageCommandInput): import("@smithy/core/client").CommandImpl<BatchMeterUsageCommandInput, BatchMeterUsageCommandOutput, import("..").MarketplaceMeteringClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: BatchMeterUsageCommandInput): import("@smithy/core/client").CommandImpl<BatchMeterUsageCommandInput, BatchMeterUsageCommandOutput, import("..").MarketplaceMeteringClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <important>
|
|
@@ -40,7 +35,7 @@ declare const BatchMeterUsageCommand_base: {
|
|
|
40
35
|
* want to meter usage for multiple products, you must make multiple
|
|
41
36
|
* <code>BatchMeterUsage</code> calls.</p>
|
|
42
37
|
* <p>Usage records should be submitted in quick succession following a
|
|
43
|
-
* recorded event. Usage records aren't accepted
|
|
38
|
+
* recorded event. Usage records aren't accepted 24 hours or more after an
|
|
44
39
|
* event.</p>
|
|
45
40
|
* <p>
|
|
46
41
|
* <code>BatchMeterUsage</code> can process up to 25
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { MarketplaceMeteringClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MarketplaceMeteringClient";
|
|
4
2
|
import type { MeterUsageRequest, MeterUsageResult } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface MeterUsageCommandInput extends MeterUsageRequest {
|
|
|
22
19
|
export interface MeterUsageCommandOutput extends MeterUsageResult, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const MeterUsageCommand_base: {
|
|
25
|
-
new (input: MeterUsageCommandInput): import("@smithy/core/client").CommandImpl<MeterUsageCommandInput, MeterUsageCommandOutput, MarketplaceMeteringClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: MeterUsageCommandInput): import("@smithy/core/client").CommandImpl<MeterUsageCommandInput, MeterUsageCommandOutput, MarketplaceMeteringClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: MeterUsageCommandInput): import("@smithy/core/client").CommandImpl<MeterUsageCommandInput, MeterUsageCommandOutput, import("..").MarketplaceMeteringClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: MeterUsageCommandInput): import("@smithy/core/client").CommandImpl<MeterUsageCommandInput, MeterUsageCommandOutput, import("..").MarketplaceMeteringClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>As a seller, your software hosted in the buyer's Amazon Web Services account uses this API action to emit metering records directly to Amazon Web Services Marketplace.
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { MarketplaceMeteringClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MarketplaceMeteringClient";
|
|
4
2
|
import type { RegisterUsageRequest, RegisterUsageResult } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface RegisterUsageCommandInput extends RegisterUsageRequest {
|
|
|
22
19
|
export interface RegisterUsageCommandOutput extends RegisterUsageResult, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const RegisterUsageCommand_base: {
|
|
25
|
-
new (input: RegisterUsageCommandInput): import("@smithy/core/client").CommandImpl<RegisterUsageCommandInput, RegisterUsageCommandOutput, MarketplaceMeteringClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: RegisterUsageCommandInput): import("@smithy/core/client").CommandImpl<RegisterUsageCommandInput, RegisterUsageCommandOutput, MarketplaceMeteringClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: RegisterUsageCommandInput): import("@smithy/core/client").CommandImpl<RegisterUsageCommandInput, RegisterUsageCommandOutput, import("..").MarketplaceMeteringClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: RegisterUsageCommandInput): import("@smithy/core/client").CommandImpl<RegisterUsageCommandInput, RegisterUsageCommandOutput, import("..").MarketplaceMeteringClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Paid container software products sold through Amazon Web Services Marketplace must integrate with the Amazon Web Services Marketplace
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { MarketplaceMeteringClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MarketplaceMeteringClient";
|
|
4
2
|
import type { ResolveCustomerRequest, ResolveCustomerResult } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ResolveCustomerCommandInput extends ResolveCustomerRequest {
|
|
|
22
19
|
export interface ResolveCustomerCommandOutput extends ResolveCustomerResult, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ResolveCustomerCommand_base: {
|
|
25
|
-
new (input: ResolveCustomerCommandInput): import("@smithy/core/client").CommandImpl<ResolveCustomerCommandInput, ResolveCustomerCommandOutput, MarketplaceMeteringClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: ResolveCustomerCommandInput): import("@smithy/core/client").CommandImpl<ResolveCustomerCommandInput, ResolveCustomerCommandOutput, MarketplaceMeteringClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ResolveCustomerCommandInput): import("@smithy/core/client").CommandImpl<ResolveCustomerCommandInput, ResolveCustomerCommandOutput, import("..").MarketplaceMeteringClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: ResolveCustomerCommandInput): import("@smithy/core/client").CommandImpl<ResolveCustomerCommandInput, ResolveCustomerCommandOutput, import("..").MarketplaceMeteringClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>
|
package/dist-types/index.d.ts
CHANGED
|
@@ -147,6 +147,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
|
|
|
147
147
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
148
148
|
export type { MarketplaceMeteringExtensionConfiguration } from "./extensionConfiguration";
|
|
149
149
|
export * from "./commands";
|
|
150
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
150
151
|
export * from "./schemas/schemas_0";
|
|
151
152
|
export * from "./models/enums";
|
|
152
153
|
export * from "./models/errors";
|
|
@@ -47,7 +47,7 @@ export interface UsageAllocation {
|
|
|
47
47
|
export interface UsageRecord {
|
|
48
48
|
/**
|
|
49
49
|
* <p>Timestamp, in UTC, for which the usage is being reported.</p>
|
|
50
|
-
* <p>Your application can meter usage for up to
|
|
50
|
+
* <p>Your application can meter usage for up to 24 hours in the past. Make sure the
|
|
51
51
|
* <code>timestamp</code> value is not before the start of the software usage.</p>
|
|
52
52
|
* @public
|
|
53
53
|
*/
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
MarketplaceMeteringClientResolvedConfig,
|
|
4
|
+
ServiceInputTypes,
|
|
5
|
+
ServiceOutputTypes,
|
|
6
|
+
} from "./MarketplaceMeteringClient";
|
|
7
|
+
export declare const command: <
|
|
8
|
+
I extends ServiceInputTypes,
|
|
9
|
+
O extends ServiceOutputTypes
|
|
10
|
+
>(
|
|
11
|
+
added: EndpointParameterInstructions,
|
|
12
|
+
plugins: (
|
|
13
|
+
CommandCtor: any,
|
|
14
|
+
clientStack: any,
|
|
15
|
+
config: any,
|
|
16
|
+
options: any
|
|
17
|
+
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
|
+
op: string,
|
|
19
|
+
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
+
smithyContext?: Record<string, unknown>
|
|
21
|
+
) => {
|
|
22
|
+
new (input: I): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
I,
|
|
24
|
+
O,
|
|
25
|
+
MarketplaceMeteringClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: import("@smithy/types").OptionalParameter<I>
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
I,
|
|
33
|
+
O,
|
|
34
|
+
MarketplaceMeteringClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
+
export declare const _mw0: (
|
|
42
|
+
Command: any,
|
|
43
|
+
cs: any,
|
|
44
|
+
config: any,
|
|
45
|
+
o: any
|
|
46
|
+
) => never[];
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
MarketplaceMeteringClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../MarketplaceMeteringClient";
|
|
8
2
|
import {
|
|
9
3
|
BatchMeterUsageRequest,
|
|
10
4
|
BatchMeterUsageResult,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface BatchMeterUsageCommandInput extends BatchMeterUsageRequest {}
|
|
15
8
|
export interface BatchMeterUsageCommandOutput
|
|
16
9
|
extends BatchMeterUsageResult,
|
|
@@ -21,22 +14,20 @@ declare const BatchMeterUsageCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
BatchMeterUsageCommandInput,
|
|
23
16
|
BatchMeterUsageCommandOutput,
|
|
24
|
-
MarketplaceMeteringClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").MarketplaceMeteringClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: BatchMeterUsageCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
BatchMeterUsageCommandInput,
|
|
32
25
|
BatchMeterUsageCommandOutput,
|
|
33
|
-
MarketplaceMeteringClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").MarketplaceMeteringClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class BatchMeterUsageCommand extends BatchMeterUsageCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
MarketplaceMeteringClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../MarketplaceMeteringClient";
|
|
8
2
|
import { MeterUsageRequest, MeterUsageResult } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface MeterUsageCommandInput extends MeterUsageRequest {}
|
|
12
5
|
export interface MeterUsageCommandOutput
|
|
13
6
|
extends MeterUsageResult,
|
|
@@ -18,22 +11,20 @@ declare const MeterUsageCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
MeterUsageCommandInput,
|
|
20
13
|
MeterUsageCommandOutput,
|
|
21
|
-
MarketplaceMeteringClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").MarketplaceMeteringClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: MeterUsageCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
MeterUsageCommandInput,
|
|
29
22
|
MeterUsageCommandOutput,
|
|
30
|
-
MarketplaceMeteringClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").MarketplaceMeteringClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class MeterUsageCommand extends MeterUsageCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
MarketplaceMeteringClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../MarketplaceMeteringClient";
|
|
8
2
|
import { RegisterUsageRequest, RegisterUsageResult } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface RegisterUsageCommandInput extends RegisterUsageRequest {}
|
|
12
5
|
export interface RegisterUsageCommandOutput
|
|
13
6
|
extends RegisterUsageResult,
|
|
@@ -18,22 +11,20 @@ declare const RegisterUsageCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
RegisterUsageCommandInput,
|
|
20
13
|
RegisterUsageCommandOutput,
|
|
21
|
-
MarketplaceMeteringClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").MarketplaceMeteringClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: RegisterUsageCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
RegisterUsageCommandInput,
|
|
29
22
|
RegisterUsageCommandOutput,
|
|
30
|
-
MarketplaceMeteringClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").MarketplaceMeteringClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class RegisterUsageCommand extends RegisterUsageCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
MarketplaceMeteringClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../MarketplaceMeteringClient";
|
|
8
2
|
import {
|
|
9
3
|
ResolveCustomerRequest,
|
|
10
4
|
ResolveCustomerResult,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ResolveCustomerCommandInput extends ResolveCustomerRequest {}
|
|
15
8
|
export interface ResolveCustomerCommandOutput
|
|
16
9
|
extends ResolveCustomerResult,
|
|
@@ -21,22 +14,20 @@ declare const ResolveCustomerCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
ResolveCustomerCommandInput,
|
|
23
16
|
ResolveCustomerCommandOutput,
|
|
24
|
-
MarketplaceMeteringClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").MarketplaceMeteringClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: ResolveCustomerCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
ResolveCustomerCommandInput,
|
|
32
25
|
ResolveCustomerCommandOutput,
|
|
33
|
-
MarketplaceMeteringClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").MarketplaceMeteringClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class ResolveCustomerCommand extends ResolveCustomerCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { MarketplaceMeteringExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
7
8
|
export * from "./schemas/schemas_0";
|
|
8
9
|
export * from "./models/enums";
|
|
9
10
|
export * from "./models/errors";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-marketplace-metering",
|
|
3
3
|
"description": "AWS SDK for JavaScript Marketplace Metering Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1078.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
"module": "./dist-es/index.js",
|
|
20
20
|
"sideEffects": false,
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@aws-sdk/core": "^3.974.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
-
"@aws-sdk/types": "^3.973.
|
|
25
|
-
"@smithy/core": "^3.
|
|
26
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
27
|
-
"@smithy/node-http-handler": "^4.9.
|
|
28
|
-
"@smithy/types": "^4.15.
|
|
22
|
+
"@aws-sdk/core": "^3.974.26",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "^3.972.61",
|
|
24
|
+
"@aws-sdk/types": "^3.973.15",
|
|
25
|
+
"@smithy/core": "^3.29.0",
|
|
26
|
+
"@smithy/fetch-http-handler": "^5.6.2",
|
|
27
|
+
"@smithy/node-http-handler": "^4.9.2",
|
|
28
|
+
"@smithy/types": "^4.15.1",
|
|
29
29
|
"tslib": "^2.6.2"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|