aws-sdk-appintegrationsservice 1.23.0 → 1.25.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: 9f75e7552274075aa70745cddb6f5f97c8eab8503f307e9be6bceca73e24a5c1
4
- data.tar.gz: eb43ed0340458e9e9880fa6d96399ae6841e5b614e778f484ae9da0308dee1fa
3
+ metadata.gz: 10908c02bd5129beffad07f85f1fce66d9a2efbe01ab36de24da5c2b2b8fd7bd
4
+ data.tar.gz: 2624a4e824097a14d114934f22b4753e27714d37d49d5c63ebdde801c797e7da
5
5
  SHA512:
6
- metadata.gz: d84177a56a536d853dca578e8f546e3c9b754a03c5f66c33ecfbb73d1952d34a287f1c6e355d80a953b46d59d5488d09df71a526230152f18842b6f3babc7dba
7
- data.tar.gz: 4522a814bb4cfd04e8f502032ba89e339b2e30bf1061f4a2d7e55f128a21418b1911af7ac2ac43269227ad383ac999fd04906dfa678bbfea4202e992e007369b
6
+ metadata.gz: 6d453fa101fbc5d969eea53d454737b7762a9bce780792c3b7a3cde75264e7a47a30e6e2b6b4a42cb45ebbd9982186b1d3907ba1001eb14ef4e4f4f494068905
7
+ data.tar.gz: 3ca6e1ac1957d04dc268af8534a4b9d9c4172fe305d5e4a4110d2187df7636515df536a2811dc6cc05366db101abd4a1da3270b81f95b869c1974510314b0a26
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.25.0 (2023-10-20)
5
+ ------------------
6
+
7
+ * Feature - Updated ScheduleConfig to be an optional input to CreateDataIntegration to support event driven downloading of files from sources such as Amazon s3 using Amazon Connect AppIntegrations.
8
+
9
+ 1.24.0 (2023-09-27)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.23.0 (2023-09-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.23.0
1
+ 1.25.0
@@ -520,7 +520,7 @@ module Aws::AppIntegrationsService
520
520
  # @option params [required, String] :source_uri
521
521
  # The URI of the data source.
522
522
  #
523
- # @option params [required, Types::ScheduleConfiguration] :schedule_config
523
+ # @option params [Types::ScheduleConfiguration] :schedule_config
524
524
  # The name of the data and how often it should be pulled from the
525
525
  # source.
526
526
  #
@@ -569,7 +569,7 @@ module Aws::AppIntegrationsService
569
569
  # description: "Description",
570
570
  # kms_key: "NonBlankString", # required
571
571
  # source_uri: "SourceURI", # required
572
- # schedule_config: { # required
572
+ # schedule_config: {
573
573
  # first_execution_from: "NonBlankString",
574
574
  # object: "Object",
575
575
  # schedule_expression: "NonBlankString", # required
@@ -1447,7 +1447,7 @@ module Aws::AppIntegrationsService
1447
1447
  params: params,
1448
1448
  config: config)
1449
1449
  context[:gem_name] = 'aws-sdk-appintegrationsservice'
1450
- context[:gem_version] = '1.23.0'
1450
+ context[:gem_version] = '1.25.0'
1451
1451
  Seahorse::Client::Request.new(handlers, context)
1452
1452
  end
1453
1453
 
@@ -153,7 +153,7 @@ module Aws::AppIntegrationsService
153
153
  CreateDataIntegrationRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
154
154
  CreateDataIntegrationRequest.add_member(:kms_key, Shapes::ShapeRef.new(shape: NonBlankString, required: true, location_name: "KmsKey"))
155
155
  CreateDataIntegrationRequest.add_member(:source_uri, Shapes::ShapeRef.new(shape: SourceURI, required: true, location_name: "SourceURI"))
156
- CreateDataIntegrationRequest.add_member(:schedule_config, Shapes::ShapeRef.new(shape: ScheduleConfiguration, required: true, location_name: "ScheduleConfig"))
156
+ CreateDataIntegrationRequest.add_member(:schedule_config, Shapes::ShapeRef.new(shape: ScheduleConfiguration, location_name: "ScheduleConfig"))
157
157
  CreateDataIntegrationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
158
158
  CreateDataIntegrationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: IdempotencyToken, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
159
159
  CreateDataIntegrationRequest.add_member(:file_configuration, Shapes::ShapeRef.new(shape: FileConfiguration, location_name: "FileConfiguration"))
@@ -32,7 +32,7 @@ module Aws::AppIntegrationsService
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  return Aws::Endpoints::Endpoint.new(url: "https://app-integrations-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
37
  end
38
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-appintegrationsservice/customizations'
52
52
  # @!group service
53
53
  module Aws::AppIntegrationsService
54
54
 
55
- GEM_VERSION = '1.23.0'
55
+ GEM_VERSION = '1.25.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appintegrationsservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.23.0
4
+ version: 1.25.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: 2023-09-26 00:00:00.000000000 Z
11
+ date: 2023-10-20 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.177.0
22
+ version: 3.184.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.177.0
32
+ version: 3.184.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement