@aws-sdk/client-partnercentral-benefits 3.942.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/LICENSE +201 -0
- package/README.md +341 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +1344 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +56 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +41 -0
- package/dist-es/PartnerCentralBenefits.js +41 -0
- package/dist-es/PartnerCentralBenefitsClient.js +50 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/AmendBenefitApplicationCommand.js +16 -0
- package/dist-es/commands/AssociateBenefitApplicationResourceCommand.js +16 -0
- package/dist-es/commands/CancelBenefitApplicationCommand.js +16 -0
- package/dist-es/commands/CreateBenefitApplicationCommand.js +16 -0
- package/dist-es/commands/DisassociateBenefitApplicationResourceCommand.js +16 -0
- package/dist-es/commands/GetBenefitAllocationCommand.js +16 -0
- package/dist-es/commands/GetBenefitApplicationCommand.js +16 -0
- package/dist-es/commands/GetBenefitCommand.js +16 -0
- package/dist-es/commands/ListBenefitAllocationsCommand.js +16 -0
- package/dist-es/commands/ListBenefitApplicationsCommand.js +16 -0
- package/dist-es/commands/ListBenefitsCommand.js +16 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
- package/dist-es/commands/RecallBenefitApplicationCommand.js +16 -0
- package/dist-es/commands/SubmitBenefitApplicationCommand.js +16 -0
- package/dist-es/commands/TagResourceCommand.js +16 -0
- package/dist-es/commands/UntagResourceCommand.js +16 -0
- package/dist-es/commands/UpdateBenefitApplicationCommand.js +16 -0
- package/dist-es/commands/index.js +17 -0
- package/dist-es/endpoint/EndpointParameters.js +11 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +7 -0
- package/dist-es/models/PartnerCentralBenefitsServiceException.js +8 -0
- package/dist-es/models/enums.js +153 -0
- package/dist-es/models/errors.js +110 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListBenefitAllocationsPaginator.js +4 -0
- package/dist-es/pagination/ListBenefitApplicationsPaginator.js +4 -0
- package/dist-es/pagination/ListBenefitsPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +51 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +37 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/schemas/schemas_0.js +699 -0
- package/dist-types/PartnerCentralBenefits.d.ts +129 -0
- package/dist-types/PartnerCentralBenefitsClient.d.ts +213 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/AmendBenefitApplicationCommand.d.ts +100 -0
- package/dist-types/commands/AssociateBenefitApplicationResourceCommand.d.ts +96 -0
- package/dist-types/commands/CancelBenefitApplicationCommand.d.ts +93 -0
- package/dist-types/commands/CreateBenefitApplicationCommand.d.ts +126 -0
- package/dist-types/commands/DisassociateBenefitApplicationResourceCommand.d.ts +96 -0
- package/dist-types/commands/GetBenefitAllocationCommand.d.ts +158 -0
- package/dist-types/commands/GetBenefitApplicationCommand.d.ts +139 -0
- package/dist-types/commands/GetBenefitCommand.d.ts +102 -0
- package/dist-types/commands/ListBenefitAllocationsCommand.d.ts +123 -0
- package/dist-types/commands/ListBenefitApplicationsCommand.d.ts +141 -0
- package/dist-types/commands/ListBenefitsCommand.d.ts +116 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +94 -0
- package/dist-types/commands/RecallBenefitApplicationCommand.d.ts +93 -0
- package/dist-types/commands/SubmitBenefitApplicationCommand.d.ts +91 -0
- package/dist-types/commands/TagResourceCommand.d.ts +99 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +96 -0
- package/dist-types/commands/UpdateBenefitApplicationCommand.d.ts +115 -0
- package/dist-types/commands/index.d.ts +17 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +32 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +16 -0
- package/dist-types/models/PartnerCentralBenefitsServiceException.d.ts +14 -0
- package/dist-types/models/enums.d.ts +225 -0
- package/dist-types/models/errors.d.ts +149 -0
- package/dist-types/models/models_0.d.ts +1450 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListBenefitAllocationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListBenefitApplicationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListBenefitsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/runtimeConfig.browser.d.ts +51 -0
- package/dist-types/runtimeConfig.d.ts +51 -0
- package/dist-types/runtimeConfig.native.d.ts +50 -0
- package/dist-types/runtimeConfig.shared.d.ts +22 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/schemas/schemas_0.d.ts +107 -0
- package/dist-types/ts3.4/PartnerCentralBenefits.d.ts +308 -0
- package/dist-types/ts3.4/PartnerCentralBenefitsClient.d.ts +228 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/commands/AmendBenefitApplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/AssociateBenefitApplicationResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CancelBenefitApplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateBenefitApplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DisassociateBenefitApplicationResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetBenefitAllocationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetBenefitApplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetBenefitCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListBenefitAllocationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListBenefitApplicationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListBenefitsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RecallBenefitApplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SubmitBenefitApplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateBenefitApplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +17 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +11 -0
- package/dist-types/ts3.4/models/PartnerCentralBenefitsServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/enums.d.ts +167 -0
- package/dist-types/ts3.4/models/errors.d.ts +64 -0
- package/dist-types/ts3.4/models/models_0.d.ts +376 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListBenefitAllocationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListBenefitApplicationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListBenefitsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +93 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +101 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +27 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +113 -0
- package/package.json +99 -0
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GetBenefitInput, GetBenefitOutput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../PartnerCentralBenefitsClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface GetBenefitCommandInput extends GetBenefitInput {}
|
|
12
|
+
export interface GetBenefitCommandOutput
|
|
13
|
+
extends GetBenefitOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const GetBenefitCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: GetBenefitCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
GetBenefitCommandInput,
|
|
20
|
+
GetBenefitCommandOutput,
|
|
21
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: GetBenefitCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
GetBenefitCommandInput,
|
|
29
|
+
GetBenefitCommandOutput,
|
|
30
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class GetBenefitCommand extends GetBenefitCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: GetBenefitInput;
|
|
40
|
+
output: GetBenefitOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: GetBenefitCommandInput;
|
|
44
|
+
output: GetBenefitCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListBenefitAllocationsInput,
|
|
5
|
+
ListBenefitAllocationsOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../PartnerCentralBenefitsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListBenefitAllocationsCommandInput
|
|
15
|
+
extends ListBenefitAllocationsInput {}
|
|
16
|
+
export interface ListBenefitAllocationsCommandOutput
|
|
17
|
+
extends ListBenefitAllocationsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListBenefitAllocationsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListBenefitAllocationsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListBenefitAllocationsCommandInput,
|
|
24
|
+
ListBenefitAllocationsCommandOutput,
|
|
25
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListBenefitAllocationsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListBenefitAllocationsCommandInput,
|
|
33
|
+
ListBenefitAllocationsCommandOutput,
|
|
34
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListBenefitAllocationsCommand extends ListBenefitAllocationsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListBenefitAllocationsInput;
|
|
44
|
+
output: ListBenefitAllocationsOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListBenefitAllocationsCommandInput;
|
|
48
|
+
output: ListBenefitAllocationsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListBenefitApplicationsInput,
|
|
5
|
+
ListBenefitApplicationsOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../PartnerCentralBenefitsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListBenefitApplicationsCommandInput
|
|
15
|
+
extends ListBenefitApplicationsInput {}
|
|
16
|
+
export interface ListBenefitApplicationsCommandOutput
|
|
17
|
+
extends ListBenefitApplicationsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListBenefitApplicationsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListBenefitApplicationsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListBenefitApplicationsCommandInput,
|
|
24
|
+
ListBenefitApplicationsCommandOutput,
|
|
25
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListBenefitApplicationsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListBenefitApplicationsCommandInput,
|
|
33
|
+
ListBenefitApplicationsCommandOutput,
|
|
34
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListBenefitApplicationsCommand extends ListBenefitApplicationsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListBenefitApplicationsInput;
|
|
44
|
+
output: ListBenefitApplicationsOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListBenefitApplicationsCommandInput;
|
|
48
|
+
output: ListBenefitApplicationsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { ListBenefitsInput, ListBenefitsOutput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../PartnerCentralBenefitsClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface ListBenefitsCommandInput extends ListBenefitsInput {}
|
|
12
|
+
export interface ListBenefitsCommandOutput
|
|
13
|
+
extends ListBenefitsOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const ListBenefitsCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: ListBenefitsCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
ListBenefitsCommandInput,
|
|
20
|
+
ListBenefitsCommandOutput,
|
|
21
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: ListBenefitsCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
ListBenefitsCommandInput,
|
|
29
|
+
ListBenefitsCommandOutput,
|
|
30
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class ListBenefitsCommand extends ListBenefitsCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: ListBenefitsInput;
|
|
40
|
+
output: ListBenefitsOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: ListBenefitsCommandInput;
|
|
44
|
+
output: ListBenefitsCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListTagsForResourceRequest,
|
|
5
|
+
ListTagsForResourceResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../PartnerCentralBenefitsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListTagsForResourceCommandInput
|
|
15
|
+
extends ListTagsForResourceRequest {}
|
|
16
|
+
export interface ListTagsForResourceCommandOutput
|
|
17
|
+
extends ListTagsForResourceResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListTagsForResourceCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListTagsForResourceCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListTagsForResourceCommandInput,
|
|
24
|
+
ListTagsForResourceCommandOutput,
|
|
25
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListTagsForResourceCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListTagsForResourceCommandInput,
|
|
33
|
+
ListTagsForResourceCommandOutput,
|
|
34
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListTagsForResourceRequest;
|
|
44
|
+
output: ListTagsForResourceResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListTagsForResourceCommandInput;
|
|
48
|
+
output: ListTagsForResourceCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
RecallBenefitApplicationInput,
|
|
5
|
+
RecallBenefitApplicationOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../PartnerCentralBenefitsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface RecallBenefitApplicationCommandInput
|
|
15
|
+
extends RecallBenefitApplicationInput {}
|
|
16
|
+
export interface RecallBenefitApplicationCommandOutput
|
|
17
|
+
extends RecallBenefitApplicationOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const RecallBenefitApplicationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: RecallBenefitApplicationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
RecallBenefitApplicationCommandInput,
|
|
24
|
+
RecallBenefitApplicationCommandOutput,
|
|
25
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: RecallBenefitApplicationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
RecallBenefitApplicationCommandInput,
|
|
33
|
+
RecallBenefitApplicationCommandOutput,
|
|
34
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class RecallBenefitApplicationCommand extends RecallBenefitApplicationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: RecallBenefitApplicationInput;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: RecallBenefitApplicationCommandInput;
|
|
48
|
+
output: RecallBenefitApplicationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
SubmitBenefitApplicationInput,
|
|
5
|
+
SubmitBenefitApplicationOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../PartnerCentralBenefitsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface SubmitBenefitApplicationCommandInput
|
|
15
|
+
extends SubmitBenefitApplicationInput {}
|
|
16
|
+
export interface SubmitBenefitApplicationCommandOutput
|
|
17
|
+
extends SubmitBenefitApplicationOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const SubmitBenefitApplicationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: SubmitBenefitApplicationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
SubmitBenefitApplicationCommandInput,
|
|
24
|
+
SubmitBenefitApplicationCommandOutput,
|
|
25
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: SubmitBenefitApplicationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
SubmitBenefitApplicationCommandInput,
|
|
33
|
+
SubmitBenefitApplicationCommandOutput,
|
|
34
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class SubmitBenefitApplicationCommand extends SubmitBenefitApplicationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: SubmitBenefitApplicationInput;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: SubmitBenefitApplicationCommandInput;
|
|
48
|
+
output: SubmitBenefitApplicationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../PartnerCentralBenefitsClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
12
|
+
export interface TagResourceCommandOutput
|
|
13
|
+
extends TagResourceResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const TagResourceCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: TagResourceCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
TagResourceCommandInput,
|
|
20
|
+
TagResourceCommandOutput,
|
|
21
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: TagResourceCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
TagResourceCommandInput,
|
|
29
|
+
TagResourceCommandOutput,
|
|
30
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: TagResourceRequest;
|
|
40
|
+
output: {};
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: TagResourceCommandInput;
|
|
44
|
+
output: TagResourceCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
UntagResourceRequest,
|
|
5
|
+
UntagResourceResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../PartnerCentralBenefitsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
15
|
+
export interface UntagResourceCommandOutput
|
|
16
|
+
extends UntagResourceResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const UntagResourceCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: UntagResourceCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
UntagResourceCommandInput,
|
|
23
|
+
UntagResourceCommandOutput,
|
|
24
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: UntagResourceCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
UntagResourceCommandInput,
|
|
32
|
+
UntagResourceCommandOutput,
|
|
33
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: UntagResourceRequest;
|
|
43
|
+
output: {};
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: UntagResourceCommandInput;
|
|
47
|
+
output: UntagResourceCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
UpdateBenefitApplicationInput,
|
|
5
|
+
UpdateBenefitApplicationOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../PartnerCentralBenefitsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateBenefitApplicationCommandInput
|
|
15
|
+
extends UpdateBenefitApplicationInput {}
|
|
16
|
+
export interface UpdateBenefitApplicationCommandOutput
|
|
17
|
+
extends UpdateBenefitApplicationOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateBenefitApplicationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateBenefitApplicationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateBenefitApplicationCommandInput,
|
|
24
|
+
UpdateBenefitApplicationCommandOutput,
|
|
25
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: UpdateBenefitApplicationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateBenefitApplicationCommandInput,
|
|
33
|
+
UpdateBenefitApplicationCommandOutput,
|
|
34
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateBenefitApplicationCommand extends UpdateBenefitApplicationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateBenefitApplicationInput;
|
|
44
|
+
output: UpdateBenefitApplicationOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateBenefitApplicationCommandInput;
|
|
48
|
+
output: UpdateBenefitApplicationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export * from "./AmendBenefitApplicationCommand";
|
|
2
|
+
export * from "./AssociateBenefitApplicationResourceCommand";
|
|
3
|
+
export * from "./CancelBenefitApplicationCommand";
|
|
4
|
+
export * from "./CreateBenefitApplicationCommand";
|
|
5
|
+
export * from "./DisassociateBenefitApplicationResourceCommand";
|
|
6
|
+
export * from "./GetBenefitAllocationCommand";
|
|
7
|
+
export * from "./GetBenefitApplicationCommand";
|
|
8
|
+
export * from "./GetBenefitCommand";
|
|
9
|
+
export * from "./ListBenefitAllocationsCommand";
|
|
10
|
+
export * from "./ListBenefitApplicationsCommand";
|
|
11
|
+
export * from "./ListBenefitsCommand";
|
|
12
|
+
export * from "./ListTagsForResourceCommand";
|
|
13
|
+
export * from "./RecallBenefitApplicationCommand";
|
|
14
|
+
export * from "./SubmitBenefitApplicationCommand";
|
|
15
|
+
export * from "./TagResourceCommand";
|
|
16
|
+
export * from "./UntagResourceCommand";
|
|
17
|
+
export * from "./UpdateBenefitApplicationCommand";
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Endpoint,
|
|
3
|
+
EndpointParameters as __EndpointParameters,
|
|
4
|
+
EndpointV2,
|
|
5
|
+
Provider,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
export interface ClientInputEndpointParameters {
|
|
8
|
+
useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>;
|
|
9
|
+
endpoint?:
|
|
10
|
+
| string
|
|
11
|
+
| Provider<string>
|
|
12
|
+
| Endpoint
|
|
13
|
+
| Provider<Endpoint>
|
|
14
|
+
| EndpointV2
|
|
15
|
+
| Provider<EndpointV2>;
|
|
16
|
+
region?: string | undefined | Provider<string | undefined>;
|
|
17
|
+
}
|
|
18
|
+
export type ClientResolvedEndpointParameters = Pick<
|
|
19
|
+
ClientInputEndpointParameters,
|
|
20
|
+
Exclude<keyof ClientInputEndpointParameters, "endpoint">
|
|
21
|
+
> & {
|
|
22
|
+
defaultSigningName: string;
|
|
23
|
+
};
|
|
24
|
+
export declare const resolveClientEndpointParameters: <T>(
|
|
25
|
+
options: T & ClientInputEndpointParameters
|
|
26
|
+
) => T & ClientResolvedEndpointParameters;
|
|
27
|
+
export declare const commonParams: {
|
|
28
|
+
readonly UseFIPS: {
|
|
29
|
+
readonly type: "builtInParams";
|
|
30
|
+
readonly name: "useFipsEndpoint";
|
|
31
|
+
};
|
|
32
|
+
readonly Endpoint: {
|
|
33
|
+
readonly type: "builtInParams";
|
|
34
|
+
readonly name: "endpoint";
|
|
35
|
+
};
|
|
36
|
+
readonly Region: {
|
|
37
|
+
readonly type: "builtInParams";
|
|
38
|
+
readonly name: "region";
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
42
|
+
UseFIPS?: boolean | undefined;
|
|
43
|
+
Endpoint?: string | undefined;
|
|
44
|
+
Region?: string | undefined;
|
|
45
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
|
|
3
|
+
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
|
+
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
|
+
export interface PartnerCentralBenefitsExtensionConfiguration
|
|
6
|
+
extends HttpHandlerExtensionConfiguration,
|
|
7
|
+
DefaultExtensionConfiguration,
|
|
8
|
+
AwsRegionExtensionConfiguration,
|
|
9
|
+
HttpAuthExtensionConfiguration {}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export * from "./PartnerCentralBenefitsClient";
|
|
2
|
+
export * from "./PartnerCentralBenefits";
|
|
3
|
+
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
4
|
+
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
|
+
export { PartnerCentralBenefitsExtensionConfiguration } from "./extensionConfiguration";
|
|
6
|
+
export * from "./commands";
|
|
7
|
+
export * from "./pagination";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
11
|
+
export { PartnerCentralBenefitsServiceException } from "./models/PartnerCentralBenefitsServiceException";
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@smithy/smithy-client";
|
|
5
|
+
export { __ServiceExceptionOptions };
|
|
6
|
+
export { __ServiceException };
|
|
7
|
+
export declare class PartnerCentralBenefitsServiceException extends __ServiceException {
|
|
8
|
+
constructor(options: __ServiceExceptionOptions);
|
|
9
|
+
}
|