aws-sdk-appflow 1.14.0 → 1.18.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: e4e4a76a6fd24e9c374a6a6be3c3be8482ced060147fa3ecdf4c9af1197d6049
4
- data.tar.gz: c04b4914b000088dd4c76e54d5df2ff525bbe8ceea5a2538ea33ab3f5e203bd5
3
+ metadata.gz: 234d233093736954f267f9532cbae0fe5a59649786c5c63b471f0c020d3695ae
4
+ data.tar.gz: 0b9924e8a08bf4e77266cb61a7f6166500a055c133b3cb6bba954b05858da3eb
5
5
  SHA512:
6
- metadata.gz: 011a47b85e81fb2792ea522130fbad711d2b0e2bcba9b98b29020db9d5e23e4461b89cde25b13638b5f66fa4ea83e7070f78671fcc8969cb07f9508023aae7f4
7
- data.tar.gz: 8e08bfa55a44ee1d534946bea0706d2fa7d45f70359be19e8d60e3e3eebfbb0834fdd486b27c2ad8b87156239acf91145f08754fd7c6cea8c401ac3fbeadb88e
6
+ metadata.gz: '08be6be39ebedc67dab7c0452df6f7052fdce0af883c4a43808ec542744da3e6f1a0069870e30f09d54e5ce2a9a6bb4560cbc5250218a40d34ca45f751a5f599'
7
+ data.tar.gz: '08f9fdddca71795b80f9fb5f742cd93170633e463f888cfd2488e80b05c7ffc86d3ee8993190aa438ac68e8186a52e9920daaf635de511d5d01d23746fc58a1d'
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.18.0 (2021-11-04)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.17.0 (2021-10-20)
10
+ ------------------
11
+
12
+ * Feature - Feature to add support for JSON-L format for S3 as a source.
13
+
14
+ 1.16.0 (2021-10-18)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.15.0 (2021-09-01)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.14.0 (2021-08-19)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.14.0
1
+ 1.18.0
@@ -275,6 +275,15 @@ module Aws::Appflow
275
275
  # ** Please note ** When response stubbing is enabled, no HTTP
276
276
  # requests are made, and retries are disabled.
277
277
  #
278
+ # @option options [Boolean] :use_dualstack_endpoint
279
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
280
+ # will be used if available.
281
+ #
282
+ # @option options [Boolean] :use_fips_endpoint
283
+ # When set to `true`, fips compatible endpoints will be used if available.
284
+ # When a `fips` region is used, the region is normalized and this config
285
+ # is set to `true`.
286
+ #
278
287
  # @option options [Boolean] :validate_params (true)
279
288
  # When `true`, request parameters are validated before
280
289
  # sending the request.
@@ -650,6 +659,9 @@ module Aws::Appflow
650
659
  # s3: {
651
660
  # bucket_name: "BucketName", # required
652
661
  # bucket_prefix: "BucketPrefix",
662
+ # s3_input_format_config: {
663
+ # s3_input_file_type: "CSV", # accepts CSV, JSON
664
+ # },
653
665
  # },
654
666
  # salesforce: {
655
667
  # object: "Object", # required
@@ -1150,6 +1162,7 @@ module Aws::Appflow
1150
1162
  # resp.source_flow_config.source_connector_properties.marketo.object #=> String
1151
1163
  # resp.source_flow_config.source_connector_properties.s3.bucket_name #=> String
1152
1164
  # resp.source_flow_config.source_connector_properties.s3.bucket_prefix #=> String
1165
+ # resp.source_flow_config.source_connector_properties.s3.s3_input_format_config.s3_input_file_type #=> String, one of "CSV", "JSON"
1153
1166
  # resp.source_flow_config.source_connector_properties.salesforce.object #=> String
1154
1167
  # resp.source_flow_config.source_connector_properties.salesforce.enable_dynamic_field_update #=> Boolean
1155
1168
  # resp.source_flow_config.source_connector_properties.salesforce.include_deleted_records #=> Boolean
@@ -1863,6 +1876,9 @@ module Aws::Appflow
1863
1876
  # s3: {
1864
1877
  # bucket_name: "BucketName", # required
1865
1878
  # bucket_prefix: "BucketPrefix",
