aws-sdk-appflow 1.47.0 → 1.49.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appflow/client.rb +21 -1
- data/lib/aws-sdk-appflow/client_api.rb +16 -0
- data/lib/aws-sdk-appflow/types.rb +64 -2
- data/lib/aws-sdk-appflow.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6a47eac1dbf17e01b676a66102398016fd71fac394cd01925310cde3b794959a
|
4
|
+
data.tar.gz: 89c9d00841a38a2648e0f9d576a88979177c539ea5d13c739fb79a77ac621841
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c64dc29e34a34e5af8e9b7b39e4cf5728ad35167b1e59260db7c38cb91fd4019faa2190d8ecb2a7209f5380aef872ca8cde8de4c5f74a9ef4db1f2549153e2e
|
7
|
+
data.tar.gz: 63ffaefc3361fccec8e731d3699c3ab7f36ce23979b336ae5c748e55f6791921fa9071c1ae93576ba0d88328ce08e48f37c16ad906b980f40742eee00b558341
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.49.0 (2023-08-30)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add SAP source connector parallel and pagination feature
|
8
|
+
|
9
|
+
1.48.0 (2023-07-11)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.47.0 (2023-07-06)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.49.0
|
@@ -216,6 +216,10 @@ module Aws::Appflow
|
|
216
216
|
# @option options [Boolean] :endpoint_discovery (false)
|
217
217
|
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
218
218
|
#
|
219
|
+
# @option options [Boolean] :ignore_configured_endpoint_urls
|
220
|
+
# Setting to true disables use of endpoint URLs provided via environment
|
221
|
+
# variables and the shared configuration file.
|
222
|
+
#
|
219
223
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
220
224
|
# The log formatter.
|
221
225
|
#
|
@@ -927,6 +931,12 @@ module Aws::Appflow
|
|
927
931
|
# },
|
928
932
|
# sapo_data: {
|
929
933
|
# object_path: "Object",
|
934
|
+
# parallelism_config: {
|
935
|
+
# max_parallelism: 1, # required
|
936
|
+
# },
|
937
|
+
# pagination_config: {
|
938
|
+
# max_page_size: 1, # required
|
939
|
+
# },
|
930
940
|
# },
|
931
941
|
# custom_connector: {
|
932
942
|
# entity_name: "EntityName", # required
|
@@ -1740,6 +1750,8 @@ module Aws::Appflow
|
|
1740
1750
|
# resp.source_flow_config.source_connector_properties.veeva.include_all_versions #=> Boolean
|
1741
1751
|
# resp.source_flow_config.source_connector_properties.zendesk.object #=> String
|
1742
1752
|
# resp.source_flow_config.source_connector_properties.sapo_data.object_path #=> String
|
1753
|
+
# resp.source_flow_config.source_connector_properties.sapo_data.parallelism_config.max_parallelism #=> Integer
|
1754
|
+
# resp.source_flow_config.source_connector_properties.sapo_data.pagination_config.max_page_size #=> Integer
|
1743
1755
|
# resp.source_flow_config.source_connector_properties.custom_connector.entity_name #=> String
|
1744
1756
|
# resp.source_flow_config.source_connector_properties.custom_connector.custom_properties #=> Hash
|
1745
1757
|
# resp.source_flow_config.source_connector_properties.custom_connector.custom_properties["CustomPropertyKey"] #=> String
|
@@ -1933,6 +1945,8 @@ module Aws::Appflow
|
|
1933
1945
|
# resp.flow_executions[0].execution_result.bytes_processed #=> Integer
|
1934
1946
|
# resp.flow_executions[0].execution_result.bytes_written #=> Integer
|
1935
1947
|
# resp.flow_executions[0].execution_result.records_processed #=> Integer
|
1948
|
+
# resp.flow_executions[0].execution_result.num_parallel_processes #=> Integer
|
1949
|
+
# resp.flow_executions[0].execution_result.max_page_size #=> Integer
|
1936
1950
|
# resp.flow_executions[0].started_at #=> Time
|
1937
1951
|
# resp.flow_executions[0].last_updated_at #=> Time
|
1938
1952
|
# resp.flow_executions[0].data_pull_start_time #=> Time
|
@@ -3004,6 +3018,12 @@ module Aws::Appflow
|
|
3004
3018
|
# },
|
3005
3019
|
# sapo_data: {
|
3006
3020
|
# object_path: "Object",
|
3021
|
+
# parallelism_config: {
|
3022
|
+
# max_parallelism: 1, # required
|
3023
|
+
# },
|
3024
|
+
# pagination_config: {
|
3025
|
+
# max_page_size: 1, # required
|
3026
|
+
# },
|
3007
3027
|
# },
|
3008
3028
|
# custom_connector: {
|
3009
3029
|
# entity_name: "EntityName", # required
|
@@ -3228,7 +3248,7 @@ module Aws::Appflow
|
|
3228
3248
|
params: params,
|
3229
3249
|
config: config)
|
3230
3250
|
context[:gem_name] = 'aws-sdk-appflow'
|
3231
|
-
context[:gem_version] = '1.
|
3251
|
+
context[:gem_version] = '1.49.0'
|
3232
3252
|
Seahorse::Client::Request.new(handlers, context)
|
3233
3253
|
end
|
3234
3254
|
|
@@ -311,7 +311,11 @@ module Aws::Appflow
|
|
311
311
|
SAPODataConnectorProfileCredentials = Shapes::StructureShape.new(name: 'SAPODataConnectorProfileCredentials')
|
312
312
|
SAPODataConnectorProfileProperties = Shapes::StructureShape.new(name: 'SAPODataConnectorProfileProperties')
|
313
313
|
SAPODataDestinationProperties = Shapes::StructureShape.new(name: 'SAPODataDestinationProperties')
|
314
|
+
SAPODataMaxPageSize = Shapes::IntegerShape.new(name: 'SAPODataMaxPageSize')
|
315
|
+
SAPODataMaxParallelism = Shapes::IntegerShape.new(name: 'SAPODataMaxParallelism')
|
314
316
|
SAPODataMetadata = Shapes::StructureShape.new(name: 'SAPODataMetadata')
|
317
|
+
SAPODataPaginationConfig = Shapes::StructureShape.new(name: 'SAPODataPaginationConfig')
|
318
|
+
SAPODataParallelismConfig = Shapes::StructureShape.new(name: 'SAPODataParallelismConfig')
|
315
319
|
SAPODataSourceProperties = Shapes::StructureShape.new(name: 'SAPODataSourceProperties')
|
316
320
|
SalesforceConnectorOperator = Shapes::StringShape.new(name: 'SalesforceConnectorOperator')
|
317
321
|
SalesforceConnectorProfileCredentials = Shapes::StructureShape.new(name: 'SalesforceConnectorProfileCredentials')
|
@@ -941,6 +945,8 @@ module Aws::Appflow
|
|
941
945
|
ExecutionResult.add_member(:bytes_processed, Shapes::ShapeRef.new(shape: Long, location_name: "bytesProcessed"))
|
942
946
|
ExecutionResult.add_member(:bytes_written, Shapes::ShapeRef.new(shape: Long, location_name: "bytesWritten"))
|
943
947
|
ExecutionResult.add_member(:records_processed, Shapes::ShapeRef.new(shape: Long, location_name: "recordsProcessed"))
|
948
|
+
ExecutionResult.add_member(:num_parallel_processes, Shapes::ShapeRef.new(shape: Long, location_name: "numParallelProcesses"))
|
949
|
+
ExecutionResult.add_member(:max_page_size, Shapes::ShapeRef.new(shape: Long, location_name: "maxPageSize"))
|
944
950
|
ExecutionResult.struct_class = Types::ExecutionResult
|
945
951
|
|
946
952
|
FieldTypeDetails.add_member(:field_type, Shapes::ShapeRef.new(shape: FieldType, required: true, location_name: "fieldType"))
|
@@ -1276,7 +1282,15 @@ module Aws::Appflow
|
|
1276
1282
|
|
1277
1283
|
SAPODataMetadata.struct_class = Types::SAPODataMetadata
|
1278
1284
|
|
1285
|
+
SAPODataPaginationConfig.add_member(:max_page_size, Shapes::ShapeRef.new(shape: SAPODataMaxPageSize, required: true, location_name: "maxPageSize", metadata: {"box"=>true}))
|
1286
|
+
SAPODataPaginationConfig.struct_class = Types::SAPODataPaginationConfig
|
1287
|
+
|
1288
|
+
SAPODataParallelismConfig.add_member(:max_parallelism, Shapes::ShapeRef.new(shape: SAPODataMaxParallelism, required: true, location_name: "maxParallelism", metadata: {"box"=>true}))
|
1289
|
+
SAPODataParallelismConfig.struct_class = Types::SAPODataParallelismConfig
|
1290
|
+
|
1279
1291
|
SAPODataSourceProperties.add_member(:object_path, Shapes::ShapeRef.new(shape: Object, location_name: "objectPath"))
|
1292
|
+
SAPODataSourceProperties.add_member(:parallelism_config, Shapes::ShapeRef.new(shape: SAPODataParallelismConfig, location_name: "parallelismConfig"))
|
1293
|
+
SAPODataSourceProperties.add_member(:pagination_config, Shapes::ShapeRef.new(shape: SAPODataPaginationConfig, location_name: "paginationConfig"))
|
1280
1294
|
SAPODataSourceProperties.struct_class = Types::SAPODataSourceProperties
|
1281
1295
|
|
1282
1296
|
SalesforceConnectorProfileCredentials.add_member(:access_token, Shapes::ShapeRef.new(shape: AccessToken, location_name: "accessToken"))
|
@@ -1659,6 +1673,7 @@ module Aws::Appflow
|
|
1659
1673
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1660
1674
|
o.errors << Shapes::ShapeRef.new(shape: ConnectorAuthenticationException)
|
1661
1675
|
o.errors << Shapes::ShapeRef.new(shape: ConnectorServerException)
|
1676
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1662
1677
|
end)
|
1663
1678
|
|
1664
1679
|
api.add_operation(:delete_connector_profile, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1951,6 +1966,7 @@ module Aws::Appflow
|
|
1951
1966
|
o.errors << Shapes::ShapeRef.new(shape: ConnectorAuthenticationException)
|
1952
1967
|
o.errors << Shapes::ShapeRef.new(shape: ConnectorServerException)
|
1953
1968
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1969
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1954
1970
|
end)
|
1955
1971
|
end
|
1956
1972
|
|
@@ -2501,13 +2501,25 @@ module Aws::Appflow
|
|
2501
2501
|
# The number of records processed in the flow run.
|
2502
2502
|
# @return [Integer]
|
2503
2503
|
#
|
2504
|
+
# @!attribute [rw] num_parallel_processes
|
2505
|
+
# The number of processes that Amazon AppFlow ran at the same time
|
2506
|
+
# when it retrieved your data.
|
2507
|
+
# @return [Integer]
|
2508
|
+
#
|
2509
|
+
# @!attribute [rw] max_page_size
|
2510
|
+
# The maximum number of records that Amazon AppFlow receives in each
|
2511
|
+
# page of the response from your SAP application.
|
2512
|
+
# @return [Integer]
|
2513
|
+
#
|
2504
2514
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/ExecutionResult AWS API Documentation
|
2505
2515
|
#
|
2506
2516
|
class ExecutionResult < Struct.new(
|
2507
2517
|
:error_info,
|
2508
2518
|
:bytes_processed,
|
2509
2519
|
:bytes_written,
|
2510
|
-
:records_processed
|
2520
|
+
:records_processed,
|
2521
|
+
:num_parallel_processes,
|
2522
|
+
:max_page_size)
|
2511
2523
|
SENSITIVE = []
|
2512
2524
|
include Aws::Structure
|
2513
2525
|
end
|
@@ -4244,16 +4256,66 @@ module Aws::Appflow
|
|
4244
4256
|
#
|
4245
4257
|
class SAPODataMetadata < Aws::EmptyStructure; end
|
4246
4258
|
|
4259
|
+
# Sets the page size for each *concurrent process* that transfers OData
|
4260
|
+
# records from your SAP instance. A concurrent process is query that
|
4261
|
+
# retrieves a batch of records as part of a flow run. Amazon AppFlow can
|
4262
|
+
# run multiple concurrent processes in parallel to transfer data faster.
|
4263
|
+
#
|
4264
|
+
# @!attribute [rw] max_page_size
|
4265
|
+
# The maximum number of records that Amazon AppFlow receives in each
|
4266
|
+
# page of the response from your SAP application. For transfers of
|
4267
|
+
# OData records, the maximum page size is 3,000. For transfers of data
|
4268
|
+
# that comes from an ODP provider, the maximum page size is 10,000.
|
4269
|
+
# @return [Integer]
|
4270
|
+
#
|
4271
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/SAPODataPaginationConfig AWS API Documentation
|
4272
|
+
#
|
4273
|
+
class SAPODataPaginationConfig < Struct.new(
|
4274
|
+
:max_page_size)
|
4275
|
+
SENSITIVE = []
|
4276
|
+
include Aws::Structure
|
4277
|
+
end
|
4278
|
+
|
4279
|
+
# Sets the number of *concurrent processes* that transfer OData records
|
4280
|
+
# from your SAP instance. A concurrent process is query that retrieves a
|
4281
|
+
# batch of records as part of a flow run. Amazon AppFlow can run
|
4282
|
+
# multiple concurrent processes in parallel to transfer data faster.
|
4283
|
+
#
|
4284
|
+
# @!attribute [rw] max_parallelism
|
4285
|
+
# The maximum number of processes that Amazon AppFlow runs at the same
|
4286
|
+
# time when it retrieves your data from your SAP application.
|
4287
|
+
# @return [Integer]
|
4288
|
+
#
|
4289
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/SAPODataParallelismConfig AWS API Documentation
|
4290
|
+
#
|
4291
|
+
class SAPODataParallelismConfig < Struct.new(
|
4292
|
+
:max_parallelism)
|
4293
|
+
SENSITIVE = []
|
4294
|
+
include Aws::Structure
|
4295
|
+
end
|
4296
|
+
|
4247
4297
|
# The properties that are applied when using SAPOData as a flow source.
|
4248
4298
|
#
|
4249
4299
|
# @!attribute [rw] object_path
|
4250
4300
|
# The object path specified in the SAPOData flow source.
|
4251
4301
|
# @return [String]
|
4252
4302
|
#
|
4303
|
+
# @!attribute [rw] parallelism_config
|
4304
|
+
# Sets the number of concurrent processes that transfers OData records
|
4305
|
+
# from your SAP instance.
|
4306
|
+
# @return [Types::SAPODataParallelismConfig]
|
4307
|
+
#
|
4308
|
+
# @!attribute [rw] pagination_config
|
4309
|
+
# Sets the page size for each concurrent process that transfers OData
|
4310
|
+
# records from your SAP instance.
|
4311
|
+
# @return [Types::SAPODataPaginationConfig]
|
4312
|
+
#
|
4253
4313
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/SAPODataSourceProperties AWS API Documentation
|
4254
4314
|
#
|
4255
4315
|
class SAPODataSourceProperties < Struct.new(
|
4256
|
-
:object_path
|
4316
|
+
:object_path,
|
4317
|
+
:parallelism_config,
|
4318
|
+
:pagination_config)
|
4257
4319
|
SENSITIVE = []
|
4258
4320
|
include Aws::Structure
|
4259
4321
|
end
|
data/lib/aws-sdk-appflow.rb
CHANGED
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.
|
4
|
+
version: 1.49.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-
|
11
|
+
date: 2023-08-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|