aws-sdk-marketplaceentitlementservice 1.66.0 → 1.68.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d0b6768c092b7298c03397fbb5d01f36a8caa8f701a0d5b214e95a9dcfa63bed
4
- data.tar.gz: e4a0820d868ff4443c74714c2e40a7af713e620856c5b42c0e8bea865525f608
3
+ metadata.gz: 5479937fff59c80c2d64bb64bac3d23596174ec0ba21a80f435ee0442b38335a
4
+ data.tar.gz: 48f3926be58abd0f0290d7b7180a0346a61041518717cdb8dab90dd7555fe0b0
5
5
  SHA512:
6
- metadata.gz: f7fe31b468e46d3629f8b67ecc9797eeb62deaa78844d8a3d16debcdb9a491990a8d279f4e12dcbfa61de487d628b289145b7fbf29a22d84b69a3c9734fc536e
7
- data.tar.gz: 715a2415a69380fb7119e3aacf0c1413316d5aff401a5fbd1c75b8f975aa98adfc1e5647b6922a768bfb3205394319a8939e142a1f1503fd63d06a49f61842a5
6
+ metadata.gz: 0a4356075dfa9f4ecebd20e1e6c549733b8aaa67af2baa7b16338e511fc5fb49f2073934eb3a7e8331a889d2c5282fe7bd3e04b68c32394c4f9fc5fbcbd355fb
7
+ data.tar.gz: 6604f9ddcc9b512701ea08993f631a3ecd8445810483adee6563670e1d43439dde045370763431c5f9f299d76be40ed602eea8ab7844f9f998291747f903237f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.68.0 (2025-03-31)
5
+ ------------------
6
+
7
+ * Feature - Add support for Marketplace Entitlement Service dual-stack endpoints.
8
+
9
+ 1.67.0 (2025-03-25)
10
+ ------------------
11
+
12
+ * Feature - This release enhances the GetEntitlements API to support new filter CUSTOMER_AWS_ACCOUNT_ID in request and CustomerAWSAccountId field in response.
13
+
4
14
  1.66.0 (2025-02-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.66.0
1
+ 1.68.0
@@ -478,8 +478,14 @@ module Aws::MarketplaceEntitlementService
478
478
  # @!group API Operations
479
479
 
480
480
  # GetEntitlements retrieves entitlement values for a given product. The
481
- # results can be filtered based on customer identifier or product
482
- # dimensions.
481
+ # results can be filtered based on customer identifier, AWS account ID,
482
+ # or product dimensions.
483
+ #
484
+ # The `CustomerIdentifier` parameter is on path for deprecation. Use
485
+ # `CustomerAWSAccountID` instead.
486
+ #
487
+ # These parameters are mutually exclusive. You can't specify both
488
+ # `CustomerIdentifier` and `CustomerAWSAccountID` in the same request.
483
489
  #
484
490
  # @option params [required, String] :product_code
485
491
  # Product code is used to uniquely identify a product in AWS
@@ -492,6 +498,9 @@ module Aws::MarketplaceEntitlementService
492
498
  # values. Filtered requests are *unioned* for each value in the value
493
499
  # list, and then *intersected* for each filter key.
494
500
  #
501
+ # `CustomerIdentifier` and `CustomerAWSAccountID` are mutually
502
+ # exclusive. You can't specify both in the same request.
503
+ #
495
504
  # @option params [String] :next_token
496
505
  # For paginated calls to GetEntitlements, pass the NextToken from the
497
506
  # previous GetEntitlementsResult.
@@ -525,6 +534,7 @@ module Aws::MarketplaceEntitlementService
525
534
  # resp.entitlements[0].product_code #=> String
526
535
  # resp.entitlements[0].dimension #=> String
527
536
  # resp.entitlements[0].customer_identifier #=> String
537
+ # resp.entitlements[0].customer_aws_account_id #=> String
528
538
  # resp.entitlements[0].value.integer_value #=> Integer
529
539
  # resp.entitlements[0].value.double_value #=> Float
530
540
  # resp.entitlements[0].value.boolean_value #=> Boolean
@@ -559,7 +569,7 @@ module Aws::MarketplaceEntitlementService
559
569
  tracer: tracer
560
570
  )
561
571
  context[:gem_name] = 'aws-sdk-marketplaceentitlementservice'
562
- context[:gem_version] = '1.66.0'
572
+ context[:gem_version] = '1.68.0'
563
573
  Seahorse::Client::Request.new(handlers, context)
