@aws-sdk/client-marketplace-entitlement-service 3.169.0 → 3.171.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/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-marketplace-entitlement-service
9
+
10
+
11
+
12
+
13
+
14
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-marketplace-entitlement-service
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-marketplace-entitlement-service
@@ -1,10 +1,21 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { GetEntitlementsCommandInput, GetEntitlementsCommandOutput } from "./commands/GetEntitlementsCommand";
3
- import { MarketplaceEntitlementServiceClient } from "./MarketplaceEntitlementServiceClient";
4
-
5
- export declare class MarketplaceEntitlementService extends MarketplaceEntitlementServiceClient {
6
-
7
- getEntitlements(args: GetEntitlementsCommandInput, options?: __HttpHandlerOptions): Promise<GetEntitlementsCommandOutput>;
8
- getEntitlements(args: GetEntitlementsCommandInput, cb: (err: any, data?: GetEntitlementsCommandOutput) => void): void;
9
- getEntitlements(args: GetEntitlementsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEntitlementsCommandOutput) => void): void;
10
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ GetEntitlementsCommandInput,
4
+ GetEntitlementsCommandOutput,
5
+ } from "./commands/GetEntitlementsCommand";
6
+ import { MarketplaceEntitlementServiceClient } from "./MarketplaceEntitlementServiceClient";
7
+ export declare class MarketplaceEntitlementService extends MarketplaceEntitlementServiceClient {
8
+ getEntitlements(
9
+ args: GetEntitlementsCommandInput,
10
+ options?: __HttpHandlerOptions
11
+ ): Promise<GetEntitlementsCommandOutput>;
12
+ getEntitlements(
13
+ args: GetEntitlementsCommandInput,
14
+ cb: (err: any, data?: GetEntitlementsCommandOutput) => void
15
+ ): void;
16
+ getEntitlements(
17
+ args: GetEntitlementsCommandInput,
18
+ options: __HttpHandlerOptions,
19
+ cb: (err: any, data?: GetEntitlementsCommandOutput) => void
20
+ ): void;
21
+ }
@@ -1,74 +1,109 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
- import { GetEntitlementsCommandInput, GetEntitlementsCommandOutput } from "./commands/GetEntitlementsCommand";
10
- export declare type ServiceInputTypes = GetEntitlementsCommandInput;
11
- export declare type ServiceOutputTypes = GetEntitlementsCommandOutput;
12
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
13
-
14
- requestHandler?: __HttpHandler;
15
-
16
- sha256?: __HashConstructor;
17
-
18
- urlParser?: __UrlParser;
19
-
20
- bodyLengthChecker?: __BodyLengthCalculator;
21
-
22
- streamCollector?: __StreamCollector;
23
-
24
- base64Decoder?: __Decoder;
25
-
26
- base64Encoder?: __Encoder;
27
-
28
- utf8Decoder?: __Decoder;
29
-
30
- utf8Encoder?: __Encoder;
31
-
32
- runtime?: string;
33
-
34
- disableHostPrefix?: boolean;
35
-
36
- maxAttempts?: number | __Provider<number>;
37
-
38
- retryMode?: string | __Provider<string>;
39
-
40
- logger?: __Logger;
41
-
42
- useDualstackEndpoint?: boolean | __Provider<boolean>;
43
-
44
- useFipsEndpoint?: boolean | __Provider<boolean>;
45
-
46
- serviceId?: string;
47
-
48
- region?: string | __Provider<string>;
49
-
50
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
51
-
52
- regionInfoProvider?: RegionInfoProvider;
53
-
54
- defaultUserAgentProvider?: Provider<__UserAgent>;
55
-
56
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
57
- }
58
- declare type MarketplaceEntitlementServiceClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
59
-
60
- export interface MarketplaceEntitlementServiceClientConfig extends MarketplaceEntitlementServiceClientConfigType {
61
- }
62
- declare type MarketplaceEntitlementServiceClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
63
-
64
- export interface MarketplaceEntitlementServiceClientResolvedConfig extends MarketplaceEntitlementServiceClientResolvedConfigType {
65
- }
66
-
67
- export declare class MarketplaceEntitlementServiceClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, MarketplaceEntitlementServiceClientResolvedConfig> {
68
-
69
- readonly config: MarketplaceEntitlementServiceClientResolvedConfig;
70
- constructor(configuration: MarketplaceEntitlementServiceClientConfig);
71
-
72
- destroy(): void;
73
- }
74
- export {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ HostHeaderInputConfig,
9
+ HostHeaderResolvedConfig,
10
+ } from "@aws-sdk/middleware-host-header";
11
+ import {
12
+ RetryInputConfig,
13
+ RetryResolvedConfig,
14
+ } from "@aws-sdk/middleware-retry";
15
+ import {
16
+ AwsAuthInputConfig,
17
+ AwsAuthResolvedConfig,
18
+ } from "@aws-sdk/middleware-signing";
19
+ import {
20
+ UserAgentInputConfig,
21
+ UserAgentResolvedConfig,
22
+ } from "@aws-sdk/middleware-user-agent";
23
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
24
+ import {
25
+ Client as __Client,
26
+ DefaultsMode,
27
+ SmithyConfiguration as __SmithyConfiguration,
28
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
29
+ } from "@aws-sdk/smithy-client";
30
+ import {
31
+ BodyLengthCalculator as __BodyLengthCalculator,
32
+ Credentials as __Credentials,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ RegionInfoProvider,
41
+ StreamCollector as __StreamCollector,
42
+ UrlParser as __UrlParser,
43
+ UserAgent as __UserAgent,
44
+ } from "@aws-sdk/types";
45
+ import {
46
+ GetEntitlementsCommandInput,
47
+ GetEntitlementsCommandOutput,
48
+ } from "./commands/GetEntitlementsCommand";
49
+ export declare type ServiceInputTypes = GetEntitlementsCommandInput;
50
+ export declare type ServiceOutputTypes = GetEntitlementsCommandOutput;
51
+ export interface ClientDefaults
52
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
53
+ requestHandler?: __HttpHandler;
54
+ sha256?: __HashConstructor;
55
+ urlParser?: __UrlParser;
56
+ bodyLengthChecker?: __BodyLengthCalculator;
57
+ streamCollector?: __StreamCollector;
58
+ base64Decoder?: __Decoder;
59
+ base64Encoder?: __Encoder;
60
+ utf8Decoder?: __Decoder;
61
+ utf8Encoder?: __Encoder;
62
+ runtime?: string;
63
+ disableHostPrefix?: boolean;
64
+ maxAttempts?: number | __Provider<number>;
65
+ retryMode?: string | __Provider<string>;
66
+ logger?: __Logger;
67
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
68
+ useFipsEndpoint?: boolean | __Provider<boolean>;
69
+ serviceId?: string;
70
+ region?: string | __Provider<string>;
71
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
72
+ regionInfoProvider?: RegionInfoProvider;
73
+ defaultUserAgentProvider?: Provider<__UserAgent>;
74
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
75
+ }
76
+ declare type MarketplaceEntitlementServiceClientConfigType = Partial<
77
+ __SmithyConfiguration<__HttpHandlerOptions>
78
+ > &
79
+ ClientDefaults &
80
+ RegionInputConfig &
81
+ EndpointsInputConfig &
82
+ RetryInputConfig &
83
+ HostHeaderInputConfig &
84
+ AwsAuthInputConfig &
85
+ UserAgentInputConfig;
86
+ export interface MarketplaceEntitlementServiceClientConfig
87
+ extends MarketplaceEntitlementServiceClientConfigType {}
88
+ declare type MarketplaceEntitlementServiceClientResolvedConfigType =
89
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
90
+ Required<ClientDefaults> &
91
+ RegionResolvedConfig &
92
+ EndpointsResolvedConfig &
93
+ RetryResolvedConfig &
94
+ HostHeaderResolvedConfig &
95
+ AwsAuthResolvedConfig &
96
+ UserAgentResolvedConfig;
97
+ export interface MarketplaceEntitlementServiceClientResolvedConfig
98
+ extends MarketplaceEntitlementServiceClientResolvedConfigType {}
99
+ export declare class MarketplaceEntitlementServiceClient extends __Client<
100
+ __HttpHandlerOptions,
101
+ ServiceInputTypes,
102
+ ServiceOutputTypes,
103
+ MarketplaceEntitlementServiceClientResolvedConfig
104
+ > {
105
+ readonly config: MarketplaceEntitlementServiceClientResolvedConfig;
106
+ constructor(configuration: MarketplaceEntitlementServiceClientConfig);
107
+ destroy(): void;
108
+ }
109
+ export {};
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MarketplaceEntitlementServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MarketplaceEntitlementServiceClient";
4
- import { GetEntitlementsRequest, GetEntitlementsResult } from "../models/models_0";
5
- export interface GetEntitlementsCommandInput extends GetEntitlementsRequest {
6
- }
7
- export interface GetEntitlementsCommandOutput extends GetEntitlementsResult, __MetadataBearer {
8
- }
9
-
10
- export declare class GetEntitlementsCommand extends $Command<GetEntitlementsCommandInput, GetEntitlementsCommandOutput, MarketplaceEntitlementServiceClientResolvedConfig> {
11
- readonly input: GetEntitlementsCommandInput;
12
- constructor(input: GetEntitlementsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MarketplaceEntitlementServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetEntitlementsCommandInput, GetEntitlementsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ MarketplaceEntitlementServiceClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MarketplaceEntitlementServiceClient";
13
+ import {
14
+ GetEntitlementsRequest,
15
+ GetEntitlementsResult,
16
+ } from "../models/models_0";
17
+ export interface GetEntitlementsCommandInput extends GetEntitlementsRequest {}
18
+ export interface GetEntitlementsCommandOutput
19
+ extends GetEntitlementsResult,
20
+ __MetadataBearer {}
21
+ export declare class GetEntitlementsCommand extends $Command<
22
+ GetEntitlementsCommandInput,
23
+ GetEntitlementsCommandOutput,
24
+ MarketplaceEntitlementServiceClientResolvedConfig
25
+ > {
26
+ readonly input: GetEntitlementsCommandInput;
27
+ constructor(input: GetEntitlementsCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: MarketplaceEntitlementServiceClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<GetEntitlementsCommandInput, GetEntitlementsCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1 +1 @@
1
- export * from "./GetEntitlementsCommand";
1
+ export * from "./GetEntitlementsCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,5 +1,5 @@
1
- export * from "./MarketplaceEntitlementService";
2
- export * from "./MarketplaceEntitlementServiceClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export { MarketplaceEntitlementServiceServiceException } from "./models/MarketplaceEntitlementServiceServiceException";
1
+ export * from "./MarketplaceEntitlementService";
2
+ export * from "./MarketplaceEntitlementServiceClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export { MarketplaceEntitlementServiceServiceException } from "./models/MarketplaceEntitlementServiceServiceException";
@@ -1,6 +1,7 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class MarketplaceEntitlementServiceServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+ export declare class MarketplaceEntitlementServiceServiceException extends __ServiceException {
6
+ constructor(options: __ServiceExceptionOptions);
7
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";
@@ -1,120 +1,105 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { MarketplaceEntitlementServiceServiceException as __BaseException } from "./MarketplaceEntitlementServiceServiceException";
3
- export declare enum GetEntitlementFilterName {
4
- CUSTOMER_IDENTIFIER = "CUSTOMER_IDENTIFIER",
5
- DIMENSION = "DIMENSION"
6
- }
7
-
8
- export interface GetEntitlementsRequest {
9
-
10
- ProductCode: string | undefined;
11
-
12
- Filter?: Record<string, string[]>;
13
-
14
- NextToken?: string;
15
-
16
- MaxResults?: number;
17
- }
18
-
19
- export declare type EntitlementValue = EntitlementValue.BooleanValueMember | EntitlementValue.DoubleValueMember | EntitlementValue.IntegerValueMember | EntitlementValue.StringValueMember | EntitlementValue.$UnknownMember;
20
- export declare namespace EntitlementValue {
21
-
22
- interface IntegerValueMember {
23
- IntegerValue: number;
24
- DoubleValue?: never;
25
- BooleanValue?: never;
26
- StringValue?: never;
27
- $unknown?: never;
28
- }
29
-
30
- interface DoubleValueMember {
31
- IntegerValue?: never;
32
- DoubleValue: number;
33
- BooleanValue?: never;
34
- StringValue?: never;
35
- $unknown?: never;
36
- }
37
-
38
- interface BooleanValueMember {
39
- IntegerValue?: never;
40
- DoubleValue?: never;
41
- BooleanValue: boolean;
42
- StringValue?: never;
43
- $unknown?: never;
44
- }
45
-
46
- interface StringValueMember {
47
- IntegerValue?: never;
48
- DoubleValue?: never;
49
- BooleanValue?: never;
50
- StringValue: string;
51
- $unknown?: never;
52
- }
53
- interface $UnknownMember {
54
- IntegerValue?: never;
55
- DoubleValue?: never;
56
- BooleanValue?: never;
57
- StringValue?: never;
58
- $unknown: [
59
- string,
60
- any
61
- ];
62
- }
63
- interface Visitor<T> {
64
- IntegerValue: (value: number) => T;
65
- DoubleValue: (value: number) => T;
66
- BooleanValue: (value: boolean) => T;
67
- StringValue: (value: string) => T;
68
- _: (name: string, value: any) => T;
69
- }
70
- const visit: <T>(value: EntitlementValue, visitor: Visitor<T>) => T;
71
- }
72
-
73
- export interface Entitlement {
74
-
75
- ProductCode?: string;
76
-
77
- Dimension?: string;
78
-
79
- CustomerIdentifier?: string;
80
-
81
- Value?: EntitlementValue;
82
-
83
- ExpirationDate?: Date;
84
- }
85
-
86
- export interface GetEntitlementsResult {
87
-
88
- Entitlements?: Entitlement[];
89
-
90
- NextToken?: string;
91
- }
92
-
93
- export declare class InternalServiceErrorException extends __BaseException {
94
- readonly name: "InternalServiceErrorException";
95
- readonly $fault: "server";
96
-
97
- constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
98
- }
99
-
100
- export declare class InvalidParameterException extends __BaseException {
101
- readonly name: "InvalidParameterException";
102
- readonly $fault: "client";
103
-
104
- constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
105
- }
106
-
107
- export declare class ThrottlingException extends __BaseException {
108
- readonly name: "ThrottlingException";
109
- readonly $fault: "client";
110
-
111
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
112
- }
113
-
114
- export declare const GetEntitlementsRequestFilterSensitiveLog: (obj: GetEntitlementsRequest) => any;
115
-
116
- export declare const EntitlementValueFilterSensitiveLog: (obj: EntitlementValue) => any;
117
-
118
- export declare const EntitlementFilterSensitiveLog: (obj: Entitlement) => any;
119
-
120
- export declare const GetEntitlementsResultFilterSensitiveLog: (obj: GetEntitlementsResult) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { MarketplaceEntitlementServiceServiceException as __BaseException } from "./MarketplaceEntitlementServiceServiceException";
3
+ export declare enum GetEntitlementFilterName {
4
+ CUSTOMER_IDENTIFIER = "CUSTOMER_IDENTIFIER",
5
+ DIMENSION = "DIMENSION",
6
+ }
7
+ export interface GetEntitlementsRequest {
8
+ ProductCode: string | undefined;
9
+ Filter?: Record<string, string[]>;
10
+ NextToken?: string;
11
+ MaxResults?: number;
12
+ }
13
+ export declare type EntitlementValue =
14
+ | EntitlementValue.BooleanValueMember
15
+ | EntitlementValue.DoubleValueMember
16
+ | EntitlementValue.IntegerValueMember
17
+ | EntitlementValue.StringValueMember
18
+ | EntitlementValue.$UnknownMember;
19
+ export declare namespace EntitlementValue {
20
+ interface IntegerValueMember {
21
+ IntegerValue: number;
22
+ DoubleValue?: never;
23
+ BooleanValue?: never;
24
+ StringValue?: never;
25
+ $unknown?: never;
26
+ }
27
+ interface DoubleValueMember {
28
+ IntegerValue?: never;
29
+ DoubleValue: number;
30
+ BooleanValue?: never;
31
+ StringValue?: never;
32
+ $unknown?: never;
33
+ }
34
+ interface BooleanValueMember {
35
+ IntegerValue?: never;
36
+ DoubleValue?: never;
37
+ BooleanValue: boolean;
38
+ StringValue?: never;
39
+ $unknown?: never;
40
+ }
41
+ interface StringValueMember {
42
+ IntegerValue?: never;
43
+ DoubleValue?: never;
44
+ BooleanValue?: never;
45
+ StringValue: string;
46
+ $unknown?: never;
47
+ }
48
+ interface $UnknownMember {
49
+ IntegerValue?: never;
50
+ DoubleValue?: never;
51
+ BooleanValue?: never;
52
+ StringValue?: never;
53
+ $unknown: [string, any];
54
+ }
55
+ interface Visitor<T> {
56
+ IntegerValue: (value: number) => T;
57
+ DoubleValue: (value: number) => T;
58
+ BooleanValue: (value: boolean) => T;
59
+ StringValue: (value: string) => T;
60
+ _: (name: string, value: any) => T;
61
+ }
62
+ const visit: <T>(value: EntitlementValue, visitor: Visitor<T>) => T;
63
+ }
64
+ export interface Entitlement {
65
+ ProductCode?: string;
66
+ Dimension?: string;
67
+ CustomerIdentifier?: string;
68
+ Value?: EntitlementValue;
69
+ ExpirationDate?: Date;
70
+ }
71
+ export interface GetEntitlementsResult {
72
+ Entitlements?: Entitlement[];
73
+ NextToken?: string;
74
+ }
75
+ export declare class InternalServiceErrorException extends __BaseException {
76
+ readonly name: "InternalServiceErrorException";
77
+ readonly $fault: "server";
78
+ constructor(
79
+ opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>
80
+ );
81
+ }
82
+ export declare class InvalidParameterException extends __BaseException {
83
+ readonly name: "InvalidParameterException";
84
+ readonly $fault: "client";
85
+ constructor(
86
+ opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
87
+ );
88
+ }
89
+ export declare class ThrottlingException extends __BaseException {
90
+ readonly name: "ThrottlingException";
91
+ readonly $fault: "client";
92
+ constructor(
93
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
94
+ );
95
+ }
96
+ export declare const GetEntitlementsRequestFilterSensitiveLog: (
97
+ obj: GetEntitlementsRequest
98
+ ) => any;
99
+ export declare const EntitlementValueFilterSensitiveLog: (
100
+ obj: EntitlementValue
101
+ ) => any;
102
+ export declare const EntitlementFilterSensitiveLog: (obj: Entitlement) => any;
103
+ export declare const GetEntitlementsResultFilterSensitiveLog: (
104
+ obj: GetEntitlementsResult
105
+ ) => any;
@@ -1,5 +1,17 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { GetEntitlementsCommandInput, GetEntitlementsCommandOutput } from "../commands/GetEntitlementsCommand";
4
- export declare const serializeAws_json1_1GetEntitlementsCommand: (input: GetEntitlementsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
5
- export declare const deserializeAws_json1_1GetEntitlementsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEntitlementsCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ GetEntitlementsCommandInput,
8
+ GetEntitlementsCommandOutput,
9
+ } from "../commands/GetEntitlementsCommand";
10
+ export declare const serializeAws_json1_1GetEntitlementsCommand: (
11
+ input: GetEntitlementsCommandInput,
12
+ context: __SerdeContext
13
+ ) => Promise<__HttpRequest>;
14
+ export declare const deserializeAws_json1_1GetEntitlementsCommand: (
15
+ output: __HttpResponse,
16
+ context: __SerdeContext
17
+ ) => Promise<GetEntitlementsCommandOutput>;
@@ -1,38 +1,67 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { MarketplaceEntitlementServiceClientConfig } from "./MarketplaceEntitlementServiceClient";
3
-
4
- export declare const getRuntimeConfig: (config: MarketplaceEntitlementServiceClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<any>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { MarketplaceEntitlementServiceClientConfig } from "./MarketplaceEntitlementServiceClient";
3
+ export declare const getRuntimeConfig: (
4
+ config: MarketplaceEntitlementServiceClientConfig
5
+ ) => {
6
+ runtime: string;
7
+ defaultsMode: import("@aws-sdk/types").Provider<
8
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
9
+ >;
10
+ base64Decoder: import("@aws-sdk/types").Decoder;
11
+ base64Encoder: import("@aws-sdk/types").Encoder;
12
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
13
+ credentialDefaultProvider: (
14
+ input: any
15
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
16
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
17
+ import("@aws-sdk/types").UserAgent
18
+ >;
19
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
20
+ region: string | import("@aws-sdk/types").Provider<any>;
21
+ requestHandler:
22
+ | (import("@aws-sdk/types").RequestHandler<
23
+ any,
24
+ any,
25
+ import("@aws-sdk/types").HttpHandlerOptions
26
+ > &
27
+ import("@aws-sdk/protocol-http").HttpHandler)
28
+ | RequestHandler;
29
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
30
+ sha256: import("@aws-sdk/types").HashConstructor;
31
+ streamCollector: import("@aws-sdk/types").StreamCollector;
32
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
33
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
34
+ utf8Decoder: import("@aws-sdk/types").Decoder;
35
+ utf8Encoder: import("@aws-sdk/types").Encoder;
36
+ apiVersion: string;
37
+ urlParser: import("@aws-sdk/types").UrlParser;
38
+ disableHostPrefix: boolean;
39
+ logger: import("@aws-sdk/types").Logger;
40
+ serviceId: string;
41
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
42
+ endpoint?:
43
+ | string
44
+ | import("@aws-sdk/types").Endpoint
45
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
46
+ | undefined;
47
+ tls?: boolean | undefined;
48
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
49
+ credentials?:
50
+ | import("@aws-sdk/types").Credentials
51
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
52
+ | undefined;
53
+ signer?:
54
+ | import("@aws-sdk/types").RequestSigner
55
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
56
+ | undefined;
57
+ signingEscapePath?: boolean | undefined;
58
+ systemClockOffset?: number | undefined;
59
+ signingRegion?: string | undefined;
60
+ signerConstructor?:
61
+ | (new (
62
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
63
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
64
+ ) => import("@aws-sdk/types").RequestSigner)
65
+ | undefined;
66
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
67
+ };
@@ -1,38 +1,67 @@
1
- import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
- import { MarketplaceEntitlementServiceClientConfig } from "./MarketplaceEntitlementServiceClient";
3
-
4
- export declare const getRuntimeConfig: (config: MarketplaceEntitlementServiceClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<string>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { MarketplaceEntitlementServiceClientConfig } from "./MarketplaceEntitlementServiceClient";
3
+ export declare const getRuntimeConfig: (
4
+ config: MarketplaceEntitlementServiceClientConfig
5
+ ) => {
6
+ runtime: string;
7
+ defaultsMode: import("@aws-sdk/types").Provider<
8
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
9
+ >;
10
+ base64Decoder: import("@aws-sdk/types").Decoder;
11
+ base64Encoder: import("@aws-sdk/types").Encoder;
12
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
13
+ credentialDefaultProvider: (
14
+ input: any
15
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
16
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
17
+ import("@aws-sdk/types").UserAgent
18
+ >;
19
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
20
+ region: string | import("@aws-sdk/types").Provider<string>;
21
+ requestHandler:
22
+ | (import("@aws-sdk/types").RequestHandler<
23
+ any,
24
+ any,
25
+ import("@aws-sdk/types").HttpHandlerOptions
26
+ > &
27
+ import("@aws-sdk/protocol-http").HttpHandler)
28
+ | RequestHandler;
29
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
30
+ sha256: import("@aws-sdk/types").HashConstructor;
31
+ streamCollector: import("@aws-sdk/types").StreamCollector;
32
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
33
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
34
+ utf8Decoder: import("@aws-sdk/types").Decoder;
35
+ utf8Encoder: import("@aws-sdk/types").Encoder;
36
+ apiVersion: string;
37
+ urlParser: import("@aws-sdk/types").UrlParser;
38
+ disableHostPrefix: boolean;
39
+ logger: import("@aws-sdk/types").Logger;
40
+ serviceId: string;
41
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
42
+ endpoint?:
43
+ | string
44
+ | import("@aws-sdk/types").Endpoint
45
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
46
+ | undefined;
47
+ tls?: boolean | undefined;
48
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
49
+ credentials?:
50
+ | import("@aws-sdk/types").Credentials
51
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
52
+ | undefined;
53
+ signer?:
54
+ | import("@aws-sdk/types").RequestSigner
55
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
56
+ | undefined;
57
+ signingEscapePath?: boolean | undefined;
58
+ systemClockOffset?: number | undefined;
59
+ signingRegion?: string | undefined;
60
+ signerConstructor?:
61
+ | (new (
62
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
63
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
64
+ ) => import("@aws-sdk/types").RequestSigner)
65
+ | undefined;
66
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
67
+ };
@@ -1,37 +1,68 @@
1
- import { MarketplaceEntitlementServiceClientConfig } from "./MarketplaceEntitlementServiceClient";
2
-
3
- export declare const getRuntimeConfig: (config: MarketplaceEntitlementServiceClientConfig) => {
4
- runtime: string;
5
- sha256: import("@aws-sdk/types").HashConstructor;
6
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
7
- apiVersion: string;
8
- urlParser: import("@aws-sdk/types").UrlParser;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- streamCollector: import("@aws-sdk/types").StreamCollector;
11
- base64Decoder: import("@aws-sdk/types").Decoder;
12
- base64Encoder: import("@aws-sdk/types").Encoder;
13
- utf8Decoder: import("@aws-sdk/types").Decoder;
14
- utf8Encoder: import("@aws-sdk/types").Encoder;
15
- disableHostPrefix: boolean;
16
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
17
- retryMode: string | import("@aws-sdk/types").Provider<string>;
18
- logger: import("@aws-sdk/types").Logger;
19
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
21
- serviceId: string;
22
- region: string | import("@aws-sdk/types").Provider<any>;
23
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
24
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
- defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
27
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
- tls?: boolean | undefined;
29
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
30
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
31
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
32
- signingEscapePath?: boolean | undefined;
33
- systemClockOffset?: number | undefined;
34
- signingRegion?: string | undefined;
35
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
36
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
37
- };
1
+ import { MarketplaceEntitlementServiceClientConfig } from "./MarketplaceEntitlementServiceClient";
2
+ export declare const getRuntimeConfig: (
3
+ config: MarketplaceEntitlementServiceClientConfig
4
+ ) => {
5
+ runtime: string;
6
+ sha256: import("@aws-sdk/types").HashConstructor;
7
+ requestHandler:
8
+ | (import("@aws-sdk/types").RequestHandler<
9
+ any,
10
+ any,
11
+ import("@aws-sdk/types").HttpHandlerOptions
12
+ > &
13
+ import("@aws-sdk/protocol-http").HttpHandler)
14
+ | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
15
+ apiVersion: string;
16
+ urlParser: import("@aws-sdk/types").UrlParser;
17
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
18
+ streamCollector: import("@aws-sdk/types").StreamCollector;
19
+ base64Decoder: import("@aws-sdk/types").Decoder;
20
+ base64Encoder: import("@aws-sdk/types").Encoder;
21
+ utf8Decoder: import("@aws-sdk/types").Decoder;
22
+ utf8Encoder: import("@aws-sdk/types").Encoder;
23
+ disableHostPrefix: boolean;
24
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
25
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
26
+ logger: import("@aws-sdk/types").Logger;
27
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
28
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
29
+ serviceId: string;
30
+ region: string | import("@aws-sdk/types").Provider<any>;
31
+ credentialDefaultProvider: (
32
+ input: any
33
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
34
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
35
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
36
+ import("@aws-sdk/types").UserAgent
37
+ >;
38
+ defaultsMode:
39
+ | import("@aws-sdk/smithy-client").DefaultsMode
40
+ | import("@aws-sdk/types").Provider<
41
+ import("@aws-sdk/smithy-client").DefaultsMode
42
+ >;
43
+ endpoint?:
44
+ | string
45
+ | import("@aws-sdk/types").Endpoint
46
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
47
+ | undefined;
48
+ tls?: boolean | undefined;
49
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
50
+ credentials?:
51
+ | import("@aws-sdk/types").Credentials
52
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
53
+ | undefined;
54
+ signer?:
55
+ | import("@aws-sdk/types").RequestSigner
56
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
57
+ | undefined;
58
+ signingEscapePath?: boolean | undefined;
59
+ systemClockOffset?: number | undefined;
60
+ signingRegion?: string | undefined;
61
+ signerConstructor?:
62
+ | (new (
63
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
64
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
65
+ ) => import("@aws-sdk/types").RequestSigner)
66
+ | undefined;
67
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
68
+ };
@@ -1,11 +1,12 @@
1
- import { Logger as __Logger } from "@aws-sdk/types";
2
- import { MarketplaceEntitlementServiceClientConfig } from "./MarketplaceEntitlementServiceClient";
3
-
4
- export declare const getRuntimeConfig: (config: MarketplaceEntitlementServiceClientConfig) => {
5
- apiVersion: string;
6
- disableHostPrefix: boolean;
7
- logger: __Logger;
8
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
9
- serviceId: string;
10
- urlParser: import("@aws-sdk/types").UrlParser;
11
- };
1
+ import { Logger as __Logger } from "@aws-sdk/types";
2
+ import { MarketplaceEntitlementServiceClientConfig } from "./MarketplaceEntitlementServiceClient";
3
+ export declare const getRuntimeConfig: (
4
+ config: MarketplaceEntitlementServiceClientConfig
5
+ ) => {
6
+ apiVersion: string;
7
+ disableHostPrefix: boolean;
8
+ logger: __Logger;
9
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
10
+ serviceId: string;
11
+ urlParser: import("@aws-sdk/types").UrlParser;
12
+ };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-marketplace-entitlement-service",
3
3
  "description": "AWS SDK for JavaScript Marketplace Entitlement Service Client for Node.js, Browser and React Native",
4
- "version": "3.169.0",
4
+ "version": "3.171.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -19,45 +19,45 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.169.0",
23
- "@aws-sdk/config-resolver": "3.168.0",
24
- "@aws-sdk/credential-provider-node": "3.169.0",
25
- "@aws-sdk/fetch-http-handler": "3.168.0",
26
- "@aws-sdk/hash-node": "3.168.0",
27
- "@aws-sdk/invalid-dependency": "3.168.0",
28
- "@aws-sdk/middleware-content-length": "3.168.0",
29
- "@aws-sdk/middleware-host-header": "3.168.0",
30
- "@aws-sdk/middleware-logger": "3.168.0",
31
- "@aws-sdk/middleware-recursion-detection": "3.168.0",
32
- "@aws-sdk/middleware-retry": "3.169.0",
33
- "@aws-sdk/middleware-serde": "3.168.0",
34
- "@aws-sdk/middleware-signing": "3.168.0",
35
- "@aws-sdk/middleware-stack": "3.168.0",
36
- "@aws-sdk/middleware-user-agent": "3.168.0",
37
- "@aws-sdk/node-config-provider": "3.168.0",
38
- "@aws-sdk/node-http-handler": "3.168.0",
39
- "@aws-sdk/protocol-http": "3.168.0",
40
- "@aws-sdk/smithy-client": "3.168.0",
41
- "@aws-sdk/types": "3.168.0",
42
- "@aws-sdk/url-parser": "3.168.0",
43
- "@aws-sdk/util-base64-browser": "3.168.0",
44
- "@aws-sdk/util-base64-node": "3.168.0",
45
- "@aws-sdk/util-body-length-browser": "3.168.0",
46
- "@aws-sdk/util-body-length-node": "3.168.0",
47
- "@aws-sdk/util-defaults-mode-browser": "3.168.0",
48
- "@aws-sdk/util-defaults-mode-node": "3.168.0",
49
- "@aws-sdk/util-user-agent-browser": "3.168.0",
50
- "@aws-sdk/util-user-agent-node": "3.168.0",
51
- "@aws-sdk/util-utf8-browser": "3.168.0",
52
- "@aws-sdk/util-utf8-node": "3.168.0",
22
+ "@aws-sdk/client-sts": "3.171.0",
23
+ "@aws-sdk/config-resolver": "3.171.0",
24
+ "@aws-sdk/credential-provider-node": "3.171.0",
25
+ "@aws-sdk/fetch-http-handler": "3.171.0",
26
+ "@aws-sdk/hash-node": "3.171.0",
27
+ "@aws-sdk/invalid-dependency": "3.171.0",
28
+ "@aws-sdk/middleware-content-length": "3.171.0",
29
+ "@aws-sdk/middleware-host-header": "3.171.0",
30
+ "@aws-sdk/middleware-logger": "3.171.0",
31
+ "@aws-sdk/middleware-recursion-detection": "3.171.0",
32
+ "@aws-sdk/middleware-retry": "3.171.0",
33
+ "@aws-sdk/middleware-serde": "3.171.0",
34
+ "@aws-sdk/middleware-signing": "3.171.0",
35
+ "@aws-sdk/middleware-stack": "3.171.0",
36
+ "@aws-sdk/middleware-user-agent": "3.171.0",
37
+ "@aws-sdk/node-config-provider": "3.171.0",
38
+ "@aws-sdk/node-http-handler": "3.171.0",
39
+ "@aws-sdk/protocol-http": "3.171.0",
40
+ "@aws-sdk/smithy-client": "3.171.0",
41
+ "@aws-sdk/types": "3.171.0",
42
+ "@aws-sdk/url-parser": "3.171.0",
43
+ "@aws-sdk/util-base64-browser": "3.170.0",
44
+ "@aws-sdk/util-base64-node": "3.170.0",
45
+ "@aws-sdk/util-body-length-browser": "3.170.0",
46
+ "@aws-sdk/util-body-length-node": "3.170.0",
47
+ "@aws-sdk/util-defaults-mode-browser": "3.171.0",
48
+ "@aws-sdk/util-defaults-mode-node": "3.171.0",
49
+ "@aws-sdk/util-user-agent-browser": "3.171.0",
50
+ "@aws-sdk/util-user-agent-node": "3.171.0",
51
+ "@aws-sdk/util-utf8-browser": "3.170.0",
52
+ "@aws-sdk/util-utf8-node": "3.170.0",
53
53
  "tslib": "^2.3.1"
54
54
  },
55
55
  "devDependencies": {
56
- "@aws-sdk/service-client-documentation-generator": "3.168.0",
56
+ "@aws-sdk/service-client-documentation-generator": "3.170.0",
57
57
  "@tsconfig/recommended": "1.0.1",
58
58
  "@types/node": "^12.7.5",
59
59
  "concurrently": "7.0.0",
60
- "downlevel-dts": "0.7.0",
60
+ "downlevel-dts": "0.10.1",
61
61
  "rimraf": "3.0.2",
62
62
  "typedoc": "0.19.2",
63
63
  "typescript": "~4.6.2"