aws-sdk-appflow 1.15.0 → 1.19.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: c6275dc5c9f74fcf84f0b710461a3d2448298f58bc1fe4e15243f3b57336a524
4
- data.tar.gz: 5737f7e7a4e4e0daeb4d149a2ef9a9daa4c80899efbc3ec5c390d6a5f72900ff
3
+ metadata.gz: a3e0ef2c7b2b20fb34110d1907aed204b8c7d21bfb42c59f79c3ff83cdaa1785
4
+ data.tar.gz: 9e5a442f79a251403fdda9f0afc5de18598d708c8ad675675125a80e317f5a7b
5
5
  SHA512:
6
- metadata.gz: f9c9b0df4a21cce604248ff0105f7425cad24fca9186521ac1dec77d8a823b913f41a2e548c73548987d9c77a3d2b2999b377225b735b1c5a44e304af6da1904
7
- data.tar.gz: 57ae24a57780cf21810d766dc1eaa72bffffcc90cb65368eec1ad6ca542b82903aa22ccc9fc369b099cd46dcac6d9645ede8b7913142150340073aedcd8c66d2
6
+ metadata.gz: 747bb0f74b3b9d9d57b248dffe7dc62293e1cce472c8fec6b77b4008ce939b94f2030023547bad24324dfcc699cf109744615dd8343b606710ca3ec459ab50ad
7
+ data.tar.gz: 430c584604b5f0279e252e703921cfff21423beaab109f38ad6b9ea733af6ce49acc337c0121aee03851297d74eb52f11b8ca0abc122befedd436a0d1c39b20f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.19.0 (2021-11-30)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.18.0 (2021-11-04)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.17.0 (2021-10-20)
15
+ ------------------
16
+
17
+ * Feature - Feature to add support for JSON-L format for S3 as a source.
18
+
19
+ 1.16.0 (2021-10-18)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.15.0 (2021-09-01)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.15.0
1
+ 1.19.0
@@ -119,7 +119,9 @@ module Aws::Appflow
119
119
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
120
  # are very aggressive. Construct and pass an instance of
121
121
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
122
+ # enable retries and extended timeouts. Instance profile credential
123
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
124
+ # to true.
123
125
  #
124
126
  # @option options [required, String] :region
125
127
  # The AWS region to connect to. The configured `:region` is
@@ -275,6 +277,15 @@ module Aws::Appflow
275
277
  # ** Please note ** When response stubbing is enabled, no HTTP
276
278
  # requests are made, and retries are disabled.
277
279
  #
280
+ # @option options [Boolean] :use_dualstack_endpoint
281
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
282
+ # will be used if available.
283
+ #
284
+ # @option options [Boolean] :use_fips_endpoint
285
+ # When set to `true`, fips compatible endpoints will be used if available.
286
+ # When a `fips` region is used, the region is normalized and this config
287
+ # is set to `true`.
288
+ #
278
289
  # @option options [Boolean] :validate_params (true)
279
290
  # When `true`, request parameters are validated before
280
291
  # sending the request.
@@ -650,6 +661,9 @@ module Aws::Appflow
650
661
  # s3: {
651
662
  # bucket_name: "BucketName", # required
652
663
  # bucket_prefix: "BucketPrefix",
664
+ # s3_input_format_config: {
665
+ # s3_input_file_type: "CSV", # accepts CSV, JSON
666
+ # },
653
667
  # },
654
668
  # salesforce: {
655
669
  # object: "Object", # required
@@ -1150,6 +1164,7 @@ module Aws::Appflow
1150
1164
  # resp.source_flow_config.source_connector_properties.marketo.object #=> String
1151
1165
  # resp.source_flow_config.source_connector_properties.s3.bucket_name #=> String
1152
1166
  # resp.source_flow_config.source_connector_properties.s3.bucket_prefix #=> String
1167
+ # resp.source_flow_config.source_connector_properties.s3.s3_input_format_config.s3_input_file_type #=> String, one of "CSV", "JSON"
1153
1168
  # resp.source_flow_config.source_connector_properties.salesforce.object #=> String
1154
1169
  # resp.source_flow_config.source_connector_properties.salesforce.enable_dynamic_field_update #=> Boolean
1155
1170
  # resp.source_flow_config.source_connector_properties.salesforce.include_deleted_records #=> Boolean
@@ -1863,6 +1878,9 @@ module Aws::Appflow
1863
1878
  # s3: {
1864
1879
  # bucket_name: "BucketName", # required
1865
1880
  # bucket_prefix: "BucketPrefix",
1881
+ # s3_input_format_config: {
1882
+ # s3_input_file_type: "CSV", # accepts CSV, JSON
1883
+ # },
1866
1884
  # },
1867
1885
  # salesforce: {
1868
1886
  # object: "Object", # required
@@ -2052,7 +2070,7 @@ module Aws::Appflow
2052
2070
  params: params,
2053
2071
  config: config)
2054
2072
  context[:gem_name] = 'aws-sdk-appflow'
2055
- context[:gem_version] = '1.15.0'
2073
+ context[:gem_version] = '1.19.0'
2056
2074
  Seahorse::Client::Request.new(handlers, context)
2057
2075
  end
2058
2076
 
@@ -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.15.0'
51
+ GEM_VERSION = '1.19.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.15.0
4
+ version: 1.19.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-09-01 00:00:00.000000000 Z
11
+ date: 2021-11-30 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.120.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.120.0
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement