@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.
Files changed (153) hide show
  1. package/README.md +206 -45
  2. package/dist-cjs/PartnerCentralSelling.js +42 -0
  3. package/dist-cjs/commands/AcceptEngagementInvitationCommand.js +26 -0
  4. package/dist-cjs/commands/CreateEngagementCommand.js +27 -0
  5. package/dist-cjs/commands/CreateEngagementInvitationCommand.js +27 -0
  6. package/dist-cjs/commands/CreateResourceSnapshotCommand.js +26 -0
  7. package/dist-cjs/commands/CreateResourceSnapshotJobCommand.js +26 -0
  8. package/dist-cjs/commands/DeleteResourceSnapshotJobCommand.js +26 -0
  9. package/dist-cjs/commands/GetEngagementCommand.js +27 -0
  10. package/dist-cjs/commands/GetResourceSnapshotCommand.js +27 -0
  11. package/dist-cjs/commands/GetResourceSnapshotJobCommand.js +26 -0
  12. package/dist-cjs/commands/GetSellingSystemSettingsCommand.js +26 -0
  13. package/dist-cjs/commands/ListEngagementByAcceptingInvitationTasksCommand.js +26 -0
  14. package/dist-cjs/commands/ListEngagementFromOpportunityTasksCommand.js +26 -0
  15. package/dist-cjs/commands/ListEngagementInvitationsCommand.js +1 -1
  16. package/dist-cjs/commands/ListEngagementMembersCommand.js +27 -0
  17. package/dist-cjs/commands/ListEngagementResourceAssociationsCommand.js +27 -0
  18. package/dist-cjs/commands/ListEngagementsCommand.js +27 -0
  19. package/dist-cjs/commands/ListResourceSnapshotJobsCommand.js +26 -0
  20. package/dist-cjs/commands/ListResourceSnapshotsCommand.js +27 -0
  21. package/dist-cjs/commands/PutSellingSystemSettingsCommand.js +26 -0
  22. package/dist-cjs/commands/StartResourceSnapshotJobCommand.js +26 -0
  23. package/dist-cjs/commands/StopResourceSnapshotJobCommand.js +26 -0
  24. package/dist-cjs/commands/SubmitOpportunityCommand.js +26 -0
  25. package/dist-cjs/commands/index.js +21 -0
  26. package/dist-cjs/models/models_0.js +281 -87
  27. package/dist-cjs/pagination/ListEngagementByAcceptingInvitationTasksPaginator.js +7 -0
  28. package/dist-cjs/pagination/ListEngagementFromOpportunityTasksPaginator.js +7 -0
  29. package/dist-cjs/pagination/ListEngagementMembersPaginator.js +7 -0
  30. package/dist-cjs/pagination/ListEngagementResourceAssociationsPaginator.js +7 -0
  31. package/dist-cjs/pagination/ListEngagementsPaginator.js +7 -0
  32. package/dist-cjs/pagination/ListResourceSnapshotJobsPaginator.js +7 -0
  33. package/dist-cjs/pagination/ListResourceSnapshotsPaginator.js +7 -0
  34. package/dist-cjs/pagination/index.js +7 -0
  35. package/dist-cjs/protocols/Aws_json1_0.js +599 -1
  36. package/dist-es/PartnerCentralSelling.js +42 -0
  37. package/dist-es/commands/AcceptEngagementInvitationCommand.js +22 -0
  38. package/dist-es/commands/CreateEngagementCommand.js +23 -0
  39. package/dist-es/commands/CreateEngagementInvitationCommand.js +23 -0
  40. package/dist-es/commands/CreateResourceSnapshotCommand.js +22 -0
  41. package/dist-es/commands/CreateResourceSnapshotJobCommand.js +22 -0
  42. package/dist-es/commands/DeleteResourceSnapshotJobCommand.js +22 -0
  43. package/dist-es/commands/GetEngagementCommand.js +23 -0
  44. package/dist-es/commands/GetResourceSnapshotCommand.js +23 -0
  45. package/dist-es/commands/GetResourceSnapshotJobCommand.js +22 -0
  46. package/dist-es/commands/GetSellingSystemSettingsCommand.js +22 -0
  47. package/dist-es/commands/ListEngagementByAcceptingInvitationTasksCommand.js +22 -0
  48. package/dist-es/commands/ListEngagementFromOpportunityTasksCommand.js +22 -0
  49. package/dist-es/commands/ListEngagementInvitationsCommand.js +2 -2
  50. package/dist-es/commands/ListEngagementMembersCommand.js +23 -0
  51. package/dist-es/commands/ListEngagementResourceAssociationsCommand.js +23 -0
  52. package/dist-es/commands/ListEngagementsCommand.js +23 -0
  53. package/dist-es/commands/ListResourceSnapshotJobsCommand.js +22 -0
  54. package/dist-es/commands/ListResourceSnapshotsCommand.js +23 -0
  55. package/dist-es/commands/PutSellingSystemSettingsCommand.js +22 -0
  56. package/dist-es/commands/StartResourceSnapshotJobCommand.js +22 -0
  57. package/dist-es/commands/StopResourceSnapshotJobCommand.js +22 -0
  58. package/dist-es/commands/SubmitOpportunityCommand.js +22 -0
  59. package/dist-es/commands/index.js +21 -0
  60. package/dist-es/models/models_0.js +249 -81
  61. package/dist-es/pagination/ListEngagementByAcceptingInvitationTasksPaginator.js +4 -0
  62. package/dist-es/pagination/ListEngagementFromOpportunityTasksPaginator.js +4 -0
  63. package/dist-es/pagination/ListEngagementMembersPaginator.js +4 -0
  64. package/dist-es/pagination/ListEngagementResourceAssociationsPaginator.js +4 -0
  65. package/dist-es/pagination/ListEngagementsPaginator.js +4 -0
  66. package/dist-es/pagination/ListResourceSnapshotJobsPaginator.js +4 -0
  67. package/dist-es/pagination/ListResourceSnapshotsPaginator.js +4 -0
  68. package/dist-es/pagination/index.js +7 -0
  69. package/dist-es/protocols/Aws_json1_0.js +556 -1
  70. package/dist-types/PartnerCentralSelling.d.ts +182 -42
  71. package/dist-types/PartnerCentralSellingClient.d.ts +58 -44
  72. package/dist-types/commands/AcceptEngagementInvitationCommand.d.ts +103 -0
  73. package/dist-types/commands/AssignOpportunityCommand.d.ts +27 -32
  74. package/dist-types/commands/AssociateOpportunityCommand.d.ts +40 -46
  75. package/dist-types/commands/CreateEngagementCommand.d.ts +136 -0
  76. package/dist-types/commands/CreateEngagementInvitationCommand.d.ts +158 -0
  77. package/dist-types/commands/CreateOpportunityCommand.d.ts +40 -46
  78. package/dist-types/commands/CreateResourceSnapshotCommand.d.ts +117 -0
  79. package/dist-types/commands/CreateResourceSnapshotJobCommand.d.ts +119 -0
  80. package/dist-types/commands/DeleteResourceSnapshotJobCommand.d.ts +96 -0
  81. package/dist-types/commands/DisassociateOpportunityCommand.d.ts +29 -34
  82. package/dist-types/commands/GetAwsOpportunitySummaryCommand.d.ts +24 -28
  83. package/dist-types/commands/GetEngagementCommand.d.ts +124 -0
  84. package/dist-types/commands/GetEngagementInvitationCommand.d.ts +34 -24
  85. package/dist-types/commands/GetOpportunityCommand.d.ts +24 -29
  86. package/dist-types/commands/GetResourceSnapshotCommand.d.ts +186 -0
  87. package/dist-types/commands/GetResourceSnapshotJobCommand.d.ts +109 -0
  88. package/dist-types/commands/GetSellingSystemSettingsCommand.d.ts +95 -0
  89. package/dist-types/commands/ListEngagementByAcceptingInvitationTasksCommand.d.ts +128 -0
  90. package/dist-types/commands/ListEngagementFromOpportunityTasksCommand.d.ts +129 -0
  91. package/dist-types/commands/ListEngagementInvitationsCommand.d.ts +34 -25
  92. package/dist-types/commands/ListEngagementMembersCommand.d.ts +109 -0
  93. package/dist-types/commands/ListEngagementResourceAssociationsCommand.d.ts +112 -0
  94. package/dist-types/commands/ListEngagementsCommand.d.ts +123 -0
  95. package/dist-types/commands/ListOpportunitiesCommand.d.ts +35 -39
  96. package/dist-types/commands/ListResourceSnapshotJobsCommand.d.ts +108 -0
  97. package/dist-types/commands/ListResourceSnapshotsCommand.d.ts +113 -0
  98. package/dist-types/commands/ListSolutionsCommand.d.ts +20 -20
  99. package/dist-types/commands/PutSellingSystemSettingsCommand.d.ts +96 -0
  100. package/dist-types/commands/RejectEngagementInvitationCommand.d.ts +22 -27
  101. package/dist-types/commands/StartEngagementByAcceptingInvitationTaskCommand.d.ts +37 -35
  102. package/dist-types/commands/StartEngagementFromOpportunityTaskCommand.d.ts +37 -35
  103. package/dist-types/commands/StartResourceSnapshotJobCommand.d.ts +95 -0
  104. package/dist-types/commands/StopResourceSnapshotJobCommand.d.ts +95 -0
  105. package/dist-types/commands/SubmitOpportunityCommand.d.ts +106 -0
  106. package/dist-types/commands/UpdateOpportunityCommand.d.ts +33 -35
  107. package/dist-types/commands/index.d.ts +21 -0
  108. package/dist-types/index.d.ts +35 -42
  109. package/dist-types/models/models_0.d.ts +4764 -2209
  110. package/dist-types/pagination/ListEngagementByAcceptingInvitationTasksPaginator.d.ts +7 -0
  111. package/dist-types/pagination/ListEngagementFromOpportunityTasksPaginator.d.ts +7 -0
  112. package/dist-types/pagination/ListEngagementMembersPaginator.d.ts +7 -0
  113. package/dist-types/pagination/ListEngagementResourceAssociationsPaginator.d.ts +7 -0
  114. package/dist-types/pagination/ListEngagementsPaginator.d.ts +7 -0
  115. package/dist-types/pagination/ListResourceSnapshotJobsPaginator.d.ts +7 -0
  116. package/dist-types/pagination/ListResourceSnapshotsPaginator.d.ts +7 -0
  117. package/dist-types/pagination/index.d.ts +7 -0
  118. package/dist-types/protocols/Aws_json1_0.d.ts +189 -0
  119. package/dist-types/ts3.4/PartnerCentralSelling.d.ts +375 -0
  120. package/dist-types/ts3.4/PartnerCentralSellingClient.d.ts +126 -0
  121. package/dist-types/ts3.4/commands/AcceptEngagementInvitationCommand.d.ts +47 -0
  122. package/dist-types/ts3.4/commands/CreateEngagementCommand.d.ts +50 -0
  123. package/dist-types/ts3.4/commands/CreateEngagementInvitationCommand.d.ts +51 -0
  124. package/dist-types/ts3.4/commands/CreateResourceSnapshotCommand.d.ts +51 -0
  125. package/dist-types/ts3.4/commands/CreateResourceSnapshotJobCommand.d.ts +51 -0
  126. package/dist-types/ts3.4/commands/DeleteResourceSnapshotJobCommand.d.ts +47 -0
  127. package/dist-types/ts3.4/commands/GetEngagementCommand.d.ts +50 -0
  128. package/dist-types/ts3.4/commands/GetResourceSnapshotCommand.d.ts +51 -0
  129. package/dist-types/ts3.4/commands/GetResourceSnapshotJobCommand.d.ts +51 -0
  130. package/dist-types/ts3.4/commands/GetSellingSystemSettingsCommand.d.ts +51 -0
  131. package/dist-types/ts3.4/commands/ListEngagementByAcceptingInvitationTasksCommand.d.ts +51 -0
  132. package/dist-types/ts3.4/commands/ListEngagementFromOpportunityTasksCommand.d.ts +51 -0
  133. package/dist-types/ts3.4/commands/ListEngagementMembersCommand.d.ts +51 -0
  134. package/dist-types/ts3.4/commands/ListEngagementResourceAssociationsCommand.d.ts +51 -0
  135. package/dist-types/ts3.4/commands/ListEngagementsCommand.d.ts +50 -0
  136. package/dist-types/ts3.4/commands/ListResourceSnapshotJobsCommand.d.ts +51 -0
  137. package/dist-types/ts3.4/commands/ListResourceSnapshotsCommand.d.ts +51 -0
  138. package/dist-types/ts3.4/commands/PutSellingSystemSettingsCommand.d.ts +51 -0
  139. package/dist-types/ts3.4/commands/StartResourceSnapshotJobCommand.d.ts +47 -0
  140. package/dist-types/ts3.4/commands/StopResourceSnapshotJobCommand.d.ts +47 -0
  141. package/dist-types/ts3.4/commands/SubmitOpportunityCommand.d.ts +46 -0
  142. package/dist-types/ts3.4/commands/index.d.ts +21 -0
  143. package/dist-types/ts3.4/models/models_0.d.ts +587 -86
  144. package/dist-types/ts3.4/pagination/ListEngagementByAcceptingInvitationTasksPaginator.d.ts +11 -0
  145. package/dist-types/ts3.4/pagination/ListEngagementFromOpportunityTasksPaginator.d.ts +11 -0
  146. package/dist-types/ts3.4/pagination/ListEngagementMembersPaginator.d.ts +11 -0
  147. package/dist-types/ts3.4/pagination/ListEngagementResourceAssociationsPaginator.d.ts +11 -0
  148. package/dist-types/ts3.4/pagination/ListEngagementsPaginator.d.ts +11 -0
  149. package/dist-types/ts3.4/pagination/ListResourceSnapshotJobsPaginator.d.ts +11 -0
  150. package/dist-types/ts3.4/pagination/ListResourceSnapshotsPaginator.d.ts +11 -0
  151. package/dist-types/ts3.4/pagination/index.d.ts +7 -0
  152. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +252 -0
  153. package/package.json +35 -35
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListEngagementByAcceptingInvitationTasksCommandInput,
4
+ ListEngagementByAcceptingInvitationTasksCommandOutput,
5
+ } from "../commands/ListEngagementByAcceptingInvitationTasksCommand";
6
+ import { PartnerCentralSellingPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListEngagementByAcceptingInvitationTasks: (
8
+ config: PartnerCentralSellingPaginationConfiguration,
9
+ input: ListEngagementByAcceptingInvitationTasksCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListEngagementByAcceptingInvitationTasksCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListEngagementFromOpportunityTasksCommandInput,
4
+ ListEngagementFromOpportunityTasksCommandOutput,
5
+ } from "../commands/ListEngagementFromOpportunityTasksCommand";
6
+ import { PartnerCentralSellingPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListEngagementFromOpportunityTasks: (
8
+ config: PartnerCentralSellingPaginationConfiguration,
9
+ input: ListEngagementFromOpportunityTasksCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListEngagementFromOpportunityTasksCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListEngagementMembersCommandInput,
4
+ ListEngagementMembersCommandOutput,
5
+ } from "../commands/ListEngagementMembersCommand";
6
+ import { PartnerCentralSellingPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListEngagementMembers: (
8
+ config: PartnerCentralSellingPaginationConfiguration,
9
+ input: ListEngagementMembersCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListEngagementMembersCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListEngagementResourceAssociationsCommandInput,
4
+ ListEngagementResourceAssociationsCommandOutput,
5
+ } from "../commands/ListEngagementResourceAssociationsCommand";
6
+ import { PartnerCentralSellingPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListEngagementResourceAssociations: (
8
+ config: PartnerCentralSellingPaginationConfiguration,
9
+ input: ListEngagementResourceAssociationsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListEngagementResourceAssociationsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListEngagementsCommandInput,
4
+ ListEngagementsCommandOutput,
5
+ } from "../commands/ListEngagementsCommand";
6
+ import { PartnerCentralSellingPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListEngagements: (
8
+ config: PartnerCentralSellingPaginationConfiguration,
9
+ input: ListEngagementsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListEngagementsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListResourceSnapshotJobsCommandInput,
4
+ ListResourceSnapshotJobsCommandOutput,
5
+ } from "../commands/ListResourceSnapshotJobsCommand";
6
+ import { PartnerCentralSellingPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListResourceSnapshotJobs: (
8
+ config: PartnerCentralSellingPaginationConfiguration,
9
+ input: ListResourceSnapshotJobsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListResourceSnapshotJobsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListResourceSnapshotsCommandInput,
4
+ ListResourceSnapshotsCommandOutput,
5
+ } from "../commands/ListResourceSnapshotsCommand";
6
+ import { PartnerCentralSellingPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListResourceSnapshots: (
8
+ config: PartnerCentralSellingPaginationConfiguration,
9
+ input: ListResourceSnapshotsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListResourceSnapshotsCommandOutput>;
@@ -1,4 +1,11 @@
1
1
  export * from "./Interfaces";
2
+ export * from "./ListEngagementByAcceptingInvitationTasksPaginator";
3
+ export * from "./ListEngagementFromOpportunityTasksPaginator";
2
4
  export * from "./ListEngagementInvitationsPaginator";
5
+ export * from "./ListEngagementMembersPaginator";
6
+ export * from "./ListEngagementResourceAssociationsPaginator";
7
+ export * from "./ListEngagementsPaginator";
3
8
  export * from "./ListOpportunitiesPaginator";
9
+ export * from "./ListResourceSnapshotJobsPaginator";
10
+ export * from "./ListResourceSnapshotsPaginator";
4
11
  export * from "./ListSolutionsPaginator";
@@ -3,6 +3,10 @@ import {
3
3
  HttpResponse as __HttpResponse,
4
4
  } from "@smithy/protocol-http";
5
5
  import { SerdeContext as __SerdeContext } from "@smithy/types";
6
+ import {
7
+ AcceptEngagementInvitationCommandInput,
8
+ AcceptEngagementInvitationCommandOutput,
9
+ } from "../commands/AcceptEngagementInvitationCommand";
6
10
  import {
7
11
  AssignOpportunityCommandInput,
8
12
  AssignOpportunityCommandOutput,
@@ -11,10 +15,30 @@ import {
11
15
  AssociateOpportunityCommandInput,
12
16
  AssociateOpportunityCommandOutput,
13
17
  } from "../commands/AssociateOpportunityCommand";
18
+ import {
19
+ CreateEngagementCommandInput,
20
+ CreateEngagementCommandOutput,
21
+ } from "../commands/CreateEngagementCommand";
22
+ import {
23
+ CreateEngagementInvitationCommandInput,
24
+ CreateEngagementInvitationCommandOutput,
25
+ } from "../commands/CreateEngagementInvitationCommand";
14
26
  import {
15
27
  CreateOpportunityCommandInput,
16
28
  CreateOpportunityCommandOutput,
17
29
  } from "../commands/CreateOpportunityCommand";
30
+ import {
31
+ CreateResourceSnapshotCommandInput,
32
+ CreateResourceSnapshotCommandOutput,
33
+ } from "../commands/CreateResourceSnapshotCommand";
34
+ import {
35
+ CreateResourceSnapshotJobCommandInput,
36
+ CreateResourceSnapshotJobCommandOutput,
37
+ } from "../commands/CreateResourceSnapshotJobCommand";
38
+ import {
39
+ DeleteResourceSnapshotJobCommandInput,
40
+ DeleteResourceSnapshotJobCommandOutput,
41
+ } from "../commands/DeleteResourceSnapshotJobCommand";
18
42
  import {
19
43
  DisassociateOpportunityCommandInput,
20
44
  DisassociateOpportunityCommandOutput,
@@ -23,6 +47,10 @@ import {
23
47
  GetAwsOpportunitySummaryCommandInput,
24
48
  GetAwsOpportunitySummaryCommandOutput,
25
49
  } from "../commands/GetAwsOpportunitySummaryCommand";
50
+ import {
51
+ GetEngagementCommandInput,
52
+ GetEngagementCommandOutput,
53
+ } from "../commands/GetEngagementCommand";
26
54
  import {
27
55
  GetEngagementInvitationCommandInput,
28
56
  GetEngagementInvitationCommandOutput,
@@ -31,18 +59,62 @@ import {
31
59
  GetOpportunityCommandInput,
32
60
  GetOpportunityCommandOutput,
33
61
  } from "../commands/GetOpportunityCommand";
62
+ import {
63
+ GetResourceSnapshotCommandInput,
64
+ GetResourceSnapshotCommandOutput,
65
+ } from "../commands/GetResourceSnapshotCommand";
66
+ import {
67
+ GetResourceSnapshotJobCommandInput,
68
+ GetResourceSnapshotJobCommandOutput,
69
+ } from "../commands/GetResourceSnapshotJobCommand";
70
+ import {
71
+ GetSellingSystemSettingsCommandInput,
72
+ GetSellingSystemSettingsCommandOutput,
73
+ } from "../commands/GetSellingSystemSettingsCommand";
74
+ import {
75
+ ListEngagementByAcceptingInvitationTasksCommandInput,
76
+ ListEngagementByAcceptingInvitationTasksCommandOutput,
77
+ } from "../commands/ListEngagementByAcceptingInvitationTasksCommand";
78
+ import {
79
+ ListEngagementFromOpportunityTasksCommandInput,
80
+ ListEngagementFromOpportunityTasksCommandOutput,
81
+ } from "../commands/ListEngagementFromOpportunityTasksCommand";
34
82
  import {
35
83
  ListEngagementInvitationsCommandInput,
36
84
  ListEngagementInvitationsCommandOutput,
37
85
  } from "../commands/ListEngagementInvitationsCommand";
86
+ import {
87
+ ListEngagementMembersCommandInput,
88
+ ListEngagementMembersCommandOutput,
89
+ } from "../commands/ListEngagementMembersCommand";
90
+ import {
91
+ ListEngagementResourceAssociationsCommandInput,
92
+ ListEngagementResourceAssociationsCommandOutput,
93
+ } from "../commands/ListEngagementResourceAssociationsCommand";
94
+ import {
95
+ ListEngagementsCommandInput,
96
+ ListEngagementsCommandOutput,
97
+ } from "../commands/ListEngagementsCommand";
38
98
  import {
39
99
  ListOpportunitiesCommandInput,
40
100
  ListOpportunitiesCommandOutput,
41
101
  } from "../commands/ListOpportunitiesCommand";
102
+ import {
103
+ ListResourceSnapshotJobsCommandInput,
104
+ ListResourceSnapshotJobsCommandOutput,
105
+ } from "../commands/ListResourceSnapshotJobsCommand";
106
+ import {
107
+ ListResourceSnapshotsCommandInput,
108
+ ListResourceSnapshotsCommandOutput,
109
+ } from "../commands/ListResourceSnapshotsCommand";
42
110
  import {
43
111
  ListSolutionsCommandInput,
44
112
  ListSolutionsCommandOutput,
45
113
  } from "../commands/ListSolutionsCommand";
114
+ import {
115
+ PutSellingSystemSettingsCommandInput,
116
+ PutSellingSystemSettingsCommandOutput,
117
+ } from "../commands/PutSellingSystemSettingsCommand";
46
118
  import {
47
119
  RejectEngagementInvitationCommandInput,
48
120
  RejectEngagementInvitationCommandOutput,
@@ -55,10 +127,26 @@ import {
55
127
  StartEngagementFromOpportunityTaskCommandInput,
56
128
  StartEngagementFromOpportunityTaskCommandOutput,
57
129
  } from "../commands/StartEngagementFromOpportunityTaskCommand";
130
+ import {
131
+ StartResourceSnapshotJobCommandInput,
132
+ StartResourceSnapshotJobCommandOutput,
133
+ } from "../commands/StartResourceSnapshotJobCommand";
134
+ import {
135
+ StopResourceSnapshotJobCommandInput,
136
+ StopResourceSnapshotJobCommandOutput,
137
+ } from "../commands/StopResourceSnapshotJobCommand";
138
+ import {
139
+ SubmitOpportunityCommandInput,
140
+ SubmitOpportunityCommandOutput,
141
+ } from "../commands/SubmitOpportunityCommand";
58
142
  import {
59
143
  UpdateOpportunityCommandInput,
60
144
  UpdateOpportunityCommandOutput,
61
145
  } from "../commands/UpdateOpportunityCommand";
146
+ export declare const se_AcceptEngagementInvitationCommand: (
147
+ input: AcceptEngagementInvitationCommandInput,
148
+ context: __SerdeContext
149
+ ) => Promise<__HttpRequest>;
62
150
  export declare const se_AssignOpportunityCommand: (
63
151
  input: AssignOpportunityCommandInput,
64
152
  context: __SerdeContext
@@ -67,10 +155,30 @@ export declare const se_AssociateOpportunityCommand: (
67
155
  input: AssociateOpportunityCommandInput,
68
156
  context: __SerdeContext
69
157
  ) => Promise<__HttpRequest>;
158
+ export declare const se_CreateEngagementCommand: (
159
+ input: CreateEngagementCommandInput,
160
+ context: __SerdeContext
161
+ ) => Promise<__HttpRequest>;
162
+ export declare const se_CreateEngagementInvitationCommand: (
163
+ input: CreateEngagementInvitationCommandInput,
164
+ context: __SerdeContext
165
+ ) => Promise<__HttpRequest>;
70
166
  export declare const se_CreateOpportunityCommand: (
71
167
  input: CreateOpportunityCommandInput,
72
168
  context: __SerdeContext
73
169
  ) => Promise<__HttpRequest>;
170
+ export declare const se_CreateResourceSnapshotCommand: (
171
+ input: CreateResourceSnapshotCommandInput,
172
+ context: __SerdeContext
173
+ ) => Promise<__HttpRequest>;
174
+ export declare const se_CreateResourceSnapshotJobCommand: (
175
+ input: CreateResourceSnapshotJobCommandInput,
176
+ context: __SerdeContext
177
+ ) => Promise<__HttpRequest>;
178
+ export declare const se_DeleteResourceSnapshotJobCommand: (
179
+ input: DeleteResourceSnapshotJobCommandInput,
180
+ context: __SerdeContext
181
+ ) => Promise<__HttpRequest>;
74
182
  export declare const se_DisassociateOpportunityCommand: (
75
183
  input: DisassociateOpportunityCommandInput,
76
184
  context: __SerdeContext
@@ -79,6 +187,10 @@ export declare const se_GetAwsOpportunitySummaryCommand: (
79
187
  input: GetAwsOpportunitySummaryCommandInput,
80
188
  context: __SerdeContext
81
189
  ) => Promise<__HttpRequest>;
190
+ export declare const se_GetEngagementCommand: (
191
+ input: GetEngagementCommandInput,
192
+ context: __SerdeContext
193
+ ) => Promise<__HttpRequest>;
82
194
  export declare const se_GetEngagementInvitationCommand: (
83
195
  input: GetEngagementInvitationCommandInput,
84
196
  context: __SerdeContext
@@ -87,18 +199,62 @@ export declare const se_GetOpportunityCommand: (
87
199
  input: GetOpportunityCommandInput,
88
200
  context: __SerdeContext
89
201
  ) => Promise<__HttpRequest>;
202
+ export declare const se_GetResourceSnapshotCommand: (
203
+ input: GetResourceSnapshotCommandInput,
204
+ context: __SerdeContext
205
+ ) => Promise<__HttpRequest>;
206
+ export declare const se_GetResourceSnapshotJobCommand: (
207
+ input: GetResourceSnapshotJobCommandInput,
208
+ context: __SerdeContext
209
+ ) => Promise<__HttpRequest>;
210
+ export declare const se_GetSellingSystemSettingsCommand: (
211
+ input: GetSellingSystemSettingsCommandInput,
212
+ context: __SerdeContext
213
+ ) => Promise<__HttpRequest>;
214
+ export declare const se_ListEngagementByAcceptingInvitationTasksCommand: (
215
+ input: ListEngagementByAcceptingInvitationTasksCommandInput,
216
+ context: __SerdeContext
217
+ ) => Promise<__HttpRequest>;
218
+ export declare const se_ListEngagementFromOpportunityTasksCommand: (
219
+ input: ListEngagementFromOpportunityTasksCommandInput,
220
+ context: __SerdeContext
221
+ ) => Promise<__HttpRequest>;
90
222
  export declare const se_ListEngagementInvitationsCommand: (
91
223
  input: ListEngagementInvitationsCommandInput,
92
224
  context: __SerdeContext
93
225
  ) => Promise<__HttpRequest>;
226
+ export declare const se_ListEngagementMembersCommand: (
227
+ input: ListEngagementMembersCommandInput,
228
+ context: __SerdeContext
229
+ ) => Promise<__HttpRequest>;
230
+ export declare const se_ListEngagementResourceAssociationsCommand: (
231
+ input: ListEngagementResourceAssociationsCommandInput,
232
+ context: __SerdeContext
233
+ ) => Promise<__HttpRequest>;
234
+ export declare const se_ListEngagementsCommand: (
235
+ input: ListEngagementsCommandInput,
236
+ context: __SerdeContext
237
+ ) => Promise<__HttpRequest>;
94
238
  export declare const se_ListOpportunitiesCommand: (
95
239
  input: ListOpportunitiesCommandInput,
96
240
  context: __SerdeContext
97
241
  ) => Promise<__HttpRequest>;
242
+ export declare const se_ListResourceSnapshotJobsCommand: (
243
+ input: ListResourceSnapshotJobsCommandInput,
244
+ context: __SerdeContext
245
+ ) => Promise<__HttpRequest>;
246
+ export declare const se_ListResourceSnapshotsCommand: (
247
+ input: ListResourceSnapshotsCommandInput,
248
+ context: __SerdeContext
249
+ ) => Promise<__HttpRequest>;
98
250
  export declare const se_ListSolutionsCommand: (
99
251
  input: ListSolutionsCommandInput,
100
252
  context: __SerdeContext
101
253
  ) => Promise<__HttpRequest>;
254
+ export declare const se_PutSellingSystemSettingsCommand: (
255
+ input: PutSellingSystemSettingsCommandInput,
256
+ context: __SerdeContext
257
+ ) => Promise<__HttpRequest>;
102
258
  export declare const se_RejectEngagementInvitationCommand: (
103
259
  input: RejectEngagementInvitationCommandInput,
104
260
  context: __SerdeContext
@@ -111,10 +267,26 @@ export declare const se_StartEngagementFromOpportunityTaskCommand: (
111
267
  input: StartEngagementFromOpportunityTaskCommandInput,
112
268
  context: __SerdeContext
113
269
  ) => Promise<__HttpRequest>;
270
+ export declare const se_StartResourceSnapshotJobCommand: (
271
+ input: StartResourceSnapshotJobCommandInput,
272
+ context: __SerdeContext
273
+ ) => Promise<__HttpRequest>;
274
+ export declare const se_StopResourceSnapshotJobCommand: (
275
+ input: StopResourceSnapshotJobCommandInput,
276
+ context: __SerdeContext
277
+ ) => Promise<__HttpRequest>;
278
+ export declare const se_SubmitOpportunityCommand: (
279
+ input: SubmitOpportunityCommandInput,
280
+ context: __SerdeContext
281
+ ) => Promise<__HttpRequest>;
114
282
  export declare const se_UpdateOpportunityCommand: (
115
283
  input: UpdateOpportunityCommandInput,
116
284
  context: __SerdeContext
117
285
  ) => Promise<__HttpRequest>;
286
+ export declare const de_AcceptEngagementInvitationCommand: (
287
+ output: __HttpResponse,
288
+ context: __SerdeContext
289
+ ) => Promise<AcceptEngagementInvitationCommandOutput>;
118
290
  export declare const de_AssignOpportunityCommand: (
119
291
  output: __HttpResponse,
120
292
  context: __SerdeContext
@@ -123,10 +295,30 @@ export declare const de_AssociateOpportunityCommand: (
123
295
  output: __HttpResponse,
124
296
  context: __SerdeContext
125
297
  ) => Promise<AssociateOpportunityCommandOutput>;
298
+ export declare const de_CreateEngagementCommand: (
299
+ output: __HttpResponse,
300
+ context: __SerdeContext
301
+ ) => Promise<CreateEngagementCommandOutput>;
302
+ export declare const de_CreateEngagementInvitationCommand: (
303
+ output: __HttpResponse,
304
+ context: __SerdeContext
305
+ ) => Promise<CreateEngagementInvitationCommandOutput>;
126
306
  export declare const de_CreateOpportunityCommand: (
127
307
  output: __HttpResponse,
128
308
  context: __SerdeContext
129
309
  ) => Promise<CreateOpportunityCommandOutput>;
310
+ export declare const de_CreateResourceSnapshotCommand: (
311
+ output: __HttpResponse,
312
+ context: __SerdeContext
313
+ ) => Promise<CreateResourceSnapshotCommandOutput>;
314
+ export declare const de_CreateResourceSnapshotJobCommand: (
315
+ output: __HttpResponse,
316
+ context: __SerdeContext
317
+ ) => Promise<CreateResourceSnapshotJobCommandOutput>;
318
+ export declare const de_DeleteResourceSnapshotJobCommand: (
319
+ output: __HttpResponse,
320
+ context: __SerdeContext
321
+ ) => Promise<DeleteResourceSnapshotJobCommandOutput>;
130
322
  export declare const de_DisassociateOpportunityCommand: (
131
323
  output: __HttpResponse,
132
324
  context: __SerdeContext
@@ -135,6 +327,10 @@ export declare const de_GetAwsOpportunitySummaryCommand: (
135
327
  output: __HttpResponse,
136
328
  context: __SerdeContext
137
329
  ) => Promise<GetAwsOpportunitySummaryCommandOutput>;
330
+ export declare const de_GetEngagementCommand: (
331
+ output: __HttpResponse,
332
+ context: __SerdeContext
333
+ ) => Promise<GetEngagementCommandOutput>;
138
334
  export declare const de_GetEngagementInvitationCommand: (
139
335
  output: __HttpResponse,
140
336
  context: __SerdeContext
@@ -143,18 +339,62 @@ export declare const de_GetOpportunityCommand: (
143
339
  output: __HttpResponse,
144
340
  context: __SerdeContext
145
341
  ) => Promise<GetOpportunityCommandOutput>;
342
+ export declare const de_GetResourceSnapshotCommand: (
343
+ output: __HttpResponse,
344
+ context: __SerdeContext
345
+ ) => Promise<GetResourceSnapshotCommandOutput>;
346
+ export declare const de_GetResourceSnapshotJobCommand: (
347
+ output: __HttpResponse,
348
+ context: __SerdeContext
349
+ ) => Promise<GetResourceSnapshotJobCommandOutput>;
350
+ export declare const de_GetSellingSystemSettingsCommand: (
351
+ output: __HttpResponse,
352
+ context: __SerdeContext
353
+ ) => Promise<GetSellingSystemSettingsCommandOutput>;
354
+ export declare const de_ListEngagementByAcceptingInvitationTasksCommand: (
355
+ output: __HttpResponse,
356
+ context: __SerdeContext
357
+ ) => Promise<ListEngagementByAcceptingInvitationTasksCommandOutput>;
358
+ export declare const de_ListEngagementFromOpportunityTasksCommand: (
359
+ output: __HttpResponse,
360
+ context: __SerdeContext
361
+ ) => Promise<ListEngagementFromOpportunityTasksCommandOutput>;
146
362
  export declare const de_ListEngagementInvitationsCommand: (
147
363
  output: __HttpResponse,
148
364
  context: __SerdeContext
149
365
  ) => Promise<ListEngagementInvitationsCommandOutput>;
366
+ export declare const de_ListEngagementMembersCommand: (
367
+ output: __HttpResponse,
368
+ context: __SerdeContext
369
+ ) => Promise<ListEngagementMembersCommandOutput>;
370
+ export declare const de_ListEngagementResourceAssociationsCommand: (
371
+ output: __HttpResponse,
372
+ context: __SerdeContext
373
+ ) => Promise<ListEngagementResourceAssociationsCommandOutput>;
374
+ export declare const de_ListEngagementsCommand: (
375
+ output: __HttpResponse,
376
+ context: __SerdeContext
377
+ ) => Promise<ListEngagementsCommandOutput>;
150
378
  export declare const de_ListOpportunitiesCommand: (
151
379
  output: __HttpResponse,
152
380
  context: __SerdeContext
153
381
  ) => Promise<ListOpportunitiesCommandOutput>;
382
+ export declare const de_ListResourceSnapshotJobsCommand: (
383
+ output: __HttpResponse,
384
+ context: __SerdeContext
385
+ ) => Promise<ListResourceSnapshotJobsCommandOutput>;
386
+ export declare const de_ListResourceSnapshotsCommand: (
387
+ output: __HttpResponse,
388
+ context: __SerdeContext
389
+ ) => Promise<ListResourceSnapshotsCommandOutput>;
154
390
  export declare const de_ListSolutionsCommand: (
155
391
  output: __HttpResponse,
156
392
  context: __SerdeContext
157
393
  ) => Promise<ListSolutionsCommandOutput>;
394
+ export declare const de_PutSellingSystemSettingsCommand: (
395
+ output: __HttpResponse,
396
+ context: __SerdeContext
397
+ ) => Promise<PutSellingSystemSettingsCommandOutput>;
158
398
  export declare const de_RejectEngagementInvitationCommand: (
159
399
  output: __HttpResponse,
160
400
  context: __SerdeContext
@@ -167,6 +407,18 @@ export declare const de_StartEngagementFromOpportunityTaskCommand: (
167
407
  output: __HttpResponse,
168
408
  context: __SerdeContext
169
409
  ) => Promise<StartEngagementFromOpportunityTaskCommandOutput>;
410
+ export declare const de_StartResourceSnapshotJobCommand: (
411
+ output: __HttpResponse,
412
+ context: __SerdeContext
413
+ ) => Promise<StartResourceSnapshotJobCommandOutput>;
414
+ export declare const de_StopResourceSnapshotJobCommand: (
415
+ output: __HttpResponse,
416
+ context: __SerdeContext
417
+ ) => Promise<StopResourceSnapshotJobCommandOutput>;
418
+ export declare const de_SubmitOpportunityCommand: (
419
+ output: __HttpResponse,
420
+ context: __SerdeContext
421
+ ) => Promise<SubmitOpportunityCommandOutput>;
170
422
  export declare const de_UpdateOpportunityCommand: (
171
423
  output: __HttpResponse,
172
424
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-partnercentral-selling",
3
3
  "description": "AWS SDK for JavaScript Partnercentral Selling Client for Node.js, Browser and React Native",
4
- "version": "3.699.0",
4
+ "version": "3.709.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.699.0",
24
- "@aws-sdk/client-sts": "3.699.0",
25
- "@aws-sdk/core": "3.696.0",
26
- "@aws-sdk/credential-provider-node": "3.699.0",
27
- "@aws-sdk/middleware-host-header": "3.696.0",
28
- "@aws-sdk/middleware-logger": "3.696.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.696.0",
30
- "@aws-sdk/middleware-user-agent": "3.696.0",
31
- "@aws-sdk/region-config-resolver": "3.696.0",
32
- "@aws-sdk/types": "3.696.0",
33
- "@aws-sdk/util-endpoints": "3.696.0",
34
- "@aws-sdk/util-user-agent-browser": "3.696.0",
35
- "@aws-sdk/util-user-agent-node": "3.696.0",
36
- "@smithy/config-resolver": "^3.0.12",
37
- "@smithy/core": "^2.5.3",
38
- "@smithy/fetch-http-handler": "^4.1.1",
39
- "@smithy/hash-node": "^3.0.10",
40
- "@smithy/invalid-dependency": "^3.0.10",
41
- "@smithy/middleware-content-length": "^3.0.12",
42
- "@smithy/middleware-endpoint": "^3.2.3",
43
- "@smithy/middleware-retry": "^3.0.27",
44
- "@smithy/middleware-serde": "^3.0.10",
45
- "@smithy/middleware-stack": "^3.0.10",
46
- "@smithy/node-config-provider": "^3.1.11",
47
- "@smithy/node-http-handler": "^3.3.1",
48
- "@smithy/protocol-http": "^4.1.7",
49
- "@smithy/smithy-client": "^3.4.4",
50
- "@smithy/types": "^3.7.1",
51
- "@smithy/url-parser": "^3.0.10",
23
+ "@aws-sdk/client-sso-oidc": "3.709.0",
24
+ "@aws-sdk/client-sts": "3.709.0",
25
+ "@aws-sdk/core": "3.709.0",
26
+ "@aws-sdk/credential-provider-node": "3.709.0",
27
+ "@aws-sdk/middleware-host-header": "3.709.0",
28
+ "@aws-sdk/middleware-logger": "3.709.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.709.0",
30
+ "@aws-sdk/middleware-user-agent": "3.709.0",
31
+ "@aws-sdk/region-config-resolver": "3.709.0",
32
+ "@aws-sdk/types": "3.709.0",
33
+ "@aws-sdk/util-endpoints": "3.709.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.709.0",
35
+ "@aws-sdk/util-user-agent-node": "3.709.0",
36
+ "@smithy/config-resolver": "^3.0.13",
37
+ "@smithy/core": "^2.5.5",
38
+ "@smithy/fetch-http-handler": "^4.1.2",
39
+ "@smithy/hash-node": "^3.0.11",
40
+ "@smithy/invalid-dependency": "^3.0.11",
41
+ "@smithy/middleware-content-length": "^3.0.13",
42
+ "@smithy/middleware-endpoint": "^3.2.5",
43
+ "@smithy/middleware-retry": "^3.0.30",
44
+ "@smithy/middleware-serde": "^3.0.11",
45
+ "@smithy/middleware-stack": "^3.0.11",
46
+ "@smithy/node-config-provider": "^3.1.12",
47
+ "@smithy/node-http-handler": "^3.3.2",
48
+ "@smithy/protocol-http": "^4.1.8",
49
+ "@smithy/smithy-client": "^3.5.0",
50
+ "@smithy/types": "^3.7.2",
51
+ "@smithy/url-parser": "^3.0.11",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.27",
56
- "@smithy/util-defaults-mode-node": "^3.0.27",
57
- "@smithy/util-endpoints": "^2.1.6",
58
- "@smithy/util-middleware": "^3.0.10",
59
- "@smithy/util-retry": "^3.0.10",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.30",
56
+ "@smithy/util-defaults-mode-node": "^3.0.30",
57
+ "@smithy/util-endpoints": "^2.1.7",
58
+ "@smithy/util-middleware": "^3.0.11",
59
+ "@smithy/util-retry": "^3.0.11",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
61
  "@types/uuid": "^9.0.1",
62
62
  "tslib": "^2.6.2",