aws-sdk-appflow 1.48.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a44d651734a962053629c005908adf9800bca5aa5ee3f69a1f5fec823c37bee7
4
- data.tar.gz: a656cca150979756b98c6f4773305e5171e00a5b0b65738d35f957c80b07a648
3
+ metadata.gz: 6a47eac1dbf17e01b676a66102398016fd71fac394cd01925310cde3b794959a
4
+ data.tar.gz: 89c9d00841a38a2648e0f9d576a88979177c539ea5d13c739fb79a77ac621841
5
5
  SHA512:
6
- metadata.gz: a26a710388abc75b6df5202eac7cb5e059a4636b86633bd1b6c5dee68af8d41b51bac499e42bae0b45b5d3f4d06dc7d57c5bbf534565cb91903ed975b292b324
7
- data.tar.gz: 2bbe291cb9640efdc6dd80f6752ef3118bcb37421899c7269a9023567c4f3551531951bd021f4a007c39b78ed4de2a259dc60581c235a84078df42865155dcd0
6
+ metadata.gz: 2c64dc29e34a34e5af8e9b7b39e4cf5728ad35167b1e59260db7c38cb91fd4019faa2190d8ecb2a7209f5380aef872ca8cde8de4c5f74a9ef4db1f2549153e2e
7
+ data.tar.gz: 63ffaefc3361fccec8e731d3699c3ab7f36ce23979b336ae5c748e55f6791921fa9071c1ae93576ba0d88328ce08e48f37c16ad906b980f40742eee00b558341
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.48.0 (2023-07-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.48.0
1
+ 1.49.0
@@ -931,6 +931,12 @@ module Aws::Appflow
931
931
  # },
932
932
  # sapo_data: {
933
933
  # object_path: "Object",
934
+ # parallelism_config: {
935
+ # max_parallelism: 1, # required
936
+ # },
937
+ # pagination_config: {
938
+ # max_page_size: 1, # required
939
+ # },
934
940
  # },
935
941
  # custom_connector: {
936
942
  # entity_name: "EntityName", # required
@@ -1744,6 +1750,8 @@ module Aws::Appflow
1744
1750
  # resp.source_flow_config.source_connector_properties.veeva.include_all_versions #=> Boolean
1745
1751
  # resp.source_flow_config.source_connector_properties.zendesk.object #=> String
1746
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
1747
1755
  # resp.source_flow_config.source_connector_properties.custom_connector.entity_name #=> String
1748
1756
  # resp.source_flow_config.source_connector_properties.custom_connector.custom_properties #=> Hash
1749
1757
  # resp.source_flow_config.source_connector_properties.custom_connector.custom_properties["CustomPropertyKey"] #=> String
@@ -1937,6 +1945,8 @@ module Aws::Appflow
1937
1945
  # resp.flow_executions[0].execution_result.bytes_processed #=> Integer
1938
1946
  # resp.flow_executions[0].execution_result.bytes_written #=> Integer
1939
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
1940
1950
  # resp.flow_executions[0].started_at #=> Time
1941
1951
  # resp.flow_executions[0].last_updated_at #=> Time
1942
1952
  # resp.flow_executions[0].data_pull_start_time #=> Time
@@ -3008,6 +3018,12 @@ module Aws::Appflow
3008
3018
  # },
3009
3019
  # sapo_data: {
3010
3020
  # object_path: "Object",
3021
+ # parallelism_config: {
3022
+ # max_parallelism: 1, # required
3023
+ # },
3024
+ # pagination_config: {
3025
+ # max_page_size: 1, # required
3026
+ # },
3011
3027
  # },
3012
3028
  # custom_connector: {
3013
3029
  # entity_name: "EntityName", # required
@@ -3232,7 +3248,7 @@ module Aws::Appflow
3232
3248
  params: params,
3233
3249
  config: config)
3234
3250
  context[:gem_name] = 'aws-sdk-appflow'
3235
- context[:gem_version] = '1.48.0'
3251
+ context[:gem_version] = '1.49.0'
3236
3252
  Seahorse::Client::Request.new(handlers, context)
3237
3253
  end
3238
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
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-appflow/customizations'
52
52
  # @!group service
53
53
  module Aws::Appflow
54
54
 
55
- GEM_VERSION = '1.48.0'
55
+ GEM_VERSION = '1.49.0'
56
56
 
57
57
  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.48.0
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-07-11 00:00:00.000000000 Z
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