aws-sdk-appflow 1.41.0 → 1.42.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appflow/client.rb +25 -1
- data/lib/aws-sdk-appflow/client_api.rb +18 -0
- data/lib/aws-sdk-appflow/types.rb +78 -3
- 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: bf3691c6ac2330474f16ac64dda551e4411e6b4123c24c1bf1b9b0cea6c55461
|
4
|
+
data.tar.gz: 561c297e406393fbd38661e5278019f2cc69a702e66d8d7a1df9760522345181
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f082f5ab1bf78b894bbe2ae0b95ecd33964a94c9064396e78f8cb5893db875f7204268b9aed3c66604df460b276232984772db7a0ee0d8109bdcab2f29be7c9f
|
7
|
+
data.tar.gz: 2918fc8f88b5d11cd3d5f104df29a6dda3a0bcb3e0107f3f8aa6787f9cc588a9f1f01dae0aad9c1ff919b0bc891c5276b86e5851b3ec121025b5b185b41f6b2f
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.42.0 (2023-06-01)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added ability to select DataTransferApiType for DescribeConnector and CreateFlow requests when using Async supported connectors. Added supportedDataTransferType to DescribeConnector/DescribeConnectors/ListConnector response.
|
8
|
+
|
4
9
|
1.41.0 (2023-05-31)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.42.0
|
@@ -921,6 +921,10 @@ module Aws::Appflow
|
|
921
921
|
# custom_properties: {
|
922
922
|
# "CustomPropertyKey" => "CustomPropertyValue",
|
923
923
|
# },
|
924
|
+
# data_transfer_api: {
|
925
|
+
# name: "DataTransferApiTypeName",
|
926
|
+
# type: "SYNC", # accepts SYNC, ASYNC, AUTOMATIC
|
927
|
+
# },
|
924
928
|
# },
|
925
929
|
# pardot: {
|
926
930
|
# object: "Object", # required
|
@@ -1296,6 +1300,11 @@ module Aws::Appflow
|
|
1296
1300
|
# resp.connector_configuration.logo_url #=> String
|
1297
1301
|
# resp.connector_configuration.registered_at #=> Time
|
1298
1302
|
# resp.connector_configuration.registered_by #=> String
|
1303
|
+
# resp.connector_configuration.supported_data_transfer_types #=> Array
|
1304
|
+
# resp.connector_configuration.supported_data_transfer_types[0] #=> String, one of "RECORD", "FILE"
|
1305
|
+
# resp.connector_configuration.supported_data_transfer_apis #=> Array
|
1306
|
+
# resp.connector_configuration.supported_data_transfer_apis[0].name #=> String
|
1307
|
+
# resp.connector_configuration.supported_data_transfer_apis[0].type #=> String, one of "SYNC", "ASYNC", "AUTOMATIC"
|
1299
1308
|
#
|
1300
1309
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/DescribeConnector AWS API Documentation
|
1301
1310
|
#
|
@@ -1618,6 +1627,11 @@ module Aws::Appflow
|
|
1618
1627
|
# resp.connector_configurations["ConnectorType"].logo_url #=> String
|
1619
1628
|
# resp.connector_configurations["ConnectorType"].registered_at #=> Time
|
1620
1629
|
# resp.connector_configurations["ConnectorType"].registered_by #=> String
|
1630
|
+
# resp.connector_configurations["ConnectorType"].supported_data_transfer_types #=> Array
|
1631
|
+
# resp.connector_configurations["ConnectorType"].supported_data_transfer_types[0] #=> String, one of "RECORD", "FILE"
|
1632
|
+
# resp.connector_configurations["ConnectorType"].supported_data_transfer_apis #=> Array
|
1633
|
+
# resp.connector_configurations["ConnectorType"].supported_data_transfer_apis[0].name #=> String
|
1634
|
+
# resp.connector_configurations["ConnectorType"].supported_data_transfer_apis[0].type #=> String, one of "SYNC", "ASYNC", "AUTOMATIC"
|
1621
1635
|
# resp.connectors #=> Array
|
1622
1636
|
# resp.connectors[0].connector_description #=> String
|
1623
1637
|
# resp.connectors[0].connector_name #=> String
|
@@ -1631,6 +1645,8 @@ module Aws::Appflow
|
|
1631
1645
|
# resp.connectors[0].connector_provisioning_type #=> String, one of "LAMBDA"
|
1632
1646
|
# resp.connectors[0].connector_modes #=> Array
|
1633
1647
|
# resp.connectors[0].connector_modes[0] #=> String
|
1648
|
+
# resp.connectors[0].supported_data_transfer_types #=> Array
|
1649
|
+
# resp.connectors[0].supported_data_transfer_types[0] #=> String, one of "RECORD", "FILE"
|
1634
1650
|
# resp.next_token #=> String
|
1635
1651
|
#
|
1636
1652
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/DescribeConnectors AWS API Documentation
|
@@ -1714,6 +1730,8 @@ module Aws::Appflow
|
|
1714
1730
|
# resp.source_flow_config.source_connector_properties.custom_connector.entity_name #=> String
|
1715
1731
|
# resp.source_flow_config.source_connector_properties.custom_connector.custom_properties #=> Hash
|
1716
1732
|
# resp.source_flow_config.source_connector_properties.custom_connector.custom_properties["CustomPropertyKey"] #=> String
|
1733
|
+
# resp.source_flow_config.source_connector_properties.custom_connector.data_transfer_api.name #=> String
|
1734
|
+
# resp.source_flow_config.source_connector_properties.custom_connector.data_transfer_api.type #=> String, one of "SYNC", "ASYNC", "AUTOMATIC"
|
1717
1735
|
# resp.source_flow_config.source_connector_properties.pardot.object #=> String
|
1718
1736
|
# resp.source_flow_config.incremental_pull_config.datetime_type_field_name #=> String
|
1719
1737
|
# resp.destination_flow_config_list #=> Array
|
@@ -2034,6 +2052,8 @@ module Aws::Appflow
|
|
2034
2052
|
# resp.connectors[0].connector_provisioning_type #=> String, one of "LAMBDA"
|
2035
2053
|
# resp.connectors[0].connector_modes #=> Array
|
2036
2054
|
# resp.connectors[0].connector_modes[0] #=> String
|
2055
|
+
# resp.connectors[0].supported_data_transfer_types #=> Array
|
2056
|
+
# resp.connectors[0].supported_data_transfer_types[0] #=> String, one of "RECORD", "FILE"
|
2037
2057
|
# resp.next_token #=> String
|
2038
2058
|
#
|
2039
2059
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/ListConnectors AWS API Documentation
|
@@ -2886,6 +2906,10 @@ module Aws::Appflow
|
|
2886
2906
|
# custom_properties: {
|
2887
2907
|
# "CustomPropertyKey" => "CustomPropertyValue",
|
2888
2908
|
# },
|
2909
|
+
# data_transfer_api: {
|
2910
|
+
# name: "DataTransferApiTypeName",
|
2911
|
+
# type: "SYNC", # accepts SYNC, ASYNC, AUTOMATIC
|
2912
|
+
# },
|
2889
2913
|
# },
|
2890
2914
|
# pardot: {
|
2891
2915
|
# object: "Object", # required
|
@@ -3100,7 +3124,7 @@ module Aws::Appflow
|
|
3100
3124
|
params: params,
|
3101
3125
|
config: config)
|
3102
3126
|
context[:gem_name] = 'aws-sdk-appflow'
|
3103
|
-
context[:gem_version] = '1.
|
3127
|
+
context[:gem_version] = '1.42.0'
|
3104
3128
|
Seahorse::Client::Request.new(handlers, context)
|
3105
3129
|
end
|
3106
3130
|
|
@@ -120,6 +120,9 @@ module Aws::Appflow
|
|
120
120
|
CustomerProfilesMetadata = Shapes::StructureShape.new(name: 'CustomerProfilesMetadata')
|
121
121
|
DataApiRoleArn = Shapes::StringShape.new(name: 'DataApiRoleArn')
|
122
122
|
DataPullMode = Shapes::StringShape.new(name: 'DataPullMode')
|
123
|
+
DataTransferApi = Shapes::StructureShape.new(name: 'DataTransferApi')
|
124
|
+
DataTransferApiType = Shapes::StringShape.new(name: 'DataTransferApiType')
|
125
|
+
DataTransferApiTypeName = Shapes::StringShape.new(name: 'DataTransferApiTypeName')
|
123
126
|
DatabaseName = Shapes::StringShape.new(name: 'DatabaseName')
|
124
127
|
DatabaseUrl = Shapes::StringShape.new(name: 'DatabaseUrl')
|
125
128
|
DatadogConnectorOperator = Shapes::StringShape.new(name: 'DatadogConnectorOperator')
|
@@ -355,6 +358,9 @@ module Aws::Appflow
|
|
355
358
|
SuccessResponseHandlingConfig = Shapes::StructureShape.new(name: 'SuccessResponseHandlingConfig')
|
356
359
|
SupportedApiVersion = Shapes::StringShape.new(name: 'SupportedApiVersion')
|
357
360
|
SupportedApiVersionList = Shapes::ListShape.new(name: 'SupportedApiVersionList')
|
361
|
+
SupportedDataTransferApis = Shapes::ListShape.new(name: 'SupportedDataTransferApis')
|
362
|
+
SupportedDataTransferType = Shapes::StringShape.new(name: 'SupportedDataTransferType')
|
363
|
+
SupportedDataTransferTypeList = Shapes::ListShape.new(name: 'SupportedDataTransferTypeList')
|
358
364
|
SupportedFieldTypeDetails = Shapes::StructureShape.new(name: 'SupportedFieldTypeDetails')
|
359
365
|
SupportedOperatorList = Shapes::ListShape.new(name: 'SupportedOperatorList')
|
360
366
|
SupportedValueList = Shapes::ListShape.new(name: 'SupportedValueList')
|
@@ -502,6 +508,8 @@ module Aws::Appflow
|
|
502
508
|
ConnectorConfiguration.add_member(:logo_url, Shapes::ShapeRef.new(shape: LogoURL, location_name: "logoURL"))
|
503
509
|
ConnectorConfiguration.add_member(:registered_at, Shapes::ShapeRef.new(shape: Date, location_name: "registeredAt"))
|
504
510
|
ConnectorConfiguration.add_member(:registered_by, Shapes::ShapeRef.new(shape: RegisteredBy, location_name: "registeredBy"))
|
511
|
+
ConnectorConfiguration.add_member(:supported_data_transfer_types, Shapes::ShapeRef.new(shape: SupportedDataTransferTypeList, location_name: "supportedDataTransferTypes"))
|
512
|
+
ConnectorConfiguration.add_member(:supported_data_transfer_apis, Shapes::ShapeRef.new(shape: SupportedDataTransferApis, location_name: "supportedDataTransferApis"))
|
505
513
|
ConnectorConfiguration.struct_class = Types::ConnectorConfiguration
|
506
514
|
|
507
515
|
ConnectorConfigurationsMap.key = Shapes::ShapeRef.new(shape: ConnectorType)
|
@@ -518,6 +526,7 @@ module Aws::Appflow
|
|
518
526
|
ConnectorDetail.add_member(:registered_by, Shapes::ShapeRef.new(shape: RegisteredBy, location_name: "registeredBy"))
|
519
527
|
ConnectorDetail.add_member(:connector_provisioning_type, Shapes::ShapeRef.new(shape: ConnectorProvisioningType, location_name: "connectorProvisioningType"))
|
520
528
|
ConnectorDetail.add_member(:connector_modes, Shapes::ShapeRef.new(shape: ConnectorModeList, location_name: "connectorModes"))
|
529
|
+
ConnectorDetail.add_member(:supported_data_transfer_types, Shapes::ShapeRef.new(shape: SupportedDataTransferTypeList, location_name: "supportedDataTransferTypes"))
|
521
530
|
ConnectorDetail.struct_class = Types::ConnectorDetail
|
522
531
|
|
523
532
|
ConnectorEntity.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "name"))
|
@@ -742,6 +751,7 @@ module Aws::Appflow
|
|
742
751
|
|
743
752
|
CustomConnectorSourceProperties.add_member(:entity_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "entityName"))
|
744
753
|
CustomConnectorSourceProperties.add_member(:custom_properties, Shapes::ShapeRef.new(shape: CustomProperties, location_name: "customProperties"))
|
754
|
+
CustomConnectorSourceProperties.add_member(:data_transfer_api, Shapes::ShapeRef.new(shape: DataTransferApi, location_name: "dataTransferApi"))
|
745
755
|
CustomConnectorSourceProperties.struct_class = Types::CustomConnectorSourceProperties
|
746
756
|
|
747
757
|
CustomProperties.key = Shapes::ShapeRef.new(shape: CustomPropertyKey)
|
@@ -753,6 +763,10 @@ module Aws::Appflow
|
|
753
763
|
|
754
764
|
CustomerProfilesMetadata.struct_class = Types::CustomerProfilesMetadata
|
755
765
|
|
766
|
+
DataTransferApi.add_member(:name, Shapes::ShapeRef.new(shape: DataTransferApiTypeName, location_name: "Name"))
|
767
|
+
DataTransferApi.add_member(:type, Shapes::ShapeRef.new(shape: DataTransferApiType, location_name: "Type"))
|
768
|
+
DataTransferApi.struct_class = Types::DataTransferApi
|
769
|
+
|
756
770
|
DatadogConnectorProfileCredentials.add_member(:api_key, Shapes::ShapeRef.new(shape: ApiKey, required: true, location_name: "apiKey"))
|
757
771
|
DatadogConnectorProfileCredentials.add_member(:application_key, Shapes::ShapeRef.new(shape: ApplicationKey, required: true, location_name: "applicationKey"))
|
758
772
|
DatadogConnectorProfileCredentials.struct_class = Types::DatadogConnectorProfileCredentials
|
@@ -1415,6 +1429,10 @@ module Aws::Appflow
|
|
1415
1429
|
|
1416
1430
|
SupportedApiVersionList.member = Shapes::ShapeRef.new(shape: SupportedApiVersion)
|
1417
1431
|
|
1432
|
+
SupportedDataTransferApis.member = Shapes::ShapeRef.new(shape: DataTransferApi)
|
1433
|
+
|
1434
|
+
SupportedDataTransferTypeList.member = Shapes::ShapeRef.new(shape: SupportedDataTransferType)
|
1435
|
+
|
1418
1436
|
SupportedFieldTypeDetails.add_member(:v1, Shapes::ShapeRef.new(shape: FieldTypeDetails, required: true, location_name: "v1"))
|
1419
1437
|
SupportedFieldTypeDetails.struct_class = Types::SupportedFieldTypeDetails
|
1420
1438
|
|
@@ -391,6 +391,23 @@ module Aws::Appflow
|
|
391
391
|
# Information about who registered the connector.
|
392
392
|
# @return [String]
|
393
393
|
#
|
394
|
+
# @!attribute [rw] supported_data_transfer_types
|
395
|
+
# The data transfer types that the connector supports.
|
396
|
+
#
|
397
|
+
# RECORD
|
398
|
+
#
|
399
|
+
# : Structured records.
|
400
|
+
#
|
401
|
+
# FILE
|
402
|
+
#
|
403
|
+
# : Files or binary data.
|
404
|
+
# @return [Array<String>]
|
405
|
+
#
|
406
|
+
# @!attribute [rw] supported_data_transfer_apis
|
407
|
+
# The APIs of the connector application that Amazon AppFlow can use to
|
408
|
+
# transfer your data.
|
409
|
+
# @return [Array<Types::DataTransferApi>]
|
410
|
+
#
|
394
411
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/ConnectorConfiguration AWS API Documentation
|
395
412
|
#
|
396
413
|
class ConnectorConfiguration < Struct.new(
|
@@ -419,7 +436,9 @@ module Aws::Appflow
|
|
419
436
|
:connector_provisioning_config,
|
420
437
|
:logo_url,
|
421
438
|
:registered_at,
|
422
|
-
:registered_by
|
439
|
+
:registered_by,
|
440
|
+
:supported_data_transfer_types,
|
441
|
+
:supported_data_transfer_apis)
|
423
442
|
SENSITIVE = []
|
424
443
|
include Aws::Structure
|
425
444
|
end
|
@@ -470,6 +489,18 @@ module Aws::Appflow
|
|
470
489
|
# The connection mode that the connector supports.
|
471
490
|
# @return [Array<String>]
|
472
491
|
#
|
492
|
+
# @!attribute [rw] supported_data_transfer_types
|
493
|
+
# The data transfer types that the connector supports.
|
494
|
+
#
|
495
|
+
# RECORD
|
496
|
+
#
|
497
|
+
# : Structured records.
|
498
|
+
#
|
499
|
+
# FILE
|
500
|
+
#
|
501
|
+
# : Files or binary data.
|
502
|
+
# @return [Array<String>]
|
503
|
+
#
|
473
504
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/ConnectorDetail AWS API Documentation
|
474
505
|
#
|
475
506
|
class ConnectorDetail < Struct.new(
|
@@ -483,7 +514,8 @@ module Aws::Appflow
|
|
483
514
|
:registered_at,
|
484
515
|
:registered_by,
|
485
516
|
:connector_provisioning_type,
|
486
|
-
:connector_modes
|
517
|
+
:connector_modes,
|
518
|
+
:supported_data_transfer_types)
|
487
519
|
SENSITIVE = []
|
488
520
|
include Aws::Structure
|
489
521
|
end
|
@@ -1547,11 +1579,17 @@ module Aws::Appflow
|
|
1547
1579
|
# source.
|
1548
1580
|
# @return [Hash<String,String>]
|
1549
1581
|
#
|
1582
|
+
# @!attribute [rw] data_transfer_api
|
1583
|
+
# The API of the connector application that Amazon AppFlow uses to
|
1584
|
+
# transfer your data.
|
1585
|
+
# @return [Types::DataTransferApi]
|
1586
|
+
#
|
1550
1587
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/CustomConnectorSourceProperties AWS API Documentation
|
1551
1588
|
#
|
1552
1589
|
class CustomConnectorSourceProperties < Struct.new(
|
1553
1590
|
:entity_name,
|
1554
|
-
:custom_properties
|
1591
|
+
:custom_properties,
|
1592
|
+
:data_transfer_api)
|
1555
1593
|
SENSITIVE = []
|
1556
1594
|
include Aws::Structure
|
1557
1595
|
end
|
@@ -1583,6 +1621,43 @@ module Aws::Appflow
|
|
1583
1621
|
#
|
1584
1622
|
class CustomerProfilesMetadata < Aws::EmptyStructure; end
|
1585
1623
|
|
1624
|
+
# The API of the connector application that Amazon AppFlow uses to
|
1625
|
+
# transfer your data.
|
1626
|
+
#
|
1627
|
+
# @!attribute [rw] name
|
1628
|
+
# The name of the connector application API.
|
1629
|
+
# @return [String]
|
1630
|
+
#
|
1631
|
+
# @!attribute [rw] type
|
1632
|
+
# You can specify one of the following types:
|
1633
|
+
#
|
1634
|
+
# AUTOMATIC
|
1635
|
+
#
|
1636
|
+
# : The default. Optimizes a flow for datasets that fluctuate in size
|
1637
|
+
# from small to large. For each flow run, Amazon AppFlow chooses to
|
1638
|
+
# use the SYNC or ASYNC API type based on the amount of data that
|
1639
|
+
# the run transfers.
|
1640
|
+
#
|
1641
|
+
# SYNC
|
1642
|
+
#
|
1643
|
+
# : A synchronous API. This type of API optimizes a flow for small to
|
1644
|
+
# medium-sized datasets.
|
1645
|
+
#
|
1646
|
+
# ASYNC
|
1647
|
+
#
|
1648
|
+
# : An asynchronous API. This type of API optimizes a flow for large
|
1649
|
+
# datasets.
|
1650
|
+
# @return [String]
|
1651
|
+
#
|
1652
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/DataTransferApi AWS API Documentation
|
1653
|
+
#
|
1654
|
+
class DataTransferApi < Struct.new(
|
1655
|
+
:name,
|
1656
|
+
:type)
|
1657
|
+
SENSITIVE = []
|
1658
|
+
include Aws::Structure
|
1659
|
+
end
|
1660
|
+
|
1586
1661
|
# The connector-specific credentials required by Datadog.
|
1587
1662
|
#
|
1588
1663
|
# @!attribute [rw] api_key
|
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.42.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-06-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|