@aws-sdk/client-marketplace-agreement 3.533.0 → 3.535.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/MarketplaceAgreement.d.ts +2 -1
- package/dist-types/MarketplaceAgreementClient.d.ts +1 -1
- package/dist-types/commands/DescribeAgreementCommand.d.ts +2 -1
- package/dist-types/commands/GetAgreementTermsCommand.d.ts +2 -1
- package/dist-types/commands/SearchAgreementsCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +158 -158
- package/dist-types/ts3.4/MarketplaceAgreement.d.ts +1 -0
- package/dist-types/ts3.4/commands/DescribeAgreementCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetAgreementTermsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/SearchAgreementsCommand.d.ts +9 -0
- package/package.json +40 -40
|
@@ -19,12 +19,12 @@ export interface MarketplaceAgreement {
|
|
|
19
19
|
/**
|
|
20
20
|
* @see {@link SearchAgreementsCommand}
|
|
21
21
|
*/
|
|
22
|
+
searchAgreements(): Promise<SearchAgreementsCommandOutput>;
|
|
22
23
|
searchAgreements(args: SearchAgreementsCommandInput, options?: __HttpHandlerOptions): Promise<SearchAgreementsCommandOutput>;
|
|
23
24
|
searchAgreements(args: SearchAgreementsCommandInput, cb: (err: any, data?: SearchAgreementsCommandOutput) => void): void;
|
|
24
25
|
searchAgreements(args: SearchAgreementsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchAgreementsCommandOutput) => void): void;
|
|
25
26
|
}
|
|
26
27
|
/**
|
|
27
|
-
* @public
|
|
28
28
|
* <p>AWS Marketplace is a curated digital catalog that customers can use to find, buy, deploy, and manage third-party software, data, and services to build solutions and run their businesses. The AWS Marketplace Agreement Service provides an API interface that helps AWS Marketplace sellers manage their product-related agreements, including listing, searching, and filtering agreements.</p>
|
|
29
29
|
* <p>To manage agreements in AWS Marketplace, you must ensure that your AWS Identity and
|
|
30
30
|
* Access Management (IAM) policies and roles are set up. The user must have the required
|
|
@@ -46,6 +46,7 @@ export interface MarketplaceAgreement {
|
|
|
46
46
|
* their agreements.</p>
|
|
47
47
|
* </li>
|
|
48
48
|
* </ul>
|
|
49
|
+
* @public
|
|
49
50
|
*/
|
|
50
51
|
export declare class MarketplaceAgreement extends MarketplaceAgreementClient implements MarketplaceAgreement {
|
|
51
52
|
}
|
|
@@ -154,7 +154,6 @@ export type MarketplaceAgreementClientResolvedConfigType = __SmithyResolvedConfi
|
|
|
154
154
|
export interface MarketplaceAgreementClientResolvedConfig extends MarketplaceAgreementClientResolvedConfigType {
|
|
155
155
|
}
|
|
156
156
|
/**
|
|
157
|
-
* @public
|
|
158
157
|
* <p>AWS Marketplace is a curated digital catalog that customers can use to find, buy, deploy, and manage third-party software, data, and services to build solutions and run their businesses. The AWS Marketplace Agreement Service provides an API interface that helps AWS Marketplace sellers manage their product-related agreements, including listing, searching, and filtering agreements.</p>
|
|
159
158
|
* <p>To manage agreements in AWS Marketplace, you must ensure that your AWS Identity and
|
|
160
159
|
* Access Management (IAM) policies and roles are set up. The user must have the required
|
|
@@ -176,6 +175,7 @@ export interface MarketplaceAgreementClientResolvedConfig extends MarketplaceAgr
|
|
|
176
175
|
* their agreements.</p>
|
|
177
176
|
* </li>
|
|
178
177
|
* </ul>
|
|
178
|
+
* @public
|
|
179
179
|
*/
|
|
180
180
|
export declare class MarketplaceAgreementClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, MarketplaceAgreementClientResolvedConfig> {
|
|
181
181
|
/**
|
|
@@ -22,10 +22,10 @@ export interface DescribeAgreementCommandOutput extends DescribeAgreementOutput,
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeAgreementCommand_base: {
|
|
24
24
|
new (input: DescribeAgreementCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeAgreementCommandInput, DescribeAgreementCommandOutput, MarketplaceAgreementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeAgreementCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeAgreementCommandInput, DescribeAgreementCommandOutput, MarketplaceAgreementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Provides details about an agreement, such as the proposer, acceptor, start date, and end date.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -92,6 +92,7 @@ declare const DescribeAgreementCommand_base: {
|
|
|
92
92
|
* @throws {@link MarketplaceAgreementServiceException}
|
|
93
93
|
* <p>Base exception class for all service exceptions from MarketplaceAgreement service.</p>
|
|
94
94
|
*
|
|
95
|
+
* @public
|
|
95
96
|
*/
|
|
96
97
|
export declare class DescribeAgreementCommand extends DescribeAgreementCommand_base {
|
|
97
98
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetAgreementTermsCommandOutput extends GetAgreementTermsOutput,
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetAgreementTermsCommand_base: {
|
|
24
24
|
new (input: GetAgreementTermsCommandInput): import("@smithy/smithy-client").CommandImpl<GetAgreementTermsCommandInput, GetAgreementTermsCommandOutput, MarketplaceAgreementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetAgreementTermsCommandInput): import("@smithy/smithy-client").CommandImpl<GetAgreementTermsCommandInput, GetAgreementTermsCommandOutput, MarketplaceAgreementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Obtains details about the terms in an agreement that you participated in as proposer or
|
|
30
30
|
* acceptor.</p>
|
|
31
31
|
* <p>The details include:</p>
|
|
@@ -215,6 +215,7 @@ declare const GetAgreementTermsCommand_base: {
|
|
|
215
215
|
* @throws {@link MarketplaceAgreementServiceException}
|
|
216
216
|
* <p>Base exception class for all service exceptions from MarketplaceAgreement service.</p>
|
|
217
217
|
*
|
|
218
|
+
* @public
|
|
218
219
|
*/
|
|
219
220
|
export declare class GetAgreementTermsCommand extends GetAgreementTermsCommand_base {
|
|
220
221
|
}
|
|
@@ -22,10 +22,10 @@ export interface SearchAgreementsCommandOutput extends SearchAgreementsOutput, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const SearchAgreementsCommand_base: {
|
|
24
24
|
new (input: SearchAgreementsCommandInput): import("@smithy/smithy-client").CommandImpl<SearchAgreementsCommandInput, SearchAgreementsCommandOutput, MarketplaceAgreementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [SearchAgreementsCommandInput]): import("@smithy/smithy-client").CommandImpl<SearchAgreementsCommandInput, SearchAgreementsCommandOutput, MarketplaceAgreementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Searches across all agreements that a proposer or an acceptor has in AWS Marketplace. The search returns a list of agreements with basic agreement information.</p>
|
|
30
30
|
* <p>The following filter combinations are supported:</p>
|
|
31
31
|
* <ul>
|
|
@@ -193,6 +193,7 @@ declare const SearchAgreementsCommand_base: {
|
|
|
193
193
|
* @throws {@link MarketplaceAgreementServiceException}
|
|
194
194
|
* <p>Base exception class for all service exceptions from MarketplaceAgreement service.</p>
|
|
195
195
|
*
|
|
196
|
+
* @public
|
|
196
197
|
*/
|
|
197
198
|
export declare class SearchAgreementsCommand extends SearchAgreementsCommand_base {
|
|
198
199
|
}
|