@aws-sdk/client-marketplace-catalog 3.1087.0 → 3.1088.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/index.js +1 -1
- package/dist-types/ts3.4/MarketplaceCatalog.d.ts +42 -45
- package/dist-types/ts3.4/MarketplaceCatalogClient.d.ts +6 -19
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/BatchDescribeEntitiesCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CancelChangeSetCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeChangeSetCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeEntityCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListChangeSetsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListEntitiesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartChangeSetCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +7 -14
- package/dist-types/ts3.4/models/errors.d.ts +8 -24
- package/dist-types/ts3.4/models/models_0.d.ts +4 -12
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/package.json +38 -38
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListEntitiesRequest, ListEntitiesResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListEntitiesCommandInput extends ListEntitiesRequest {}
|
|
5
|
-
export interface ListEntitiesCommandOutput
|
|
6
|
-
extends ListEntitiesResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListEntitiesCommandOutput extends ListEntitiesResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListEntitiesCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListEntitiesCommandInput
|
|
8
|
+
input: ListEntitiesCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListEntitiesCommandInput,
|
|
13
11
|
ListEntitiesCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const ListEntitiesCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: ListEntitiesCommandInput
|
|
17
|
+
input: ListEntitiesCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
ListEntitiesCommandInput,
|
|
22
20
|
ListEntitiesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
PutResourcePolicyRequest,
|
|
4
|
-
PutResourcePolicyResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface PutResourcePolicyCommandInput
|
|
8
|
-
extends PutResourcePolicyRequest {}
|
|
4
|
+
export interface PutResourcePolicyCommandInput extends PutResourcePolicyRequest {}
|
|
9
5
|
export interface PutResourcePolicyCommandOutput
|
|
10
|
-
extends PutResourcePolicyResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends PutResourcePolicyResponse, __MetadataBearer {}
|
|
12
7
|
declare const PutResourcePolicyCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: PutResourcePolicyCommandInput
|
|
9
|
+
input: PutResourcePolicyCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
PutResourcePolicyCommandInput,
|
|
17
12
|
PutResourcePolicyCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const PutResourcePolicyCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: PutResourcePolicyCommandInput
|
|
18
|
+
input: PutResourcePolicyCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
PutResourcePolicyCommandInput,
|
|
26
21
|
PutResourcePolicyCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StartChangeSetRequest,
|
|
4
|
-
StartChangeSetResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StartChangeSetRequest, StartChangeSetResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface StartChangeSetCommandInput extends StartChangeSetRequest {}
|
|
8
|
-
export interface StartChangeSetCommandOutput
|
|
9
|
-
extends StartChangeSetResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StartChangeSetCommandOutput extends StartChangeSetResponse, __MetadataBearer {}
|
|
11
6
|
declare const StartChangeSetCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: StartChangeSetCommandInput
|
|
8
|
+
input: StartChangeSetCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
StartChangeSetCommandInput,
|
|
16
11
|
StartChangeSetCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const StartChangeSetCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: StartChangeSetCommandInput
|
|
17
|
+
input: StartChangeSetCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
StartChangeSetCommandInput,
|
|
25
20
|
StartChangeSetCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UntagResourceRequest,
|
|
4
|
-
UntagResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
8
|
-
export interface UntagResourceCommandOutput
|
|
9
|
-
extends UntagResourceResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
|
|
11
6
|
declare const UntagResourceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UntagResourceCommandInput,
|
|
16
11
|
UntagResourceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UntagResourceCommandInput,
|
|
25
20
|
UntagResourceCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface MarketplaceCatalogExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -12,8 +12,7 @@ export declare const AmiProductSortBy: {
|
|
|
12
12
|
readonly ProductTitle: "ProductTitle";
|
|
13
13
|
readonly Visibility: "Visibility";
|
|
14
14
|
};
|
|
15
|
-
export type AmiProductSortBy =
|
|
16
|
-
(typeof AmiProductSortBy)[keyof typeof AmiProductSortBy];
|
|
15
|
+
export type AmiProductSortBy = (typeof AmiProductSortBy)[keyof typeof AmiProductSortBy];
|
|
17
16
|
export declare const SortOrder: {
|
|
18
17
|
readonly ASCENDING: "ASCENDING";
|
|
19
18
|
readonly DESCENDING: "DESCENDING";
|
|
@@ -66,22 +65,19 @@ export declare const OfferStateString: {
|
|
|
66
65
|
readonly Draft: "Draft";
|
|
67
66
|
readonly Released: "Released";
|
|
68
67
|
};
|
|
69
|
-
export type OfferStateString =
|
|
70
|
-
(typeof OfferStateString)[keyof typeof OfferStateString];
|
|
68
|
+
export type OfferStateString = (typeof OfferStateString)[keyof typeof OfferStateString];
|
|
71
69
|
export declare const OfferTargetingString: {
|
|
72
70
|
readonly BuyerAccounts: "BuyerAccounts";
|
|
73
71
|
readonly CountryCodes: "CountryCodes";
|
|
74
72
|
readonly None: "None";
|
|
75
73
|
readonly ParticipatingPrograms: "ParticipatingPrograms";
|
|
76
74
|
};
|
|
77
|
-
export type OfferTargetingString =
|
|
78
|
-
(typeof OfferTargetingString)[keyof typeof OfferTargetingString];
|
|
75
|
+
export type OfferTargetingString = (typeof OfferTargetingString)[keyof typeof OfferTargetingString];
|
|
79
76
|
export declare const OfferSetStateString: {
|
|
80
77
|
readonly Draft: "Draft";
|
|
81
78
|
readonly Released: "Released";
|
|
82
79
|
};
|
|
83
|
-
export type OfferSetStateString =
|
|
84
|
-
(typeof OfferSetStateString)[keyof typeof OfferSetStateString];
|
|
80
|
+
export type OfferSetStateString = (typeof OfferSetStateString)[keyof typeof OfferSetStateString];
|
|
85
81
|
export declare const ResaleAuthorizationResellerRoleString: {
|
|
86
82
|
readonly ChannelPartner: "ChannelPartner";
|
|
87
83
|
readonly Distributor: "Distributor";
|
|
@@ -118,8 +114,7 @@ export declare const DataProductSortBy: {
|
|
|
118
114
|
readonly ProductTitle: "ProductTitle";
|
|
119
115
|
readonly Visibility: "Visibility";
|
|
120
116
|
};
|
|
121
|
-
export type DataProductSortBy =
|
|
122
|
-
(typeof DataProductSortBy)[keyof typeof DataProductSortBy];
|
|
117
|
+
export type DataProductSortBy = (typeof DataProductSortBy)[keyof typeof DataProductSortBy];
|
|
123
118
|
export declare const MachineLearningProductSortBy: {
|
|
124
119
|
readonly EntityId: "EntityId";
|
|
125
120
|
readonly LastModifiedDate: "LastModifiedDate";
|
|
@@ -136,8 +131,7 @@ export declare const OfferSetSortBy: {
|
|
|
136
131
|
readonly SolutionId: "SolutionId";
|
|
137
132
|
readonly State: "State";
|
|
138
133
|
};
|
|
139
|
-
export type OfferSetSortBy =
|
|
140
|
-
(typeof OfferSetSortBy)[keyof typeof OfferSetSortBy];
|
|
134
|
+
export type OfferSetSortBy = (typeof OfferSetSortBy)[keyof typeof OfferSetSortBy];
|
|
141
135
|
export declare const OfferSortBy: {
|
|
142
136
|
readonly AvailabilityEndDate: "AvailabilityEndDate";
|
|
143
137
|
readonly BuyerAccounts: "BuyerAccounts";
|
|
@@ -176,8 +170,7 @@ export declare const SaaSProductSortBy: {
|
|
|
176
170
|
readonly ProductTitle: "ProductTitle";
|
|
177
171
|
readonly Visibility: "Visibility";
|
|
178
172
|
};
|
|
179
|
-
export type SaaSProductSortBy =
|
|
180
|
-
(typeof SaaSProductSortBy)[keyof typeof SaaSProductSortBy];
|
|
173
|
+
export type SaaSProductSortBy = (typeof SaaSProductSortBy)[keyof typeof SaaSProductSortBy];
|
|
181
174
|
export declare const OwnershipType: {
|
|
182
175
|
readonly SELF: "SELF";
|
|
183
176
|
readonly SHARED: "SHARED";
|
|
@@ -4,63 +4,47 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
4
4
|
readonly name: "AccessDeniedException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
6
|
Message?: string | undefined;
|
|
7
|
-
constructor(
|
|
8
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
-
);
|
|
7
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
10
8
|
}
|
|
11
9
|
export declare class InternalServiceException extends __BaseException {
|
|
12
10
|
readonly name: "InternalServiceException";
|
|
13
11
|
readonly $fault: "server";
|
|
14
12
|
Message?: string | undefined;
|
|
15
|
-
constructor(
|
|
16
|
-
opts: __ExceptionOptionType<InternalServiceException, __BaseException>
|
|
17
|
-
);
|
|
13
|
+
constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
|
|
18
14
|
}
|
|
19
15
|
export declare class ThrottlingException extends __BaseException {
|
|
20
16
|
readonly name: "ThrottlingException";
|
|
21
17
|
readonly $fault: "client";
|
|
22
18
|
Message?: string | undefined;
|
|
23
|
-
constructor(
|
|
24
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
25
|
-
);
|
|
19
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
26
20
|
}
|
|
27
21
|
export declare class ValidationException extends __BaseException {
|
|
28
22
|
readonly name: "ValidationException";
|
|
29
23
|
readonly $fault: "client";
|
|
30
24
|
Message?: string | undefined;
|
|
31
|
-
constructor(
|
|
32
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
33
|
-
);
|
|
25
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
34
26
|
}
|
|
35
27
|
export declare class ResourceInUseException extends __BaseException {
|
|
36
28
|
readonly name: "ResourceInUseException";
|
|
37
29
|
readonly $fault: "client";
|
|
38
30
|
Message?: string | undefined;
|
|
39
|
-
constructor(
|
|
40
|
-
opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
|
|
41
|
-
);
|
|
31
|
+
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
42
32
|
}
|
|
43
33
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
44
34
|
readonly name: "ResourceNotFoundException";
|
|
45
35
|
readonly $fault: "client";
|
|
46
36
|
Message?: string | undefined;
|
|
47
|
-
constructor(
|
|
48
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
49
|
-
);
|
|
37
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
50
38
|
}
|
|
51
39
|
export declare class ResourceNotSupportedException extends __BaseException {
|
|
52
40
|
readonly name: "ResourceNotSupportedException";
|
|
53
41
|
readonly $fault: "client";
|
|
54
42
|
Message?: string | undefined;
|
|
55
|
-
constructor(
|
|
56
|
-
opts: __ExceptionOptionType<ResourceNotSupportedException, __BaseException>
|
|
57
|
-
);
|
|
43
|
+
constructor(opts: __ExceptionOptionType<ResourceNotSupportedException, __BaseException>);
|
|
58
44
|
}
|
|
59
45
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
60
46
|
readonly name: "ServiceQuotaExceededException";
|
|
61
47
|
readonly $fault: "client";
|
|
62
48
|
Message?: string | undefined;
|
|
63
|
-
constructor(
|
|
64
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
65
|
-
);
|
|
49
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
66
50
|
}
|
|
@@ -402,22 +402,14 @@ export interface ResaleAuthorizationFilters {
|
|
|
402
402
|
Name?: ResaleAuthorizationNameFilter | undefined;
|
|
403
403
|
ProductId?: ResaleAuthorizationProductIdFilter | undefined;
|
|
404
404
|
CreatedDate?: ResaleAuthorizationCreatedDateFilter | undefined;
|
|
405
|
-
AvailabilityEndDate?:
|
|
406
|
-
|
|
407
|
-
| undefined;
|
|
408
|
-
ManufacturerAccountId?:
|
|
409
|
-
| ResaleAuthorizationManufacturerAccountIdFilter
|
|
410
|
-
| undefined;
|
|
405
|
+
AvailabilityEndDate?: ResaleAuthorizationAvailabilityEndDateFilter | undefined;
|
|
406
|
+
ManufacturerAccountId?: ResaleAuthorizationManufacturerAccountIdFilter | undefined;
|
|
411
407
|
ProductName?: ResaleAuthorizationProductNameFilter | undefined;
|
|
412
|
-
ManufacturerLegalName?:
|
|
413
|
-
| ResaleAuthorizationManufacturerLegalNameFilter
|
|
414
|
-
| undefined;
|
|
408
|
+
ManufacturerLegalName?: ResaleAuthorizationManufacturerLegalNameFilter | undefined;
|
|
415
409
|
ResellerAccountID?: ResaleAuthorizationResellerAccountIDFilter | undefined;
|
|
416
410
|
ResellerLegalName?: ResaleAuthorizationResellerLegalNameFilter | undefined;
|
|
417
411
|
Status?: ResaleAuthorizationStatusFilter | undefined;
|
|
418
|
-
OfferExtendedStatus?:
|
|
419
|
-
| ResaleAuthorizationOfferExtendedStatusFilter
|
|
420
|
-
| undefined;
|
|
412
|
+
OfferExtendedStatus?: ResaleAuthorizationOfferExtendedStatusFilter | undefined;
|
|
421
413
|
LastModifiedDate?: ResaleAuthorizationLastModifiedDateFilter | undefined;
|
|
422
414
|
ResellerRole?: ResaleAuthorizationResellerRoleFilter | undefined;
|
|
423
415
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { MarketplaceCatalogClient } from "../MarketplaceCatalogClient";
|
|
3
|
-
export interface MarketplaceCatalogPaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface MarketplaceCatalogPaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: MarketplaceCatalogClient;
|
|
6
5
|
}
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
2
|
import { MarketplaceCatalogClientConfig } from "./MarketplaceCatalogClient";
|
|
3
|
-
export declare const getRuntimeConfig: (
|
|
4
|
-
config: MarketplaceCatalogClientConfig
|
|
5
|
-
) => {
|
|
3
|
+
export declare const getRuntimeConfig: (config: MarketplaceCatalogClientConfig) => {
|
|
6
4
|
runtime: string;
|
|
7
5
|
defaultsMode: import("@smithy/types").Provider<
|
|
8
6
|
import("@smithy/core/client").ResolvedDefaultsMode
|
|
@@ -10,24 +8,16 @@ export declare const getRuntimeConfig: (
|
|
|
10
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
9
|
credentialDefaultProvider:
|
|
12
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
-
| ((
|
|
14
|
-
_: unknown
|
|
15
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
16
12
|
defaultUserAgentProvider: (
|
|
17
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
18
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
19
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
20
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
21
|
-
requestHandler:
|
|
22
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
23
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
24
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
25
19
|
streamCollector: (
|
|
26
|
-
stream:
|
|
27
|
-
| import("stream").Readable
|
|
28
|
-
| import("stream/web").ReadableStream
|
|
29
|
-
| ReadableStream
|
|
30
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
31
21
|
) => Promise<Uint8Array>;
|
|
32
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
33
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -55,13 +45,8 @@ export declare const getRuntimeConfig: (
|
|
|
55
45
|
logger: import("@smithy/types").Logger;
|
|
56
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
57
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
58
|
-
userAgentAppId?:
|
|
59
|
-
|
|
60
|
-
| undefined
|
|
61
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
62
|
-
retryStrategy?:
|
|
63
|
-
| import("@smithy/types").RetryStrategy
|
|
64
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
65
50
|
endpoint?:
|
|
66
51
|
| ((
|
|
67
52
|
| string
|
|
@@ -83,7 +68,7 @@ export declare const getRuntimeConfig: (
|
|
|
83
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
84
69
|
context?: {
|
|
85
70
|
logger?: import("@smithy/types").Logger;
|
|
86
|
-
}
|
|
71
|
+
},
|
|
87
72
|
) => import("@smithy/types").EndpointV2;
|
|
88
73
|
tls?: boolean;
|
|
89
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -96,13 +81,13 @@ export declare const getRuntimeConfig: (
|
|
|
96
81
|
signer?:
|
|
97
82
|
| import("@smithy/types").RequestSigner
|
|
98
83
|
| ((
|
|
99
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
100
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
101
86
|
signingEscapePath?: boolean;
|
|
102
87
|
systemClockOffset?: number;
|
|
103
88
|
signingRegion?: string;
|
|
104
89
|
signerConstructor?: new (
|
|
105
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
106
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
107
92
|
) => import("@smithy/types").RequestSigner;
|
|
108
93
|
};
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
2
|
import { MarketplaceCatalogClientConfig } from "./MarketplaceCatalogClient";
|
|
3
|
-
export declare const getRuntimeConfig: (
|
|
4
|
-
config: MarketplaceCatalogClientConfig
|
|
5
|
-
) => {
|
|
3
|
+
export declare const getRuntimeConfig: (config: MarketplaceCatalogClientConfig) => {
|
|
6
4
|
runtime: string;
|
|
7
5
|
defaultsMode: import("@smithy/types").Provider<
|
|
8
6
|
import("@smithy/core/client").ResolvedDefaultsMode
|
|
@@ -12,23 +10,17 @@ export declare const getRuntimeConfig: (
|
|
|
12
10
|
credentialDefaultProvider:
|
|
13
11
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
14
12
|
| ((
|
|
15
|
-
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
13
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
16
14
|
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
17
15
|
defaultUserAgentProvider: (
|
|
18
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
16
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
19
17
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
20
18
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
21
19
|
region: string | import("@smithy/types").Provider<string>;
|
|
22
|
-
requestHandler:
|
|
23
|
-
| RequestHandler
|
|
24
|
-
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
20
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
25
21
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
26
22
|
streamCollector: (
|
|
27
|
-
stream:
|
|
28
|
-
| import("stream").Readable
|
|
29
|
-
| import("stream/web").ReadableStream
|
|
30
|
-
| ReadableStream
|
|
31
|
-
| Blob
|
|
23
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
32
24
|
) => Promise<Uint8Array>;
|
|
33
25
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
34
26
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -55,9 +47,7 @@ export declare const getRuntimeConfig: (
|
|
|
55
47
|
logger: import("@smithy/types").Logger;
|
|
56
48
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
57
49
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
58
|
-
retryStrategy?:
|
|
59
|
-
| import("@smithy/types").RetryStrategy
|
|
60
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
50
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
61
51
|
endpoint?:
|
|
62
52
|
| ((
|
|
63
53
|
| string
|
|
@@ -79,7 +69,7 @@ export declare const getRuntimeConfig: (
|
|
|
79
69
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
80
70
|
context?: {
|
|
81
71
|
logger?: import("@smithy/types").Logger;
|
|
82
|
-
}
|
|
72
|
+
},
|
|
83
73
|
) => import("@smithy/types").EndpointV2;
|
|
84
74
|
tls?: boolean;
|
|
85
75
|
serviceConfiguredEndpoint?: never;
|
|
@@ -91,13 +81,13 @@ export declare const getRuntimeConfig: (
|
|
|
91
81
|
signer?:
|
|
92
82
|
| import("@smithy/types").RequestSigner
|
|
93
83
|
| ((
|
|
94
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
95
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
96
86
|
signingEscapePath?: boolean;
|
|
97
87
|
systemClockOffset?: number;
|
|
98
88
|
signingRegion?: string;
|
|
99
89
|
signerConstructor?: new (
|
|
100
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
101
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
102
92
|
) => import("@smithy/types").RequestSigner;
|
|
103
93
|
};
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import { MarketplaceCatalogClientConfig } from "./MarketplaceCatalogClient";
|
|
2
|
-
export declare const getRuntimeConfig: (
|
|
3
|
-
config: MarketplaceCatalogClientConfig
|
|
4
|
-
) => {
|
|
2
|
+
export declare const getRuntimeConfig: (config: MarketplaceCatalogClientConfig) => {
|
|
5
3
|
runtime: string;
|
|
6
4
|
requestHandler:
|
|
7
5
|
| import("@smithy/types").NodeHttpHandlerOptions
|
|
@@ -23,11 +21,7 @@ export declare const getRuntimeConfig: (
|
|
|
23
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
24
22
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
25
23
|
streamCollector: (
|
|
26
|
-
stream:
|
|
27
|
-
| import("stream").Readable
|
|
28
|
-
| import("stream/web").ReadableStream
|
|
29
|
-
| ReadableStream
|
|
30
|
-
| Blob
|
|
24
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
31
25
|
) => Promise<Uint8Array>;
|
|
32
26
|
base64Decoder: import("@smithy/types").Decoder;
|
|
33
27
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -42,30 +36,21 @@ export declare const getRuntimeConfig: (
|
|
|
42
36
|
region: string | import("@smithy/types").Provider<any>;
|
|
43
37
|
profile?: string;
|
|
44
38
|
defaultUserAgentProvider: (
|
|
45
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
39
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
46
40
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
47
41
|
credentialDefaultProvider:
|
|
48
42
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
49
|
-
| ((
|
|
50
|
-
_: unknown
|
|
51
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
43
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
52
44
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
53
45
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
54
46
|
logger: import("@smithy/types").Logger;
|
|
55
47
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
56
48
|
defaultsMode:
|
|
57
49
|
| import("@smithy/core/client").DefaultsMode
|
|
58
|
-
| import("@smithy/types").Provider<
|
|
59
|
-
import("@smithy/core/client").DefaultsMode
|
|
60
|
-
>;
|
|
50
|
+
| import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
61
51
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
62
|
-
userAgentAppId?:
|
|
63
|
-
|
|
64
|
-
| undefined
|
|
65
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
66
|
-
retryStrategy?:
|
|
67
|
-
| import("@smithy/types").RetryStrategy
|
|
68
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
52
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
53
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
69
54
|
endpoint?:
|
|
70
55
|
| ((
|
|
71
56
|
| string
|
|
@@ -87,7 +72,7 @@ export declare const getRuntimeConfig: (
|
|
|
87
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
88
73
|
context?: {
|
|
89
74
|
logger?: import("@smithy/types").Logger;
|
|
90
|
-
}
|
|
75
|
+
},
|
|
91
76
|
) => import("@smithy/types").EndpointV2;
|
|
92
77
|
tls?: boolean;
|
|
93
78
|
serviceConfiguredEndpoint?: never;
|
|
@@ -100,13 +85,13 @@ export declare const getRuntimeConfig: (
|
|
|
100
85
|
signer?:
|
|
101
86
|
| import("@smithy/types").RequestSigner
|
|
102
87
|
| ((
|
|
103
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
88
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
104
89
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
105
90
|
signingEscapePath?: boolean;
|
|
106
91
|
systemClockOffset?: number;
|
|
107
92
|
signingRegion?: string;
|
|
108
93
|
signerConstructor?: new (
|
|
109
94
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
110
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
95
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
111
96
|
) => import("@smithy/types").RequestSigner;
|
|
112
97
|
};
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
2
2
|
import { MarketplaceCatalogClientConfig } from "./MarketplaceCatalogClient";
|
|
3
|
-
export declare const getRuntimeConfig: (
|
|
4
|
-
config: MarketplaceCatalogClientConfig
|
|
5
|
-
) => {
|
|
3
|
+
export declare const getRuntimeConfig: (config: MarketplaceCatalogClientConfig) => {
|
|
6
4
|
apiVersion: string;
|
|
7
5
|
base64Decoder: import("@smithy/types").Decoder;
|
|
8
6
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -11,7 +9,7 @@ export declare const getRuntimeConfig: (
|
|
|
11
9
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
12
10
|
context?: {
|
|
13
11
|
logger?: import("@smithy/types").Logger;
|
|
14
|
-
}
|
|
12
|
+
},
|
|
15
13
|
) => import("@smithy/types").EndpointV2;
|
|
16
14
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
17
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MarketplaceCatalogHttpAuthSchemeProvider;
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { MarketplaceCatalogExtensionConfiguration } from "./extensionConfiguration";
|
|
2
2
|
export interface RuntimeExtension {
|
|
3
|
-
configure(
|
|
4
|
-
extensionConfiguration: MarketplaceCatalogExtensionConfiguration
|
|
5
|
-
): void;
|
|
3
|
+
configure(extensionConfiguration: MarketplaceCatalogExtensionConfiguration): void;
|
|
6
4
|
}
|
|
7
5
|
export interface RuntimeExtensionsConfig {
|
|
8
6
|
extensions: RuntimeExtension[];
|
|
9
7
|
}
|
|
10
8
|
export declare const resolveRuntimeExtensions: (
|
|
11
9
|
runtimeConfig: any,
|
|
12
|
-
extensions: RuntimeExtension[]
|
|
10
|
+
extensions: RuntimeExtension[],
|
|
13
11
|
) => any;
|