aws-sdk-connect 1.179.0 → 1.181.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: 3bc68422d6cba63a041912c0bb9ed4e59e03768aa10709ada6ef96b0496a29f7
4
- data.tar.gz: 9d8bc377d9f64c20f6eaa7c4262ebb70796fd81cd4fe435566404669f7d37ff5
3
+ metadata.gz: a77d26277885d45d7f2641a44065d0728183d3fdfed1053f1055a487a8b522ca
4
+ data.tar.gz: 37edc1bdc2f9269121861f72d722db02d5308c30fe829114f6a6296358022e0c
5
5
  SHA512:
6
- metadata.gz: cb5fee7fa89604f272d7a2729510f5c8f0f6c71579bd3d9ac36b3682415d3389dc7181d36e544e5538adb36cad3a5cbe608556c0a79cdb30ad01ecf5b0848412
7
- data.tar.gz: 5e7c7c22374821d3330a4388e0a49ecf729b4f88789a4de5288d30876621b64b2864c842277df1b5bc0fdb5041bb85fbdc97189ef36682518638122aef4b484d
6
+ metadata.gz: 7b86300565e9afc6f3d0f5ef7221263372146d9482bfb8ba907719c1064818a30764e8362e555671c77ff2a59e88794a770056f9f7c40b27385a5f8fffaa419a
7
+ data.tar.gz: 88505c592f7d71b6032458097883a9233f16aea09b8df93798b92c6429b871d486c7c8899c6308899337705a80904a4c5f3436df1785a72e5a4e1c6757cf04fb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.181.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.180.0 (2024-10-03)
10
+ ------------------
11
+
12
+ * Feature - Public GetMetricDataV2 Grouping increase from 3 to 4
13
+
4
14
  1.179.0 (2024-09-30)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.179.0
1
+ 1.181.0
@@ -18472,7 +18472,7 @@ module Aws::Connect
18472
18472
  tracer: tracer
18473
18473
  )
18474
18474
  context[:gem_name] = 'aws-sdk-connect'
18475
- context[:gem_version] = '1.179.0'
18475
+ context[:gem_version] = '1.181.0'
18476
18476
  Seahorse::Client::Request.new(handlers, context)
18477
18477
  end
18478
18478
 
@@ -52,15 +52,18 @@ module Aws::Connect
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