@aws-sdk/client-partnercentral-selling 3.692.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 +357 -0
- package/dist-cjs/PartnerCentralSelling.js +39 -0
- package/dist-cjs/PartnerCentralSellingClient.js +50 -0
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/commands/AssignOpportunityCommand.js +27 -0
- package/dist-cjs/commands/AssociateOpportunityCommand.js +26 -0
- package/dist-cjs/commands/CreateOpportunityCommand.js +27 -0
- package/dist-cjs/commands/DisassociateOpportunityCommand.js +26 -0
- package/dist-cjs/commands/GetAwsOpportunitySummaryCommand.js +27 -0
- package/dist-cjs/commands/GetEngagementInvitationCommand.js +27 -0
- package/dist-cjs/commands/GetOpportunityCommand.js +27 -0
- package/dist-cjs/commands/ListEngagementInvitationsCommand.js +27 -0
- package/dist-cjs/commands/ListOpportunitiesCommand.js +27 -0
- package/dist-cjs/commands/ListSolutionsCommand.js +26 -0
- package/dist-cjs/commands/RejectEngagementInvitationCommand.js +26 -0
- package/dist-cjs/commands/StartEngagementByAcceptingInvitationTaskCommand.js +26 -0
- package/dist-cjs/commands/StartEngagementFromOpportunityTaskCommand.js +26 -0
- package/dist-cjs/commands/UpdateOpportunityCommand.js +27 -0
- package/dist-cjs/commands/index.js +17 -0
- package/dist-cjs/endpoint/EndpointParameters.js +18 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/PartnerCentralSellingServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +1097 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListEngagementInvitationsPaginator.js +7 -0
- package/dist-cjs/pagination/ListOpportunitiesPaginator.js +7 -0
- package/dist-cjs/pagination/ListSolutionsPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +7 -0
- package/dist-cjs/protocols/Aws_json1_0.js +732 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +34 -0
- package/dist-cjs/runtimeExtensions.js +25 -0
- package/dist-es/PartnerCentralSelling.js +35 -0
- package/dist-es/PartnerCentralSellingClient.js +46 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/AssignOpportunityCommand.js +23 -0
- package/dist-es/commands/AssociateOpportunityCommand.js +22 -0
- package/dist-es/commands/CreateOpportunityCommand.js +23 -0
- package/dist-es/commands/DisassociateOpportunityCommand.js +22 -0
- package/dist-es/commands/GetAwsOpportunitySummaryCommand.js +23 -0
- package/dist-es/commands/GetEngagementInvitationCommand.js +23 -0
- package/dist-es/commands/GetOpportunityCommand.js +23 -0
- package/dist-es/commands/ListEngagementInvitationsCommand.js +23 -0
- package/dist-es/commands/ListOpportunitiesCommand.js +23 -0
- package/dist-es/commands/ListSolutionsCommand.js +22 -0
- package/dist-es/commands/RejectEngagementInvitationCommand.js +22 -0
- package/dist-es/commands/StartEngagementByAcceptingInvitationTaskCommand.js +22 -0
- package/dist-es/commands/StartEngagementFromOpportunityTaskCommand.js +22 -0
- package/dist-es/commands/UpdateOpportunityCommand.js +23 -0
- package/dist-es/commands/index.js +14 -0
- package/dist-es/endpoint/EndpointParameters.js +14 -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 +6 -0
- package/dist-es/models/PartnerCentralSellingServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +1055 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListEngagementInvitationsPaginator.js +4 -0
- package/dist-es/pagination/ListOpportunitiesPaginator.js +4 -0
- package/dist-es/pagination/ListSolutionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_json1_0.js +701 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +30 -0
- package/dist-es/runtimeExtensions.js +21 -0
- package/dist-types/PartnerCentralSelling.d.ts +147 -0
- package/dist-types/PartnerCentralSellingClient.d.ts +222 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/commands/AssignOpportunityCommand.d.ts +117 -0
- package/dist-types/commands/AssociateOpportunityCommand.d.ts +145 -0
- package/dist-types/commands/CreateOpportunityCommand.d.ts +244 -0
- package/dist-types/commands/DisassociateOpportunityCommand.d.ts +115 -0
- package/dist-types/commands/GetAwsOpportunitySummaryCommand.d.ts +167 -0
- package/dist-types/commands/GetEngagementInvitationCommand.d.ts +156 -0
- package/dist-types/commands/GetOpportunityCommand.d.ts +227 -0
- package/dist-types/commands/ListEngagementInvitationsCommand.d.ts +134 -0
- package/dist-types/commands/ListOpportunitiesCommand.d.ts +197 -0
- package/dist-types/commands/ListSolutionsCommand.d.ts +123 -0
- package/dist-types/commands/RejectEngagementInvitationCommand.d.ts +104 -0
- package/dist-types/commands/StartEngagementByAcceptingInvitationTaskCommand.d.ts +127 -0
- package/dist-types/commands/StartEngagementFromOpportunityTaskCommand.d.ts +130 -0
- package/dist-types/commands/UpdateOpportunityCommand.d.ts +214 -0
- package/dist-types/commands/index.d.ts +14 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +40 -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 +53 -0
- package/dist-types/models/PartnerCentralSellingServiceException.d.ts +14 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +4383 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListEngagementInvitationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListOpportunitiesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSolutionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +128 -0
- package/dist-types/runtimeConfig.browser.d.ts +48 -0
- package/dist-types/runtimeConfig.d.ts +48 -0
- package/dist-types/runtimeConfig.native.d.ts +47 -0
- package/dist-types/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/PartnerCentralSelling.d.ts +257 -0
- package/dist-types/ts3.4/PartnerCentralSellingClient.d.ts +205 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/commands/AssignOpportunityCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/AssociateOpportunityCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/CreateOpportunityCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DisassociateOpportunityCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetAwsOpportunitySummaryCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetEngagementInvitationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetOpportunityCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListEngagementInvitationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListOpportunitiesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListSolutionsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/RejectEngagementInvitationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/StartEngagementByAcceptingInvitationTaskCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartEngagementFromOpportunityTaskCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateOpportunityCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +14 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -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 +9 -0
- package/dist-types/ts3.4/models/PartnerCentralSellingServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1419 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListEngagementInvitationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListOpportunitiesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSolutionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +173 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +95 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +96 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +89 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
- package/package.json +103 -0
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListOpportunitiesRequest,
|
|
5
|
+
ListOpportunitiesResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
PartnerCentralSellingClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../PartnerCentralSellingClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListOpportunitiesCommandInput
|
|
15
|
+
extends ListOpportunitiesRequest {}
|
|
16
|
+
export interface ListOpportunitiesCommandOutput
|
|
17
|
+
extends ListOpportunitiesResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListOpportunitiesCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListOpportunitiesCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListOpportunitiesCommandInput,
|
|
24
|
+
ListOpportunitiesCommandOutput,
|
|
25
|
+
PartnerCentralSellingClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ListOpportunitiesCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListOpportunitiesCommandInput,
|
|
33
|
+
ListOpportunitiesCommandOutput,
|
|
34
|
+
PartnerCentralSellingClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListOpportunitiesCommand extends ListOpportunitiesCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListOpportunitiesRequest;
|
|
44
|
+
output: ListOpportunitiesResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListOpportunitiesCommandInput;
|
|
48
|
+
output: ListOpportunitiesCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListSolutionsRequest,
|
|
5
|
+
ListSolutionsResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
PartnerCentralSellingClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../PartnerCentralSellingClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListSolutionsCommandInput extends ListSolutionsRequest {}
|
|
15
|
+
export interface ListSolutionsCommandOutput
|
|
16
|
+
extends ListSolutionsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const ListSolutionsCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListSolutionsCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ListSolutionsCommandInput,
|
|
23
|
+
ListSolutionsCommandOutput,
|
|
24
|
+
PartnerCentralSellingClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ListSolutionsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListSolutionsCommandInput,
|
|
32
|
+
ListSolutionsCommandOutput,
|
|
33
|
+
PartnerCentralSellingClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class ListSolutionsCommand extends ListSolutionsCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: ListSolutionsRequest;
|
|
43
|
+
output: ListSolutionsResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: ListSolutionsCommandInput;
|
|
47
|
+
output: ListSolutionsCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { RejectEngagementInvitationRequest } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
PartnerCentralSellingClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../PartnerCentralSellingClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface RejectEngagementInvitationCommandInput
|
|
12
|
+
extends RejectEngagementInvitationRequest {}
|
|
13
|
+
export interface RejectEngagementInvitationCommandOutput
|
|
14
|
+
extends __MetadataBearer {}
|
|
15
|
+
declare const RejectEngagementInvitationCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: RejectEngagementInvitationCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
RejectEngagementInvitationCommandInput,
|
|
20
|
+
RejectEngagementInvitationCommandOutput,
|
|
21
|
+
PartnerCentralSellingClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: RejectEngagementInvitationCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
RejectEngagementInvitationCommandInput,
|
|
29
|
+
RejectEngagementInvitationCommandOutput,
|
|
30
|
+
PartnerCentralSellingClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class RejectEngagementInvitationCommand extends RejectEngagementInvitationCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: RejectEngagementInvitationRequest;
|
|
40
|
+
output: {};
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: RejectEngagementInvitationCommandInput;
|
|
44
|
+
output: RejectEngagementInvitationCommandOutput;
|
|
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
|
+
StartEngagementByAcceptingInvitationTaskRequest,
|
|
5
|
+
StartEngagementByAcceptingInvitationTaskResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
PartnerCentralSellingClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../PartnerCentralSellingClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StartEngagementByAcceptingInvitationTaskCommandInput
|
|
15
|
+
extends StartEngagementByAcceptingInvitationTaskRequest {}
|
|
16
|
+
export interface StartEngagementByAcceptingInvitationTaskCommandOutput
|
|
17
|
+
extends StartEngagementByAcceptingInvitationTaskResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const StartEngagementByAcceptingInvitationTaskCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: StartEngagementByAcceptingInvitationTaskCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
StartEngagementByAcceptingInvitationTaskCommandInput,
|
|
24
|
+
StartEngagementByAcceptingInvitationTaskCommandOutput,
|
|
25
|
+
PartnerCentralSellingClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: StartEngagementByAcceptingInvitationTaskCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
StartEngagementByAcceptingInvitationTaskCommandInput,
|
|
33
|
+
StartEngagementByAcceptingInvitationTaskCommandOutput,
|
|
34
|
+
PartnerCentralSellingClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class StartEngagementByAcceptingInvitationTaskCommand extends StartEngagementByAcceptingInvitationTaskCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StartEngagementByAcceptingInvitationTaskRequest;
|
|
44
|
+
output: StartEngagementByAcceptingInvitationTaskResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StartEngagementByAcceptingInvitationTaskCommandInput;
|
|
48
|
+
output: StartEngagementByAcceptingInvitationTaskCommandOutput;
|
|
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
|
+
StartEngagementFromOpportunityTaskRequest,
|
|
5
|
+
StartEngagementFromOpportunityTaskResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
PartnerCentralSellingClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../PartnerCentralSellingClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StartEngagementFromOpportunityTaskCommandInput
|
|
15
|
+
extends StartEngagementFromOpportunityTaskRequest {}
|
|
16
|
+
export interface StartEngagementFromOpportunityTaskCommandOutput
|
|
17
|
+
extends StartEngagementFromOpportunityTaskResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const StartEngagementFromOpportunityTaskCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: StartEngagementFromOpportunityTaskCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
StartEngagementFromOpportunityTaskCommandInput,
|
|
24
|
+
StartEngagementFromOpportunityTaskCommandOutput,
|
|
25
|
+
PartnerCentralSellingClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: StartEngagementFromOpportunityTaskCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
StartEngagementFromOpportunityTaskCommandInput,
|
|
33
|
+
StartEngagementFromOpportunityTaskCommandOutput,
|
|
34
|
+
PartnerCentralSellingClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class StartEngagementFromOpportunityTaskCommand extends StartEngagementFromOpportunityTaskCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StartEngagementFromOpportunityTaskRequest;
|
|
44
|
+
output: StartEngagementFromOpportunityTaskResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StartEngagementFromOpportunityTaskCommandInput;
|
|
48
|
+
output: StartEngagementFromOpportunityTaskCommandOutput;
|
|
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
|
+
UpdateOpportunityRequest,
|
|
5
|
+
UpdateOpportunityResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
PartnerCentralSellingClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../PartnerCentralSellingClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateOpportunityCommandInput
|
|
15
|
+
extends UpdateOpportunityRequest {}
|
|
16
|
+
export interface UpdateOpportunityCommandOutput
|
|
17
|
+
extends UpdateOpportunityResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateOpportunityCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateOpportunityCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateOpportunityCommandInput,
|
|
24
|
+
UpdateOpportunityCommandOutput,
|
|
25
|
+
PartnerCentralSellingClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: UpdateOpportunityCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateOpportunityCommandInput,
|
|
33
|
+
UpdateOpportunityCommandOutput,
|
|
34
|
+
PartnerCentralSellingClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateOpportunityCommand extends UpdateOpportunityCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateOpportunityRequest;
|
|
44
|
+
output: UpdateOpportunityResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateOpportunityCommandInput;
|
|
48
|
+
output: UpdateOpportunityCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export * from "./AssignOpportunityCommand";
|
|
2
|
+
export * from "./AssociateOpportunityCommand";
|
|
3
|
+
export * from "./CreateOpportunityCommand";
|
|
4
|
+
export * from "./DisassociateOpportunityCommand";
|
|
5
|
+
export * from "./GetAwsOpportunitySummaryCommand";
|
|
6
|
+
export * from "./GetEngagementInvitationCommand";
|
|
7
|
+
export * from "./GetOpportunityCommand";
|
|
8
|
+
export * from "./ListEngagementInvitationsCommand";
|
|
9
|
+
export * from "./ListOpportunitiesCommand";
|
|
10
|
+
export * from "./ListSolutionsCommand";
|
|
11
|
+
export * from "./RejectEngagementInvitationCommand";
|
|
12
|
+
export * from "./StartEngagementByAcceptingInvitationTaskCommand";
|
|
13
|
+
export * from "./StartEngagementFromOpportunityTaskCommand";
|
|
14
|
+
export * from "./UpdateOpportunityCommand";
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Endpoint,
|
|
3
|
+
EndpointParameters as __EndpointParameters,
|
|
4
|
+
EndpointV2,
|
|
5
|
+
Provider,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
export interface ClientInputEndpointParameters {
|
|
8
|
+
region?: string | Provider<string>;
|
|
9
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
10
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
11
|
+
endpoint?:
|
|
12
|
+
| string
|
|
13
|
+
| Provider<string>
|
|
14
|
+
| Endpoint
|
|
15
|
+
| Provider<Endpoint>
|
|
16
|
+
| EndpointV2
|
|
17
|
+
| Provider<EndpointV2>;
|
|
18
|
+
}
|
|
19
|
+
export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
20
|
+
defaultSigningName: string;
|
|
21
|
+
};
|
|
22
|
+
export declare const resolveClientEndpointParameters: <T>(
|
|
23
|
+
options: T & ClientInputEndpointParameters
|
|
24
|
+
) => T &
|
|
25
|
+
ClientInputEndpointParameters & {
|
|
26
|
+
defaultSigningName: string;
|
|
27
|
+
};
|
|
28
|
+
export declare const commonParams: {
|
|
29
|
+
readonly UseFIPS: {
|
|
30
|
+
readonly type: "builtInParams";
|
|
31
|
+
readonly name: "useFipsEndpoint";
|
|
32
|
+
};
|
|
33
|
+
readonly Endpoint: {
|
|
34
|
+
readonly type: "builtInParams";
|
|
35
|
+
readonly name: "endpoint";
|
|
36
|
+
};
|
|
37
|
+
readonly Region: {
|
|
38
|
+
readonly type: "builtInParams";
|
|
39
|
+
readonly name: "region";
|
|
40
|
+
};
|
|
41
|
+
readonly UseDualStack: {
|
|
42
|
+
readonly type: "builtInParams";
|
|
43
|
+
readonly name: "useDualstackEndpoint";
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
47
|
+
Region?: string;
|
|
48
|
+
UseDualStack?: boolean;
|
|
49
|
+
UseFIPS?: boolean;
|
|
50
|
+
Endpoint?: string;
|
|
51
|
+
}
|
|
@@ -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 PartnerCentralSellingExtensionConfiguration
|
|
6
|
+
extends HttpHandlerExtensionConfiguration,
|
|
7
|
+
DefaultExtensionConfiguration,
|
|
8
|
+
AwsRegionExtensionConfiguration,
|
|
9
|
+
HttpAuthExtensionConfiguration {}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from "./PartnerCentralSellingClient";
|
|
2
|
+
export * from "./PartnerCentralSelling";
|
|
3
|
+
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
4
|
+
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
|
+
export { PartnerCentralSellingExtensionConfiguration } from "./extensionConfiguration";
|
|
6
|
+
export * from "./commands";
|
|
7
|
+
export * from "./pagination";
|
|
8
|
+
export * from "./models";
|
|
9
|
+
export { PartnerCentralSellingServiceException } from "./models/PartnerCentralSellingServiceException";
|
|
@@ -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 PartnerCentralSellingServiceException extends __ServiceException {
|
|
8
|
+
constructor(options: __ServiceExceptionOptions);
|
|
9
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|