aws-sdk-appflow 1.16.0 → 1.20.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: 58fe880ae99c928905178f9feade2f43b22fdbb605fdaf854861023b55f1aeaa
4
- data.tar.gz: d5b8ea12676457b09d8ce1d706d46d1d1c0ab64c9249bc5707febdb7821fbc63
3
+ metadata.gz: 9ea571e148e2bc96925969805ed0f32a5eda098c3c10d79e5a5d7ec3d5bcbe5a
4
+ data.tar.gz: 4fffc366462a54e8f07d7eb32c03e01b65f32625499148a526d4991bdf1e9f39
5
5
  SHA512:
6
- metadata.gz: cdb9bd2c98052da3ac60fc02999a4a11f4b4befe35798682776238bb75658f04536f2cd935cdb8dc815c89961516784616b779a6deb2b145ed7158b99feb6896
7
- data.tar.gz: 799e91ee6180527f98258cf2680f1af05806ac256ebbda329f59c1b9274f239257fc5a00d2156b69e17ae00f02dfdac89d9161fbcae43543a8a17a3a578d6b2f
6
+ metadata.gz: d0413c0195a6e444ac22dc10dd4475cad7bca69938d921c1518861096d5a2db301906f6c5ce54db5fe60ba090107a1a099b1edc22827e24a315b72f0c097c756
7
+ data.tar.gz: ae0aff44f3f53dc8bb676886dd8ec5f2d1f4897a4f6e77791cff4df57ed26bd7b06d0f416b13e5e5d6f786ed5208e6cbfe3a0d71e404a800adf27e56a1363e54
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.20.0 (2021-12-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.19.0 (2021-11-30)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.18.0 (2021-11-04)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.17.0 (2021-10-20)
20
+ ------------------
21
+
22
+ * Feature - Feature to add support for JSON-L format for S3 as a source.
23
+
4
24
  1.16.0 (2021-10-18)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.16.0
1
+ 1.20.0
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
30
31
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
32
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
32
33
 
@@ -73,6 +74,7 @@ module Aws::Appflow
73
74
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
75
  add_plugin(Aws::Plugins::TransferEncoding)
75
76
  add_plugin(Aws::Plugins::HttpChecksum)
77
+ add_plugin(Aws::Plugins::DefaultsMode)
76
78
  add_plugin(Aws::Plugins::SignatureV4)
77
79
  add_plugin(Aws::Plugins::Protocols::RestJson)
78
80
 
@@ -119,7 +121,9 @@ module Aws::Appflow
119
121
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
122
  # are very aggressive. Construct and pass an instance of
121
123
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
124
+ # enable retries and extended timeouts. Instance profile credential
125
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
126
+ # to true.
123
127
  #
124
128
  # @option options [required, String] :region
125
129
  # The AWS region to connect to. The configured `:region` is
@@ -173,6 +177,10 @@ module Aws::Appflow
173
177
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
174
178
  # a clock skew correction and retry requests with skewed client clocks.
175
179
  #
180
+ # @option options [String] :defaults_mode ("legacy")
181
+ # See {Aws::DefaultsModeConfiguration} for a list of the
182
+ # accepted modes and the configuration defaults that are included.
183
+ #
176
184
  # @option options [Boolean] :disable_host_prefix_injection (false)
177
185
  # Set to true to disable SDK automatically adding host prefix
178
186
  # to default service endpoint when available.
@@ -275,6 +283,15 @@ module Aws::Appflow
275
283
  # ** Please note ** When response stubbing is enabled, no HTTP
276
284
  # requests are made, and retries are disabled.
277
285
  #
286
+ # @option options [Boolean] :use_dualstack_endpoint
287
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
288
+ # will be used if available.
289
+ #
290
+ # @option options [Boolean] :use_fips_endpoint
291
+ # When set to `true`, fips compatible endpoints will be used if available.
292
+ # When a `fips` region is used, the region is normalized and this config
293
+ # is set to `true`.
294
+ #
278
295
  # @option options [Boolean] :validate_params (true)
279
296
  # When `true`, request parameters are validated before
280
297
  # sending the request.
@@ -286,7 +303,7 @@ module Aws::Appflow
286
303
  # seconds to wait when opening a HTTP session before raising a
287
304
  # `Timeout::Error`.
288
305
  #
289
- # @option options [Integer] :http_read_timeout (60) The default
306
+ # @option options [Float] :http_read_timeout (60) The default
290
307
  # number of seconds to wait for response data. This value can
291
308
  # safely be set per-request on the session.
292
309
  #
@@ -302,6 +319,9 @@ module Aws::Appflow
302
319
  # disables this behaviour. This value can safely be set per
303
320
  # request on the session.
304
321
  #
322
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
323
+ # in seconds.
324
+ #
305
325
  # @option options [Boolean] :http_wire_trace (false) When `true`,
306
326
  # HTTP debug output will be sent to the `:logger`.
307
327
  #
@@ -650,6 +670,9 @@ module Aws::Appflow
650
670
  # s3: {
651
671
  # bucket_name: "BucketName", # required
652
672
  # bucket_prefix: "BucketPrefix",
673
+ # s3_input_format_config: {
674
+ # s3_input_file_type: "CSV", # accepts CSV, JSON
675
+ # },
653
676
  # },
654
677
  # salesforce: {
655
678
  # object: "Object", # required
@@ -1150,6 +1173,7 @@ module Aws::Appflow
1150
1173
  # resp.source_flow_config.source_connector_properties.marketo.object #=> String
1151
1174
  # resp.source_flow_config.source_connector_properties.s3.bucket_name #=> String
1152
1175
  # resp.source_flow_config.source_connector_properties.s3.bucket_prefix #=> String
1176
+ # resp.source_flow_config.source_connector_properties.s3.s3_input_format_config.s3_input_file_type #=> String, one of "CSV", "JSON"
1153
1177
  # resp.source_flow_config.source_connector_properties.salesforce.object #=> String
1154
1178
  # resp.source_flow_config.source_connector_properties.salesforce.enable_dynamic_field_update #=> Boolean
1155
1179
  # resp.source_flow_config.source_connector_properties.salesforce.include_deleted_records #=> Boolean
@@ -1863,6 +1887,9 @@ module Aws::Appflow
1863
1887
  # s3: {
1864
1888
  # bucket_name: "BucketName", # required
1865
1889
  # bucket_prefix: "BucketPrefix",
1890
+ # s3_input_format_config: {
1891
+ # s3_input_file_type: "CSV", # accepts CSV, JSON
1892
+ # },
1866
1893
  # },
1867
1894
  # salesforce: {
1868
1895
  # object: "Object", # required
@@ -2052,7 +2079,7 @@ module Aws::Appflow
2052
2079
  params: params,
2053
2080
  config: config)
2054
2081
  context[:gem_name] = 'aws-sdk-appflow'
2055
- context[:gem_version] = '1.16.0'
2082
+ context[:gem_version] = '1.20.0'
2056
2083
  Seahorse::Client::Request.new(handlers, context)
2057
2084
  end
2058
2085
 
@@ -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.16.0'
51
+ GEM_VERSION = '1.20.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.16.0
4
+ version: 1.20.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-10-18 00:00:00.000000000 Z
11
+ date: 2021-12-21 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.121.2
22
+ version: 3.125.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.121.2
32
+ version: 3.125.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement