aws-sdk-marketplaceentitlementservice 1.68.0 → 1.69.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: 5479937fff59c80c2d64bb64bac3d23596174ec0ba21a80f435ee0442b38335a
4
- data.tar.gz: 48f3926be58abd0f0290d7b7180a0346a61041518717cdb8dab90dd7555fe0b0
3
+ metadata.gz: b3efa2ec1a5d0f1c9564a0a8b3deca6914d2f4d94b4214d35344c84ea3ad8215
4
+ data.tar.gz: c505f152ddacbddd8faffbe65e247a986f552fe965c5a7a277fbdeab8505985f
5
5
  SHA512:
6
- metadata.gz: 0a4356075dfa9f4ecebd20e1e6c549733b8aaa67af2baa7b16338e511fc5fb49f2073934eb3a7e8331a889d2c5282fe7bd3e04b68c32394c4f9fc5fbcbd355fb
7
- data.tar.gz: 6604f9ddcc9b512701ea08993f631a3ecd8445810483adee6563670e1d43439dde045370763431c5f9f299d76be40ed602eea8ab7844f9f998291747f903237f
6
+ metadata.gz: dc6a8d796a0d872fd455bf73334c96d87c70e67ed8b75e6b6e370a129dc39980e5e0d8efeefb1676d4a51bb93781a0b54425cdbbcf649c5dff4288f130b2ed0e
7
+ data.tar.gz: 491a2dea437ba9391b1d63c5dee9d2304ecd6699dc699472e6233c226ebf04a8c6466c31fa06a141fff6c731a4360b069bf4892c8f314bc0d37cb105d3d407ef
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.69.0 (2025-04-11)
5
+ ------------------
6
+
7
+ * Feature - Add support for Marketplace Entitlement Service dual-stack endpoints for CN and GOV regions
8
+
4
9
  1.68.0 (2025-03-31)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.68.0
1
+ 1.69.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.68.0'
572
+ context[:gem_version] = '1.69.0'
573
573
  Seahorse::Client::Request.new(handlers, context)
574
574
  end
575
575
 
@@ -27,6 +27,9 @@ module Aws::MarketplaceEntitlementService
27
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
28
  return Aws::Endpoints::Endpoint.new(url: "https://entitlement-marketplace.#{parameters.region}.amazonaws.com.cn", headers: {}, properties: {})
29
29
  end
30
+ 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, true)
31
+ return Aws::Endpoints::Endpoint.new(url: "https://entitlement-marketplace.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
32
+ end
30
33
  if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
31
34
  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"))
32
35
  return Aws::Endpoints::Endpoint.new(url: "https://entitlement.marketplace-fips.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
@@ -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.68.0'
57
+ GEM_VERSION = '1.69.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.68.0
4
+ version: 1.69.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-31 00:00:00.000000000 Z
11
+ date: 2025-04-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core