@aws-sdk/client-partnercentral-selling 3.699.0 → 3.709.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/README.md +206 -45
- package/dist-cjs/PartnerCentralSelling.js +42 -0
- package/dist-cjs/commands/AcceptEngagementInvitationCommand.js +26 -0
- package/dist-cjs/commands/CreateEngagementCommand.js +27 -0
- package/dist-cjs/commands/CreateEngagementInvitationCommand.js +27 -0
- package/dist-cjs/commands/CreateResourceSnapshotCommand.js +26 -0
- package/dist-cjs/commands/CreateResourceSnapshotJobCommand.js +26 -0
- package/dist-cjs/commands/DeleteResourceSnapshotJobCommand.js +26 -0
- package/dist-cjs/commands/GetEngagementCommand.js +27 -0
- package/dist-cjs/commands/GetResourceSnapshotCommand.js +27 -0
- package/dist-cjs/commands/GetResourceSnapshotJobCommand.js +26 -0
- package/dist-cjs/commands/GetSellingSystemSettingsCommand.js +26 -0
- package/dist-cjs/commands/ListEngagementByAcceptingInvitationTasksCommand.js +26 -0
- package/dist-cjs/commands/ListEngagementFromOpportunityTasksCommand.js +26 -0
- package/dist-cjs/commands/ListEngagementInvitationsCommand.js +1 -1
- package/dist-cjs/commands/ListEngagementMembersCommand.js +27 -0
- package/dist-cjs/commands/ListEngagementResourceAssociationsCommand.js +27 -0
- package/dist-cjs/commands/ListEngagementsCommand.js +27 -0
- package/dist-cjs/commands/ListResourceSnapshotJobsCommand.js +26 -0
- package/dist-cjs/commands/ListResourceSnapshotsCommand.js +27 -0
- package/dist-cjs/commands/PutSellingSystemSettingsCommand.js +26 -0
- package/dist-cjs/commands/StartResourceSnapshotJobCommand.js +26 -0
- package/dist-cjs/commands/StopResourceSnapshotJobCommand.js +26 -0
- package/dist-cjs/commands/SubmitOpportunityCommand.js +26 -0
- package/dist-cjs/commands/index.js +21 -0
- package/dist-cjs/models/models_0.js +281 -87
- package/dist-cjs/pagination/ListEngagementByAcceptingInvitationTasksPaginator.js +7 -0
- package/dist-cjs/pagination/ListEngagementFromOpportunityTasksPaginator.js +7 -0
- package/dist-cjs/pagination/ListEngagementMembersPaginator.js +7 -0
- package/dist-cjs/pagination/ListEngagementResourceAssociationsPaginator.js +7 -0
- package/dist-cjs/pagination/ListEngagementsPaginator.js +7 -0
- package/dist-cjs/pagination/ListResourceSnapshotJobsPaginator.js +7 -0
- package/dist-cjs/pagination/ListResourceSnapshotsPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +7 -0
- package/dist-cjs/protocols/Aws_json1_0.js +599 -1
- package/dist-es/PartnerCentralSelling.js +42 -0
- package/dist-es/commands/AcceptEngagementInvitationCommand.js +22 -0
- package/dist-es/commands/CreateEngagementCommand.js +23 -0
- package/dist-es/commands/CreateEngagementInvitationCommand.js +23 -0
- package/dist-es/commands/CreateResourceSnapshotCommand.js +22 -0
- package/dist-es/commands/CreateResourceSnapshotJobCommand.js +22 -0
- package/dist-es/commands/DeleteResourceSnapshotJobCommand.js +22 -0
- package/dist-es/commands/GetEngagementCommand.js +23 -0
- package/dist-es/commands/GetResourceSnapshotCommand.js +23 -0
- package/dist-es/commands/GetResourceSnapshotJobCommand.js +22 -0
- package/dist-es/commands/GetSellingSystemSettingsCommand.js +22 -0
- package/dist-es/commands/ListEngagementByAcceptingInvitationTasksCommand.js +22 -0
- package/dist-es/commands/ListEngagementFromOpportunityTasksCommand.js +22 -0
- package/dist-es/commands/ListEngagementInvitationsCommand.js +2 -2
- package/dist-es/commands/ListEngagementMembersCommand.js +23 -0
- package/dist-es/commands/ListEngagementResourceAssociationsCommand.js +23 -0
- package/dist-es/commands/ListEngagementsCommand.js +23 -0
- package/dist-es/commands/ListResourceSnapshotJobsCommand.js +22 -0
- package/dist-es/commands/ListResourceSnapshotsCommand.js +23 -0
- package/dist-es/commands/PutSellingSystemSettingsCommand.js +22 -0
- package/dist-es/commands/StartResourceSnapshotJobCommand.js +22 -0
- package/dist-es/commands/StopResourceSnapshotJobCommand.js +22 -0
- package/dist-es/commands/SubmitOpportunityCommand.js +22 -0
- package/dist-es/commands/index.js +21 -0
- package/dist-es/models/models_0.js +249 -81
- package/dist-es/pagination/ListEngagementByAcceptingInvitationTasksPaginator.js +4 -0
- package/dist-es/pagination/ListEngagementFromOpportunityTasksPaginator.js +4 -0
- package/dist-es/pagination/ListEngagementMembersPaginator.js +4 -0
- package/dist-es/pagination/ListEngagementResourceAssociationsPaginator.js +4 -0
- package/dist-es/pagination/ListEngagementsPaginator.js +4 -0
- package/dist-es/pagination/ListResourceSnapshotJobsPaginator.js +4 -0
- package/dist-es/pagination/ListResourceSnapshotsPaginator.js +4 -0
- package/dist-es/pagination/index.js +7 -0
- package/dist-es/protocols/Aws_json1_0.js +556 -1
- package/dist-types/PartnerCentralSelling.d.ts +182 -42
- package/dist-types/PartnerCentralSellingClient.d.ts +58 -44
- package/dist-types/commands/AcceptEngagementInvitationCommand.d.ts +103 -0
- package/dist-types/commands/AssignOpportunityCommand.d.ts +27 -32
- package/dist-types/commands/AssociateOpportunityCommand.d.ts +40 -46
- package/dist-types/commands/CreateEngagementCommand.d.ts +136 -0
- package/dist-types/commands/CreateEngagementInvitationCommand.d.ts +158 -0
- package/dist-types/commands/CreateOpportunityCommand.d.ts +40 -46
- package/dist-types/commands/CreateResourceSnapshotCommand.d.ts +117 -0
- package/dist-types/commands/CreateResourceSnapshotJobCommand.d.ts +119 -0
- package/dist-types/commands/DeleteResourceSnapshotJobCommand.d.ts +96 -0
- package/dist-types/commands/DisassociateOpportunityCommand.d.ts +29 -34
- package/dist-types/commands/GetAwsOpportunitySummaryCommand.d.ts +24 -28
- package/dist-types/commands/GetEngagementCommand.d.ts +124 -0
- package/dist-types/commands/GetEngagementInvitationCommand.d.ts +34 -24
- package/dist-types/commands/GetOpportunityCommand.d.ts +24 -29
- package/dist-types/commands/GetResourceSnapshotCommand.d.ts +186 -0
- package/dist-types/commands/GetResourceSnapshotJobCommand.d.ts +109 -0
- package/dist-types/commands/GetSellingSystemSettingsCommand.d.ts +95 -0
- package/dist-types/commands/ListEngagementByAcceptingInvitationTasksCommand.d.ts +128 -0
- package/dist-types/commands/ListEngagementFromOpportunityTasksCommand.d.ts +129 -0
- package/dist-types/commands/ListEngagementInvitationsCommand.d.ts +34 -25
- package/dist-types/commands/ListEngagementMembersCommand.d.ts +109 -0
- package/dist-types/commands/ListEngagementResourceAssociationsCommand.d.ts +112 -0
- package/dist-types/commands/ListEngagementsCommand.d.ts +123 -0
- package/dist-types/commands/ListOpportunitiesCommand.d.ts +35 -39
- package/dist-types/commands/ListResourceSnapshotJobsCommand.d.ts +108 -0
- package/dist-types/commands/ListResourceSnapshotsCommand.d.ts +113 -0
- package/dist-types/commands/ListSolutionsCommand.d.ts +20 -20
- package/dist-types/commands/PutSellingSystemSettingsCommand.d.ts +96 -0
- package/dist-types/commands/RejectEngagementInvitationCommand.d.ts +22 -27
- package/dist-types/commands/StartEngagementByAcceptingInvitationTaskCommand.d.ts +37 -35
- package/dist-types/commands/StartEngagementFromOpportunityTaskCommand.d.ts +37 -35
- package/dist-types/commands/StartResourceSnapshotJobCommand.d.ts +95 -0
- package/dist-types/commands/StopResourceSnapshotJobCommand.d.ts +95 -0
- package/dist-types/commands/SubmitOpportunityCommand.d.ts +106 -0
- package/dist-types/commands/UpdateOpportunityCommand.d.ts +33 -35
- package/dist-types/commands/index.d.ts +21 -0
- package/dist-types/index.d.ts +35 -42
- package/dist-types/models/models_0.d.ts +4764 -2209
- package/dist-types/pagination/ListEngagementByAcceptingInvitationTasksPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEngagementFromOpportunityTasksPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEngagementMembersPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEngagementResourceAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEngagementsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListResourceSnapshotJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListResourceSnapshotsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +7 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +189 -0
- package/dist-types/ts3.4/PartnerCentralSelling.d.ts +375 -0
- package/dist-types/ts3.4/PartnerCentralSellingClient.d.ts +126 -0
- package/dist-types/ts3.4/commands/AcceptEngagementInvitationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateEngagementCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateEngagementInvitationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateResourceSnapshotCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateResourceSnapshotJobCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteResourceSnapshotJobCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetEngagementCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetResourceSnapshotCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetResourceSnapshotJobCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetSellingSystemSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListEngagementByAcceptingInvitationTasksCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListEngagementFromOpportunityTasksCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListEngagementMembersCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListEngagementResourceAssociationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListEngagementsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListResourceSnapshotJobsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListResourceSnapshotsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutSellingSystemSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartResourceSnapshotJobCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/StopResourceSnapshotJobCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/SubmitOpportunityCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/index.d.ts +21 -0
- package/dist-types/ts3.4/models/models_0.d.ts +587 -86
- package/dist-types/ts3.4/pagination/ListEngagementByAcceptingInvitationTasksPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEngagementFromOpportunityTasksPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEngagementMembersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEngagementResourceAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEngagementsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListResourceSnapshotJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListResourceSnapshotsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +7 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +252 -0
- package/package.json +35 -35
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { PartnerCentralSellingServiceException as __BaseException } from "./PartnerCentralSellingServiceException";
|
|
3
|
+
export interface AcceptEngagementInvitationRequest {
|
|
4
|
+
Catalog: string | undefined;
|
|
5
|
+
Identifier: string | undefined;
|
|
6
|
+
}
|
|
3
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
4
8
|
readonly name: "AccessDeniedException";
|
|
5
9
|
readonly $fault: "client";
|
|
@@ -8,6 +12,64 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
8
12
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
13
|
);
|
|
10
14
|
}
|
|
15
|
+
export declare class InternalServerException extends __BaseException {
|
|
16
|
+
readonly name: "InternalServerException";
|
|
17
|
+
readonly $fault: "server";
|
|
18
|
+
Message?: string | undefined;
|
|
19
|
+
constructor(
|
|
20
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
21
|
+
);
|
|
22
|
+
}
|
|
23
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
24
|
+
readonly name: "ResourceNotFoundException";
|
|
25
|
+
readonly $fault: "client";
|
|
26
|
+
Message?: string | undefined;
|
|
27
|
+
constructor(
|
|
28
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
29
|
+
);
|
|
30
|
+
}
|
|
31
|
+
export declare class ThrottlingException extends __BaseException {
|
|
32
|
+
readonly name: "ThrottlingException";
|
|
33
|
+
readonly $fault: "client";
|
|
34
|
+
Message?: string | undefined;
|
|
35
|
+
constructor(
|
|
36
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
37
|
+
);
|
|
38
|
+
}
|
|
39
|
+
export declare const ValidationExceptionErrorCode: {
|
|
40
|
+
readonly ACTION_NOT_PERMITTED: "ACTION_NOT_PERMITTED";
|
|
41
|
+
readonly DUPLICATE_KEY_VALUE: "DUPLICATE_KEY_VALUE";
|
|
42
|
+
readonly INVALID_ENUM_VALUE: "INVALID_ENUM_VALUE";
|
|
43
|
+
readonly INVALID_RESOURCE_STATE: "INVALID_RESOURCE_STATE";
|
|
44
|
+
readonly INVALID_STRING_FORMAT: "INVALID_STRING_FORMAT";
|
|
45
|
+
readonly INVALID_VALUE: "INVALID_VALUE";
|
|
46
|
+
readonly REQUIRED_FIELD_MISSING: "REQUIRED_FIELD_MISSING";
|
|
47
|
+
readonly TOO_MANY_VALUES: "TOO_MANY_VALUES";
|
|
48
|
+
readonly VALUE_OUT_OF_RANGE: "VALUE_OUT_OF_RANGE";
|
|
49
|
+
};
|
|
50
|
+
export type ValidationExceptionErrorCode =
|
|
51
|
+
(typeof ValidationExceptionErrorCode)[keyof typeof ValidationExceptionErrorCode];
|
|
52
|
+
export interface ValidationExceptionError {
|
|
53
|
+
FieldName?: string | undefined;
|
|
54
|
+
Message: string | undefined;
|
|
55
|
+
Code: ValidationExceptionErrorCode | undefined;
|
|
56
|
+
}
|
|
57
|
+
export declare const ValidationExceptionReason: {
|
|
58
|
+
readonly BUSINESS_VALIDATION_FAILED: "BUSINESS_VALIDATION_FAILED";
|
|
59
|
+
readonly REQUEST_VALIDATION_FAILED: "REQUEST_VALIDATION_FAILED";
|
|
60
|
+
};
|
|
61
|
+
export type ValidationExceptionReason =
|
|
62
|
+
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
63
|
+
export declare class ValidationException extends __BaseException {
|
|
64
|
+
readonly name: "ValidationException";
|
|
65
|
+
readonly $fault: "client";
|
|
66
|
+
Message: string | undefined;
|
|
67
|
+
Reason: ValidationExceptionReason | undefined;
|
|
68
|
+
ErrorList?: ValidationExceptionError[] | undefined;
|
|
69
|
+
constructor(
|
|
70
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
71
|
+
);
|
|
72
|
+
}
|
|
11
73
|
export declare const CountryCode: {
|
|
12
74
|
readonly AD: "AD";
|
|
13
75
|
readonly AE: "AE";
|
|
@@ -335,64 +397,6 @@ export interface AssignOpportunityRequest {
|
|
|
335
397
|
Identifier: string | undefined;
|
|
336
398
|
Assignee: AssigneeContact | undefined;
|
|
337
399
|
}
|
|
338
|
-
export declare class InternalServerException extends __BaseException {
|
|
339
|
-
readonly name: "InternalServerException";
|
|
340
|
-
readonly $fault: "server";
|
|
341
|
-
Message?: string | undefined;
|
|
342
|
-
constructor(
|
|
343
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
344
|
-
);
|
|
345
|
-
}
|
|
346
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
347
|
-
readonly name: "ResourceNotFoundException";
|
|
348
|
-
readonly $fault: "client";
|
|
349
|
-
Message?: string | undefined;
|
|
350
|
-
constructor(
|
|
351
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
352
|
-
);
|
|
353
|
-
}
|
|
354
|
-
export declare class ThrottlingException extends __BaseException {
|
|
355
|
-
readonly name: "ThrottlingException";
|
|
356
|
-
readonly $fault: "client";
|
|
357
|
-
Message?: string | undefined;
|
|
358
|
-
constructor(
|
|
359
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
360
|
-
);
|
|
361
|
-
}
|
|
362
|
-
export declare const ValidationExceptionErrorCode: {
|
|
363
|
-
readonly ACTION_NOT_PERMITTED: "ACTION_NOT_PERMITTED";
|
|
364
|
-
readonly DUPLICATE_KEY_VALUE: "DUPLICATE_KEY_VALUE";
|
|
365
|
-
readonly INVALID_ENUM_VALUE: "INVALID_ENUM_VALUE";
|
|
366
|
-
readonly INVALID_RESOURCE_STATE: "INVALID_RESOURCE_STATE";
|
|
367
|
-
readonly INVALID_STRING_FORMAT: "INVALID_STRING_FORMAT";
|
|
368
|
-
readonly INVALID_VALUE: "INVALID_VALUE";
|
|
369
|
-
readonly REQUIRED_FIELD_MISSING: "REQUIRED_FIELD_MISSING";
|
|
370
|
-
readonly TOO_MANY_VALUES: "TOO_MANY_VALUES";
|
|
371
|
-
readonly VALUE_OUT_OF_RANGE: "VALUE_OUT_OF_RANGE";
|
|
372
|
-
};
|
|
373
|
-
export type ValidationExceptionErrorCode =
|
|
374
|
-
(typeof ValidationExceptionErrorCode)[keyof typeof ValidationExceptionErrorCode];
|
|
375
|
-
export interface ValidationExceptionError {
|
|
376
|
-
FieldName?: string | undefined;
|
|
377
|
-
Message: string | undefined;
|
|
378
|
-
Code: ValidationExceptionErrorCode | undefined;
|
|
379
|
-
}
|
|
380
|
-
export declare const ValidationExceptionReason: {
|
|
381
|
-
readonly BUSINESS_VALIDATION_FAILED: "BUSINESS_VALIDATION_FAILED";
|
|
382
|
-
readonly REQUEST_VALIDATION_FAILED: "REQUEST_VALIDATION_FAILED";
|
|
383
|
-
};
|
|
384
|
-
export type ValidationExceptionReason =
|
|
385
|
-
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
386
|
-
export declare class ValidationException extends __BaseException {
|
|
387
|
-
readonly name: "ValidationException";
|
|
388
|
-
readonly $fault: "client";
|
|
389
|
-
Message: string | undefined;
|
|
390
|
-
Reason: ValidationExceptionReason | undefined;
|
|
391
|
-
ErrorList?: ValidationExceptionError[] | undefined;
|
|
392
|
-
constructor(
|
|
393
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
394
|
-
);
|
|
395
|
-
}
|
|
396
400
|
export declare const RelatedEntityType: {
|
|
397
401
|
readonly AWS_MARKETPLACE_OFFERS: "AwsMarketplaceOffers";
|
|
398
402
|
readonly AWS_PRODUCTS: "AwsProducts";
|
|
@@ -715,6 +719,7 @@ export interface ExpectedCustomerSpend {
|
|
|
715
719
|
CurrencyCode: CurrencyCode | undefined;
|
|
716
720
|
Frequency: PaymentFrequency | undefined;
|
|
717
721
|
TargetCompany: string | undefined;
|
|
722
|
+
EstimationUrl?: string | undefined;
|
|
718
723
|
}
|
|
719
724
|
export interface AwsOpportunityProject {
|
|
720
725
|
ExpectedCustomerSpend?: ExpectedCustomerSpend[] | undefined;
|
|
@@ -735,6 +740,59 @@ export declare class ConflictException extends __BaseException {
|
|
|
735
740
|
Message?: string | undefined;
|
|
736
741
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
737
742
|
}
|
|
743
|
+
export interface EngagementCustomer {
|
|
744
|
+
Industry: Industry | undefined;
|
|
745
|
+
CompanyName: string | undefined;
|
|
746
|
+
WebsiteUrl: string | undefined;
|
|
747
|
+
CountryCode: CountryCode | undefined;
|
|
748
|
+
}
|
|
749
|
+
export interface EngagementCustomerProjectDetails {
|
|
750
|
+
Title: string | undefined;
|
|
751
|
+
BusinessProblem: string | undefined;
|
|
752
|
+
TargetCompletionDate: string | undefined;
|
|
753
|
+
}
|
|
754
|
+
export interface CustomerProjectsContext {
|
|
755
|
+
Customer?: EngagementCustomer | undefined;
|
|
756
|
+
Project?: EngagementCustomerProjectDetails | undefined;
|
|
757
|
+
}
|
|
758
|
+
export type EngagementContextPayload =
|
|
759
|
+
| EngagementContextPayload.CustomerProjectMember
|
|
760
|
+
| EngagementContextPayload.$UnknownMember;
|
|
761
|
+
export declare namespace EngagementContextPayload {
|
|
762
|
+
interface CustomerProjectMember {
|
|
763
|
+
CustomerProject: CustomerProjectsContext;
|
|
764
|
+
$unknown?: never;
|
|
765
|
+
}
|
|
766
|
+
interface $UnknownMember {
|
|
767
|
+
CustomerProject?: never;
|
|
768
|
+
$unknown: [string, any];
|
|
769
|
+
}
|
|
770
|
+
interface Visitor<T> {
|
|
771
|
+
CustomerProject: (value: CustomerProjectsContext) => T;
|
|
772
|
+
_: (name: string, value: any) => T;
|
|
773
|
+
}
|
|
774
|
+
const visit: <T>(value: EngagementContextPayload, visitor: Visitor<T>) => T;
|
|
775
|
+
}
|
|
776
|
+
export declare const EngagementContextType: {
|
|
777
|
+
readonly CUSTOMER_PROJECT: "CustomerProject";
|
|
778
|
+
};
|
|
779
|
+
export type EngagementContextType =
|
|
780
|
+
(typeof EngagementContextType)[keyof typeof EngagementContextType];
|
|
781
|
+
export interface EngagementContextDetails {
|
|
782
|
+
Type: EngagementContextType | undefined;
|
|
783
|
+
Payload?: EngagementContextPayload | undefined;
|
|
784
|
+
}
|
|
785
|
+
export interface CreateEngagementRequest {
|
|
786
|
+
Catalog: string | undefined;
|
|
787
|
+
ClientToken?: string | undefined;
|
|
788
|
+
Title: string | undefined;
|
|
789
|
+
Description: string | undefined;
|
|
790
|
+
Contexts?: EngagementContextDetails[] | undefined;
|
|
791
|
+
}
|
|
792
|
+
export interface CreateEngagementResponse {
|
|
793
|
+
Id?: string | undefined;
|
|
794
|
+
Arn?: string | undefined;
|
|
795
|
+
}
|
|
738
796
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
739
797
|
readonly name: "ServiceQuotaExceededException";
|
|
740
798
|
readonly $fault: "client";
|
|
@@ -743,31 +801,137 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
743
801
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
744
802
|
);
|
|
745
803
|
}
|
|
746
|
-
export interface
|
|
804
|
+
export interface GetEngagementRequest {
|
|
805
|
+
Catalog: string | undefined;
|
|
806
|
+
Identifier: string | undefined;
|
|
807
|
+
}
|
|
808
|
+
export interface GetEngagementResponse {
|
|
809
|
+
Id?: string | undefined;
|
|
810
|
+
Arn?: string | undefined;
|
|
811
|
+
Title?: string | undefined;
|
|
812
|
+
Description?: string | undefined;
|
|
813
|
+
CreatedAt?: Date | undefined;
|
|
814
|
+
CreatedBy?: string | undefined;
|
|
815
|
+
MemberCount?: number | undefined;
|
|
816
|
+
Contexts?: EngagementContextDetails[] | undefined;
|
|
817
|
+
}
|
|
818
|
+
export interface ListEngagementMembersRequest {
|
|
747
819
|
Catalog: string | undefined;
|
|
748
|
-
ClientToken?: string | undefined;
|
|
749
820
|
Identifier: string | undefined;
|
|
821
|
+
MaxResults?: number | undefined;
|
|
822
|
+
NextToken?: string | undefined;
|
|
823
|
+
}
|
|
824
|
+
export interface EngagementMember {
|
|
825
|
+
CompanyName?: string | undefined;
|
|
826
|
+
WebsiteUrl?: string | undefined;
|
|
827
|
+
AccountId?: string | undefined;
|
|
828
|
+
}
|
|
829
|
+
export interface ListEngagementMembersResponse {
|
|
830
|
+
EngagementMemberList: EngagementMember[] | undefined;
|
|
831
|
+
NextToken?: string | undefined;
|
|
832
|
+
}
|
|
833
|
+
export declare const EngagementSortName: {
|
|
834
|
+
readonly CreatedDate: "CreatedDate";
|
|
835
|
+
};
|
|
836
|
+
export type EngagementSortName =
|
|
837
|
+
(typeof EngagementSortName)[keyof typeof EngagementSortName];
|
|
838
|
+
export declare const SortOrder: {
|
|
839
|
+
readonly ASCENDING: "ASCENDING";
|
|
840
|
+
readonly DESCENDING: "DESCENDING";
|
|
841
|
+
};
|
|
842
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
843
|
+
export interface EngagementSort {
|
|
844
|
+
SortOrder: SortOrder | undefined;
|
|
845
|
+
SortBy: EngagementSortName | undefined;
|
|
846
|
+
}
|
|
847
|
+
export interface ListEngagementsRequest {
|
|
848
|
+
Catalog: string | undefined;
|
|
849
|
+
CreatedBy?: string[] | undefined;
|
|
850
|
+
ExcludeCreatedBy?: string[] | undefined;
|
|
851
|
+
Sort?: EngagementSort | undefined;
|
|
852
|
+
MaxResults?: number | undefined;
|
|
853
|
+
NextToken?: string | undefined;
|
|
854
|
+
EngagementIdentifier?: string[] | undefined;
|
|
855
|
+
}
|
|
856
|
+
export interface EngagementSummary {
|
|
857
|
+
Arn?: string | undefined;
|
|
858
|
+
Id?: string | undefined;
|
|
859
|
+
Title?: string | undefined;
|
|
860
|
+
CreatedAt?: Date | undefined;
|
|
861
|
+
CreatedBy?: string | undefined;
|
|
862
|
+
MemberCount?: number | undefined;
|
|
863
|
+
}
|
|
864
|
+
export interface ListEngagementsResponse {
|
|
865
|
+
EngagementSummaryList: EngagementSummary[] | undefined;
|
|
866
|
+
NextToken?: string | undefined;
|
|
867
|
+
}
|
|
868
|
+
export declare const ListTasksSortName: {
|
|
869
|
+
readonly START_TIME: "StartTime";
|
|
870
|
+
};
|
|
871
|
+
export type ListTasksSortName =
|
|
872
|
+
(typeof ListTasksSortName)[keyof typeof ListTasksSortName];
|
|
873
|
+
export interface ListTasksSortBase {
|
|
874
|
+
SortOrder: SortOrder | undefined;
|
|
875
|
+
SortBy: ListTasksSortName | undefined;
|
|
876
|
+
}
|
|
877
|
+
export declare const TaskStatus: {
|
|
878
|
+
readonly COMPLETE: "COMPLETE";
|
|
879
|
+
readonly FAILED: "FAILED";
|
|
880
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
881
|
+
};
|
|
882
|
+
export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
|
|
883
|
+
export interface ListEngagementByAcceptingInvitationTasksRequest {
|
|
884
|
+
MaxResults?: number | undefined;
|
|
885
|
+
NextToken?: string | undefined;
|
|
886
|
+
Sort?: ListTasksSortBase | undefined;
|
|
887
|
+
Catalog: string | undefined;
|
|
888
|
+
TaskStatus?: TaskStatus[] | undefined;
|
|
889
|
+
OpportunityIdentifier?: string[] | undefined;
|
|
890
|
+
EngagementInvitationIdentifier?: string[] | undefined;
|
|
891
|
+
TaskIdentifier?: string[] | undefined;
|
|
750
892
|
}
|
|
751
893
|
export declare const ReasonCode: {
|
|
752
894
|
readonly ENGAGEMENT_ACCESS_DENIED: "EngagementAccessDenied";
|
|
895
|
+
readonly ENGAGEMENT_CONFLICT: "EngagementConflict";
|
|
753
896
|
readonly ENGAGEMENT_INVITATION_CONFLICT: "EngagementInvitationConflict";
|
|
754
897
|
readonly ENGAGEMENT_VALIDATION_FAILED: "EngagementValidationFailed";
|
|
755
898
|
readonly INTERNAL_ERROR: "InternalError";
|
|
756
899
|
readonly INVITATION_ACCESS_DENIED: "InvitationAccessDenied";
|
|
900
|
+
readonly INVITATION_VALIDATION_FAILED: "InvitationValidationFailed";
|
|
757
901
|
readonly OPPORTUNITY_ACCESS_DENIED: "OpportunityAccessDenied";
|
|
758
902
|
readonly OPPORTUNITY_CONFLICT: "OpportunityConflict";
|
|
759
903
|
readonly OPPORTUNITY_SUBMISSION_FAILED: "OpportunitySubmissionFailed";
|
|
760
904
|
readonly OPPORTUNITY_VALIDATION_FAILED: "OpportunityValidationFailed";
|
|
905
|
+
readonly REQUEST_THROTTLED: "RequestThrottled";
|
|
761
906
|
readonly RESOURCE_SNAPSHOT_ACCESS_DENIED: "ResourceSnapshotAccessDenied";
|
|
907
|
+
readonly RESOURCE_SNAPSHOT_CONFLICT: "ResourceSnapshotConflict";
|
|
762
908
|
readonly RESOURCE_SNAPSHOT_JOB_ACCESS_DENIED: "ResourceSnapshotJobAccessDenied";
|
|
909
|
+
readonly RESOURCE_SNAPSHOT_JOB_CONFLICT: "ResourceSnapshotJobConflict";
|
|
910
|
+
readonly RESOURCE_SNAPSHOT_JOB_VALIDATION_FAILED: "ResourceSnapshotJobValidationFailed";
|
|
911
|
+
readonly RESOURCE_SNAPSHOT_VALIDATION_FAILED: "ResourceSnapshotValidationFailed";
|
|
912
|
+
readonly SERVICE_QUOTA_EXCEEDED: "ServiceQuotaExceeded";
|
|
763
913
|
};
|
|
764
914
|
export type ReasonCode = (typeof ReasonCode)[keyof typeof ReasonCode];
|
|
765
|
-
export
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
915
|
+
export interface ListEngagementByAcceptingInvitationTaskSummary {
|
|
916
|
+
TaskId?: string | undefined;
|
|
917
|
+
TaskArn?: string | undefined;
|
|
918
|
+
StartTime?: Date | undefined;
|
|
919
|
+
TaskStatus?: TaskStatus | undefined;
|
|
920
|
+
Message?: string | undefined;
|
|
921
|
+
ReasonCode?: ReasonCode | undefined;
|
|
922
|
+
OpportunityId?: string | undefined;
|
|
923
|
+
ResourceSnapshotJobId?: string | undefined;
|
|
924
|
+
EngagementInvitationId?: string | undefined;
|
|
925
|
+
}
|
|
926
|
+
export interface ListEngagementByAcceptingInvitationTasksResponse {
|
|
927
|
+
TaskSummaries?: ListEngagementByAcceptingInvitationTaskSummary[] | undefined;
|
|
928
|
+
NextToken?: string | undefined;
|
|
929
|
+
}
|
|
930
|
+
export interface StartEngagementByAcceptingInvitationTaskRequest {
|
|
931
|
+
Catalog: string | undefined;
|
|
932
|
+
ClientToken?: string | undefined;
|
|
933
|
+
Identifier: string | undefined;
|
|
934
|
+
}
|
|
771
935
|
export interface StartEngagementByAcceptingInvitationTaskResponse {
|
|
772
936
|
TaskId?: string | undefined;
|
|
773
937
|
TaskArn?: string | undefined;
|
|
@@ -776,8 +940,35 @@ export interface StartEngagementByAcceptingInvitationTaskResponse {
|
|
|
776
940
|
Message?: string | undefined;
|
|
777
941
|
ReasonCode?: ReasonCode | undefined;
|
|
778
942
|
OpportunityId?: string | undefined;
|
|
943
|
+
ResourceSnapshotJobId?: string | undefined;
|
|
779
944
|
EngagementInvitationId?: string | undefined;
|
|
780
945
|
}
|
|
946
|
+
export interface ListEngagementFromOpportunityTasksRequest {
|
|
947
|
+
MaxResults?: number | undefined;
|
|
948
|
+
NextToken?: string | undefined;
|
|
949
|
+
Sort?: ListTasksSortBase | undefined;
|
|
950
|
+
Catalog: string | undefined;
|
|
951
|
+
TaskStatus?: TaskStatus[] | undefined;
|
|
952
|
+
TaskIdentifier?: string[] | undefined;
|
|
953
|
+
OpportunityIdentifier?: string[] | undefined;
|
|
954
|
+
EngagementIdentifier?: string[] | undefined;
|
|
955
|
+
}
|
|
956
|
+
export interface ListEngagementFromOpportunityTaskSummary {
|
|
957
|
+
TaskId?: string | undefined;
|
|
958
|
+
TaskArn?: string | undefined;
|
|
959
|
+
StartTime?: Date | undefined;
|
|
960
|
+
TaskStatus?: TaskStatus | undefined;
|
|
961
|
+
Message?: string | undefined;
|
|
962
|
+
ReasonCode?: ReasonCode | undefined;
|
|
963
|
+
OpportunityId?: string | undefined;
|
|
964
|
+
ResourceSnapshotJobId?: string | undefined;
|
|
965
|
+
EngagementId?: string | undefined;
|
|
966
|
+
EngagementInvitationId?: string | undefined;
|
|
967
|
+
}
|
|
968
|
+
export interface ListEngagementFromOpportunityTasksResponse {
|
|
969
|
+
TaskSummaries?: ListEngagementFromOpportunityTaskSummary[] | undefined;
|
|
970
|
+
NextToken?: string | undefined;
|
|
971
|
+
}
|
|
781
972
|
export declare const SalesInvolvementType: {
|
|
782
973
|
readonly CO_SELL: "Co-Sell";
|
|
783
974
|
readonly FOR_VISIBILITY_ONLY: "For Visibility Only";
|
|
@@ -807,16 +998,9 @@ export interface StartEngagementFromOpportunityTaskResponse {
|
|
|
807
998
|
Message?: string | undefined;
|
|
808
999
|
ReasonCode?: ReasonCode | undefined;
|
|
809
1000
|
OpportunityId?: string | undefined;
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
Identifier: string | undefined;
|
|
814
|
-
}
|
|
815
|
-
export interface EngagementCustomer {
|
|
816
|
-
Industry: Industry | undefined;
|
|
817
|
-
CompanyName: string | undefined;
|
|
818
|
-
WebsiteUrl: string | undefined;
|
|
819
|
-
CountryCode: CountryCode | undefined;
|
|
1001
|
+
ResourceSnapshotJobId?: string | undefined;
|
|
1002
|
+
EngagementId?: string | undefined;
|
|
1003
|
+
EngagementInvitationId?: string | undefined;
|
|
820
1004
|
}
|
|
821
1005
|
export interface ProjectDetails {
|
|
822
1006
|
BusinessProblem: string | undefined;
|
|
@@ -868,11 +1052,6 @@ export declare namespace Payload {
|
|
|
868
1052
|
}
|
|
869
1053
|
const visit: <T>(value: Payload, visitor: Visitor<T>) => T;
|
|
870
1054
|
}
|
|
871
|
-
export declare const EngagementInvitationPayloadType: {
|
|
872
|
-
readonly OPPORTUNITY_INVITATION: "OpportunityInvitation";
|
|
873
|
-
};
|
|
874
|
-
export type EngagementInvitationPayloadType =
|
|
875
|
-
(typeof EngagementInvitationPayloadType)[keyof typeof EngagementInvitationPayloadType];
|
|
876
1055
|
export type Receiver = Receiver.AccountMember | Receiver.$UnknownMember;
|
|
877
1056
|
export declare namespace Receiver {
|
|
878
1057
|
interface AccountMember {
|
|
@@ -889,6 +1068,34 @@ export declare namespace Receiver {
|
|
|
889
1068
|
}
|
|
890
1069
|
const visit: <T>(value: Receiver, visitor: Visitor<T>) => T;
|
|
891
1070
|
}
|
|
1071
|
+
export interface Invitation {
|
|
1072
|
+
Message: string | undefined;
|
|
1073
|
+
Receiver: Receiver | undefined;
|
|
1074
|
+
Payload: Payload | undefined;
|
|
1075
|
+
}
|
|
1076
|
+
export interface CreateEngagementInvitationRequest {
|
|
1077
|
+
Catalog: string | undefined;
|
|
1078
|
+
ClientToken?: string | undefined;
|
|
1079
|
+
EngagementIdentifier: string | undefined;
|
|
1080
|
+
Invitation: Invitation | undefined;
|
|
1081
|
+
}
|
|
1082
|
+
export interface CreateEngagementInvitationResponse {
|
|
1083
|
+
Id: string | undefined;
|
|
1084
|
+
Arn: string | undefined;
|
|
1085
|
+
}
|
|
1086
|
+
export interface GetEngagementInvitationRequest {
|
|
1087
|
+
Catalog: string | undefined;
|
|
1088
|
+
Identifier: string | undefined;
|
|
1089
|
+
}
|
|
1090
|
+
export interface EngagementMemberSummary {
|
|
1091
|
+
CompanyName?: string | undefined;
|
|
1092
|
+
WebsiteUrl?: string | undefined;
|
|
1093
|
+
}
|
|
1094
|
+
export declare const EngagementInvitationPayloadType: {
|
|
1095
|
+
readonly OPPORTUNITY_INVITATION: "OpportunityInvitation";
|
|
1096
|
+
};
|
|
1097
|
+
export type EngagementInvitationPayloadType =
|
|
1098
|
+
(typeof EngagementInvitationPayloadType)[keyof typeof EngagementInvitationPayloadType];
|
|
892
1099
|
export declare const InvitationStatus: {
|
|
893
1100
|
readonly ACCEPTED: "ACCEPTED";
|
|
894
1101
|
readonly EXPIRED: "EXPIRED";
|
|
@@ -901,6 +1108,7 @@ export interface GetEngagementInvitationResponse {
|
|
|
901
1108
|
Arn?: string | undefined;
|
|
902
1109
|
PayloadType?: EngagementInvitationPayloadType | undefined;
|
|
903
1110
|
Id: string | undefined;
|
|
1111
|
+
EngagementId?: string | undefined;
|
|
904
1112
|
EngagementTitle?: string | undefined;
|
|
905
1113
|
Status?: InvitationStatus | undefined;
|
|
906
1114
|
InvitationDate?: Date | undefined;
|
|
@@ -911,9 +1119,13 @@ export interface GetEngagementInvitationResponse {
|
|
|
911
1119
|
Catalog: string | undefined;
|
|
912
1120
|
RejectionReason?: string | undefined;
|
|
913
1121
|
Payload?: Payload | undefined;
|
|
1122
|
+
InvitationMessage?: string | undefined;
|
|
1123
|
+
EngagementDescription?: string | undefined;
|
|
1124
|
+
ExistingMembers?: EngagementMemberSummary[] | undefined;
|
|
914
1125
|
}
|
|
915
1126
|
export declare const ParticipantType: {
|
|
916
1127
|
readonly RECEIVER: "RECEIVER";
|
|
1128
|
+
readonly SENDER: "SENDER";
|
|
917
1129
|
};
|
|
918
1130
|
export type ParticipantType =
|
|
919
1131
|
(typeof ParticipantType)[keyof typeof ParticipantType];
|
|
@@ -922,11 +1134,6 @@ export declare const OpportunityEngagementInvitationSortName: {
|
|
|
922
1134
|
};
|
|
923
1135
|
export type OpportunityEngagementInvitationSortName =
|
|
924
1136
|
(typeof OpportunityEngagementInvitationSortName)[keyof typeof OpportunityEngagementInvitationSortName];
|
|
925
|
-
export declare const SortOrder: {
|
|
926
|
-
readonly ASCENDING: "ASCENDING";
|
|
927
|
-
readonly DESCENDING: "DESCENDING";
|
|
928
|
-
};
|
|
929
|
-
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
930
1137
|
export interface OpportunityEngagementInvitationSort {
|
|
931
1138
|
SortOrder: SortOrder | undefined;
|
|
932
1139
|
SortBy: OpportunityEngagementInvitationSortName | undefined;
|
|
@@ -938,11 +1145,15 @@ export interface ListEngagementInvitationsRequest {
|
|
|
938
1145
|
Sort?: OpportunityEngagementInvitationSort | undefined;
|
|
939
1146
|
PayloadType?: EngagementInvitationPayloadType[] | undefined;
|
|
940
1147
|
ParticipantType: ParticipantType | undefined;
|
|
1148
|
+
Status?: InvitationStatus[] | undefined;
|
|
1149
|
+
EngagementIdentifier?: string[] | undefined;
|
|
1150
|
+
SenderAwsAccountId?: string[] | undefined;
|
|
941
1151
|
}
|
|
942
1152
|
export interface EngagementInvitationSummary {
|
|
943
1153
|
Arn?: string | undefined;
|
|
944
1154
|
PayloadType?: EngagementInvitationPayloadType | undefined;
|
|
945
1155
|
Id: string | undefined;
|
|
1156
|
+
EngagementId?: string | undefined;
|
|
946
1157
|
EngagementTitle?: string | undefined;
|
|
947
1158
|
Status?: InvitationStatus | undefined;
|
|
948
1159
|
InvitationDate?: Date | undefined;
|
|
@@ -951,6 +1162,7 @@ export interface EngagementInvitationSummary {
|
|
|
951
1162
|
SenderCompanyName?: string | undefined;
|
|
952
1163
|
Receiver?: Receiver | undefined;
|
|
953
1164
|
Catalog: string | undefined;
|
|
1165
|
+
ParticipantType?: ParticipantType | undefined;
|
|
954
1166
|
}
|
|
955
1167
|
export interface ListEngagementInvitationsResponse {
|
|
956
1168
|
EngagementInvitationSummaries?: EngagementInvitationSummary[] | undefined;
|
|
@@ -1219,6 +1431,7 @@ export interface GetOpportunityResponse {
|
|
|
1219
1431
|
Marketing?: Marketing | undefined;
|
|
1220
1432
|
SoftwareRevenue?: SoftwareRevenue | undefined;
|
|
1221
1433
|
Id: string | undefined;
|
|
1434
|
+
Arn?: string | undefined;
|
|
1222
1435
|
LastModifiedDate: Date | undefined;
|
|
1223
1436
|
CreatedDate: Date | undefined;
|
|
1224
1437
|
RelatedEntityIdentifiers: RelatedEntityIdentifiers | undefined;
|
|
@@ -1270,6 +1483,7 @@ export interface ProjectSummary {
|
|
|
1270
1483
|
export interface OpportunitySummary {
|
|
1271
1484
|
Catalog: string | undefined;
|
|
1272
1485
|
Id?: string | undefined;
|
|
1486
|
+
Arn?: string | undefined;
|
|
1273
1487
|
PartnerOpportunityIdentifier?: string | undefined;
|
|
1274
1488
|
OpportunityType?: OpportunityType | undefined;
|
|
1275
1489
|
LastModifiedDate?: Date | undefined;
|
|
@@ -1282,6 +1496,12 @@ export interface ListOpportunitiesResponse {
|
|
|
1282
1496
|
OpportunitySummaries: OpportunitySummary[] | undefined;
|
|
1283
1497
|
NextToken?: string | undefined;
|
|
1284
1498
|
}
|
|
1499
|
+
export interface SubmitOpportunityRequest {
|
|
1500
|
+
Catalog: string | undefined;
|
|
1501
|
+
Identifier: string | undefined;
|
|
1502
|
+
InvolvementType: SalesInvolvementType | undefined;
|
|
1503
|
+
Visibility?: Visibility | undefined;
|
|
1504
|
+
}
|
|
1285
1505
|
export interface UpdateOpportunityRequest {
|
|
1286
1506
|
Catalog: string | undefined;
|
|
1287
1507
|
PrimaryNeedsFromAws?: PrimaryNeedFromAws[] | undefined;
|
|
@@ -1300,6 +1520,215 @@ export interface UpdateOpportunityResponse {
|
|
|
1300
1520
|
Id: string | undefined;
|
|
1301
1521
|
LastModifiedDate: Date | undefined;
|
|
1302
1522
|
}
|
|
1523
|
+
export declare const ResourceType: {
|
|
1524
|
+
readonly OPPORTUNITY: "Opportunity";
|
|
1525
|
+
};
|
|
1526
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
1527
|
+
export interface CreateResourceSnapshotRequest {
|
|
1528
|
+
Catalog: string | undefined;
|
|
1529
|
+
EngagementIdentifier: string | undefined;
|
|
1530
|
+
ResourceType: ResourceType | undefined;
|
|
1531
|
+
ResourceIdentifier: string | undefined;
|
|
1532
|
+
ResourceSnapshotTemplateIdentifier: string | undefined;
|
|
1533
|
+
ClientToken?: string | undefined;
|
|
1534
|
+
}
|
|
1535
|
+
export interface CreateResourceSnapshotResponse {
|
|
1536
|
+
Arn?: string | undefined;
|
|
1537
|
+
Revision?: number | undefined;
|
|
1538
|
+
}
|
|
1539
|
+
export interface GetResourceSnapshotRequest {
|
|
1540
|
+
Catalog: string | undefined;
|
|
1541
|
+
EngagementIdentifier: string | undefined;
|
|
1542
|
+
ResourceType: ResourceType | undefined;
|
|
1543
|
+
ResourceIdentifier: string | undefined;
|
|
1544
|
+
ResourceSnapshotTemplateIdentifier: string | undefined;
|
|
1545
|
+
Revision?: number | undefined;
|
|
1546
|
+
}
|
|
1547
|
+
export interface LifeCycleForView {
|
|
1548
|
+
TargetCloseDate?: string | undefined;
|
|
1549
|
+
ReviewStatus?: ReviewStatus | undefined;
|
|
1550
|
+
Stage?: Stage | undefined;
|
|
1551
|
+
NextSteps?: string | undefined;
|
|
1552
|
+
}
|
|
1553
|
+
export interface ProjectView {
|
|
1554
|
+
DeliveryModels?: DeliveryModel[] | undefined;
|
|
1555
|
+
ExpectedCustomerSpend?: ExpectedCustomerSpend[] | undefined;
|
|
1556
|
+
CustomerUseCase?: string | undefined;
|
|
1557
|
+
SalesActivities?: SalesActivity[] | undefined;
|
|
1558
|
+
OtherSolutionDescription?: string | undefined;
|
|
1559
|
+
}
|
|
1560
|
+
export interface OpportunitySummaryView {
|
|
1561
|
+
OpportunityType?: OpportunityType | undefined;
|
|
1562
|
+
Lifecycle?: LifeCycleForView | undefined;
|
|
1563
|
+
OpportunityTeam?: Contact[] | undefined;
|
|
1564
|
+
PrimaryNeedsFromAws?: PrimaryNeedFromAws[] | undefined;
|
|
1565
|
+
Customer?: Customer | undefined;
|
|
1566
|
+
Project?: ProjectView | undefined;
|
|
1567
|
+
RelatedEntityIdentifiers?: RelatedEntityIdentifiers | undefined;
|
|
1568
|
+
}
|
|
1569
|
+
export type ResourceSnapshotPayload =
|
|
1570
|
+
| ResourceSnapshotPayload.OpportunitySummaryMember
|
|
1571
|
+
| ResourceSnapshotPayload.$UnknownMember;
|
|
1572
|
+
export declare namespace ResourceSnapshotPayload {
|
|
1573
|
+
interface OpportunitySummaryMember {
|
|
1574
|
+
OpportunitySummary: OpportunitySummaryView;
|
|
1575
|
+
$unknown?: never;
|
|
1576
|
+
}
|
|
1577
|
+
interface $UnknownMember {
|
|
1578
|
+
OpportunitySummary?: never;
|
|
1579
|
+
$unknown: [string, any];
|
|
1580
|
+
}
|
|
1581
|
+
interface Visitor<T> {
|
|
1582
|
+
OpportunitySummary: (value: OpportunitySummaryView) => T;
|
|
1583
|
+
_: (name: string, value: any) => T;
|
|
1584
|
+
}
|
|
1585
|
+
const visit: <T>(value: ResourceSnapshotPayload, visitor: Visitor<T>) => T;
|
|
1586
|
+
}
|
|
1587
|
+
export interface GetResourceSnapshotResponse {
|
|
1588
|
+
Catalog: string | undefined;
|
|
1589
|
+
Arn?: string | undefined;
|
|
1590
|
+
CreatedBy?: string | undefined;
|
|
1591
|
+
CreatedAt?: Date | undefined;
|
|
1592
|
+
EngagementId?: string | undefined;
|
|
1593
|
+
ResourceType?: ResourceType | undefined;
|
|
1594
|
+
ResourceId?: string | undefined;
|
|
1595
|
+
ResourceSnapshotTemplateName?: string | undefined;
|
|
1596
|
+
Revision?: number | undefined;
|
|
1597
|
+
Payload?: ResourceSnapshotPayload | undefined;
|
|
1598
|
+
}
|
|
1599
|
+
export interface ListEngagementResourceAssociationsRequest {
|
|
1600
|
+
Catalog: string | undefined;
|
|
1601
|
+
MaxResults?: number | undefined;
|
|
1602
|
+
NextToken?: string | undefined;
|
|
1603
|
+
EngagementIdentifier?: string | undefined;
|
|
1604
|
+
ResourceType?: ResourceType | undefined;
|
|
1605
|
+
ResourceIdentifier?: string | undefined;
|
|
1606
|
+
CreatedBy?: string | undefined;
|
|
1607
|
+
}
|
|
1608
|
+
export interface EngagementResourceAssociationSummary {
|
|
1609
|
+
Catalog: string | undefined;
|
|
1610
|
+
EngagementId?: string | undefined;
|
|
1611
|
+
ResourceType?: ResourceType | undefined;
|
|
1612
|
+
ResourceId?: string | undefined;
|
|
1613
|
+
CreatedBy?: string | undefined;
|
|
1614
|
+
}
|
|
1615
|
+
export interface ListEngagementResourceAssociationsResponse {
|
|
1616
|
+
EngagementResourceAssociationSummaries:
|
|
1617
|
+
| EngagementResourceAssociationSummary[]
|
|
1618
|
+
| undefined;
|
|
1619
|
+
NextToken?: string | undefined;
|
|
1620
|
+
}
|
|
1621
|
+
export interface ListResourceSnapshotsRequest {
|
|
1622
|
+
Catalog: string | undefined;
|
|
1623
|
+
MaxResults?: number | undefined;
|
|
1624
|
+
NextToken?: string | undefined;
|
|
1625
|
+
EngagementIdentifier: string | undefined;
|
|
1626
|
+
ResourceType?: ResourceType | undefined;
|
|
1627
|
+
ResourceIdentifier?: string | undefined;
|
|
1628
|
+
ResourceSnapshotTemplateIdentifier?: string | undefined;
|
|
1629
|
+
CreatedBy?: string | undefined;
|
|
1630
|
+
}
|
|
1631
|
+
export interface ResourceSnapshotSummary {
|
|
1632
|
+
Arn?: string | undefined;
|
|
1633
|
+
Revision?: number | undefined;
|
|
1634
|
+
ResourceType?: ResourceType | undefined;
|
|
1635
|
+
ResourceId?: string | undefined;
|
|
1636
|
+
ResourceSnapshotTemplateName?: string | undefined;
|
|
1637
|
+
CreatedBy?: string | undefined;
|
|
1638
|
+
}
|
|
1639
|
+
export interface ListResourceSnapshotsResponse {
|
|
1640
|
+
ResourceSnapshotSummaries: ResourceSnapshotSummary[] | undefined;
|
|
1641
|
+
NextToken?: string | undefined;
|
|
1642
|
+
}
|
|
1643
|
+
export interface CreateResourceSnapshotJobRequest {
|
|
1644
|
+
Catalog: string | undefined;
|
|
1645
|
+
ClientToken?: string | undefined;
|
|
1646
|
+
EngagementIdentifier: string | undefined;
|
|
1647
|
+
ResourceType: ResourceType | undefined;
|
|
1648
|
+
ResourceIdentifier: string | undefined;
|
|
1649
|
+
ResourceSnapshotTemplateIdentifier: string | undefined;
|
|
1650
|
+
}
|
|
1651
|
+
export interface CreateResourceSnapshotJobResponse {
|
|
1652
|
+
Id?: string | undefined;
|
|
1653
|
+
Arn?: string | undefined;
|
|
1654
|
+
}
|
|
1655
|
+
export interface DeleteResourceSnapshotJobRequest {
|
|
1656
|
+
Catalog: string | undefined;
|
|
1657
|
+
ResourceSnapshotJobIdentifier: string | undefined;
|
|
1658
|
+
}
|
|
1659
|
+
export interface GetResourceSnapshotJobRequest {
|
|
1660
|
+
Catalog: string | undefined;
|
|
1661
|
+
ResourceSnapshotJobIdentifier: string | undefined;
|
|
1662
|
+
}
|
|
1663
|
+
export declare const ResourceSnapshotJobStatus: {
|
|
1664
|
+
readonly RUNNING: "Running";
|
|
1665
|
+
readonly STOPPED: "Stopped";
|
|
1666
|
+
};
|
|
1667
|
+
export type ResourceSnapshotJobStatus =
|
|
1668
|
+
(typeof ResourceSnapshotJobStatus)[keyof typeof ResourceSnapshotJobStatus];
|
|
1669
|
+
export interface GetResourceSnapshotJobResponse {
|
|
1670
|
+
Catalog: string | undefined;
|
|
1671
|
+
Id?: string | undefined;
|
|
1672
|
+
Arn?: string | undefined;
|
|
1673
|
+
EngagementId?: string | undefined;
|
|
1674
|
+
ResourceType?: ResourceType | undefined;
|
|
1675
|
+
ResourceId?: string | undefined;
|
|
1676
|
+
ResourceArn?: string | undefined;
|
|
1677
|
+
ResourceSnapshotTemplateName?: string | undefined;
|
|
1678
|
+
CreatedAt?: Date | undefined;
|
|
1679
|
+
Status?: ResourceSnapshotJobStatus | undefined;
|
|
1680
|
+
LastSuccessfulExecutionDate?: Date | undefined;
|
|
1681
|
+
LastFailure?: string | undefined;
|
|
1682
|
+
}
|
|
1683
|
+
export declare const SortBy: {
|
|
1684
|
+
readonly CREATED_DATE: "CreatedDate";
|
|
1685
|
+
};
|
|
1686
|
+
export type SortBy = (typeof SortBy)[keyof typeof SortBy];
|
|
1687
|
+
export interface SortObject {
|
|
1688
|
+
SortBy?: SortBy | undefined;
|
|
1689
|
+
SortOrder?: SortOrder | undefined;
|
|
1690
|
+
}
|
|
1691
|
+
export interface ListResourceSnapshotJobsRequest {
|
|
1692
|
+
Catalog: string | undefined;
|
|
1693
|
+
MaxResults?: number | undefined;
|
|
1694
|
+
NextToken?: string | undefined;
|
|
1695
|
+
EngagementIdentifier?: string | undefined;
|
|
1696
|
+
Status?: ResourceSnapshotJobStatus | undefined;
|
|
1697
|
+
Sort?: SortObject | undefined;
|
|
1698
|
+
}
|
|
1699
|
+
export interface ResourceSnapshotJobSummary {
|
|
1700
|
+
Id?: string | undefined;
|
|
1701
|
+
Arn?: string | undefined;
|
|
1702
|
+
EngagementId?: string | undefined;
|
|
1703
|
+
Status?: ResourceSnapshotJobStatus | undefined;
|
|
1704
|
+
}
|
|
1705
|
+
export interface ListResourceSnapshotJobsResponse {
|
|
1706
|
+
ResourceSnapshotJobSummaries: ResourceSnapshotJobSummary[] | undefined;
|
|
1707
|
+
NextToken?: string | undefined;
|
|
1708
|
+
}
|
|
1709
|
+
export interface StartResourceSnapshotJobRequest {
|
|
1710
|
+
Catalog: string | undefined;
|
|
1711
|
+
ResourceSnapshotJobIdentifier: string | undefined;
|
|
1712
|
+
}
|
|
1713
|
+
export interface StopResourceSnapshotJobRequest {
|
|
1714
|
+
Catalog: string | undefined;
|
|
1715
|
+
ResourceSnapshotJobIdentifier: string | undefined;
|
|
1716
|
+
}
|
|
1717
|
+
export interface GetSellingSystemSettingsRequest {
|
|
1718
|
+
Catalog: string | undefined;
|
|
1719
|
+
}
|
|
1720
|
+
export interface GetSellingSystemSettingsResponse {
|
|
1721
|
+
Catalog: string | undefined;
|
|
1722
|
+
ResourceSnapshotJobRoleArn?: string | undefined;
|
|
1723
|
+
}
|
|
1724
|
+
export interface PutSellingSystemSettingsRequest {
|
|
1725
|
+
Catalog: string | undefined;
|
|
1726
|
+
ResourceSnapshotJobRoleIdentifier?: string | undefined;
|
|
1727
|
+
}
|
|
1728
|
+
export interface PutSellingSystemSettingsResponse {
|
|
1729
|
+
Catalog: string | undefined;
|
|
1730
|
+
ResourceSnapshotJobRoleArn?: string | undefined;
|
|
1731
|
+
}
|
|
1303
1732
|
export declare const SolutionSortName: {
|
|
1304
1733
|
readonly CATEGORY: "Category";
|
|
1305
1734
|
readonly CREATEDDATE: "CreatedDate";
|
|
@@ -1332,6 +1761,7 @@ export interface ListSolutionsRequest {
|
|
|
1332
1761
|
export interface SolutionBase {
|
|
1333
1762
|
Catalog: string | undefined;
|
|
1334
1763
|
Id: string | undefined;
|
|
1764
|
+
Arn?: string | undefined;
|
|
1335
1765
|
Name: string | undefined;
|
|
1336
1766
|
Status: SolutionStatus | undefined;
|
|
1337
1767
|
Category: string | undefined;
|
|
@@ -1377,6 +1807,39 @@ export declare const AwsTeamMemberFilterSensitiveLog: (
|
|
|
1377
1807
|
export declare const EngagementCustomerFilterSensitiveLog: (
|
|
1378
1808
|
obj: EngagementCustomer
|
|
1379
1809
|
) => any;
|
|
1810
|
+
export declare const EngagementCustomerProjectDetailsFilterSensitiveLog: (
|
|
1811
|
+
obj: EngagementCustomerProjectDetails
|
|
1812
|
+
) => any;
|
|
1813
|
+
export declare const CustomerProjectsContextFilterSensitiveLog: (
|
|
1814
|
+
obj: CustomerProjectsContext
|
|
1815
|
+
) => any;
|
|
1816
|
+
export declare const EngagementContextPayloadFilterSensitiveLog: (
|
|
1817
|
+
obj: EngagementContextPayload
|
|
1818
|
+
) => any;
|
|
1819
|
+
export declare const EngagementContextDetailsFilterSensitiveLog: (
|
|
1820
|
+
obj: EngagementContextDetails
|
|
1821
|
+
) => any;
|
|
1822
|
+
export declare const CreateEngagementRequestFilterSensitiveLog: (
|
|
1823
|
+
obj: CreateEngagementRequest
|
|
1824
|
+
) => any;
|
|
1825
|
+
export declare const GetEngagementResponseFilterSensitiveLog: (
|
|
1826
|
+
obj: GetEngagementResponse
|
|
1827
|
+
) => any;
|
|
1828
|
+
export declare const EngagementMemberFilterSensitiveLog: (
|
|
1829
|
+
obj: EngagementMember
|
|
1830
|
+
) => any;
|
|
1831
|
+
export declare const ListEngagementMembersResponseFilterSensitiveLog: (
|
|
1832
|
+
obj: ListEngagementMembersResponse
|
|
1833
|
+
) => any;
|
|
1834
|
+
export declare const ListEngagementsRequestFilterSensitiveLog: (
|
|
1835
|
+
obj: ListEngagementsRequest
|
|
1836
|
+
) => any;
|
|
1837
|
+
export declare const EngagementSummaryFilterSensitiveLog: (
|
|
1838
|
+
obj: EngagementSummary
|
|
1839
|
+
) => any;
|
|
1840
|
+
export declare const ListEngagementsResponseFilterSensitiveLog: (
|
|
1841
|
+
obj: ListEngagementsResponse
|
|
1842
|
+
) => any;
|
|
1380
1843
|
export declare const ProjectDetailsFilterSensitiveLog: (
|
|
1381
1844
|
obj: ProjectDetails
|
|
1382
1845
|
) => any;
|
|
@@ -1388,9 +1851,16 @@ export declare const OpportunityInvitationPayloadFilterSensitiveLog: (
|
|
|
1388
1851
|
) => any;
|
|
1389
1852
|
export declare const PayloadFilterSensitiveLog: (obj: Payload) => any;
|
|
1390
1853
|
export declare const ReceiverFilterSensitiveLog: (obj: Receiver) => any;
|
|
1854
|
+
export declare const InvitationFilterSensitiveLog: (obj: Invitation) => any;
|
|
1855
|
+
export declare const CreateEngagementInvitationRequestFilterSensitiveLog: (
|
|
1856
|
+
obj: CreateEngagementInvitationRequest
|
|
1857
|
+
) => any;
|
|
1391
1858
|
export declare const GetEngagementInvitationResponseFilterSensitiveLog: (
|
|
1392
1859
|
obj: GetEngagementInvitationResponse
|
|
1393
1860
|
) => any;
|
|
1861
|
+
export declare const ListEngagementInvitationsRequestFilterSensitiveLog: (
|
|
1862
|
+
obj: ListEngagementInvitationsRequest
|
|
1863
|
+
) => any;
|
|
1394
1864
|
export declare const EngagementInvitationSummaryFilterSensitiveLog: (
|
|
1395
1865
|
obj: EngagementInvitationSummary
|
|
1396
1866
|
) => any;
|
|
@@ -1433,3 +1903,34 @@ export declare const ListOpportunitiesResponseFilterSensitiveLog: (
|
|
|
1433
1903
|
export declare const UpdateOpportunityRequestFilterSensitiveLog: (
|
|
1434
1904
|
obj: UpdateOpportunityRequest
|
|
1435
1905
|
) => any;
|
|
1906
|
+
export declare const LifeCycleForViewFilterSensitiveLog: (
|
|
1907
|
+
obj: LifeCycleForView
|
|
1908
|
+
) => any;
|
|
1909
|
+
export declare const ProjectViewFilterSensitiveLog: (obj: ProjectView) => any;
|
|
1910
|
+
export declare const OpportunitySummaryViewFilterSensitiveLog: (
|
|
1911
|
+
obj: OpportunitySummaryView
|
|
1912
|
+
) => any;
|
|
1913
|
+
export declare const ResourceSnapshotPayloadFilterSensitiveLog: (
|
|
1914
|
+
obj: ResourceSnapshotPayload
|
|
1915
|
+
) => any;
|
|
1916
|
+
export declare const GetResourceSnapshotResponseFilterSensitiveLog: (
|
|
1917
|
+
obj: GetResourceSnapshotResponse
|
|
1918
|
+
) => any;
|
|
1919
|
+
export declare const ListEngagementResourceAssociationsRequestFilterSensitiveLog: (
|
|
1920
|
+
obj: ListEngagementResourceAssociationsRequest
|
|
1921
|
+
) => any;
|
|
1922
|
+
export declare const EngagementResourceAssociationSummaryFilterSensitiveLog: (
|
|
1923
|
+
obj: EngagementResourceAssociationSummary
|
|
1924
|
+
) => any;
|
|
1925
|
+
export declare const ListEngagementResourceAssociationsResponseFilterSensitiveLog: (
|
|
1926
|
+
obj: ListEngagementResourceAssociationsResponse
|
|
1927
|
+
) => any;
|
|
1928
|
+
export declare const ListResourceSnapshotsRequestFilterSensitiveLog: (
|
|
1929
|
+
obj: ListResourceSnapshotsRequest
|
|
1930
|
+
) => any;
|
|
1931
|
+
export declare const ResourceSnapshotSummaryFilterSensitiveLog: (
|
|
1932
|
+
obj: ResourceSnapshotSummary
|
|
1933
|
+
) => any;
|
|
1934
|
+
export declare const ListResourceSnapshotsResponseFilterSensitiveLog: (
|
|
1935
|
+
obj: ListResourceSnapshotsResponse
|
|
1936
|
+
) => any;
|