1879
+ # s3_input_format_config: {
1880
+ # s3_input_file_type: "CSV", # accepts CSV, JSON
1881
+ # },
1866
1882
  # },
1867
1883
  # salesforce: {
1868
1884
  # object: "Object", # required
@@ -2052,7 +2068,7 @@ module Aws::Appflow
2052
2068
  params: params,
2053
2069
  config: config)
2054
2070
  context[:gem_name] = 'aws-sdk-appflow'
2055
- context[:gem_version] = '1.14.0'
2071
+ context[:gem_version] = '1.18.0'
2056
2072
  Seahorse::Client::Request.new(handlers, context)
2057
2073
  end
2058
2074
 
@@ -203,6 +203,8 @@ module Aws::Appflow
203
203
  RoleArn = Shapes::StringShape.new(name: 'RoleArn')
204
204
  S3ConnectorOperator = Shapes::StringShape.new(name: 'S3ConnectorOperator')
205
205
  S3DestinationProperties = Shapes::StructureShape.new(name: 'S3DestinationProperties')
206
+ S3InputFileType = Shapes::StringShape.new(name: 'S3InputFileType')
207
+ S3InputFormatConfig = Shapes::StructureShape.new(name: 'S3InputFormatConfig')
206
208
  S3Metadata = Shapes::StructureShape.new(name: 'S3Metadata')
207
209
  S3OutputFormatConfig = Shapes::StructureShape.new(name: 'S3OutputFormatConfig')
208
210
  S3SourceProperties = Shapes::StructureShape.new(name: 'S3SourceProperties')
@@ -817,6 +819,9 @@ module Aws::Appflow
817
819
  S3DestinationProperties.add_member(:s3_output_format_config, Shapes::ShapeRef.new(shape: S3OutputFormatConfig, location_name: "s3OutputFormatConfig"))
818
820
  S3DestinationProperties.struct_class = Types::S3DestinationProperties
819
821
 
822
+ S3InputFormatConfig.add_member(:s3_input_file_type, Shapes::ShapeRef.new(shape: S3InputFileType, location_name: "s3InputFileType"))
823
+ S3InputFormatConfig.struct_class = Types::S3InputFormatConfig
824
+
820
825
  S3Metadata.struct_class = Types::S3Metadata
821
826
 
822
827
  S3OutputFormatConfig.add_member(:file_type, Shapes::ShapeRef.new(shape: FileType, location_name: "fileType"))
@@ -826,6 +831,7 @@ module Aws::Appflow
826
831
 
827
832
  S3SourceProperties.add_member(:bucket_name, Shapes::ShapeRef.new(shape: BucketName, required: true, location_name: "bucketName"))
828
833
  S3SourceProperties.add_member(:bucket_prefix, Shapes::ShapeRef.new(shape: BucketPrefix, location_name: "bucketPrefix"))
834
+ S3SourceProperties.add_member(:s3_input_format_config, Shapes::ShapeRef.new(shape: S3InputFormatConfig, location_name: "s3InputFormatConfig"))
829
835
  S3SourceProperties.struct_class = Types::S3SourceProperties
830
836
 
831
837
  SAPODataConnectorProfileCredentials.add_member(:basic_auth_credentials, Shapes::ShapeRef.new(shape: BasicAuthCredentials, location_name: "basicAuthCredentials"))
@@ -1485,6 +1485,9 @@ module Aws::Appflow
1485
1485
  # s3: {
1486
1486
  # bucket_name: "BucketName", # required
1487
1487
  # bucket_prefix: "BucketPrefix",
1488
+ # s3_input_format_config: {
1489
+ # s3_input_file_type: "CSV", # accepts CSV, JSON
1490
+ # },
1488
1491
  # },
1489
1492
  # salesforce: {
1490
1493
  # object: "Object", # required
@@ -3797,6 +3800,28 @@ module Aws::Appflow
3797
3800
  include Aws::Structure
3798
3801
  end
3799
3802
 