564
574
  end
565
575
 
@@ -39,6 +39,7 @@ module Aws::MarketplaceEntitlementService
39
39
  Entitlement.add_member(:product_code, Shapes::ShapeRef.new(shape: ProductCode, location_name: "ProductCode"))
40
40
  Entitlement.add_member(:dimension, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "Dimension"))
41
41
  Entitlement.add_member(:customer_identifier, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "CustomerIdentifier"))
42
+ Entitlement.add_member(:customer_aws_account_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "CustomerAWSAccountId"))
42
43
  Entitlement.add_member(:value, Shapes::ShapeRef.new(shape: EntitlementValue, location_name: "Value"))
43
44
  Entitlement.add_member(:expiration_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "ExpirationDate"))
44
45
  Entitlement.struct_class = Types::Entitlement
@@ -10,11 +10,6 @@
10
10
  module Aws::MarketplaceEntitlementService
11
11
  # Endpoint parameters used to influence endpoints per request.
12
12
  #
13
- # @!attribute region
14
- # The AWS region used to dispatch the request.
15
- #
16
- # @return [String]
17
- #
18
13
  # @!attribute use_dual_stack
19
14
  # When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
20
15
  #
@@ -30,39 +25,44 @@ module Aws::MarketplaceEntitlementService
30
25
  #
31
26
  # @return [String]
32
27
  #
28
+ # @!attribute region
29
+ # The AWS region used to dispatch the request.
30
+ #
31
+ # @return [String]
32
+ #
33
33
  EndpointParameters = Struct.new(
34
- :region,
35
34
  :use_dual_stack,
36
35
  :use_fips,
37
36
  :endpoint,
37
+ :region,
38
38
  ) do
39
39
  include Aws::Structure
40
40
 
41
41
  # @api private
42
42
  class << self
43
43
  PARAM_MAP = {
44
- 'Region' => :region,
45
44
  'UseDualStack' => :use_dual_stack,
46
45
  'UseFIPS' => :use_fips,
47
46
  'Endpoint' => :endpoint,
47
+ 'Region' => :region,
48
48
  }.freeze
49
49
  end
50
50
 
51
51
  def initialize(options = {})
52
- self[:region] = options[:region]
53
52
  self[:use_dual_stack] = options[:use_dual_stack]
54
53
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
55
54
  self[:use_fips] = options[:use_fips]
56
55
  self[:use_fips] = false if self[:use_fips].nil?
57
56
  self[:endpoint] = options[:endpoint]
57
+ self[:region] = options[:region]
58
58
  end
59
59
 
60
60
  def self.create(config, options={})
61
61
  new({
62
- region: config.region,
63
62
  use_dual_stack: config.use_dualstack_endpoint,
64
63
  use_fips: config.use_fips_endpoint,
65
64
  endpoint: (config.endpoint.to_s unless config.regional_endpoint),
65
+ region: config.region,
66
66
  }.merge(options))
67
67
  end
68
68
  end
@@ -21,30 +21,30 @@ module Aws::MarketplaceEntitlementService
21
21
  end
22
22
  if Aws::Endpoints::Matchers.set?(parameters.region)
23
23
  if (partition_result = Aws::Endpoints::Matchers.aws_partition(parameters.region))
24
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
25
+ return Aws::Endpoints::Endpoint.new(url: "https://entitlement-marketplace.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-cn") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
28
+ return Aws::Endpoints::Endpoint.new(url: "https://entitlement-marketplace.#{parameters.region}.amazonaws.com.cn", headers: {}, properties: {})
29
+ end
24
30
  if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
25
31
  if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
