aws-sdk-marketplaceentitlementservice 1.67.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: 84f5e11bef21fed7c75204661c32913b80417d103703a1096e873f4b8e6dc179
4
- data.tar.gz: 040cbd8f39b9ba112557d6cede409a75e94fd009adc7034b5554c5f241e4e5ff
3
+ metadata.gz: 5479937fff59c80c2d64bb64bac3d23596174ec0ba21a80f435ee0442b38335a
4
+ data.tar.gz: 48f3926be58abd0f0290d7b7180a0346a61041518717cdb8dab90dd7555fe0b0
5
5
  SHA512:
6
- metadata.gz: bbcd7f851e9ddd2dfeed91082f12dc1213a4b5ef3d26081dcb99735119c1bdc0fb64e3a6e3b623bd3e0841093ce7243cca622f3cee71783c64b3111cfb76f360
7
- data.tar.gz: 6b5144e203f1663a3f495655caf8fd6b40185486c6d56f2db1b6cd392772a8fad54994370d9dc6b1698b76c5559fd4331ba1d83096b587e6909f7aa25d0d62a2
6
+ metadata.gz: 0a4356075dfa9f4ecebd20e1e6c549733b8aaa67af2baa7b16338e511fc5fb49f2073934eb3a7e8331a889d2c5282fe7bd3e04b68c32394c4f9fc5fbcbd355fb
7
+ data.tar.gz: 6604f9ddcc9b512701ea08993f631a3ecd8445810483adee6563670e1d43439dde045370763431c5f9f299d76be40ed602eea8ab7844f9f998291747f903237f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.67.0 (2025-03-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.67.0
1
+ 1.68.0
@@ -569,7 +569,7 @@ module Aws::MarketplaceEntitlementService
569
569
  tracer: tracer
570
570
  )
571
571
  context[:gem_name] = 'aws-sdk-marketplaceentitlementservice'
572
- context[:gem_version] = '1.67.0'
572
+ context[:gem_version] = '1.68.0'
573
573
  Seahorse::Client::Request.new(handlers, context)
574
574
  end
575
575
 
@@ -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
@@ -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.67.0'
57
+ GEM_VERSION = '1.68.0'
58
58
 
59
59
  end
60
60
 
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.67.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-03-25 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