3803
+ # When you use Amazon S3 as the source, the configuration format that
3804
+ # you provide the flow input data.
3805
+ #
3806
+ # @note When making an API call, you may pass S3InputFormatConfig
3807
+ # data as a hash:
3808
+ #
3809
+ # {
3810
+ # s3_input_file_type: "CSV", # accepts CSV, JSON
3811
+ # }
3812
+ #
3813
+ # @!attribute [rw] s3_input_file_type
3814
+ # The file type that Amazon AppFlow gets from your Amazon S3 bucket.
3815
+ # @return [String]
3816
+ #
3817
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/S3InputFormatConfig AWS API Documentation
3818
+ #
3819
+ class S3InputFormatConfig < Struct.new(
3820
+ :s3_input_file_type)
3821
+ SENSITIVE = []
3822
+ include Aws::Structure
3823
+ end
3824
+
3800
3825
  # The connector metadata specific to Amazon S3.
3801
3826
  #
3802
3827
  # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/S3Metadata AWS API Documentation
@@ -3855,6 +3880,9 @@ module Aws::Appflow
3855
3880
  # {
3856
3881
  # bucket_name: "BucketName", # required
3857
3882
  # bucket_prefix: "BucketPrefix",
3883
+ # s3_input_format_config: {
3884
+ # s3_input_file_type: "CSV", # accepts CSV, JSON
3885
+ # },
3858
3886
  # }
3859
3887
  #
3860
3888
  # @!attribute [rw] bucket_name
@@ -3866,11 +3894,17 @@ module Aws::Appflow
3866
3894
  # are stored.
3867
3895
  # @return [String]
3868
3896
  #
3897
+ # @!attribute [rw] s3_input_format_config
3898
+ # When you use Amazon S3 as the source, the configuration format that
3899
+ # you provide the flow input data.
3900
+ # @return [Types::S3InputFormatConfig]
3901
+ #
3869
3902
  # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/S3SourceProperties AWS API Documentation
3870
3903
  #
3871
3904
  class S3SourceProperties < Struct.new(
3872
3905
  :bucket_name,
3873
- :bucket_prefix)
3906
+ :bucket_prefix,
3907
+ :s3_input_format_config)
3874
3908
  SENSITIVE = []
3875
3909
  include Aws::Structure
3876
3910
  end
@@ -4683,6 +4717,9 @@ module Aws::Appflow
4683
4717
  # s3: {
4684
4718
  # bucket_name: "BucketName", # required
4685
4719
  # bucket_prefix: "BucketPrefix",
4720
+ # s3_input_format_config: {
4721
+ # s3_input_file_type: "CSV", # accepts CSV, JSON
4722
+ # },
4686
4723
  # },
4687
4724
  # salesforce: {
4688
4725
  # object: "Object", # required
@@ -4851,6 +4888,9 @@ module Aws::Appflow
4851
4888
  # s3: {
4852
4889
  # bucket_name: "BucketName", # required
4853
4890
  # bucket_prefix: "BucketPrefix",
4891
+ # s3_input_format_config: {
4892
+ # s3_input_file_type: "CSV", # accepts CSV, JSON
4893
+ # },
4854
4894
  # },
4855
4895
  # salesforce: {
4856
4896
  # object: "Object", # required
@@ -5559,6 +5599,9 @@ module Aws::Appflow
5559
5599
  # s3: {
5560
5600
  # bucket_name: "BucketName", # required
5561
5601
  # bucket_prefix: "BucketPrefix",
5602
+ # s3_input_format_config: {
5603
+ # s3_input_file_type: "CSV", # accepts CSV, JSON
5604
+ # },
5562
5605
  # },
5563
5606
  # salesforce: {
5564
5607
  # object: "Object", # required
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-appflow/customizations'
48
48
  # @!group service
49
49
  module Aws::Appflow
50
50
 
51
- GEM_VERSION = '1.14.0'
51
+ GEM_VERSION = '1.18.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appflow
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.0
4
+ version: 1.18.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: 2021-08-19 00:00:00.000000000 Z
11
+ date: 2021-11-04 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.119.0
22
+ version: 3.122.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.119.0
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -76,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
76
76
  requirements:
77
77
  - - ">="
78
78
  - !ruby/object:Gem::Version
79
- version: '0'
79
+ version: '2.3'
80
80
  required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  requirements:
82
82
  - - ">="