@aws-sdk/client-marketplace-entitlement-service 3.772.0 → 3.775.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.
@@ -40,8 +40,6 @@ const defaultMarketplaceEntitlementServiceHttpAuthSchemeProvider = (authParamete
40
40
  exports.defaultMarketplaceEntitlementServiceHttpAuthSchemeProvider = defaultMarketplaceEntitlementServiceHttpAuthSchemeProvider;
41
41
  const resolveHttpAuthSchemeConfig = (config) => {
42
42
  const config_0 = (0, core_1.resolveAwsSdkSigV4Config)(config);
43
- return {
44
- ...config_0,
45
- };
43
+ return Object.assign(config_0, {});
46
44
  };
47
45
  exports.resolveHttpAuthSchemeConfig = resolveHttpAuthSchemeConfig;
package/dist-cjs/index.js CHANGED
@@ -50,12 +50,11 @@ var import_httpAuthSchemeProvider = require("./auth/httpAuthSchemeProvider");
50
50
 
51
51
  // src/endpoint/EndpointParameters.ts
52
52
  var resolveClientEndpointParameters = /* @__PURE__ */ __name((options) => {
53
- return {
54
- ...options,
53
+ return Object.assign(options, {
55
54
  useDualstackEndpoint: options.useDualstackEndpoint ?? false,
56
55
  useFipsEndpoint: options.useFipsEndpoint ?? false,
57
56
  defaultSigningName: "aws-marketplace"
58
- };
57
+ });
59
58
  }, "resolveClientEndpointParameters");
60
59
  var commonParams = {
61
60
  UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
@@ -112,22 +111,21 @@ var resolveHttpAuthRuntimeConfig = /* @__PURE__ */ __name((config) => {
112
111
  }, "resolveHttpAuthRuntimeConfig");
113
112
 
114
113
  // src/runtimeExtensions.ts
115
- var asPartial = /* @__PURE__ */ __name((t) => t, "asPartial");
116
114
  var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions) => {
117
- const extensionConfiguration = {
118
- ...asPartial((0, import_region_config_resolver.getAwsRegionExtensionConfiguration)(runtimeConfig)),
119
- ...asPartial((0, import_smithy_client.getDefaultExtensionConfiguration)(runtimeConfig)),
120
- ...asPartial((0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig)),
121
- ...asPartial(getHttpAuthExtensionConfiguration(runtimeConfig))
122
- };
115
+ const extensionConfiguration = Object.assign(
116
+ (0, import_region_config_resolver.getAwsRegionExtensionConfiguration)(runtimeConfig),
117
+ (0, import_smithy_client.getDefaultExtensionConfiguration)(runtimeConfig),
118
+ (0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig),
119
+ getHttpAuthExtensionConfiguration(runtimeConfig)
120
+ );
123
121
  extensions.forEach((extension) => extension.configure(extensionConfiguration));
124
- return {
125
- ...runtimeConfig,
126
- ...(0, import_region_config_resolver.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
127
- ...(0, import_smithy_client.resolveDefaultRuntimeConfig)(extensionConfiguration),
128
- ...(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
129
- ...resolveHttpAuthRuntimeConfig(extensionConfiguration)
130
- };
122
+ return Object.assign(
123
+ runtimeConfig,
124
+ (0, import_region_config_resolver.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
125
+ (0, import_smithy_client.resolveDefaultRuntimeConfig)(extensionConfiguration),
126
+ (0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
127
+ resolveHttpAuthRuntimeConfig(extensionConfiguration)
128
+ );
131
129
  }, "resolveRuntimeExtensions");
132
130
 
133
131
  // src/MarketplaceEntitlementServiceClient.ts
@@ -141,6 +139,8 @@ var MarketplaceEntitlementServiceClient = class extends import_smithy_client.Cli
141
139
  config;
142
140
  constructor(...[configuration]) {
143
141
  const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
142
+ super(_config_0);
143
+ this.initConfig = _config_0;
144
144
  const _config_1 = resolveClientEndpointParameters(_config_0);
145
145
  const _config_2 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_1);
146
146
  const _config_3 = (0, import_middleware_retry.resolveRetryConfig)(_config_2);
@@ -149,7 +149,6 @@ var MarketplaceEntitlementServiceClient = class extends import_smithy_client.Cli
149
149
  const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
150
150
  const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
151
151
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
152
- super(_config_8);
153
152
  this.config = _config_8;
154
153
  this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
155
154
  this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
@@ -207,6 +206,7 @@ var MarketplaceEntitlementServiceServiceException = class _MarketplaceEntitlemen
207
206
 
208
207
  // src/models/models_0.ts
209
208
  var GetEntitlementFilterName = {
209
+ CUSTOMER_AWS_ACCOUNT_ID: "CUSTOMER_AWS_ACCOUNT_ID",
210
210
  CUSTOMER_IDENTIFIER: "CUSTOMER_IDENTIFIER",
211
211
  DIMENSION: "DIMENSION"
212
212
  };
@@ -339,6 +339,7 @@ var de_ThrottlingExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, cont
339
339
  }, "de_ThrottlingExceptionRes");
340
340
  var de_Entitlement = /* @__PURE__ */ __name((output, context) => {
341
341
  return (0, import_smithy_client.take)(output, {
342
+ CustomerAWSAccountId: import_smithy_client.expectString,
342
343
  CustomerIdentifier: import_smithy_client.expectString,
343
344
  Dimension: import_smithy_client.expectString,
344
345
  ExpirationDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ExpirationDate"),
@@ -17,6 +17,8 @@ export class MarketplaceEntitlementServiceClient extends __Client {
17
17
  config;
18
18
  constructor(...[configuration]) {
19
19
  const _config_0 = __getRuntimeConfig(configuration || {});
20
+ super(_config_0);
21
+ this.initConfig = _config_0;
20
22
  const _config_1 = resolveClientEndpointParameters(_config_0);
21
23
  const _config_2 = resolveUserAgentConfig(_config_1);
22
24
  const _config_3 = resolveRetryConfig(_config_2);
@@ -25,7 +27,6 @@ export class MarketplaceEntitlementServiceClient extends __Client {
25
27
  const _config_6 = resolveEndpointConfig(_config_5);
26
28
  const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
27
29
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
28
- super(_config_8);
29
30
  this.config = _config_8;
30
31
  this.middlewareStack.use(getUserAgentPlugin(this.config));
31
32
  this.middlewareStack.use(getRetryPlugin(this.config));
@@ -35,7 +35,5 @@ export const defaultMarketplaceEntitlementServiceHttpAuthSchemeProvider = (authP
35
35
  };
36
36
  export const resolveHttpAuthSchemeConfig = (config) => {
37
37
  const config_0 = resolveAwsSdkSigV4Config(config);
38
- return {
39
- ...config_0,
40
- };
38
+ return Object.assign(config_0, {});
41
39
  };
@@ -1,10 +1,9 @@
1
1
  export const resolveClientEndpointParameters = (options) => {
2
- return {
3
- ...options,
2
+ return Object.assign(options, {
4
3
  useDualstackEndpoint: options.useDualstackEndpoint ?? false,
5
4
  useFipsEndpoint: options.useFipsEndpoint ?? false,
6
5
  defaultSigningName: "aws-marketplace",
7
- };
6
+ });
8
7
  };
9
8
  export const commonParams = {
10
9
  UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
@@ -1,5 +1,6 @@
1
1
  import { MarketplaceEntitlementServiceServiceException as __BaseException } from "./MarketplaceEntitlementServiceServiceException";
2
2
  export const GetEntitlementFilterName = {
3
+ CUSTOMER_AWS_ACCOUNT_ID: "CUSTOMER_AWS_ACCOUNT_ID",
3
4
  CUSTOMER_IDENTIFIER: "CUSTOMER_IDENTIFIER",
4
5
  DIMENSION: "DIMENSION",
5
6
  };
@@ -76,6 +76,7 @@ const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
76
76
  };
77
77
  const de_Entitlement = (output, context) => {
78
78
  return take(output, {
79
+ CustomerAWSAccountId: __expectString,
79
80
  CustomerIdentifier: __expectString,
80
81
  Dimension: __expectString,
81
82
  ExpirationDate: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
@@ -2,20 +2,8 @@ import { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfigurat
2
2
  import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } from "@smithy/protocol-http";
3
3
  import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client";
4
4
  import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration";
5
- const asPartial = (t) => t;
6
5
  export const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
7
- const extensionConfiguration = {
8
- ...asPartial(getAwsRegionExtensionConfiguration(runtimeConfig)),
9
- ...asPartial(getDefaultExtensionConfiguration(runtimeConfig)),
10
- ...asPartial(getHttpHandlerExtensionConfiguration(runtimeConfig)),
11
- ...asPartial(getHttpAuthExtensionConfiguration(runtimeConfig)),
12
- };
6
+ const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
13
7
  extensions.forEach((extension) => extension.configure(extensionConfiguration));
14
- return {
15
- ...runtimeConfig,
16
- ...resolveAwsRegionExtensionConfiguration(extensionConfiguration),
17
- ...resolveDefaultRuntimeConfig(extensionConfiguration),
18
- ...resolveHttpHandlerRuntimeConfig(extensionConfiguration),
19
- ...resolveHttpAuthRuntimeConfig(extensionConfiguration),
20
- };
8
+ return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
21
9
  };
@@ -28,7 +28,13 @@ declare const GetEntitlementsCommand_base: {
28
28
  };
29
29
  /**
30
30
  * <p>GetEntitlements retrieves entitlement values for a given product. The results can be
31
- * filtered based on customer identifier or product dimensions.</p>
31
+ * filtered based on customer identifier, AWS account ID, or product dimensions.</p>
32
+ * <important>
33
+ * <p>
34
+ * The <code>CustomerIdentifier</code> parameter is on path for deprecation. Use <code>CustomerAWSAccountID</code> instead.</p>
35
+ * <p>These parameters are mutually exclusive. You can't specify both <code>CustomerIdentifier</code> and <code>CustomerAWSAccountID</code> in the same request.
36
+ * </p>
37
+ * </important>
32
38
  * @example
33
39
  * Use a bare-bones client and the command you need to make an API call.
34
40
  * ```javascript
@@ -53,6 +59,7 @@ declare const GetEntitlementsCommand_base: {
53
59
  * // ProductCode: "STRING_VALUE",
54
60
  * // Dimension: "STRING_VALUE",
55
61
  * // CustomerIdentifier: "STRING_VALUE",
62
+ * // CustomerAWSAccountId: "STRING_VALUE",
56
63
  * // Value: { // EntitlementValue
57
64
  * // IntegerValue: Number("int"),
58
65
  * // DoubleValue: Number("double"),
@@ -5,6 +5,7 @@ import { MarketplaceEntitlementServiceServiceException as __BaseException } from
5
5
  * @enum
6
6
  */
7
7
  export declare const GetEntitlementFilterName: {
8
+ readonly CUSTOMER_AWS_ACCOUNT_ID: "CUSTOMER_AWS_ACCOUNT_ID";
8
9
  readonly CUSTOMER_IDENTIFIER: "CUSTOMER_IDENTIFIER";
9
10
  readonly DIMENSION: "DIMENSION";
10
11
  };
@@ -29,6 +30,9 @@ export interface GetEntitlementsRequest {
29
30
  * dimension. Filters are described as keys mapped to a lists of values. Filtered requests are
30
31
  * <i>unioned</i> for each value in the value list, and then
31
32
  * <i>intersected</i> for each filter key.</p>
33
+ * <p>
34
+ * <code>CustomerIdentifier</code> and <code>CustomerAWSAccountID</code> are mutually exclusive. You can't specify both in the same request.
35
+ * </p>
32
36
  * @public
33
37
  */
34
38
  Filter?: Partial<Record<GetEntitlementFilterName, string[]>> | undefined;
@@ -103,6 +107,13 @@ export interface Entitlement {
103
107
  * @public
104
108
  */
105
109
  CustomerIdentifier?: string | undefined;
110
+ /**
111
+ * <p>
112
+ * The <code>CustomerAWSAccountID</code> parameter specifies the AWS account ID of the buyer.
113
+ * </p>
114
+ * @public
115
+ */
116
+ CustomerAWSAccountId?: string | undefined;
106
117
  /**
107
118
  * <p>The EntitlementValue represents the amount of capacity that the customer is entitled to
108
119
  * for the product.</p>
@@ -1,6 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { MarketplaceEntitlementServiceServiceException as __BaseException } from "./MarketplaceEntitlementServiceServiceException";
3
3
  export declare const GetEntitlementFilterName: {
4
+ readonly CUSTOMER_AWS_ACCOUNT_ID: "CUSTOMER_AWS_ACCOUNT_ID";
4
5
  readonly CUSTOMER_IDENTIFIER: "CUSTOMER_IDENTIFIER";
5
6
  readonly DIMENSION: "DIMENSION";
6
7
  };
@@ -22,6 +23,7 @@ export interface Entitlement {
22
23
  ProductCode?: string | undefined;
23
24
  Dimension?: string | undefined;
24
25
  CustomerIdentifier?: string | undefined;
26
+ CustomerAWSAccountId?: string | undefined;
25
27
  Value?: EntitlementValue | undefined;
26
28
  ExpirationDate?: Date | undefined;
27
29
  }
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.772.0",
4
+ "version": "3.775.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,41 +20,41 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.758.0",
24
- "@aws-sdk/credential-provider-node": "3.772.0",
25
- "@aws-sdk/middleware-host-header": "3.734.0",
26
- "@aws-sdk/middleware-logger": "3.734.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.772.0",
28
- "@aws-sdk/middleware-user-agent": "3.758.0",
29
- "@aws-sdk/region-config-resolver": "3.734.0",
30
- "@aws-sdk/types": "3.734.0",
31
- "@aws-sdk/util-endpoints": "3.743.0",
32
- "@aws-sdk/util-user-agent-browser": "3.734.0",
33
- "@aws-sdk/util-user-agent-node": "3.758.0",
34
- "@smithy/config-resolver": "^4.0.1",
35
- "@smithy/core": "^3.1.5",
36
- "@smithy/fetch-http-handler": "^5.0.1",
37
- "@smithy/hash-node": "^4.0.1",
38
- "@smithy/invalid-dependency": "^4.0.1",
39
- "@smithy/middleware-content-length": "^4.0.1",
40
- "@smithy/middleware-endpoint": "^4.0.6",
41
- "@smithy/middleware-retry": "^4.0.7",
42
- "@smithy/middleware-serde": "^4.0.2",
43
- "@smithy/middleware-stack": "^4.0.1",
44
- "@smithy/node-config-provider": "^4.0.1",
45
- "@smithy/node-http-handler": "^4.0.3",
46
- "@smithy/protocol-http": "^5.0.1",
47
- "@smithy/smithy-client": "^4.1.6",
48
- "@smithy/types": "^4.1.0",
49
- "@smithy/url-parser": "^4.0.1",
23
+ "@aws-sdk/core": "3.775.0",
24
+ "@aws-sdk/credential-provider-node": "3.775.0",
25
+ "@aws-sdk/middleware-host-header": "3.775.0",
26
+ "@aws-sdk/middleware-logger": "3.775.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.775.0",
28
+ "@aws-sdk/middleware-user-agent": "3.775.0",
29
+ "@aws-sdk/region-config-resolver": "3.775.0",
30
+ "@aws-sdk/types": "3.775.0",
31
+ "@aws-sdk/util-endpoints": "3.775.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.775.0",
33
+ "@aws-sdk/util-user-agent-node": "3.775.0",
34
+ "@smithy/config-resolver": "^4.1.0",
35
+ "@smithy/core": "^3.2.0",
36
+ "@smithy/fetch-http-handler": "^5.0.2",
37
+ "@smithy/hash-node": "^4.0.2",
38
+ "@smithy/invalid-dependency": "^4.0.2",
39
+ "@smithy/middleware-content-length": "^4.0.2",
40
+ "@smithy/middleware-endpoint": "^4.1.0",
41
+ "@smithy/middleware-retry": "^4.1.0",
42
+ "@smithy/middleware-serde": "^4.0.3",
43
+ "@smithy/middleware-stack": "^4.0.2",
44
+ "@smithy/node-config-provider": "^4.0.2",
45
+ "@smithy/node-http-handler": "^4.0.4",
46
+ "@smithy/protocol-http": "^5.1.0",
47
+ "@smithy/smithy-client": "^4.2.0",
48
+ "@smithy/types": "^4.2.0",
49
+ "@smithy/url-parser": "^4.0.2",
50
50
  "@smithy/util-base64": "^4.0.0",
51
51
  "@smithy/util-body-length-browser": "^4.0.0",
52
52
  "@smithy/util-body-length-node": "^4.0.0",
53
- "@smithy/util-defaults-mode-browser": "^4.0.7",
54
- "@smithy/util-defaults-mode-node": "^4.0.7",
55
- "@smithy/util-endpoints": "^3.0.1",
56
- "@smithy/util-middleware": "^4.0.1",
57
- "@smithy/util-retry": "^4.0.1",
53
+ "@smithy/util-defaults-mode-browser": "^4.0.8",
54
+ "@smithy/util-defaults-mode-node": "^4.0.8",
55
+ "@smithy/util-endpoints": "^3.0.2",
56
+ "@smithy/util-middleware": "^4.0.2",
57
+ "@smithy/util-retry": "^4.0.2",
58
58
  "@smithy/util-utf8": "^4.0.0",
59
59
  "tslib": "^2.6.2"
60
60
  },