aws-sdk-appintegrationsservice 1.24.0 → 1.25.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: cb9be98db889cd5c3dbb8ebbaa5d793d173d84e92cea658070ec1f7c8c7178eb
4
- data.tar.gz: 7486c83e20b2e813c3ea0af510d7e0361edfa9f092c51291a894ec2827fb0cdd
3
+ metadata.gz: 10908c02bd5129beffad07f85f1fce66d9a2efbe01ab36de24da5c2b2b8fd7bd
4
+ data.tar.gz: 2624a4e824097a14d114934f22b4753e27714d37d49d5c63ebdde801c797e7da
5
5
  SHA512:
6
- metadata.gz: a07fd15e3c66da1936f6d8d128de3b5ac701281207b743e280bced808999727b930ffc4182790b95f6e5b8174d1814c20bc4c4afe80e0c0baf81b3944c9ee295
7
- data.tar.gz: 071c3acb2d95089579645b81652b2231d1bd63d819fc7cbb44d94e95d5b2530c471b3cd42f4defba55d8311869ddcfc2b0d2b412aa36c6c3f72a635b74b890f6
6
+ metadata.gz: 6d453fa101fbc5d969eea53d454737b7762a9bce780792c3b7a3cde75264e7a47a30e6e2b6b4a42cb45ebbd9982186b1d3907ba1001eb14ef4e4f4f494068905
7
+ data.tar.gz: 3ca6e1ac1957d04dc268af8534a4b9d9c4172fe305d5e4a4110d2187df7636515df536a2811dc6cc05366db101abd4a1da3270b81f95b869c1974510314b0a26
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.24.0 (2023-09-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.24.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.24.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.24.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.24.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-27 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