@aws-sdk/client-marketplace-entitlement-service 3.529.1 → 3.535.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10,7 +10,6 @@ export interface MarketplaceEntitlementService {
10
10
  getEntitlements(args: GetEntitlementsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEntitlementsCommandOutput) => void): void;
11
11
  }
12
12
  /**
13
- * @public
14
13
  * <fullname>AWS Marketplace Entitlement Service</fullname>
15
14
  * <p>This reference provides descriptions of the AWS Marketplace Entitlement Service
16
15
  * API.</p>
@@ -28,6 +27,7 @@ export interface MarketplaceEntitlementService {
28
27
  * product.</p>
29
28
  * </li>
30
29
  * </ul>
30
+ * @public
31
31
  */
32
32
  export declare class MarketplaceEntitlementService extends MarketplaceEntitlementServiceClient implements MarketplaceEntitlementService {
33
33
  }
@@ -152,7 +152,6 @@ export type MarketplaceEntitlementServiceClientResolvedConfigType = __SmithyReso
152
152
  export interface MarketplaceEntitlementServiceClientResolvedConfig extends MarketplaceEntitlementServiceClientResolvedConfigType {
153
153
  }
154
154
  /**
155
- * @public
156
155
  * <fullname>AWS Marketplace Entitlement Service</fullname>
157
156
  * <p>This reference provides descriptions of the AWS Marketplace Entitlement Service
158
157
  * API.</p>
@@ -170,6 +169,7 @@ export interface MarketplaceEntitlementServiceClientResolvedConfig extends Marke
170
169
  * product.</p>
171
170
  * </li>
172
171
  * </ul>
172
+ * @public
173
173
  */