26
32
  return Aws::Endpoints::Endpoint.new(url: "https://entitlement.marketplace-fips.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
27
33
  end
28
34
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
29
35
  end
30
- if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
36
+ if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
31
37
  if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
32
38
  return Aws::Endpoints::Endpoint.new(url: "https://entitlement.marketplace-fips.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
33
39
  end
34
40
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
35
41
  end
36
- if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
42
+ if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
37
43
  if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
38
44
  return Aws::Endpoints::Endpoint.new(url: "https://entitlement.marketplace.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
39
45
  end
40
46
  raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
41
47
  end
42
- if Aws::Endpoints::Matchers.string_equals?(parameters.region, "cn-northwest-1")
43
- return Aws::Endpoints::Endpoint.new(url: "https://entitlement-marketplace.cn-northwest-1.amazonaws.com.cn", headers: {}, properties: {})
44
- end
45
- if Aws::Endpoints::Matchers.string_equals?("aws", Aws::Endpoints::Matchers.attr(partition_result, "name"))
46
- return Aws::Endpoints::Endpoint.new(url: "https://entitlement.marketplace.#{parameters.region}.amazonaws.com", headers: {}, properties: {})
47
- end
48
48
  return Aws::Endpoints::Endpoint.new(url: "https://entitlement.marketplace.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
49
49
  end
50
50
  end
@@ -33,6 +33,11 @@ module Aws::MarketplaceEntitlementService
33
33
  # ResolveCustomer operation in AWS Marketplace Metering Service.
34
34
  # @return [String]
35
35
  #
36
+ # @!attribute [rw] customer_aws_account_id
37
+ # The `CustomerAWSAccountID` parameter specifies the AWS account ID of
38
+ # the buyer.
39
+ # @return [String]
40
+ #
36
41
  # @!attribute [rw] value
37
42
  # The EntitlementValue represents the amount of capacity that the
38
43
  # customer is entitled to for the product.
@@ -53,6 +58,7 @@ module Aws::MarketplaceEntitlementService
53
58
  :product_code,
54
59
  :dimension,
55
60
  :customer_identifier,
61
+ :customer_aws_account_id,
56
62
  :value,
57
63
  :expiration_date)
58
64
  SENSITIVE = []
@@ -109,6 +115,9 @@ module Aws::MarketplaceEntitlementService
109
115
  # a specific dimension. Filters are described as keys mapped to a
110
116
  # lists of values. Filtered requests are *unioned* for each value in
111
117
  # the value list, and then *intersected* for each filter key.
118
+ #
119
+ # `CustomerIdentifier` and `CustomerAWSAccountID` are mutually
120
+ # exclusive. You can't specify both in the same request.
112
121
  # @return [Hash<String,Array<String>>]
113
122
  #
114
123
  # @!attribute [rw] next_token
@@ -54,7 +54,7 @@ module Aws::MarketplaceEntitlementService
54
54
  autoload :EndpointProvider, 'aws-sdk-marketplaceentitlementservice/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-marketplaceentitlementservice/endpoints'
56
56
 
57
- GEM_VERSION = '1.66.0'
57
+ GEM_VERSION = '1.68.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -86,7 +86,7 @@ module Aws
86
86
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceEntitlementService/Client.html#get_entitlements-instance_method
87
87
  def get_entitlements: (
88
88
  product_code: ::String,
89
- ?filter: Hash[("CUSTOMER_IDENTIFIER" | "DIMENSION"), Array[::String]],
89
+ ?filter: Hash[("CUSTOMER_IDENTIFIER" | "DIMENSION" | "CUSTOMER_AWS_ACCOUNT_ID"), Array[::String]],
90
90
  ?next_token: ::String,
91
91
  ?max_results: ::Integer
92
92
  ) -> _GetEntitlementsResponseSuccess
data/sig/types.rbs CHANGED
@@ -12,6 +12,7 @@ module Aws::MarketplaceEntitlementService
12
12
  attr_accessor product_code: ::String
13
13
  attr_accessor dimension: ::String
14
14
  attr_accessor customer_identifier: ::String
15
+ attr_accessor customer_aws_account_id: ::String
15
16
  attr_accessor value: Types::EntitlementValue
16
17
  attr_accessor expiration_date: ::Time
17
18
  SENSITIVE: []
@@ -27,7 +28,7 @@ module Aws::MarketplaceEntitlementService
27
28
 
28
29
  class GetEntitlementsRequest
29
30
  attr_accessor product_code: ::String
30
- attr_accessor filter: ::Hash[("CUSTOMER_IDENTIFIER" | "DIMENSION"), ::Array[::String]]
31
+ attr_accessor filter: ::Hash[("CUSTOMER_IDENTIFIER" | "DIMENSION" | "CUSTOMER_AWS_ACCOUNT_ID"), ::Array[::String]]
31
32
  attr_accessor next_token: ::String
32
33
  attr_accessor max_results: ::Integer
33
34
  SENSITIVE: []
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-marketplaceentitlementservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.66.0
4
+ version: 1.68.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-02-18 00:00:00.000000000 Z
11
+ date: 2025-03-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core