@aws-sdk/client-marketplace-catalog 3.533.0 → 3.540.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/endpoint/endpointResolver.js +4 -2
- package/dist-cjs/index.js +0 -3
- package/dist-es/endpoint/endpointResolver.js +3 -1
- package/dist-es/index.js +0 -1
- package/dist-types/MarketplaceCatalog.d.ts +1 -1
- package/dist-types/MarketplaceCatalogClient.d.ts +1 -1
- package/dist-types/commands/BatchDescribeEntitiesCommand.d.ts +2 -1
- package/dist-types/commands/CancelChangeSetCommand.d.ts +2 -1
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +2 -1
- package/dist-types/commands/DescribeChangeSetCommand.d.ts +2 -1
- package/dist-types/commands/DescribeEntityCommand.d.ts +2 -1
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +2 -1
- package/dist-types/commands/ListChangeSetsCommand.d.ts +2 -1
- package/dist-types/commands/ListEntitiesCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +2 -1
- package/dist-types/commands/StartChangeSetCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/index.d.ts +0 -1
- package/dist-types/models/models_0.d.ts +364 -364
- package/dist-types/ts3.4/commands/BatchDescribeEntitiesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CancelChangeSetCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeChangeSetCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeEntityCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListChangeSetsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListEntitiesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StartChangeSetCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +0 -1
- package/package.json +40 -40
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.defaultEndpointResolver = void 0;
|
|
4
|
-
const util_endpoints_1 = require("@
|
|
4
|
+
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
|
+
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
5
6
|
const ruleset_1 = require("./ruleset");
|
|
6
7
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
7
|
-
return (0,
|
|
8
|
+
return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
8
9
|
endpointParams: endpointParams,
|
|
9
10
|
logger: context.logger,
|
|
10
11
|
});
|
|
11
12
|
};
|
|
12
13
|
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
14
|
+
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -1384,9 +1384,6 @@ var paginateListChangeSets = (0, import_core.createPaginator)(MarketplaceCatalog
|
|
|
1384
1384
|
// src/pagination/ListEntitiesPaginator.ts
|
|
1385
1385
|
|
|
1386
1386
|
var paginateListEntities = (0, import_core.createPaginator)(MarketplaceCatalogClient, ListEntitiesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1387
|
-
|
|
1388
|
-
// src/index.ts
|
|
1389
|
-
var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
1390
1387
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1391
1388
|
|
|
1392
1389
|
0 && (module.exports = {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
|
|
2
|
+
import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
|
|
2
3
|
import { ruleSet } from "./ruleset";
|
|
3
4
|
export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
4
5
|
return resolveEndpoint(ruleSet, {
|
|
@@ -6,3 +7,4 @@ export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
|
6
7
|
logger: context.logger,
|
|
7
8
|
});
|
|
8
9
|
};
|
|
10
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
package/dist-es/index.js
CHANGED
|
@@ -94,13 +94,13 @@ export interface MarketplaceCatalog {
|
|
|
94
94
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
95
95
|
}
|
|
96
96
|
/**
|
|
97
|
-
* @public
|
|
98
97
|
* <p>Catalog API actions allow you to manage your entities through list, describe, and
|
|
99
98
|
* update capabilities. An entity can be a product or an offer on AWS Marketplace. </p>
|
|
100
99
|
* <p>You can automate your entity update process by integrating the AWS Marketplace Catalog
|
|
101
100
|
* API with your AWS Marketplace product build or deployment pipelines. You can also create
|
|
102
101
|
* your own applications on top of the Catalog API to manage your products on AWS
|
|
103
102
|
* Marketplace.</p>
|
|
103
|
+
* @public
|
|
104
104
|
*/
|
|
105
105
|
export declare class MarketplaceCatalog extends MarketplaceCatalogClient implements MarketplaceCatalog {
|
|
106
106
|
}
|
|
@@ -164,13 +164,13 @@ export type MarketplaceCatalogClientResolvedConfigType = __SmithyResolvedConfigu
|
|
|
164
164
|
export interface MarketplaceCatalogClientResolvedConfig extends MarketplaceCatalogClientResolvedConfigType {
|
|
165
165
|
}
|
|
166
166
|
/**
|
|
167
|
-
* @public
|
|
168
167
|
* <p>Catalog API actions allow you to manage your entities through list, describe, and
|
|
169
168
|
* update capabilities. An entity can be a product or an offer on AWS Marketplace. </p>
|
|
170
169
|
* <p>You can automate your entity update process by integrating the AWS Marketplace Catalog
|
|
171
170
|
* API with your AWS Marketplace product build or deployment pipelines. You can also create
|
|
172
171
|
* your own applications on top of the Catalog API to manage your products on AWS
|
|
173
172
|
* Marketplace.</p>
|
|
173
|
+
* @public
|
|
174
174
|
*/
|
|
175
175
|
export declare class MarketplaceCatalogClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, MarketplaceCatalogClientResolvedConfig> {
|
|
176
176
|
/**
|
|
@@ -22,10 +22,10 @@ export interface BatchDescribeEntitiesCommandOutput extends BatchDescribeEntitie
|
|
|
22
22
|
}
|
|
23
23
|
declare const BatchDescribeEntitiesCommand_base: {
|
|
24
24
|
new (input: BatchDescribeEntitiesCommandInput): import("@smithy/smithy-client").CommandImpl<BatchDescribeEntitiesCommandInput, BatchDescribeEntitiesCommandOutput, MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: BatchDescribeEntitiesCommandInput): import("@smithy/smithy-client").CommandImpl<BatchDescribeEntitiesCommandInput, BatchDescribeEntitiesCommandOutput, MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns metadata and content for multiple entities. This is the Batch version of the <code>DescribeEntity</code> API and uses the same IAM permission action as <code>DescribeEntity</code> API.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -88,6 +88,7 @@ declare const BatchDescribeEntitiesCommand_base: {
|
|
|
88
88
|
* @throws {@link MarketplaceCatalogServiceException}
|
|
89
89
|
* <p>Base exception class for all service exceptions from MarketplaceCatalog service.</p>
|
|
90
90
|
*
|
|
91
|
+
* @public
|
|
91
92
|
*/
|
|
92
93
|
export declare class BatchDescribeEntitiesCommand extends BatchDescribeEntitiesCommand_base {
|
|
93
94
|
}
|
|
@@ -22,10 +22,10 @@ export interface CancelChangeSetCommandOutput extends CancelChangeSetResponse, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const CancelChangeSetCommand_base: {
|
|
24
24
|
new (input: CancelChangeSetCommandInput): import("@smithy/smithy-client").CommandImpl<CancelChangeSetCommandInput, CancelChangeSetCommandOutput, MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CancelChangeSetCommandInput): import("@smithy/smithy-client").CommandImpl<CancelChangeSetCommandInput, CancelChangeSetCommandOutput, MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Used to cancel an open change request. Must be sent before the status of the request
|
|
30
30
|
* changes to <code>APPLYING</code>, the final stage of completing your change request. You
|
|
31
31
|
* can describe a change during the 60-day request history retention period for API
|
|
@@ -81,6 +81,7 @@ declare const CancelChangeSetCommand_base: {
|
|
|
81
81
|
* @throws {@link MarketplaceCatalogServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from MarketplaceCatalog service.</p>
|
|
83
83
|
*
|
|
84
|
+
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class CancelChangeSetCommand extends CancelChangeSetCommand_base {
|
|
86
87
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteResourcePolicyCommand_base: {
|
|
24
24
|
new (input: DeleteResourcePolicyCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput, MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteResourcePolicyCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput, MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes a resource-based policy on an entity that is identified by its resource
|
|
30
30
|
* ARN.</p>
|
|
31
31
|
* @example
|
|
@@ -72,6 +72,7 @@ declare const DeleteResourcePolicyCommand_base: {
|
|
|
72
72
|
* @throws {@link MarketplaceCatalogServiceException}
|
|
73
73
|
* <p>Base exception class for all service exceptions from MarketplaceCatalog service.</p>
|
|
74
74
|
*
|
|
75
|
+
* @public
|
|
75
76
|
*/
|
|
76
77
|
export declare class DeleteResourcePolicyCommand extends DeleteResourcePolicyCommand_base {
|
|
77
78
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeChangeSetCommandOutput extends DescribeChangeSetRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeChangeSetCommand_base: {
|
|
24
24
|
new (input: DescribeChangeSetCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeChangeSetCommandInput, DescribeChangeSetCommandOutput, MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeChangeSetCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeChangeSetCommandInput, DescribeChangeSetCommandOutput, MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Provides information about a given change set.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -100,6 +100,7 @@ declare const DescribeChangeSetCommand_base: {
|
|
|
100
100
|
* @throws {@link MarketplaceCatalogServiceException}
|
|
101
101
|
* <p>Base exception class for all service exceptions from MarketplaceCatalog service.</p>
|
|
102
102
|
*
|
|
103
|
+
* @public
|
|
103
104
|
*/
|
|
104
105
|
export declare class DescribeChangeSetCommand extends DescribeChangeSetCommand_base {
|
|
105
106
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeEntityCommandOutput extends DescribeEntityResponse, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeEntityCommand_base: {
|
|
24
24
|
new (input: DescribeEntityCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeEntityCommandInput, DescribeEntityCommandOutput, MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeEntityCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeEntityCommandInput, DescribeEntityCommandOutput, MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns the metadata and content of the entity.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -82,6 +82,7 @@ declare const DescribeEntityCommand_base: {
|
|
|
82
82
|
* @throws {@link MarketplaceCatalogServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from MarketplaceCatalog service.</p>
|
|
84
84
|
*
|
|
85
|
+
* @public
|
|
85
86
|
*/
|
|
86
87
|
export declare class DescribeEntityCommand extends DescribeEntityCommand_base {
|
|
87
88
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetResourcePolicyCommand_base: {
|
|
24
24
|
new (input: GetResourcePolicyCommandInput): import("@smithy/smithy-client").CommandImpl<GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput, MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetResourcePolicyCommandInput): import("@smithy/smithy-client").CommandImpl<GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput, MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Gets a resource-based policy of an entity that is identified by its resource
|
|
30
30
|
* ARN.</p>
|
|
31
31
|
* @example
|
|
@@ -74,6 +74,7 @@ declare const GetResourcePolicyCommand_base: {
|
|
|
74
74
|
* @throws {@link MarketplaceCatalogServiceException}
|
|
75
75
|
* <p>Base exception class for all service exceptions from MarketplaceCatalog service.</p>
|
|
76
76
|
*
|
|
77
|
+
* @public
|
|
77
78
|
*/
|
|
78
79
|
export declare class GetResourcePolicyCommand extends GetResourcePolicyCommand_base {
|
|
79
80
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListChangeSetsCommandOutput extends ListChangeSetsResponse, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListChangeSetsCommand_base: {
|
|
24
24
|
new (input: ListChangeSetsCommandInput): import("@smithy/smithy-client").CommandImpl<ListChangeSetsCommandInput, ListChangeSetsCommandOutput, MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListChangeSetsCommandInput): import("@smithy/smithy-client").CommandImpl<ListChangeSetsCommandInput, ListChangeSetsCommandOutput, MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns the list of change sets owned by the account being used to make the call. You
|
|
30
30
|
* can filter this list by providing any combination of <code>entityId</code>,
|
|
31
31
|
* <code>ChangeSetName</code>, and status. If you provide more than one filter, the API
|
|
@@ -102,6 +102,7 @@ declare const ListChangeSetsCommand_base: {
|
|
|
102
102
|
* @throws {@link MarketplaceCatalogServiceException}
|
|
103
103
|
* <p>Base exception class for all service exceptions from MarketplaceCatalog service.</p>
|
|
104
104
|
*
|
|
105
|
+
* @public
|
|
105
106
|
*/
|
|
106
107
|
export declare class ListChangeSetsCommand extends ListChangeSetsCommand_base {
|
|
107
108
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListEntitiesCommandOutput extends ListEntitiesResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListEntitiesCommand_base: {
|
|
24
24
|
new (input: ListEntitiesCommandInput): import("@smithy/smithy-client").CommandImpl<ListEntitiesCommandInput, ListEntitiesCommandOutput, MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListEntitiesCommandInput): import("@smithy/smithy-client").CommandImpl<ListEntitiesCommandInput, ListEntitiesCommandOutput, MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Provides the list of entities of a given type.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -397,6 +397,7 @@ declare const ListEntitiesCommand_base: {
|
|
|
397
397
|
* @throws {@link MarketplaceCatalogServiceException}
|
|
398
398
|
* <p>Base exception class for all service exceptions from MarketplaceCatalog service.</p>
|
|
399
399
|
*
|
|
400
|
+
* @public
|
|
400
401
|
*/
|
|
401
402
|
export declare class ListEntitiesCommand extends ListEntitiesCommand_base {
|
|
402
403
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists all tags that have been added to a resource (either an <a href="https://docs.aws.amazon.com/marketplace-catalog/latest/api-reference/welcome.html#catalog-api-entities">entity</a> or <a href="https://docs.aws.amazon.com/marketplace-catalog/latest/api-reference/welcome.html#working-with-change-sets">change set</a>).</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -79,6 +79,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
79
79
|
* @throws {@link MarketplaceCatalogServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from MarketplaceCatalog service.</p>
|
|
81
81
|
*
|
|
82
|
+
* @public
|
|
82
83
|
*/
|
|
83
84
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
84
85
|
}
|
|
@@ -22,10 +22,10 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const PutResourcePolicyCommand_base: {
|
|
24
24
|
new (input: PutResourcePolicyCommandInput): import("@smithy/smithy-client").CommandImpl<PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput, MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: PutResourcePolicyCommandInput): import("@smithy/smithy-client").CommandImpl<PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput, MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Attaches a resource-based policy to an entity. Examples of an entity include:
|
|
30
30
|
* <code>AmiProduct</code> and <code>ContainerProduct</code>.</p>
|
|
31
31
|
* @example
|
|
@@ -73,6 +73,7 @@ declare const PutResourcePolicyCommand_base: {
|
|
|
73
73
|
* @throws {@link MarketplaceCatalogServiceException}
|
|
74
74
|
* <p>Base exception class for all service exceptions from MarketplaceCatalog service.</p>
|
|
75
75
|
*
|
|
76
|
+
* @public
|
|
76
77
|
*/
|
|
77
78
|
export declare class PutResourcePolicyCommand extends PutResourcePolicyCommand_base {
|
|
78
79
|
}
|
|
@@ -22,10 +22,10 @@ export interface StartChangeSetCommandOutput extends StartChangeSetResponse, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const StartChangeSetCommand_base: {
|
|
24
24
|
new (input: StartChangeSetCommandInput): import("@smithy/smithy-client").CommandImpl<StartChangeSetCommandInput, StartChangeSetCommandOutput, MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StartChangeSetCommandInput): import("@smithy/smithy-client").CommandImpl<StartChangeSetCommandInput, StartChangeSetCommandOutput, MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Allows you to request changes for your entities. Within a single
|
|
30
30
|
* <code>ChangeSet</code>, you can't start the same change type against the same entity
|
|
31
31
|
* multiple times. Additionally, when a <code>ChangeSet</code> is running, all the entities
|
|
@@ -119,6 +119,7 @@ declare const StartChangeSetCommand_base: {
|
|
|
119
119
|
* @throws {@link MarketplaceCatalogServiceException}
|
|
120
120
|
* <p>Base exception class for all service exceptions from MarketplaceCatalog service.</p>
|
|
121
121
|
*
|
|
122
|
+
* @public
|
|
122
123
|
*/
|
|
123
124
|
export declare class StartChangeSetCommand extends StartChangeSetCommand_base {
|
|
124
125
|
}
|
|
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagResourceCommand_base: {
|
|
24
24
|
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Tags a resource (either an <a href="https://docs.aws.amazon.com/marketplace-catalog/latest/api-reference/welcome.html#catalog-api-entities">entity</a> or <a href="https://docs.aws.amazon.com/marketplace-catalog/latest/api-reference/welcome.html#working-with-change-sets">change set</a>).</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -77,6 +77,7 @@ declare const TagResourceCommand_base: {
|
|
|
77
77
|
* @throws {@link MarketplaceCatalogServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from MarketplaceCatalog service.</p>
|
|
79
79
|
*
|
|
80
|
+
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
82
83
|
}
|
|
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagResourceCommand_base: {
|
|
24
24
|
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Removes a tag or list of tags from a resource (either an <a href="https://docs.aws.amazon.com/marketplace-catalog/latest/api-reference/welcome.html#catalog-api-entities">entity</a> or <a href="https://docs.aws.amazon.com/marketplace-catalog/latest/api-reference/welcome.html#working-with-change-sets">change set</a>).</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -74,6 +74,7 @@ declare const UntagResourceCommand_base: {
|
|
|
74
74
|
* @throws {@link MarketplaceCatalogServiceException}
|
|
75
75
|
* <p>Base exception class for all service exceptions from MarketplaceCatalog service.</p>
|
|
76
76
|
*
|
|
77
|
+
* @public
|
|
77
78
|
*/
|
|
78
79
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
79
80
|
}
|
package/dist-types/index.d.ts
CHANGED
|
@@ -16,5 +16,4 @@ export { MarketplaceCatalogExtensionConfiguration } from "./extensionConfigurati
|
|
|
16
16
|
export * from "./commands";
|
|
17
17
|
export * from "./pagination";
|
|
18
18
|
export * from "./models";
|
|
19
|
-
import "@aws-sdk/util-endpoints";
|
|
20
19
|
export { MarketplaceCatalogServiceException } from "./models/MarketplaceCatalogServiceException";
|