@aws-sdk/client-partnercentral-benefits 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 +25 -173
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/AmendBenefitApplicationCommand.js +2 -14
- package/dist-es/commands/AssociateBenefitApplicationResourceCommand.js +2 -14
- package/dist-es/commands/CancelBenefitApplicationCommand.js +2 -14
- package/dist-es/commands/CreateBenefitApplicationCommand.js +2 -14
- package/dist-es/commands/DisassociateBenefitApplicationResourceCommand.js +2 -14
- package/dist-es/commands/GetBenefitAllocationCommand.js +2 -14
- package/dist-es/commands/GetBenefitApplicationCommand.js +2 -14
- package/dist-es/commands/GetBenefitCommand.js +2 -14
- package/dist-es/commands/ListBenefitAllocationsCommand.js +2 -14
- package/dist-es/commands/ListBenefitApplicationsCommand.js +2 -14
- package/dist-es/commands/ListBenefitsCommand.js +2 -14
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -14
- package/dist-es/commands/RecallBenefitApplicationCommand.js +2 -14
- package/dist-es/commands/SubmitBenefitApplicationCommand.js +2 -14
- package/dist-es/commands/TagResourceCommand.js +2 -14
- package/dist-es/commands/UntagResourceCommand.js +2 -14
- package/dist-es/commands/UpdateBenefitApplicationCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/AmendBenefitApplicationCommand.d.ts +3 -8
- package/dist-types/commands/AssociateBenefitApplicationResourceCommand.d.ts +3 -8
- package/dist-types/commands/CancelBenefitApplicationCommand.d.ts +3 -8
- package/dist-types/commands/CreateBenefitApplicationCommand.d.ts +3 -8
- package/dist-types/commands/DisassociateBenefitApplicationResourceCommand.d.ts +3 -8
- package/dist-types/commands/GetBenefitAllocationCommand.d.ts +3 -8
- package/dist-types/commands/GetBenefitApplicationCommand.d.ts +3 -8
- package/dist-types/commands/GetBenefitCommand.d.ts +3 -8
- package/dist-types/commands/ListBenefitAllocationsCommand.d.ts +3 -8
- package/dist-types/commands/ListBenefitApplicationsCommand.d.ts +3 -8
- package/dist-types/commands/ListBenefitsCommand.d.ts +3 -8
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
- package/dist-types/commands/RecallBenefitApplicationCommand.d.ts +3 -8
- package/dist-types/commands/SubmitBenefitApplicationCommand.d.ts +3 -8
- package/dist-types/commands/TagResourceCommand.d.ts +3 -8
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -8
- package/dist-types/commands/UpdateBenefitApplicationCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/commands/AmendBenefitApplicationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/AssociateBenefitApplicationResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CancelBenefitApplicationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateBenefitApplicationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DisassociateBenefitApplicationResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetBenefitAllocationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetBenefitApplicationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetBenefitCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListBenefitAllocationsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListBenefitApplicationsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListBenefitsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/RecallBenefitApplicationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/SubmitBenefitApplicationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UpdateBenefitApplicationCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/package.json +8 -8
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { AmendBenefitApplicationInput, AmendBenefitApplicationOutput } from "../models/models_0";
|
|
4
|
-
import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PartnerCentralBenefitsClient";
|
|
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 AmendBenefitApplicationCommandInput extends AmendBenefitApplica
|
|
|
22
19
|
export interface AmendBenefitApplicationCommandOutput extends AmendBenefitApplicationOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const AmendBenefitApplicationCommand_base: {
|
|
25
|
-
new (input: AmendBenefitApplicationCommandInput): import("@smithy/core/client").CommandImpl<AmendBenefitApplicationCommandInput, AmendBenefitApplicationCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: AmendBenefitApplicationCommandInput): import("@smithy/core/client").CommandImpl<AmendBenefitApplicationCommandInput, AmendBenefitApplicationCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: AmendBenefitApplicationCommandInput): import("@smithy/core/client").CommandImpl<AmendBenefitApplicationCommandInput, AmendBenefitApplicationCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: AmendBenefitApplicationCommandInput): import("@smithy/core/client").CommandImpl<AmendBenefitApplicationCommandInput, AmendBenefitApplicationCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Modifies an existing benefit application by applying amendments to specific fields while maintaining revision control.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { AssociateBenefitApplicationResourceInput, AssociateBenefitApplicationResourceOutput } from "../models/models_0";
|
|
4
|
-
import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PartnerCentralBenefitsClient";
|
|
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 AssociateBenefitApplicationResourceCommandInput extends Associa
|
|
|
22
19
|
export interface AssociateBenefitApplicationResourceCommandOutput extends AssociateBenefitApplicationResourceOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const AssociateBenefitApplicationResourceCommand_base: {
|
|
25
|
-
new (input: AssociateBenefitApplicationResourceCommandInput): import("@smithy/core/client").CommandImpl<AssociateBenefitApplicationResourceCommandInput, AssociateBenefitApplicationResourceCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: AssociateBenefitApplicationResourceCommandInput): import("@smithy/core/client").CommandImpl<AssociateBenefitApplicationResourceCommandInput, AssociateBenefitApplicationResourceCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: AssociateBenefitApplicationResourceCommandInput): import("@smithy/core/client").CommandImpl<AssociateBenefitApplicationResourceCommandInput, AssociateBenefitApplicationResourceCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: AssociateBenefitApplicationResourceCommandInput): import("@smithy/core/client").CommandImpl<AssociateBenefitApplicationResourceCommandInput, AssociateBenefitApplicationResourceCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Links an AWS resource to an existing benefit application for tracking and management purposes.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { CancelBenefitApplicationInput, CancelBenefitApplicationOutput } from "../models/models_0";
|
|
4
|
-
import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PartnerCentralBenefitsClient";
|
|
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 CancelBenefitApplicationCommandInput extends CancelBenefitAppli
|
|
|
22
19
|
export interface CancelBenefitApplicationCommandOutput extends CancelBenefitApplicationOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const CancelBenefitApplicationCommand_base: {
|
|
25
|
-
new (input: CancelBenefitApplicationCommandInput): import("@smithy/core/client").CommandImpl<CancelBenefitApplicationCommandInput, CancelBenefitApplicationCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: CancelBenefitApplicationCommandInput): import("@smithy/core/client").CommandImpl<CancelBenefitApplicationCommandInput, CancelBenefitApplicationCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: CancelBenefitApplicationCommandInput): import("@smithy/core/client").CommandImpl<CancelBenefitApplicationCommandInput, CancelBenefitApplicationCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: CancelBenefitApplicationCommandInput): import("@smithy/core/client").CommandImpl<CancelBenefitApplicationCommandInput, CancelBenefitApplicationCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Cancels a benefit application that is currently in progress, preventing further processing.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { CreateBenefitApplicationInput, CreateBenefitApplicationOutput } from "../models/models_0";
|
|
4
|
-
import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PartnerCentralBenefitsClient";
|
|
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 CreateBenefitApplicationCommandInput extends CreateBenefitAppli
|
|
|
22
19
|
export interface CreateBenefitApplicationCommandOutput extends CreateBenefitApplicationOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const CreateBenefitApplicationCommand_base: {
|
|
25
|
-
new (input: CreateBenefitApplicationCommandInput): import("@smithy/core/client").CommandImpl<CreateBenefitApplicationCommandInput, CreateBenefitApplicationCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: CreateBenefitApplicationCommandInput): import("@smithy/core/client").CommandImpl<CreateBenefitApplicationCommandInput, CreateBenefitApplicationCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: CreateBenefitApplicationCommandInput): import("@smithy/core/client").CommandImpl<CreateBenefitApplicationCommandInput, CreateBenefitApplicationCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: CreateBenefitApplicationCommandInput): import("@smithy/core/client").CommandImpl<CreateBenefitApplicationCommandInput, CreateBenefitApplicationCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Creates a new benefit application for a partner to request access to AWS benefits and programs.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { DisassociateBenefitApplicationResourceInput, DisassociateBenefitApplicationResourceOutput } from "../models/models_0";
|
|
4
|
-
import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PartnerCentralBenefitsClient";
|
|
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 DisassociateBenefitApplicationResourceCommandInput extends Disa
|
|
|
22
19
|
export interface DisassociateBenefitApplicationResourceCommandOutput extends DisassociateBenefitApplicationResourceOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const DisassociateBenefitApplicationResourceCommand_base: {
|
|
25
|
-
new (input: DisassociateBenefitApplicationResourceCommandInput): import("@smithy/core/client").CommandImpl<DisassociateBenefitApplicationResourceCommandInput, DisassociateBenefitApplicationResourceCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: DisassociateBenefitApplicationResourceCommandInput): import("@smithy/core/client").CommandImpl<DisassociateBenefitApplicationResourceCommandInput, DisassociateBenefitApplicationResourceCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: DisassociateBenefitApplicationResourceCommandInput): import("@smithy/core/client").CommandImpl<DisassociateBenefitApplicationResourceCommandInput, DisassociateBenefitApplicationResourceCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: DisassociateBenefitApplicationResourceCommandInput): import("@smithy/core/client").CommandImpl<DisassociateBenefitApplicationResourceCommandInput, DisassociateBenefitApplicationResourceCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Removes the association between an AWS resource and a benefit application.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { GetBenefitAllocationInput, GetBenefitAllocationOutput } from "../models/models_0";
|
|
4
|
-
import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PartnerCentralBenefitsClient";
|
|
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 GetBenefitAllocationCommandInput extends GetBenefitAllocationIn
|
|
|
22
19
|
export interface GetBenefitAllocationCommandOutput extends GetBenefitAllocationOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetBenefitAllocationCommand_base: {
|
|
25
|
-
new (input: GetBenefitAllocationCommandInput): import("@smithy/core/client").CommandImpl<GetBenefitAllocationCommandInput, GetBenefitAllocationCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: GetBenefitAllocationCommandInput): import("@smithy/core/client").CommandImpl<GetBenefitAllocationCommandInput, GetBenefitAllocationCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetBenefitAllocationCommandInput): import("@smithy/core/client").CommandImpl<GetBenefitAllocationCommandInput, GetBenefitAllocationCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: GetBenefitAllocationCommandInput): import("@smithy/core/client").CommandImpl<GetBenefitAllocationCommandInput, GetBenefitAllocationCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Retrieves detailed information about a specific benefit allocation that has been granted to a partner.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { GetBenefitApplicationInput, GetBenefitApplicationOutput } from "../models/models_0";
|
|
4
|
-
import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PartnerCentralBenefitsClient";
|
|
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 GetBenefitApplicationCommandInput extends GetBenefitApplication
|
|
|
22
19
|
export interface GetBenefitApplicationCommandOutput extends GetBenefitApplicationOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetBenefitApplicationCommand_base: {
|
|
25
|
-
new (input: GetBenefitApplicationCommandInput): import("@smithy/core/client").CommandImpl<GetBenefitApplicationCommandInput, GetBenefitApplicationCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: GetBenefitApplicationCommandInput): import("@smithy/core/client").CommandImpl<GetBenefitApplicationCommandInput, GetBenefitApplicationCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetBenefitApplicationCommandInput): import("@smithy/core/client").CommandImpl<GetBenefitApplicationCommandInput, GetBenefitApplicationCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: GetBenefitApplicationCommandInput): import("@smithy/core/client").CommandImpl<GetBenefitApplicationCommandInput, GetBenefitApplicationCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Retrieves detailed information about a specific benefit application.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { GetBenefitInput, GetBenefitOutput } from "../models/models_0";
|
|
4
|
-
import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PartnerCentralBenefitsClient";
|
|
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 GetBenefitCommandInput extends GetBenefitInput {
|
|
|
22
19
|
export interface GetBenefitCommandOutput extends GetBenefitOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetBenefitCommand_base: {
|
|
25
|
-
new (input: GetBenefitCommandInput): import("@smithy/core/client").CommandImpl<GetBenefitCommandInput, GetBenefitCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: GetBenefitCommandInput): import("@smithy/core/client").CommandImpl<GetBenefitCommandInput, GetBenefitCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetBenefitCommandInput): import("@smithy/core/client").CommandImpl<GetBenefitCommandInput, GetBenefitCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: GetBenefitCommandInput): import("@smithy/core/client").CommandImpl<GetBenefitCommandInput, GetBenefitCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Retrieves detailed information about a specific benefit available in the partner catalog.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { ListBenefitAllocationsInput, ListBenefitAllocationsOutput } from "../models/models_0";
|
|
4
|
-
import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PartnerCentralBenefitsClient";
|
|
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 ListBenefitAllocationsCommandInput extends ListBenefitAllocatio
|
|
|
22
19
|
export interface ListBenefitAllocationsCommandOutput extends ListBenefitAllocationsOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListBenefitAllocationsCommand_base: {
|
|
25
|
-
new (input: ListBenefitAllocationsCommandInput): import("@smithy/core/client").CommandImpl<ListBenefitAllocationsCommandInput, ListBenefitAllocationsCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: ListBenefitAllocationsCommandInput): import("@smithy/core/client").CommandImpl<ListBenefitAllocationsCommandInput, ListBenefitAllocationsCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListBenefitAllocationsCommandInput): import("@smithy/core/client").CommandImpl<ListBenefitAllocationsCommandInput, ListBenefitAllocationsCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: ListBenefitAllocationsCommandInput): import("@smithy/core/client").CommandImpl<ListBenefitAllocationsCommandInput, ListBenefitAllocationsCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Retrieves a paginated list of benefit allocations based on specified filter criteria.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { ListBenefitApplicationsInput, ListBenefitApplicationsOutput } from "../models/models_0";
|
|
4
|
-
import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PartnerCentralBenefitsClient";
|
|
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 ListBenefitApplicationsCommandInput extends ListBenefitApplicat
|
|
|
22
19
|
export interface ListBenefitApplicationsCommandOutput extends ListBenefitApplicationsOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListBenefitApplicationsCommand_base: {
|
|
25
|
-
new (input: ListBenefitApplicationsCommandInput): import("@smithy/core/client").CommandImpl<ListBenefitApplicationsCommandInput, ListBenefitApplicationsCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: ListBenefitApplicationsCommandInput): import("@smithy/core/client").CommandImpl<ListBenefitApplicationsCommandInput, ListBenefitApplicationsCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListBenefitApplicationsCommandInput): import("@smithy/core/client").CommandImpl<ListBenefitApplicationsCommandInput, ListBenefitApplicationsCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: ListBenefitApplicationsCommandInput): import("@smithy/core/client").CommandImpl<ListBenefitApplicationsCommandInput, ListBenefitApplicationsCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Retrieves a paginated list of benefit applications based on specified filter criteria.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { ListBenefitsInput, ListBenefitsOutput } from "../models/models_0";
|
|
4
|
-
import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PartnerCentralBenefitsClient";
|
|
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 ListBenefitsCommandInput extends ListBenefitsInput {
|
|
|
22
19
|
export interface ListBenefitsCommandOutput extends ListBenefitsOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListBenefitsCommand_base: {
|
|
25
|
-
new (input: ListBenefitsCommandInput): import("@smithy/core/client").CommandImpl<ListBenefitsCommandInput, ListBenefitsCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: ListBenefitsCommandInput): import("@smithy/core/client").CommandImpl<ListBenefitsCommandInput, ListBenefitsCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListBenefitsCommandInput): import("@smithy/core/client").CommandImpl<ListBenefitsCommandInput, ListBenefitsCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: ListBenefitsCommandInput): import("@smithy/core/client").CommandImpl<ListBenefitsCommandInput, ListBenefitsCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Retrieves a paginated list of available benefits based on specified filter criteria.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
4
|
-
import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PartnerCentralBenefitsClient";
|
|
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 ListTagsForResourceCommandInput extends ListTagsForResourceRequ
|
|
|
22
19
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListTagsForResourceCommand_base: {
|
|
25
|
-
new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Retrieves all tags associated with a specific resource.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { RecallBenefitApplicationInput, RecallBenefitApplicationOutput } from "../models/models_0";
|
|
4
|
-
import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PartnerCentralBenefitsClient";
|
|
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 RecallBenefitApplicationCommandInput extends RecallBenefitAppli
|
|
|
22
19
|
export interface RecallBenefitApplicationCommandOutput extends RecallBenefitApplicationOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const RecallBenefitApplicationCommand_base: {
|
|
25
|
-
new (input: RecallBenefitApplicationCommandInput): import("@smithy/core/client").CommandImpl<RecallBenefitApplicationCommandInput, RecallBenefitApplicationCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: RecallBenefitApplicationCommandInput): import("@smithy/core/client").CommandImpl<RecallBenefitApplicationCommandInput, RecallBenefitApplicationCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: RecallBenefitApplicationCommandInput): import("@smithy/core/client").CommandImpl<RecallBenefitApplicationCommandInput, RecallBenefitApplicationCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: RecallBenefitApplicationCommandInput): import("@smithy/core/client").CommandImpl<RecallBenefitApplicationCommandInput, RecallBenefitApplicationCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Recalls a submitted benefit application, returning it to draft status for further modifications.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { SubmitBenefitApplicationInput, SubmitBenefitApplicationOutput } from "../models/models_0";
|
|
4
|
-
import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PartnerCentralBenefitsClient";
|
|
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 SubmitBenefitApplicationCommandInput extends SubmitBenefitAppli
|
|
|
22
19
|
export interface SubmitBenefitApplicationCommandOutput extends SubmitBenefitApplicationOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const SubmitBenefitApplicationCommand_base: {
|
|
25
|
-
new (input: SubmitBenefitApplicationCommandInput): import("@smithy/core/client").CommandImpl<SubmitBenefitApplicationCommandInput, SubmitBenefitApplicationCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: SubmitBenefitApplicationCommandInput): import("@smithy/core/client").CommandImpl<SubmitBenefitApplicationCommandInput, SubmitBenefitApplicationCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: SubmitBenefitApplicationCommandInput): import("@smithy/core/client").CommandImpl<SubmitBenefitApplicationCommandInput, SubmitBenefitApplicationCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: SubmitBenefitApplicationCommandInput): import("@smithy/core/client").CommandImpl<SubmitBenefitApplicationCommandInput, SubmitBenefitApplicationCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Submits a benefit application for review and processing by AWS.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
4
|
-
import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PartnerCentralBenefitsClient";
|
|
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 TagResourceCommandInput extends TagResourceRequest {
|
|
|
22
19
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const TagResourceCommand_base: {
|
|
25
|
-
new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Adds or updates tags for a specified resource.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
4
|
-
import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PartnerCentralBenefitsClient";
|
|
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 UntagResourceCommandInput extends UntagResourceRequest {
|
|
|
22
19
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const UntagResourceCommand_base: {
|
|
25
|
-
new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Removes specified tags from a resource.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { UpdateBenefitApplicationInput, UpdateBenefitApplicationOutput } from "../models/models_0";
|
|
4
|
-
import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PartnerCentralBenefitsClient";
|
|
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 UpdateBenefitApplicationCommandInput extends UpdateBenefitAppli
|
|
|
22
19
|
export interface UpdateBenefitApplicationCommandOutput extends UpdateBenefitApplicationOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const UpdateBenefitApplicationCommand_base: {
|
|
25
|
-
new (input: UpdateBenefitApplicationCommandInput): import("@smithy/core/client").CommandImpl<UpdateBenefitApplicationCommandInput, UpdateBenefitApplicationCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: UpdateBenefitApplicationCommandInput): import("@smithy/core/client").CommandImpl<UpdateBenefitApplicationCommandInput, UpdateBenefitApplicationCommandOutput, PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: UpdateBenefitApplicationCommandInput): import("@smithy/core/client").CommandImpl<UpdateBenefitApplicationCommandInput, UpdateBenefitApplicationCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: UpdateBenefitApplicationCommandInput): import("@smithy/core/client").CommandImpl<UpdateBenefitApplicationCommandInput, UpdateBenefitApplicationCommandOutput, import("..").PartnerCentralBenefitsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Updates an existing benefit application with new information while maintaining revision control.</p>
|
package/dist-types/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
|
|
|
9
9
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
10
10
|
export type { PartnerCentralBenefitsExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
12
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
12
13
|
export * from "./schemas/schemas_0";
|
|
13
14
|
export * from "./pagination";
|
|
14
15
|
export * from "./models/enums";
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
4
|
+
ServiceInputTypes,
|
|
5
|
+
ServiceOutputTypes,
|
|
6
|
+
} from "./PartnerCentralBenefitsClient";
|
|
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
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
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
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
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
2
|
import {
|
|
4
3
|
AmendBenefitApplicationInput,
|
|
5
4
|
AmendBenefitApplicationOutput,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
PartnerCentralBenefitsClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../PartnerCentralBenefitsClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface AmendBenefitApplicationCommandInput
|
|
15
8
|
extends AmendBenefitApplicationInput {}
|
|
16
9
|
export interface AmendBenefitApplicationCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const AmendBenefitApplicationCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
AmendBenefitApplicationCommandInput,
|
|
24
17
|
AmendBenefitApplicationCommandOutput,
|
|
25
|
-
PartnerCentralBenefitsClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").PartnerCentralBenefitsClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: AmendBenefitApplicationCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
AmendBenefitApplicationCommandInput,
|
|
33
26
|
AmendBenefitApplicationCommandOutput,
|
|
34
|
-
PartnerCentralBenefitsClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").PartnerCentralBenefitsClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class AmendBenefitApplicationCommand extends AmendBenefitApplicationCommand_base {
|
|
43
34
|
protected static __types: {
|