aws-sdk-marketplacereporting 1.0.0 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bcb5e4837b2f69adcb9abd186047f780469b3db85d027ce7253303eed4496f5d
4
- data.tar.gz: a3ba985a53b9d2aa99582be5faa2b63c2cc4adeb01a8c5100e4a42990465eca8
3
+ metadata.gz: 3e07bf55d1b59388fda5d280b137f887910a67c35809b04f19dd0d75dce4b10d
4
+ data.tar.gz: f4574958f15e4fc9fd6f4e8636241a352f4237d812f396484368af29fe746bb0
5
5
  SHA512:
6
- metadata.gz: b5e784a91571c7f73e9a8c3bd14565d2fc028a66d579cd8f2d900dee23696299002b19aa7addd92e21d4432a46d3b8f6d0d7e700e04d9992aae2dfba158ceb22
7
- data.tar.gz: fb1e77997ff4431c7c3a7b173c00f27cb622c8469cfec60eee5f87bef86b678d84b936e0a5131177c4d396d607e42e4b9597635ea50753375987d97582fb6ce2
6
+ metadata.gz: 41f84411c069d331b4e2b4186c9ec9acfb746c314a5e9ee5ed7c7bd0c71664730ad70ff092f7886c2d5415baad5bedb676c434e2e83b177343b5e7ad962ffefc
7
+ data.tar.gz: ea7b28218894e8925b9339f543d42bb672fff840b2edac2b8ea8d1b8b8ef207a9e57be989217318dbec7a1b74c8d688e32393c59fd9cb64557210346096f3196
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.2.0 (2024-10-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.1.0 (2024-10-07)
10
+ ------------------
11
+
12
+ * Feature - Documentation-only update for AWS Marketplace Reporting API.
13
+
4
14
  1.0.0 (2024-10-03)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.2.0
@@ -450,6 +450,13 @@ module Aws::MarketplaceReporting
450
450
  # Generates an embedding URL for an Amazon QuickSight dashboard for an
451
451
  # anonymous user.
452
452
  #
453
+ # <note markdown="1"> This API is available only to Amazon Web Services Organization
454
+ # management accounts or delegated administrators registered for the
455
+ # procurement insights
456
+ # (`procurement-insights.marketplace.amazonaws.com`) feature.
457
+ #
458
+ # </note>
459
+ #
453
460
  # The following rules apply to a generated URL:
454
461
  #
455
462
  # * It contains a temporary bearer token, valid for 5 minutes after it
@@ -557,7 +564,7 @@ module Aws::MarketplaceReporting
557
564
  tracer: tracer
558
565
  )
559
566
  context[:gem_name] = 'aws-sdk-marketplacereporting'
560
- context[:gem_version] = '1.0.0'
567
+ context[:gem_version] = '1.2.0'
561
568
  Seahorse::Client::Request.new(handlers, context)
562
569
  end
563
570
 
@@ -52,15 +52,18 @@ module Aws::MarketplaceReporting
52
52
  self[:region] = options[:region]
53
53
  self[:use_dual_stack] = options[:use_dual_stack]
54
54
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
55
- if self[:use_dual_stack].nil?
56
- raise ArgumentError, "Missing required EndpointParameter: :use_dual_stack"
57
- end
58
55
  self[:use_fips] = options[:use_fips]
59
56
  self[:use_fips] = false if self[:use_fips].nil?
60
- if self[:use_fips].nil?
61
- raise ArgumentError, "Missing required EndpointParameter: :use_fips"
62
- end
63
57
  self[:endpoint] = options[:endpoint]
64
58
  end
59
+
60
+ def self.create(config, options={})
61
+ new({
62
+ region: config.region,
63
+ use_dual_stack: config.use_dualstack_endpoint,
64
+ use_fips: config.use_fips_endpoint,
65
+ endpoint: (config.endpoint.to_s unless config.regional_endpoint),
66
+ }.merge(options))
67
+ end
65
68
  end
66
69
  end
@@ -12,16 +12,9 @@ module Aws::MarketplaceReporting
12
12
  # @api private
13
13
  module Endpoints
14
14
 
15
- class GetBuyerDashboard
16
- def self.build(context)
17
- Aws::MarketplaceReporting::EndpointParameters.new(
18
- region: context.config.region,
19
- use_dual_stack: context.config.use_dualstack_endpoint,
20
- use_fips: context.config.use_fips_endpoint,
21
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
22
- )
23
- end
24
- end
25
15
 
16
+ def self.parameters_for_operation(context)
17
+ Aws::MarketplaceReporting::EndpointParameters.create(context.config)
18
+ end
26
19
  end
27
20
  end
@@ -27,7 +27,7 @@ The endpoint provider used to resolve endpoints. Any object that responds to
27
27
  class Handler < Seahorse::Client::Handler
28
28
  def call(context)
29
29
  unless context[:discovered_endpoint]
30
- params = parameters_for_operation(context)
30
+ params = Aws::MarketplaceReporting::Endpoints.parameters_for_operation(context)
31
31
  endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
32
 
33
33
  context.http_request.endpoint = endpoint.url
@@ -67,13 +67,6 @@ The endpoint provider used to resolve endpoints. Any object that responds to
67
67
  context.http_request.headers[key] = value
68
68
  end
69
69
  end
70
-
71
- def parameters_for_operation(context)
72
- case context.operation_name
73
- when :get_buyer_dashboard
74
- Aws::MarketplaceReporting::Endpoints::GetBuyerDashboard.build(context)
75
- end
76
- end
77
70
  end
78
71
 
79
72
  def add_handlers(handlers, _config)
@@ -55,7 +55,7 @@ module Aws::MarketplaceReporting
55
55
  autoload :EndpointProvider, 'aws-sdk-marketplacereporting/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-marketplacereporting/endpoints'
57
57
 
58
- GEM_VERSION = '1.0.0'
58
+ GEM_VERSION = '1.2.0'
59
59
 
60
60
  end
61
61
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-marketplacereporting
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.2.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: 2024-10-03 00:00:00.000000000 Z
11
+ date: 2024-10-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.207.0
22
+ version: 3.210.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.207.0
32
+ version: 3.210.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement