@aws-sdk/client-marketplace-agreement 3.463.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/LICENSE +201 -0
- package/README.md +249 -0
- package/dist-cjs/MarketplaceAgreement.js +17 -0
- package/dist-cjs/MarketplaceAgreementClient.js +43 -0
- package/dist-cjs/commands/DescribeAgreementCommand.js +51 -0
- package/dist-cjs/commands/GetAgreementTermsCommand.js +51 -0
- package/dist-cjs/commands/SearchAgreementsCommand.js +51 -0
- package/dist-cjs/commands/index.js +6 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +12 -0
- package/dist-cjs/models/MarketplaceAgreementServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +137 -0
- package/dist-cjs/pagination/GetAgreementTermsPaginator.js +29 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/SearchAgreementsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +6 -0
- package/dist-cjs/protocols/Aws_json1_0.js +420 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +24 -0
- package/dist-cjs/runtimeExtensions.js +22 -0
- package/dist-es/MarketplaceAgreement.js +13 -0
- package/dist-es/MarketplaceAgreementClient.js +39 -0
- package/dist-es/commands/DescribeAgreementCommand.js +47 -0
- package/dist-es/commands/GetAgreementTermsCommand.js +47 -0
- package/dist-es/commands/SearchAgreementsCommand.js +47 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +7 -0
- package/dist-es/models/MarketplaceAgreementServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +129 -0
- package/dist-es/pagination/GetAgreementTermsPaginator.js +25 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/SearchAgreementsPaginator.js +25 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_json1_0.js +411 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +20 -0
- package/dist-es/runtimeExtensions.js +18 -0
- package/dist-types/MarketplaceAgreement.d.ts +51 -0
- package/dist-types/MarketplaceAgreementClient.d.ts +192 -0
- package/dist-types/commands/DescribeAgreementCommand.d.ts +112 -0
- package/dist-types/commands/GetAgreementTermsCommand.d.ts +235 -0
- package/dist-types/commands/SearchAgreementsCommand.d.ts +213 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +22 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +8 -0
- package/dist-types/index.d.ts +35 -0
- package/dist-types/models/MarketplaceAgreementServiceException.d.ts +13 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1350 -0
- package/dist-types/pagination/GetAgreementTermsPaginator.d.ts +7 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/SearchAgreementsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +29 -0
- package/dist-types/runtimeConfig.browser.d.ts +46 -0
- package/dist-types/runtimeConfig.d.ts +46 -0
- package/dist-types/runtimeConfig.native.d.ts +45 -0
- package/dist-types/runtimeConfig.shared.d.ts +19 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/MarketplaceAgreement.d.ts +58 -0
- package/dist-types/ts3.4/MarketplaceAgreementClient.d.ts +139 -0
- package/dist-types/ts3.4/commands/DescribeAgreementCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetAgreementTermsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/SearchAgreementsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +33 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
- package/dist-types/ts3.4/index.d.ts +10 -0
- package/dist-types/ts3.4/models/MarketplaceAgreementServiceException.d.ts +8 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +458 -0
- package/dist-types/ts3.4/pagination/GetAgreementTermsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/SearchAgreementsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +41 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +99 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +99 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +90 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
- package/package.json +102 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { GetAgreementTermsCommandInput, GetAgreementTermsCommandOutput } from "../commands/GetAgreementTermsCommand";
|
|
3
|
+
import { MarketplaceAgreementPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateGetAgreementTerms(config: MarketplaceAgreementPaginationConfiguration, input: GetAgreementTermsCommandInput, ...additionalArguments: any): Paginator<GetAgreementTermsCommandOutput>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PaginationConfiguration } from "@smithy/types";
|
|
2
|
+
import { MarketplaceAgreementClient } from "../MarketplaceAgreementClient";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface MarketplaceAgreementPaginationConfiguration extends PaginationConfiguration {
|
|
7
|
+
client: MarketplaceAgreementClient;
|
|
8
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { SearchAgreementsCommandInput, SearchAgreementsCommandOutput } from "../commands/SearchAgreementsCommand";
|
|
3
|
+
import { MarketplaceAgreementPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateSearchAgreements(config: MarketplaceAgreementPaginationConfiguration, input: SearchAgreementsCommandInput, ...additionalArguments: any): Paginator<SearchAgreementsCommandOutput>;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
+
import { DescribeAgreementCommandInput, DescribeAgreementCommandOutput } from "../commands/DescribeAgreementCommand";
|
|
4
|
+
import { GetAgreementTermsCommandInput, GetAgreementTermsCommandOutput } from "../commands/GetAgreementTermsCommand";
|
|
5
|
+
import { SearchAgreementsCommandInput, SearchAgreementsCommandOutput } from "../commands/SearchAgreementsCommand";
|
|
6
|
+
/**
|
|
7
|
+
* serializeAws_json1_0DescribeAgreementCommand
|
|
8
|
+
*/
|
|
9
|
+
export declare const se_DescribeAgreementCommand: (input: DescribeAgreementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
10
|
+
/**
|
|
11
|
+
* serializeAws_json1_0GetAgreementTermsCommand
|
|
12
|
+
*/
|
|
13
|
+
export declare const se_GetAgreementTermsCommand: (input: GetAgreementTermsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
14
|
+
/**
|
|
15
|
+
* serializeAws_json1_0SearchAgreementsCommand
|
|
16
|
+
*/
|
|
17
|
+
export declare const se_SearchAgreementsCommand: (input: SearchAgreementsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
18
|
+
/**
|
|
19
|
+
* deserializeAws_json1_0DescribeAgreementCommand
|
|
20
|
+
*/
|
|
21
|
+
export declare const de_DescribeAgreementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAgreementCommandOutput>;
|
|
22
|
+
/**
|
|
23
|
+
* deserializeAws_json1_0GetAgreementTermsCommand
|
|
24
|
+
*/
|
|
25
|
+
export declare const de_GetAgreementTermsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAgreementTermsCommandOutput>;
|
|
26
|
+
/**
|
|
27
|
+
* deserializeAws_json1_0SearchAgreementsCommand
|
|
28
|
+
*/
|
|
29
|
+
export declare const de_SearchAgreementsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchAgreementsCommandOutput>;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
+
import { MarketplaceAgreementClientConfig } from "./MarketplaceAgreementClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: MarketplaceAgreementClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
14
|
+
requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
|
|
15
|
+
updateHttpClientConfig(key: never, value: never): void;
|
|
16
|
+
httpHandlerConfigs(): {};
|
|
17
|
+
}) | RequestHandler;
|
|
18
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
19
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
20
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
21
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
|
+
apiVersion: string;
|
|
24
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
25
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
26
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
27
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
28
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
29
|
+
disableHostPrefix: boolean;
|
|
30
|
+
serviceId: string;
|
|
31
|
+
logger: import("@smithy/types").Logger;
|
|
32
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
33
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
34
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
35
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
36
|
+
}) => import("@smithy/types").EndpointV2;
|
|
37
|
+
tls?: boolean | undefined;
|
|
38
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
39
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
|
|
40
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
41
|
+
signingEscapePath?: boolean | undefined;
|
|
42
|
+
systemClockOffset?: number | undefined;
|
|
43
|
+
signingRegion?: string | undefined;
|
|
44
|
+
signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
|
|
45
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
46
|
+
};
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
|
+
import { MarketplaceAgreementClientConfig } from "./MarketplaceAgreementClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: MarketplaceAgreementClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
|
+
region: string | import("@smithy/types").Provider<string>;
|
|
14
|
+
requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
|
|
15
|
+
updateHttpClientConfig(key: never, value: never): void;
|
|
16
|
+
httpHandlerConfigs(): {};
|
|
17
|
+
}) | RequestHandler;
|
|
18
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
19
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
20
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
21
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
|
+
apiVersion: string;
|
|
24
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
25
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
26
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
27
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
28
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
29
|
+
disableHostPrefix: boolean;
|
|
30
|
+
serviceId: string;
|
|
31
|
+
logger: import("@smithy/types").Logger;
|
|
32
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
33
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
34
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
35
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
36
|
+
}) => import("@smithy/types").EndpointV2;
|
|
37
|
+
tls?: boolean | undefined;
|
|
38
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
39
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
|
|
40
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
41
|
+
signingEscapePath?: boolean | undefined;
|
|
42
|
+
systemClockOffset?: number | undefined;
|
|
43
|
+
signingRegion?: string | undefined;
|
|
44
|
+
signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
|
|
45
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
46
|
+
};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { MarketplaceAgreementClientConfig } from "./MarketplaceAgreementClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: MarketplaceAgreementClientConfig) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
8
|
+
requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
|
|
9
|
+
updateHttpClientConfig(key: never, value: never): void;
|
|
10
|
+
httpHandlerConfigs(): {};
|
|
11
|
+
}) | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
12
|
+
apiVersion: string;
|
|
13
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
14
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
15
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
16
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
17
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
18
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
19
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
20
|
+
disableHostPrefix: boolean;
|
|
21
|
+
serviceId: string;
|
|
22
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
25
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
27
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
28
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
29
|
+
logger: import("@smithy/types").Logger;
|
|
30
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
31
|
+
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
32
|
+
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
33
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
34
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
35
|
+
}) => import("@smithy/types").EndpointV2;
|
|
36
|
+
tls?: boolean | undefined;
|
|
37
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
38
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
|
|
39
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
40
|
+
signingEscapePath?: boolean | undefined;
|
|
41
|
+
systemClockOffset?: number | undefined;
|
|
42
|
+
signingRegion?: string | undefined;
|
|
43
|
+
signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
|
|
44
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
45
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { MarketplaceAgreementClientConfig } from "./MarketplaceAgreementClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: MarketplaceAgreementClientConfig) => {
|
|
6
|
+
apiVersion: string;
|
|
7
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
8
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
9
|
+
disableHostPrefix: boolean;
|
|
10
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
12
|
+
}) => import("@smithy/types").EndpointV2;
|
|
13
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
14
|
+
logger: import("@smithy/types").Logger;
|
|
15
|
+
serviceId: string;
|
|
16
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
17
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
18
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
19
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { MarketplaceAgreementExtensionConfiguration } from "./extensionConfiguration";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export interface RuntimeExtension {
|
|
6
|
+
configure(extensionConfiguration: MarketplaceAgreementExtensionConfiguration): void;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
export interface RuntimeExtensionsConfig {
|
|
12
|
+
extensions: RuntimeExtension[];
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @internal
|
|
16
|
+
*/
|
|
17
|
+
export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeAgreementCommandInput,
|
|
4
|
+
DescribeAgreementCommandOutput,
|
|
5
|
+
} from "./commands/DescribeAgreementCommand";
|
|
6
|
+
import {
|
|
7
|
+
GetAgreementTermsCommandInput,
|
|
8
|
+
GetAgreementTermsCommandOutput,
|
|
9
|
+
} from "./commands/GetAgreementTermsCommand";
|
|
10
|
+
import {
|
|
11
|
+
SearchAgreementsCommandInput,
|
|
12
|
+
SearchAgreementsCommandOutput,
|
|
13
|
+
} from "./commands/SearchAgreementsCommand";
|
|
14
|
+
import { MarketplaceAgreementClient } from "./MarketplaceAgreementClient";
|
|
15
|
+
export interface MarketplaceAgreement {
|
|
16
|
+
describeAgreement(
|
|
17
|
+
args: DescribeAgreementCommandInput,
|
|
18
|
+
options?: __HttpHandlerOptions
|
|
19
|
+
): Promise<DescribeAgreementCommandOutput>;
|
|
20
|
+
describeAgreement(
|
|
21
|
+
args: DescribeAgreementCommandInput,
|
|
22
|
+
cb: (err: any, data?: DescribeAgreementCommandOutput) => void
|
|
23
|
+
): void;
|
|
24
|
+
describeAgreement(
|
|
25
|
+
args: DescribeAgreementCommandInput,
|
|
26
|
+
options: __HttpHandlerOptions,
|
|
27
|
+
cb: (err: any, data?: DescribeAgreementCommandOutput) => void
|
|
28
|
+
): void;
|
|
29
|
+
getAgreementTerms(
|
|
30
|
+
args: GetAgreementTermsCommandInput,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Promise<GetAgreementTermsCommandOutput>;
|
|
33
|
+
getAgreementTerms(
|
|
34
|
+
args: GetAgreementTermsCommandInput,
|
|
35
|
+
cb: (err: any, data?: GetAgreementTermsCommandOutput) => void
|
|
36
|
+
): void;
|
|
37
|
+
getAgreementTerms(
|
|
38
|
+
args: GetAgreementTermsCommandInput,
|
|
39
|
+
options: __HttpHandlerOptions,
|
|
40
|
+
cb: (err: any, data?: GetAgreementTermsCommandOutput) => void
|
|
41
|
+
): void;
|
|
42
|
+
searchAgreements(
|
|
43
|
+
args: SearchAgreementsCommandInput,
|
|
44
|
+
options?: __HttpHandlerOptions
|
|
45
|
+
): Promise<SearchAgreementsCommandOutput>;
|
|
46
|
+
searchAgreements(
|
|
47
|
+
args: SearchAgreementsCommandInput,
|
|
48
|
+
cb: (err: any, data?: SearchAgreementsCommandOutput) => void
|
|
49
|
+
): void;
|
|
50
|
+
searchAgreements(
|
|
51
|
+
args: SearchAgreementsCommandInput,
|
|
52
|
+
options: __HttpHandlerOptions,
|
|
53
|
+
cb: (err: any, data?: SearchAgreementsCommandOutput) => void
|
|
54
|
+
): void;
|
|
55
|
+
}
|
|
56
|
+
export declare class MarketplaceAgreement
|
|
57
|
+
extends MarketplaceAgreementClient
|
|
58
|
+
implements MarketplaceAgreement {}
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HostHeaderInputConfig,
|
|
3
|
+
HostHeaderResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/middleware-host-header";
|
|
5
|
+
import {
|
|
6
|
+
AwsAuthInputConfig,
|
|
7
|
+
AwsAuthResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-signing";
|
|
9
|
+
import {
|
|
10
|
+
UserAgentInputConfig,
|
|
11
|
+
UserAgentResolvedConfig,
|
|
12
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
13
|
+
import { Credentials as __Credentials } from "@aws-sdk/types";
|
|
14
|
+
import {
|
|
15
|
+
RegionInputConfig,
|
|
16
|
+
RegionResolvedConfig,
|
|
17
|
+
} from "@smithy/config-resolver";
|
|
18
|
+
import {
|
|
19
|
+
EndpointInputConfig,
|
|
20
|
+
EndpointResolvedConfig,
|
|
21
|
+
} from "@smithy/middleware-endpoint";
|
|
22
|
+
import {
|
|
23
|
+
RetryInputConfig,
|
|
24
|
+
RetryResolvedConfig,
|
|
25
|
+
} from "@smithy/middleware-retry";
|
|
26
|
+
import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
|
|
27
|
+
import {
|
|
28
|
+
Client as __Client,
|
|
29
|
+
DefaultsMode as __DefaultsMode,
|
|
30
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
31
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
32
|
+
} from "@smithy/smithy-client";
|
|
33
|
+
import {
|
|
34
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
35
|
+
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
36
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
37
|
+
Decoder as __Decoder,
|
|
38
|
+
Encoder as __Encoder,
|
|
39
|
+
HashConstructor as __HashConstructor,
|
|
40
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
41
|
+
Logger as __Logger,
|
|
42
|
+
Provider as __Provider,
|
|
43
|
+
Provider,
|
|
44
|
+
StreamCollector as __StreamCollector,
|
|
45
|
+
UrlParser as __UrlParser,
|
|
46
|
+
UserAgent as __UserAgent,
|
|
47
|
+
} from "@smithy/types";
|
|
48
|
+
import {
|
|
49
|
+
DescribeAgreementCommandInput,
|
|
50
|
+
DescribeAgreementCommandOutput,
|
|
51
|
+
} from "./commands/DescribeAgreementCommand";
|
|
52
|
+
import {
|
|
53
|
+
GetAgreementTermsCommandInput,
|
|
54
|
+
GetAgreementTermsCommandOutput,
|
|
55
|
+
} from "./commands/GetAgreementTermsCommand";
|
|
56
|
+
import {
|
|
57
|
+
SearchAgreementsCommandInput,
|
|
58
|
+
SearchAgreementsCommandOutput,
|
|
59
|
+
} from "./commands/SearchAgreementsCommand";
|
|
60
|
+
import {
|
|
61
|
+
ClientInputEndpointParameters,
|
|
62
|
+
ClientResolvedEndpointParameters,
|
|
63
|
+
EndpointParameters,
|
|
64
|
+
} from "./endpoint/EndpointParameters";
|
|
65
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
66
|
+
export { __Client };
|
|
67
|
+
export type ServiceInputTypes =
|
|
68
|
+
| DescribeAgreementCommandInput
|
|
69
|
+
| GetAgreementTermsCommandInput
|
|
70
|
+
| SearchAgreementsCommandInput;
|
|
71
|
+
export type ServiceOutputTypes =
|
|
72
|
+
| DescribeAgreementCommandOutput
|
|
73
|
+
| GetAgreementTermsCommandOutput
|
|
74
|
+
| SearchAgreementsCommandOutput;
|
|
75
|
+
export interface ClientDefaults
|
|
76
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
77
|
+
requestHandler?: __HttpHandler;
|
|
78
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
79
|
+
urlParser?: __UrlParser;
|
|
80
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
81
|
+
streamCollector?: __StreamCollector;
|
|
82
|
+
base64Decoder?: __Decoder;
|
|
83
|
+
base64Encoder?: __Encoder;
|
|
84
|
+
utf8Decoder?: __Decoder;
|
|
85
|
+
utf8Encoder?: __Encoder;
|
|
86
|
+
runtime?: string;
|
|
87
|
+
disableHostPrefix?: boolean;
|
|
88
|
+
serviceId?: string;
|
|
89
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
90
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
91
|
+
region?: string | __Provider<string>;
|
|
92
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
93
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
94
|
+
maxAttempts?: number | __Provider<number>;
|
|
95
|
+
retryMode?: string | __Provider<string>;
|
|
96
|
+
logger?: __Logger;
|
|
97
|
+
extensions?: RuntimeExtension[];
|
|
98
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
99
|
+
}
|
|
100
|
+
export type MarketplaceAgreementClientConfigType = Partial<
|
|
101
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
102
|
+
> &
|
|
103
|
+
ClientDefaults &
|
|
104
|
+
RegionInputConfig &
|
|
105
|
+
EndpointInputConfig<EndpointParameters> &
|
|
106
|
+
RetryInputConfig &
|
|
107
|
+
HostHeaderInputConfig &
|
|
108
|
+
AwsAuthInputConfig &
|
|
109
|
+
UserAgentInputConfig &
|
|
110
|
+
ClientInputEndpointParameters;
|
|
111
|
+
export interface MarketplaceAgreementClientConfig
|
|
112
|
+
extends MarketplaceAgreementClientConfigType {}
|
|
113
|
+
export type MarketplaceAgreementClientResolvedConfigType =
|
|
114
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
115
|
+
Required<ClientDefaults> &
|
|
116
|
+
RuntimeExtensionsConfig &
|
|
117
|
+
RegionResolvedConfig &
|
|
118
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
119
|
+
RetryResolvedConfig &
|
|
120
|
+
HostHeaderResolvedConfig &
|
|
121
|
+
AwsAuthResolvedConfig &
|
|
122
|
+
UserAgentResolvedConfig &
|
|
123
|
+
ClientResolvedEndpointParameters;
|
|
124
|
+
export interface MarketplaceAgreementClientResolvedConfig
|
|
125
|
+
extends MarketplaceAgreementClientResolvedConfigType {}
|
|
126
|
+
export declare class MarketplaceAgreementClient extends __Client<
|
|
127
|
+
__HttpHandlerOptions,
|
|
128
|
+
ServiceInputTypes,
|
|
129
|
+
ServiceOutputTypes,
|
|
130
|
+
MarketplaceAgreementClientResolvedConfig
|
|
131
|
+
> {
|
|
132
|
+
readonly config: MarketplaceAgreementClientResolvedConfig;
|
|
133
|
+
constructor(
|
|
134
|
+
...[
|
|
135
|
+
configuration,
|
|
136
|
+
]: __CheckOptionalClientConfig<MarketplaceAgreementClientConfig>
|
|
137
|
+
);
|
|
138
|
+
destroy(): void;
|
|
139
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
MarketplaceAgreementClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../MarketplaceAgreementClient";
|
|
14
|
+
import {
|
|
15
|
+
DescribeAgreementInput,
|
|
16
|
+
DescribeAgreementOutput,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DescribeAgreementCommandInput extends DescribeAgreementInput {}
|
|
20
|
+
export interface DescribeAgreementCommandOutput
|
|
21
|
+
extends DescribeAgreementOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DescribeAgreementCommand extends $Command<
|
|
24
|
+
DescribeAgreementCommandInput,
|
|
25
|
+
DescribeAgreementCommandOutput,
|
|
26
|
+
MarketplaceAgreementClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeAgreementCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DescribeAgreementCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: MarketplaceAgreementClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DescribeAgreementCommandInput, DescribeAgreementCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
MarketplaceAgreementClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../MarketplaceAgreementClient";
|
|
14
|
+
import {
|
|
15
|
+
GetAgreementTermsInput,
|
|
16
|
+
GetAgreementTermsOutput,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GetAgreementTermsCommandInput extends GetAgreementTermsInput {}
|
|
20
|
+
export interface GetAgreementTermsCommandOutput
|
|
21
|
+
extends GetAgreementTermsOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class GetAgreementTermsCommand extends $Command<
|
|
24
|
+
GetAgreementTermsCommandInput,
|
|
25
|
+
GetAgreementTermsCommandOutput,
|
|
26
|
+
MarketplaceAgreementClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetAgreementTermsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: GetAgreementTermsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: MarketplaceAgreementClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetAgreementTermsCommandInput, GetAgreementTermsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
MarketplaceAgreementClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../MarketplaceAgreementClient";
|
|
14
|
+
import {
|
|
15
|
+
SearchAgreementsInput,
|
|
16
|
+
SearchAgreementsOutput,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface SearchAgreementsCommandInput extends SearchAgreementsInput {}
|
|
20
|
+
export interface SearchAgreementsCommandOutput
|
|
21
|
+
extends SearchAgreementsOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class SearchAgreementsCommand extends $Command<
|
|
24
|
+
SearchAgreementsCommandInput,
|
|
25
|
+
SearchAgreementsCommandOutput,
|
|
26
|
+
MarketplaceAgreementClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: SearchAgreementsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: SearchAgreementsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: MarketplaceAgreementClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<SearchAgreementsCommandInput, SearchAgreementsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Endpoint,
|
|
3
|
+
EndpointParameters as __EndpointParameters,
|
|
4
|
+
EndpointV2,
|
|
5
|
+
Provider,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
export interface ClientInputEndpointParameters {
|
|
8
|
+
region?: string | Provider<string>;
|
|
9
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
10
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
11
|
+
endpoint?:
|
|
12
|
+
| string
|
|
13
|
+
| Provider<string>
|
|
14
|
+
| Endpoint
|
|
15
|
+
| Provider<Endpoint>
|
|
16
|
+
| EndpointV2
|
|
17
|
+
| Provider<EndpointV2>;
|
|
18
|
+
}
|
|
19
|
+
export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
20
|
+
defaultSigningName: string;
|
|
21
|
+
};
|
|
22
|
+
export declare const resolveClientEndpointParameters: <T>(
|
|
23
|
+
options: T & ClientInputEndpointParameters
|
|
24
|
+
) => T &
|
|
25
|
+
ClientInputEndpointParameters & {
|
|
26
|
+
defaultSigningName: string;
|
|
27
|
+
};
|
|
28
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
29
|
+
Region?: string;
|
|
30
|
+
UseDualStack?: boolean;
|
|
31
|
+
UseFIPS?: boolean;
|
|
32
|
+
Endpoint?: string;
|
|
33
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
|
|
3
|
+
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
|
+
export interface MarketplaceAgreementExtensionConfiguration
|
|
5
|
+
extends HttpHandlerExtensionConfiguration,
|
|
6
|
+
DefaultExtensionConfiguration,
|
|
7
|
+
AwsRegionExtensionConfiguration {}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from "./MarketplaceAgreementClient";
|
|
2
|
+
export * from "./MarketplaceAgreement";
|
|
3
|
+
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
4
|
+
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
|
+
export { MarketplaceAgreementExtensionConfiguration } from "./extensionConfiguration";
|
|
6
|
+
export * from "./commands";
|
|
7
|
+
export * from "./pagination";
|
|
8
|
+
export * from "./models";
|
|
9
|
+
import "@aws-sdk/util-endpoints";
|
|
10
|
+
export { MarketplaceAgreementServiceException } from "./models/MarketplaceAgreementServiceException";
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@smithy/smithy-client";
|
|
5
|
+
export { __ServiceException, __ServiceExceptionOptions };
|
|
6
|
+
export declare class MarketplaceAgreementServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|