174
174
  export declare class MarketplaceEntitlementServiceClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, MarketplaceEntitlementServiceClientResolvedConfig> {
175
175
  /**
@@ -22,10 +22,10 @@ export interface GetEntitlementsCommandOutput extends GetEntitlementsResult, __M
22
22
  }
23
23
  declare const GetEntitlementsCommand_base: {
24
24
  new (input: GetEntitlementsCommandInput): import("@smithy/smithy-client").CommandImpl<GetEntitlementsCommandInput, GetEntitlementsCommandOutput, MarketplaceEntitlementServiceClientResolvedConfig, GetEntitlementsCommandInput, GetEntitlementsCommandOutput>;
25
+ new (__0_0: GetEntitlementsCommandInput): import("@smithy/smithy-client").CommandImpl<GetEntitlementsCommandInput, GetEntitlementsCommandOutput, MarketplaceEntitlementServiceClientResolvedConfig, GetEntitlementsCommandInput, GetEntitlementsCommandOutput>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>GetEntitlements retrieves entitlement values for a given product. The results can be
30
30
  * filtered based on customer identifier or product dimensions.</p>
31
31
  * @example
@@ -85,6 +85,7 @@ declare const GetEntitlementsCommand_base: {
85
85
  * @throws {@link MarketplaceEntitlementServiceServiceException}
86
86
  * <p>Base exception class for all service exceptions from MarketplaceEntitlementService service.</p>
87
87
  *
88
+ * @public
88
89
  */
89
90
  export declare class GetEntitlementsCommand extends GetEntitlementsCommand_base {
90
91
  }
@@ -13,135 +13,135 @@ export declare const GetEntitlementFilterName: {
13
13
  */
14
14
  export type GetEntitlementFilterName = (typeof GetEntitlementFilterName)[keyof typeof GetEntitlementFilterName];
15
15
  /**
16
- * @public
17
16
  * <p>The GetEntitlementsRequest contains parameters for the GetEntitlements
18
17
  * operation.</p>
18
+ * @public
19
19
  */
20
20
  export interface GetEntitlementsRequest {
21
21
  /**
22
- * @public
23
22
  * <p>Product code is used to uniquely identify a product in AWS Marketplace. The product code
24
23
  * will be provided by AWS Marketplace when the product listing is created.</p>
24
+ * @public
25
25
  */
26
26
  ProductCode: string | undefined;
27
27
  /**
28
- * @public
29
28
  * <p>Filter is used to return entitlements for a specific customer or for a specific
30
29
  * dimension. Filters are described as keys mapped to a lists of values. Filtered requests are
31
30
  * <i>unioned</i> for each value in the value list, and then
32
31
  * <i>intersected</i> for each filter key.</p>
32
+ * @public
33
33
  */
34
34
  Filter?: Partial<Record<GetEntitlementFilterName, string[]>>;
35
35
  /**
36
- * @public
37
36
  * <p>For paginated calls to GetEntitlements, pass the NextToken from the previous
38
37
  * GetEntitlementsResult.</p>
38
+ * @public
39
39
  */
40
40
  NextToken?: string;
41
41
  /**
42
- * @public
43
42
  * <p>The maximum number of items to retrieve from the GetEntitlements operation. For
44
43
  * pagination, use the NextToken field in subsequent calls to GetEntitlements.</p>
44
+ * @public
45
45
  */
46
46
  MaxResults?: number;
47
47
  }
48
48
  /**
49
- * @public
50
49
  * <p>The EntitlementValue represents the amount of capacity that the customer is entitled to
51
50
  * for the product.</p>
51
+ * @public
52
52
  */
53
53
  export interface EntitlementValue {
54
54
  /**
55
- * @public
56
55
  * <p>The IntegerValue field will be populated with an integer value when the entitlement is an
57
56
  * integer type. Otherwise, the field will not be set.</p>
57
+ * @public
58
58
  */
59
59
  IntegerValue?: number;
60
60
  /**
61
- * @public
62
61
  * <p>The DoubleValue field will be populated with a double value when the entitlement is a
63
62
  * double type. Otherwise, the field will not be set.</p>
63
+ * @public
64
64
  */
65
65
  DoubleValue?: number;
66
66
  /**
67
- * @public
68
67
  * <p>The BooleanValue field will be populated with a boolean value when the entitlement is a
69
68
  * boolean type. Otherwise, the field will not be set.</p>
69
+ * @public
70
70
  */
71
71
  BooleanValue?: boolean;
72
72
  /**
73
- * @public
74
73
  * <p>The StringValue field will be populated with a string value when the entitlement is a
75
74
  * string type. Otherwise, the field will not be set.</p>
75
+ * @public
76
76
  */
77
77
  StringValue?: string;
78
78
  }
79
79
  /**
80
- * @public
81
80
  * <p>An entitlement represents capacity in a product owned by the customer. For example, a
82
81
  * customer might own some number of users or seats in an SaaS application or some amount of
83
82
  * data capacity in a multi-tenant database.</p>
83
+ * @public
84
84
  */
85
85
  export interface Entitlement {
86
86
  /**
87
- * @public
88
87
  * <p>The product code for which the given entitlement applies. Product codes are provided by
89
88
  * AWS Marketplace when the product listing is created.</p>
89
+ * @public
90
90
  */
91
91
  ProductCode?: string;
92
92
  /**
93
- * @public
94
93
  * <p>The dimension for which the given entitlement applies. Dimensions represent categories of
95
94
  * capacity in a product and are specified when the product is listed in AWS
96
95
  * Marketplace.</p>
96
+ * @public
97
97
  */
98
98
  Dimension?: string;
99
99
  /**
100
- * @public
101
100
  * <p>The customer identifier is a handle to each unique customer in an application. Customer
102
101
  * identifiers are obtained through the ResolveCustomer operation in AWS Marketplace Metering
103
102
  * Service.</p>
103
+ * @public
104
104
  */
105
105
  CustomerIdentifier?: string;
106
106
  /**
107
- * @public
108
107
  * <p>The EntitlementValue represents the amount of capacity that the customer is entitled to
109
108
  * for the product.</p>
109
+ * @public
110
110
  */
111
111
  Value?: EntitlementValue;
112
112
  /**
113
- * @public
114
113
  * <p>The expiration date represents the minimum date through which this entitlement is
115
114
  * expected to remain valid. For contractual products listed on AWS Marketplace, the expiration date
116
115
  * is the date at which the customer will renew or cancel their contract. Customers who are opting
117
116
  * to renew their contract will still have entitlements with an expiration date.</p>
117
+ * @public
118
118
  */
119
119
  ExpirationDate?: Date;
120
120
  }
121
121
  /**
122
- * @public
123
122
  * <p>The GetEntitlementsRequest contains results from the GetEntitlements operation.</p>
123
+ * @public
124
124
  */
125
125
  export interface GetEntitlementsResult {
126
126
  /**
127
- * @public
128
127
  * <p>The set of entitlements found through the GetEntitlements operation. If the result
129
128
  * contains an empty set of entitlements, NextToken might still be present and should be
130
129
  * used.</p>
130
+ * @public
131
131
  */
132
132
  Entitlements?: Entitlement[];
133
133
  /**
134
- * @public
135
134
  * <p>For paginated results, use NextToken in subsequent calls to GetEntitlements. If the
136
135
  * result contains an empty set of entitlements, NextToken might still be present and should be
137
136
  * used.</p>
137
+ * @public
138
138
  */
139
139
  NextToken?: string;
140
140
  }
141
141
  /**
142
- * @public
143
142
  * <p>An internal error has occurred. Retry your request. If the problem persists, post a
144
143
  * message with details on the AWS forums.</p>
144
+ * @public
145
145
  */
146
146
  export declare class InternalServiceErrorException extends __BaseException {
147
147
  readonly name: "InternalServiceErrorException";
@@ -152,8 +152,8 @@ export declare class InternalServiceErrorException extends __BaseException {
152
152
  constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
153
153
  }
154
154
  /**
155
- * @public
156
155
  * <p>One or more parameters in your request was invalid.</p>
156
+ * @public
157
157
  */
158
158
  export declare class InvalidParameterException extends __BaseException {
159
159
  readonly name: "InvalidParameterException";
@@ -164,8 +164,8 @@ export declare class InvalidParameterException extends __BaseException {
164
164
  constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
165
165
  }
166
166
  /**
167
- * @public
168
167
  * <p>The calls to the GetEntitlements API are throttled.</p>
168
+ * @public
169
169
  */
170
170
  export declare class ThrottlingException extends __BaseException {
171
171
  readonly name: "ThrottlingException";
@@ -20,9 +20,9 @@ export declare const getRuntimeConfig: (config: MarketplaceEntitlementServiceCli
20
20
  apiVersion: string;
21
21
  urlParser: import("@smithy/types").UrlParser;
22
22
  base64Decoder: import("@smithy/types").Decoder;
23
- base64Encoder: import("@smithy/types").Encoder;
23
+ base64Encoder: (_input: string | Uint8Array) => string;
24
24
  utf8Decoder: import("@smithy/types").Decoder;
25
- utf8Encoder: import("@smithy/types").Encoder;
25
+ utf8Encoder: (input: string | Uint8Array) => string;
26
26
  disableHostPrefix: boolean;
27
27
  serviceId: string;
28
28
  logger: import("@smithy/types").Logger;
@@ -20,9 +20,9 @@ export declare const getRuntimeConfig: (config: MarketplaceEntitlementServiceCli
20
20
  apiVersion: string;
21
21
  urlParser: import("@smithy/types").UrlParser;
22
22
  base64Decoder: import("@smithy/types").Decoder;
23
- base64Encoder: import("@smithy/types").Encoder;
23
+ base64Encoder: (_input: string | Uint8Array) => string;
24
24
  utf8Decoder: import("@smithy/types").Decoder;
25
- utf8Encoder: import("@smithy/types").Encoder;
25
+ utf8Encoder: (input: string | Uint8Array) => string;
26
26
  disableHostPrefix: boolean;
27
27
  serviceId: string;
28
28
  logger: import("@smithy/types").Logger;
@@ -11,9 +11,9 @@ export declare const getRuntimeConfig: (config: MarketplaceEntitlementServiceCli
11
11
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
12
12
  streamCollector: import("@smithy/types").StreamCollector;
13
13
  base64Decoder: import("@smithy/types").Decoder;
14
- base64Encoder: import("@smithy/types").Encoder;
14
+ base64Encoder: (_input: string | Uint8Array) => string;
15
15
  utf8Decoder: import("@smithy/types").Decoder;
16
- utf8Encoder: import("@smithy/types").Encoder;
16
+ utf8Encoder: (input: string | Uint8Array) => string;
17
17
  disableHostPrefix: boolean;
18
18
  serviceId: string;
19
19
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -5,7 +5,7 @@ import { MarketplaceEntitlementServiceClientConfig } from "./MarketplaceEntitlem
5
5
  export declare const getRuntimeConfig: (config: MarketplaceEntitlementServiceClientConfig) => {
6
6
  apiVersion: string;
7
7
  base64Decoder: import("@smithy/types").Decoder;
8
- base64Encoder: import("@smithy/types").Encoder;
8
+ base64Encoder: (_input: string | Uint8Array) => string;
9
9
  disableHostPrefix: boolean;
10
10
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
11
  logger?: import("@smithy/types").Logger | undefined;
@@ -17,5 +17,5 @@ export declare const getRuntimeConfig: (config: MarketplaceEntitlementServiceCli
17
17
  serviceId: string;
18
18
  urlParser: import("@smithy/types").UrlParser;
19
19
  utf8Decoder: import("@smithy/types").Decoder;
20
- utf8Encoder: import("@smithy/types").Encoder;
20
+ utf8Encoder: (input: string | Uint8Array) => string;
21
21
  };
@@ -20,6 +20,15 @@ declare const GetEntitlementsCommand_base: {
20
20
  GetEntitlementsCommandInput,
21
21
  GetEntitlementsCommandOutput
22
22
  >;
23
+ new (
24
+ __0_0: GetEntitlementsCommandInput
25
+ ): import("@smithy/smithy-client").CommandImpl<
26
+ GetEntitlementsCommandInput,
27
+ GetEntitlementsCommandOutput,
28
+ MarketplaceEntitlementServiceClientResolvedConfig,
29
+ GetEntitlementsCommandInput,
30
+ GetEntitlementsCommandOutput
31
+ >;
23
32
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
24
33
  };
25
34
  export declare class GetEntitlementsCommand extends GetEntitlementsCommand_base {}
@@ -27,9 +27,9 @@ export declare const getRuntimeConfig: (
27
27
  apiVersion: string;
28
28
  urlParser: import("@smithy/types").UrlParser;
29
29
  base64Decoder: import("@smithy/types").Decoder;
30
- base64Encoder: import("@smithy/types").Encoder;
30
+ base64Encoder: (_input: string | Uint8Array) => string;
31
31
  utf8Decoder: import("@smithy/types").Decoder;
32
- utf8Encoder: import("@smithy/types").Encoder;
32
+ utf8Encoder: (input: string | Uint8Array) => string;
33
33
  disableHostPrefix: boolean;
34
34
  serviceId: string;
35
35
  logger: import("@smithy/types").Logger;
@@ -31,9 +31,9 @@ export declare const getRuntimeConfig: (
31
31
  apiVersion: string;
32
32
  urlParser: import("@smithy/types").UrlParser;
33
33
  base64Decoder: import("@smithy/types").Decoder;
34
- base64Encoder: import("@smithy/types").Encoder;
34
+ base64Encoder: (_input: string | Uint8Array) => string;
35
35
  utf8Decoder: import("@smithy/types").Decoder;
36
- utf8Encoder: import("@smithy/types").Encoder;
36
+ utf8Encoder: (input: string | Uint8Array) => string;
37
37
  disableHostPrefix: boolean;
38
38
  serviceId: string;
39
39
  logger: import("@smithy/types").Logger;
@@ -15,9 +15,9 @@ export declare const getRuntimeConfig: (
15
15
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
16
16
  streamCollector: import("@smithy/types").StreamCollector;
17
17
  base64Decoder: import("@smithy/types").Decoder;
18
- base64Encoder: import("@smithy/types").Encoder;
18
+ base64Encoder: (_input: string | Uint8Array) => string;
19
19
  utf8Decoder: import("@smithy/types").Decoder;
20
- utf8Encoder: import("@smithy/types").Encoder;
20
+ utf8Encoder: (input: string | Uint8Array) => string;
21
21
  disableHostPrefix: boolean;
22
22
  serviceId: string;
23
23
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -4,7 +4,7 @@ export declare const getRuntimeConfig: (
4
4
  ) => {
5
5
  apiVersion: string;
6
6
  base64Decoder: import("@smithy/types").Decoder;
7
- base64Encoder: import("@smithy/types").Encoder;
7
+ base64Encoder: (_input: string | Uint8Array) => string;
8
8
  disableHostPrefix: boolean;
9
9
  endpointProvider: (
10
10
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
@@ -19,5 +19,5 @@ export declare const getRuntimeConfig: (
19
19
  serviceId: string;
20
20
  urlParser: import("@smithy/types").UrlParser;
21
21
  utf8Decoder: import("@smithy/types").Decoder;
22
- utf8Encoder: import("@smithy/types").Encoder;
22
+ utf8Encoder: (input: string | Uint8Array) => string;
23
23
  };
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.529.1",
4
+ "version": "3.535.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-marketplace-entitlement-service",
@@ -20,47 +20,47 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.529.1",
24
- "@aws-sdk/core": "3.529.1",
25
- "@aws-sdk/credential-provider-node": "3.529.1",
26
- "@aws-sdk/middleware-host-header": "3.523.0",
27
- "@aws-sdk/middleware-logger": "3.523.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.523.0",
29
- "@aws-sdk/middleware-user-agent": "3.525.0",
30
- "@aws-sdk/region-config-resolver": "3.525.0",
31
- "@aws-sdk/types": "3.523.0",
32
- "@aws-sdk/util-endpoints": "3.525.0",
33
- "@aws-sdk/util-user-agent-browser": "3.523.0",
34
- "@aws-sdk/util-user-agent-node": "3.525.0",
35
- "@smithy/config-resolver": "^2.1.4",
36
- "@smithy/core": "^1.3.5",
37
- "@smithy/fetch-http-handler": "^2.4.3",
38
- "@smithy/hash-node": "^2.1.3",
39
- "@smithy/invalid-dependency": "^2.1.3",
40
- "@smithy/middleware-content-length": "^2.1.3",
41
- "@smithy/middleware-endpoint": "^2.4.4",
42
- "@smithy/middleware-retry": "^2.1.4",
43
- "@smithy/middleware-serde": "^2.1.3",
44
- "@smithy/middleware-stack": "^2.1.3",
45
- "@smithy/node-config-provider": "^2.2.4",
46
- "@smithy/node-http-handler": "^2.4.1",
47
- "@smithy/protocol-http": "^3.2.1",
48
- "@smithy/smithy-client": "^2.4.2",
49
- "@smithy/types": "^2.10.1",
50
- "@smithy/url-parser": "^2.1.3",
51
- "@smithy/util-base64": "^2.1.1",
52
- "@smithy/util-body-length-browser": "^2.1.1",
53
- "@smithy/util-body-length-node": "^2.2.1",
54
- "@smithy/util-defaults-mode-browser": "^2.1.4",
55
- "@smithy/util-defaults-mode-node": "^2.2.3",
56
- "@smithy/util-endpoints": "^1.1.4",
57
- "@smithy/util-middleware": "^2.1.3",
58
- "@smithy/util-retry": "^2.1.3",
59
- "@smithy/util-utf8": "^2.1.1",
60
- "tslib": "^2.5.0"
23
+ "@aws-sdk/client-sts": "3.535.0",
24
+ "@aws-sdk/core": "3.535.0",
25
+ "@aws-sdk/credential-provider-node": "3.535.0",
26
+ "@aws-sdk/middleware-host-header": "3.535.0",
27
+ "@aws-sdk/middleware-logger": "3.535.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.535.0",
29
+ "@aws-sdk/middleware-user-agent": "3.535.0",
30
+ "@aws-sdk/region-config-resolver": "3.535.0",
31
+ "@aws-sdk/types": "3.535.0",
32
+ "@aws-sdk/util-endpoints": "3.535.0",
33
+ "@aws-sdk/util-user-agent-browser": "3.535.0",
34
+ "@aws-sdk/util-user-agent-node": "3.535.0",
35
+ "@smithy/config-resolver": "^2.2.0",
36
+ "@smithy/core": "^1.4.0",
37
+ "@smithy/fetch-http-handler": "^2.5.0",
38
+ "@smithy/hash-node": "^2.2.0",
39
+ "@smithy/invalid-dependency": "^2.2.0",
40
+ "@smithy/middleware-content-length": "^2.2.0",
41
+ "@smithy/middleware-endpoint": "^2.5.0",
42
+ "@smithy/middleware-retry": "^2.2.0",
43
+ "@smithy/middleware-serde": "^2.3.0",
44
+ "@smithy/middleware-stack": "^2.2.0",
45
+ "@smithy/node-config-provider": "^2.3.0",
46
+ "@smithy/node-http-handler": "^2.5.0",
47
+ "@smithy/protocol-http": "^3.3.0",
48
+ "@smithy/smithy-client": "^2.5.0",
49
+ "@smithy/types": "^2.12.0",
50
+ "@smithy/url-parser": "^2.2.0",
51
+ "@smithy/util-base64": "^2.3.0",
52
+ "@smithy/util-body-length-browser": "^2.2.0",
53
+ "@smithy/util-body-length-node": "^2.3.0",
54
+ "@smithy/util-defaults-mode-browser": "^2.2.0",
55
+ "@smithy/util-defaults-mode-node": "^2.3.0",
56
+ "@smithy/util-endpoints": "^1.2.0",
57
+ "@smithy/util-middleware": "^2.2.0",
58
+ "@smithy/util-retry": "^2.2.0",
59
+ "@smithy/util-utf8": "^2.3.0",
60
+ "tslib": "^2.6.2"
61
61
  },
62
62
  "devDependencies": {
63
- "@smithy/service-client-documentation-generator": "^2.1.1",
63
+ "@smithy/service-client-documentation-generator": "^2.2.0",
64
64
  "@tsconfig/node14": "1.0.3",
65
65
  "@types/node": "^14.14.31",
66
66
  "concurrently": "7.0.0",