aws-sdk-appflow 1.40.0 → 1.42.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: 9cc57e3696ca5adff62cd080b215acd3eefd251d510882568dd55986083babb1
4
- data.tar.gz: 3aa3803ad09c976c9b94a58412cd70dedf7120b79373e179fe5c9f8b770f58fe
3
+ metadata.gz: bf3691c6ac2330474f16ac64dda551e4411e6b4123c24c1bf1b9b0cea6c55461
4
+ data.tar.gz: 561c297e406393fbd38661e5278019f2cc69a702e66d8d7a1df9760522345181
5
5
  SHA512:
6
- metadata.gz: e56604e6a67d0d43197d1932d58a9c9304b7bb11b32bc544af6b2ffd6e39d699c103b411ca1d1d9f36554d52914fec30521399c757405164974b3d91f4e82236
7
- data.tar.gz: 2a39498893563699b1c10d034837e842edd0e741d78156f11436280e6bf9240a564e12f66d46951f1769b6be08c3fb636e0bcd0d44f39e77e2c310aa8b531bc7
6
+ metadata.gz: f082f5ab1bf78b894bbe2ae0b95ecd33964a94c9064396e78f8cb5893db875f7204268b9aed3c66604df460b276232984772db7a0ee0d8109bdcab2f29be7c9f
7
+ data.tar.gz: 2918fc8f88b5d11cd3d5f104df29a6dda3a0bcb3e0107f3f8aa6787f9cc588a9f1f01dae0aad9c1ff919b0bc891c5276b86e5851b3ec121025b5b185b41f6b2f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.41.0 (2023-05-31)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.40.0 (2023-05-02)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.40.0
1
+ 1.42.0
@@ -275,6 +275,11 @@ module Aws::Appflow
275
275
  # in the future.
276
276
  #
277
277
  #
278
+ # @option options [String] :sdk_ua_app_id
279
+ # A unique and opaque application ID that is appended to the
280
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
281
+ # maximum length of 50.
282
+ #
278
283
  # @option options [String] :secret_access_key
279
284
  #
280
285
  # @option options [String] :session_token
@@ -916,6 +921,10 @@ module Aws::Appflow
916
921
  # custom_properties: {
917
922
  # "CustomPropertyKey" => "CustomPropertyValue",
918
923
  # },
924
+ # data_transfer_api: {
925
+ # name: "DataTransferApiTypeName",
926
+ # type: "SYNC", # accepts SYNC, ASYNC, AUTOMATIC
927
+ # },
919
928
  # },
920
929
  # pardot: {
921
930
  # object: "Object", # required
@@ -1291,6 +1300,11 @@ module Aws::Appflow
1291
1300
  # resp.connector_configuration.logo_url #=> String
1292
1301
  # resp.connector_configuration.registered_at #=> Time
1293
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"
1294
1308
  #
1295
1309
  # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/DescribeConnector AWS API Documentation
1296
1310
  #
@@ -1613,6 +1627,11 @@ module Aws::Appflow
1613
1627
  # resp.connector_configurations["ConnectorType"].logo_url #=> String
1614
1628
  # resp.connector_configurations["ConnectorType"].registered_at #=> Time
1615
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"
1616
1635
  # resp.connectors #=> Array
1617
1636
  # resp.connectors[0].connector_description #=> String
1618
1637
  # resp.connectors[0].connector_name #=> String
@@ -1626,6 +1645,8 @@ module Aws::Appflow
1626
1645
  # resp.connectors[0].connector_provisioning_type #=> String, one of "LAMBDA"
1627
1646
  # resp.connectors[0].connector_modes #=> Array
1628
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"
1629
1650
  # resp.next_token #=> String
1630
1651
  #
1631
1652
  # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/DescribeConnectors AWS API Documentation
@@ -1709,6 +1730,8 @@ module Aws::Appflow
1709
1730
  # resp.source_flow_config.source_connector_properties.custom_connector.entity_name #=> String
1710
1731
  # resp.source_flow_config.source_connector_properties.custom_connector.custom_properties #=> Hash
1711
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"
1712
1735
  # resp.source_flow_config.source_connector_properties.pardot.object #=> String
1713
1736
  # resp.source_flow_config.incremental_pull_config.datetime_type_field_name #=> String
1714
1737
  # resp.destination_flow_config_list #=> Array
@@ -2029,6 +2052,8 @@ module Aws::Appflow
2029
2052
  # resp.connectors[0].connector_provisioning_type #=> String, one of "LAMBDA"
2030
2053
  # resp.connectors[0].connector_modes #=> Array
2031
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"
2032
2057
  # resp.next_token #=> String
2033
2058
  #
2034
2059
  # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/ListConnectors AWS API Documentation
@@ -2881,6 +2906,10 @@ module Aws::Appflow
2881
2906
  # custom_properties: {
2882
2907
  # "CustomPropertyKey" => "CustomPropertyValue",
2883
2908
  # },
2909
+ # data_transfer_api: {
2910
+ # name: "DataTransferApiTypeName",
2911
+ # type: "SYNC", # accepts SYNC, ASYNC, AUTOMATIC
2912
+ # },
2884
2913
  # },
2885
2914
  # pardot: {
2886
2915
  # object: "Object", # required
@@ -3095,7 +3124,7 @@ module Aws::Appflow
3095
3124
  params: params,
3096
3125
  config: config)
3097
3126
  context[:gem_name] = 'aws-sdk-appflow'
3098
- context[:gem_version] = '1.40.0'
3127
+ context[:gem_version] = '1.42.0'
3099
3128
  Seahorse::Client::Request.new(handlers, context)
3100
3129
  end
3101
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
@@ -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.40.0'
55
+ GEM_VERSION = '1.42.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.40.0
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-05-02 00:00:00.000000000 Z
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
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.165.0
22
+ version: 3.174.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.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement