aws-sdk-appflow 1.23.0 → 1.26.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e46b615f68bc54eaa180498c2a30045639358b3ee8dee376f19621094714d298
4
- data.tar.gz: 1c277c0939cce8acf1e0628d1ffd484f87b78e3f1ccfd2dc10af5e9fed9c5cfe
3
+ metadata.gz: e6939317be062f5ff1b7a4f64f04cef74df0727bcb1b1fdb416eb03c0ed959b1
4
+ data.tar.gz: 1d39a8c00f636bf0dd6ad7899145543d15b665854dca5f896ad5ab8f3de128a9
5
5
  SHA512:
6
- metadata.gz: 56e897a718c6e6c6ee47dd1336fbb3c5173504a95dc760159b0f72469241eb80d1943e6d6afd6df093692f5bec9c5f722180cd50d584d80d2dca0bef1d0b041e
7
- data.tar.gz: 3c51c6a1409e51664acb86e4fd4e009837ac4c6621238b1c8551d377ef591e3c6435e7b2558b27f037ba49de4b42d3a1c39ef46cf4d6e27c82a7ba4dea50aa95
6
+ metadata.gz: c892168b94a35dc7f29f5ed30bd90a7aac821f44d3bd60b59b57d8c337dfdd947fe07891ba286ba80aadba2fc4209c6845948a00fe650fb642e91c3bda8ca4a1
7
+ data.tar.gz: 606e3b64d7f613cbd8309e2203b354c21491ed59d6977c9cdd7a832936fda28f9c86bccc2114cb404e34423d2f73bb2c4f15794c125b0b875b84a104d80baf54
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.26.0 (2022-04-14)
5
+ ------------------
6
+
7
+ * Feature - Enables users to pass custom token URL parameters for Oauth2 authentication during create connector profile
8
+
9
+ 1.25.0 (2022-03-03)
10
+ ------------------
11
+
12
+ * Feature - Launching Amazon AppFlow Marketo as a destination connector SDK.
13
+
14
+ 1.24.0 (2022-02-24)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
4
19
  1.23.0 (2022-02-14)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.23.0
1
+ 1.26.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/checksum_algorithm.rb'
30
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
31
32
  require 'aws-sdk-core/plugins/recursion_detection.rb'
32
33
  require 'aws-sdk-core/plugins/signature_v4.rb'
@@ -75,6 +76,7 @@ module Aws::Appflow
75
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
76
77
  add_plugin(Aws::Plugins::TransferEncoding)
77
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::ChecksumAlgorithm)
78
80
  add_plugin(Aws::Plugins::DefaultsMode)
79
81
  add_plugin(Aws::Plugins::RecursionDetection)
80
82
  add_plugin(Aws::Plugins::SignatureV4)
@@ -469,6 +471,9 @@ module Aws::Appflow
469
471
  # o_auth_2_properties: {
470
472
  # token_url: "TokenUrl", # required
471
473
  # o_auth_2_grant_type: "CLIENT_CREDENTIALS", # required, accepts CLIENT_CREDENTIALS, AUTHORIZATION_CODE
474
+ # token_url_custom_properties: {
475
+ # "CustomPropertyKey" => "CustomPropertyValue",
476
+ # },
472
477
  # },
473
478
  # },
474
479
  # },
@@ -856,6 +861,14 @@ module Aws::Appflow
856
861
  # },
857
862
  # write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE, DELETE
858
863
  # },
864
+ # marketo: {
865
+ # object: "Object", # required
866
+ # error_handling_config: {
867
+ # fail_on_first_destination_error: false,
868
+ # bucket_prefix: "BucketPrefix",
869
+ # bucket_name: "BucketName",
870
+ # },
871
+ # },
859
872
  # custom_connector: {
860
873
  # entity_name: "EntityName", # required
861
874
  # error_handling_config: {
@@ -1060,6 +1073,15 @@ module Aws::Appflow
1060
1073
  # resp.connector_configuration.authentication_config.o_auth_2_defaults.auth_code_urls[0] #=> String
1061
1074
  # resp.connector_configuration.authentication_config.o_auth_2_defaults.oauth2_grant_types_supported #=> Array
1062
1075
  # resp.connector_configuration.authentication_config.o_auth_2_defaults.oauth2_grant_types_supported[0] #=> String, one of "CLIENT_CREDENTIALS", "AUTHORIZATION_CODE"
1076
+ # resp.connector_configuration.authentication_config.o_auth_2_defaults.oauth2_custom_properties #=> Array
1077
+ # resp.connector_configuration.authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].key #=> String
1078
+ # resp.connector_configuration.authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].is_required #=> Boolean
1079
+ # resp.connector_configuration.authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].label #=> String
1080
+ # resp.connector_configuration.authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].description #=> String
1081
+ # resp.connector_configuration.authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].is_sensitive_field #=> Boolean
1082
+ # resp.connector_configuration.authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].connector_supplied_values #=> Array
1083
+ # resp.connector_configuration.authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].connector_supplied_values[0] #=> String
1084
+ # resp.connector_configuration.authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].type #=> String, one of "TOKEN_URL", "AUTH_URL"
1063
1085
  # resp.connector_configuration.authentication_config.custom_auth_configs #=> Array
1064
1086
  # resp.connector_configuration.authentication_config.custom_auth_configs[0].custom_authentication_type #=> String
1065
1087
  # resp.connector_configuration.authentication_config.custom_auth_configs[0].auth_parameters #=> Array
@@ -1262,6 +1284,8 @@ module Aws::Appflow
1262
1284
  # resp.connector_profile_details[0].connector_profile_properties.custom_connector.profile_properties["ProfilePropertyKey"] #=> String
1263
1285
  # resp.connector_profile_details[0].connector_profile_properties.custom_connector.o_auth_2_properties.token_url #=> String
1264
1286
  # resp.connector_profile_details[0].connector_profile_properties.custom_connector.o_auth_2_properties.o_auth_2_grant_type #=> String, one of "CLIENT_CREDENTIALS", "AUTHORIZATION_CODE"
1287
+ # resp.connector_profile_details[0].connector_profile_properties.custom_connector.o_auth_2_properties.token_url_custom_properties #=> Hash
1288
+ # resp.connector_profile_details[0].connector_profile_properties.custom_connector.o_auth_2_properties.token_url_custom_properties["CustomPropertyKey"] #=> String
1265
1289
  # resp.connector_profile_details[0].created_at #=> Time
1266
1290
  # resp.connector_profile_details[0].last_updated_at #=> Time
1267
1291
  # resp.connector_profile_details[0].private_connection_provisioning_state.status #=> String, one of "FAILED", "PENDING", "CREATED"
@@ -1358,6 +1382,15 @@ module Aws::Appflow
1358
1382
  # resp.connector_configurations["ConnectorType"].authentication_config.o_auth_2_defaults.auth_code_urls[0] #=> String
1359
1383
  # resp.connector_configurations["ConnectorType"].authentication_config.o_auth_2_defaults.oauth2_grant_types_supported #=> Array
1360
1384
  # resp.connector_configurations["ConnectorType"].authentication_config.o_auth_2_defaults.oauth2_grant_types_supported[0] #=> String, one of "CLIENT_CREDENTIALS", "AUTHORIZATION_CODE"
1385
+ # resp.connector_configurations["ConnectorType"].authentication_config.o_auth_2_defaults.oauth2_custom_properties #=> Array
1386
+ # resp.connector_configurations["ConnectorType"].authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].key #=> String
1387
+ # resp.connector_configurations["ConnectorType"].authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].is_required #=> Boolean
1388
+ # resp.connector_configurations["ConnectorType"].authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].label #=> String
1389
+ # resp.connector_configurations["ConnectorType"].authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].description #=> String
1390
+ # resp.connector_configurations["ConnectorType"].authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].is_sensitive_field #=> Boolean
1391
+ # resp.connector_configurations["ConnectorType"].authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].connector_supplied_values #=> Array
1392
+ # resp.connector_configurations["ConnectorType"].authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].connector_supplied_values[0] #=> String
1393
+ # resp.connector_configurations["ConnectorType"].authentication_config.o_auth_2_defaults.oauth2_custom_properties[0].type #=> String, one of "TOKEN_URL", "AUTH_URL"
1361
1394
  # resp.connector_configurations["ConnectorType"].authentication_config.custom_auth_configs #=> Array
1362
1395
  # resp.connector_configurations["ConnectorType"].authentication_config.custom_auth_configs[0].custom_authentication_type #=> String
1363
1396
  # resp.connector_configurations["ConnectorType"].authentication_config.custom_auth_configs[0].auth_parameters #=> Array
@@ -1533,6 +1566,10 @@ module Aws::Appflow
1533
1566
  # resp.destination_flow_config_list[0].destination_connector_properties.zendesk.error_handling_config.bucket_prefix #=> String
1534
1567
  # resp.destination_flow_config_list[0].destination_connector_properties.zendesk.error_handling_config.bucket_name #=> String
1535
1568
  # resp.destination_flow_config_list[0].destination_connector_properties.zendesk.write_operation_type #=> String, one of "INSERT", "UPSERT", "UPDATE", "DELETE"
1569
+ # resp.destination_flow_config_list[0].destination_connector_properties.marketo.object #=> String
1570
+ # resp.destination_flow_config_list[0].destination_connector_properties.marketo.error_handling_config.fail_on_first_destination_error #=> Boolean
1571
+ # resp.destination_flow_config_list[0].destination_connector_properties.marketo.error_handling_config.bucket_prefix #=> String
1572
+ # resp.destination_flow_config_list[0].destination_connector_properties.marketo.error_handling_config.bucket_name #=> String
1536
1573
  # resp.destination_flow_config_list[0].destination_connector_properties.custom_connector.entity_name #=> String
1537
1574
  # resp.destination_flow_config_list[0].destination_connector_properties.custom_connector.error_handling_config.fail_on_first_destination_error #=> Boolean
1538
1575
  # resp.destination_flow_config_list[0].destination_connector_properties.custom_connector.error_handling_config.bucket_prefix #=> String
@@ -2143,6 +2180,9 @@ module Aws::Appflow
2143
2180
  # o_auth_2_properties: {
2144
2181
  # token_url: "TokenUrl", # required
2145
2182
  # o_auth_2_grant_type: "CLIENT_CREDENTIALS", # required, accepts CLIENT_CREDENTIALS, AUTHORIZATION_CODE
2183
+ # token_url_custom_properties: {
2184
+ # "CustomPropertyKey" => "CustomPropertyValue",
2185
+ # },
2146
2186
  # },
2147
2187
  # },
2148
2188
  # },
@@ -2514,6 +2554,14 @@ module Aws::Appflow
2514
2554
  # },
2515
2555
  # write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE, DELETE
2516
2556
  # },
2557
+ # marketo: {
2558
+ # object: "Object", # required
2559
+ # error_handling_config: {
2560
+ # fail_on_first_destination_error: false,
2561
+ # bucket_prefix: "BucketPrefix",
2562
+ # bucket_name: "BucketName",
2563
+ # },
2564
+ # },
2517
2565
  # custom_connector: {
2518
2566
  # entity_name: "EntityName", # required
2519
2567
  # error_handling_config: {
@@ -2600,7 +2648,7 @@ module Aws::Appflow
2600
2648
  params: params,
2601
2649
  config: config)
2602
2650
  context[:gem_name] = 'aws-sdk-appflow'
2603
- context[:gem_version] = '1.23.0'
2651
+ context[:gem_version] = '1.26.0'
2604
2652
  Seahorse::Client::Request.new(handlers, context)
2605
2653
  end
2606
2654
 
@@ -215,6 +215,7 @@ module Aws::Appflow
215
215
  MarketoConnectorOperator = Shapes::StringShape.new(name: 'MarketoConnectorOperator')
216
216
  MarketoConnectorProfileCredentials = Shapes::StructureShape.new(name: 'MarketoConnectorProfileCredentials')
217
217
  MarketoConnectorProfileProperties = Shapes::StructureShape.new(name: 'MarketoConnectorProfileProperties')
218
+ MarketoDestinationProperties = Shapes::StructureShape.new(name: 'MarketoDestinationProperties')
218
219
  MarketoMetadata = Shapes::StructureShape.new(name: 'MarketoMetadata')
219
220
  MarketoSourceProperties = Shapes::StructureShape.new(name: 'MarketoSourceProperties')
220
221
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
@@ -222,6 +223,9 @@ module Aws::Appflow
222
223
  Name = Shapes::StringShape.new(name: 'Name')
223
224
  NextToken = Shapes::StringShape.new(name: 'NextToken')
224
225
  OAuth2Credentials = Shapes::StructureShape.new(name: 'OAuth2Credentials')
226
+ OAuth2CustomParameter = Shapes::StructureShape.new(name: 'OAuth2CustomParameter')
227
+ OAuth2CustomPropType = Shapes::StringShape.new(name: 'OAuth2CustomPropType')
228
+ OAuth2CustomPropertiesList = Shapes::ListShape.new(name: 'OAuth2CustomPropertiesList')
225
229
  OAuth2Defaults = Shapes::StructureShape.new(name: 'OAuth2Defaults')
226
230
  OAuth2GrantType = Shapes::StringShape.new(name: 'OAuth2GrantType')
227
231
  OAuth2GrantTypeSupportedList = Shapes::ListShape.new(name: 'OAuth2GrantTypeSupportedList')
@@ -338,6 +342,7 @@ module Aws::Appflow
338
342
  ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
339
343
  Timezone = Shapes::StringShape.new(name: 'Timezone')
340
344
  TokenUrl = Shapes::StringShape.new(name: 'TokenUrl')
345
+ TokenUrlCustomProperties = Shapes::MapShape.new(name: 'TokenUrlCustomProperties')
341
346
  TokenUrlList = Shapes::ListShape.new(name: 'TokenUrlList')
342
347
  TrendmicroConnectorOperator = Shapes::StringShape.new(name: 'TrendmicroConnectorOperator')
343
348
  TrendmicroConnectorProfileCredentials = Shapes::StructureShape.new(name: 'TrendmicroConnectorProfileCredentials')
@@ -801,6 +806,7 @@ module Aws::Appflow
801
806
  DestinationConnectorProperties.add_member(:honeycode, Shapes::ShapeRef.new(shape: HoneycodeDestinationProperties, location_name: "Honeycode"))
802
807
  DestinationConnectorProperties.add_member(:customer_profiles, Shapes::ShapeRef.new(shape: CustomerProfilesDestinationProperties, location_name: "CustomerProfiles"))
803
808
  DestinationConnectorProperties.add_member(:zendesk, Shapes::ShapeRef.new(shape: ZendeskDestinationProperties, location_name: "Zendesk"))
809
+ DestinationConnectorProperties.add_member(:marketo, Shapes::ShapeRef.new(shape: MarketoDestinationProperties, location_name: "Marketo"))
804
810
  DestinationConnectorProperties.add_member(:custom_connector, Shapes::ShapeRef.new(shape: CustomConnectorDestinationProperties, location_name: "CustomConnector"))
805
811
  DestinationConnectorProperties.add_member(:sapo_data, Shapes::ShapeRef.new(shape: SAPODataDestinationProperties, location_name: "SAPOData"))
806
812
  DestinationConnectorProperties.struct_class = Types::DestinationConnectorProperties
@@ -995,6 +1001,10 @@ module Aws::Appflow
995
1001
  MarketoConnectorProfileProperties.add_member(:instance_url, Shapes::ShapeRef.new(shape: InstanceUrl, required: true, location_name: "instanceUrl"))
996
1002
  MarketoConnectorProfileProperties.struct_class = Types::MarketoConnectorProfileProperties
997
1003
 
1004
+ MarketoDestinationProperties.add_member(:object, Shapes::ShapeRef.new(shape: Object, required: true, location_name: "object"))
1005
+ MarketoDestinationProperties.add_member(:error_handling_config, Shapes::ShapeRef.new(shape: ErrorHandlingConfig, location_name: "errorHandlingConfig"))
1006
+ MarketoDestinationProperties.struct_class = Types::MarketoDestinationProperties
1007
+
998
1008
  MarketoMetadata.struct_class = Types::MarketoMetadata
999
1009
 
1000
1010
  MarketoSourceProperties.add_member(:object, Shapes::ShapeRef.new(shape: Object, required: true, location_name: "object"))
@@ -1007,16 +1017,29 @@ module Aws::Appflow
1007
1017
  OAuth2Credentials.add_member(:o_auth_request, Shapes::ShapeRef.new(shape: ConnectorOAuthRequest, location_name: "oAuthRequest"))
1008
1018
  OAuth2Credentials.struct_class = Types::OAuth2Credentials
1009
1019
 
1020
+ OAuth2CustomParameter.add_member(:key, Shapes::ShapeRef.new(shape: Key, location_name: "key"))
1021
+ OAuth2CustomParameter.add_member(:is_required, Shapes::ShapeRef.new(shape: Boolean, location_name: "isRequired"))
1022
+ OAuth2CustomParameter.add_member(:label, Shapes::ShapeRef.new(shape: Label, location_name: "label"))
1023
+ OAuth2CustomParameter.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
1024
+ OAuth2CustomParameter.add_member(:is_sensitive_field, Shapes::ShapeRef.new(shape: Boolean, location_name: "isSensitiveField"))
1025
+ OAuth2CustomParameter.add_member(:connector_supplied_values, Shapes::ShapeRef.new(shape: ConnectorSuppliedValueList, location_name: "connectorSuppliedValues"))
1026
+ OAuth2CustomParameter.add_member(:type, Shapes::ShapeRef.new(shape: OAuth2CustomPropType, location_name: "type"))
1027
+ OAuth2CustomParameter.struct_class = Types::OAuth2CustomParameter
1028
+
1029
+ OAuth2CustomPropertiesList.member = Shapes::ShapeRef.new(shape: OAuth2CustomParameter)
1030
+
1010
1031
  OAuth2Defaults.add_member(:oauth_scopes, Shapes::ShapeRef.new(shape: OAuthScopeList, location_name: "oauthScopes"))
1011
1032
  OAuth2Defaults.add_member(:token_urls, Shapes::ShapeRef.new(shape: TokenUrlList, location_name: "tokenUrls"))
1012
1033
  OAuth2Defaults.add_member(:auth_code_urls, Shapes::ShapeRef.new(shape: AuthCodeUrlList, location_name: "authCodeUrls"))
1013
1034
  OAuth2Defaults.add_member(:oauth2_grant_types_supported, Shapes::ShapeRef.new(shape: OAuth2GrantTypeSupportedList, location_name: "oauth2GrantTypesSupported"))
1035
+ OAuth2Defaults.add_member(:oauth2_custom_properties, Shapes::ShapeRef.new(shape: OAuth2CustomPropertiesList, location_name: "oauth2CustomProperties"))
1014
1036
  OAuth2Defaults.struct_class = Types::OAuth2Defaults
1015
1037
 
1016
1038
  OAuth2GrantTypeSupportedList.member = Shapes::ShapeRef.new(shape: OAuth2GrantType)
1017
1039
 
1018
1040
  OAuth2Properties.add_member(:token_url, Shapes::ShapeRef.new(shape: TokenUrl, required: true, location_name: "tokenUrl"))
1019
1041
  OAuth2Properties.add_member(:o_auth_2_grant_type, Shapes::ShapeRef.new(shape: OAuth2GrantType, required: true, location_name: "oAuth2GrantType"))
1042
+ OAuth2Properties.add_member(:token_url_custom_properties, Shapes::ShapeRef.new(shape: TokenUrlCustomProperties, location_name: "tokenUrlCustomProperties"))
1020
1043
  OAuth2Properties.struct_class = Types::OAuth2Properties
1021
1044
 
1022
1045
  OAuthCredentials.add_member(:client_id, Shapes::ShapeRef.new(shape: ClientId, required: true, location_name: "clientId"))
@@ -1311,6 +1334,9 @@ module Aws::Appflow
1311
1334
  ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
1312
1335
  ThrottlingException.struct_class = Types::ThrottlingException
1313
1336
 
1337
+ TokenUrlCustomProperties.key = Shapes::ShapeRef.new(shape: CustomPropertyKey)
1338
+ TokenUrlCustomProperties.value = Shapes::ShapeRef.new(shape: CustomPropertyValue)
1339
+
1314
1340
  TokenUrlList.member = Shapes::ShapeRef.new(shape: TokenUrl)
1315
1341
 
1316
1342
  TrendmicroConnectorProfileCredentials.add_member(:api_secret_key, Shapes::ShapeRef.new(shape: ApiSecretKey, required: true, location_name: "apiSecretKey"))
@@ -997,6 +997,9 @@ module Aws::Appflow
997
997
  # o_auth_2_properties: {
998
998
  # token_url: "TokenUrl", # required
999
999
  # o_auth_2_grant_type: "CLIENT_CREDENTIALS", # required, accepts CLIENT_CREDENTIALS, AUTHORIZATION_CODE
1000
+ # token_url_custom_properties: {
1001
+ # "CustomPropertyKey" => "CustomPropertyValue",
1002
+ # },
1000
1003
  # },
1001
1004
  # },
1002
1005
  # },
@@ -1482,6 +1485,9 @@ module Aws::Appflow
1482
1485
  # o_auth_2_properties: {
1483
1486
  # token_url: "TokenUrl", # required
1484
1487
  # o_auth_2_grant_type: "CLIENT_CREDENTIALS", # required, accepts CLIENT_CREDENTIALS, AUTHORIZATION_CODE
1488
+ # token_url_custom_properties: {
1489
+ # "CustomPropertyKey" => "CustomPropertyValue",
1490
+ # },
1485
1491
  # },
1486
1492
  # },
1487
1493
  # }
@@ -1752,6 +1758,9 @@ module Aws::Appflow
1752
1758
  # o_auth_2_properties: {
1753
1759
  # token_url: "TokenUrl", # required
1754
1760
  # o_auth_2_grant_type: "CLIENT_CREDENTIALS", # required, accepts CLIENT_CREDENTIALS, AUTHORIZATION_CODE
1761
+ # token_url_custom_properties: {
1762
+ # "CustomPropertyKey" => "CustomPropertyValue",
1763
+ # },
1755
1764
  # },
1756
1765
  # },
1757
1766
  # },
@@ -2143,6 +2152,14 @@ module Aws::Appflow
2143
2152
  # },
2144
2153
  # write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE, DELETE
2145
2154
  # },
2155
+ # marketo: {
2156
+ # object: "Object", # required
2157
+ # error_handling_config: {
2158
+ # fail_on_first_destination_error: false,
2159
+ # bucket_prefix: "BucketPrefix",
2160
+ # bucket_name: "BucketName",
2161
+ # },
2162
+ # },
2146
2163
  # custom_connector: {
2147
2164
  # entity_name: "EntityName", # required
2148
2165
  # error_handling_config: {
@@ -2466,6 +2483,9 @@ module Aws::Appflow
2466
2483
  # o_auth_2_properties: {
2467
2484
  # token_url: "TokenUrl", # required
2468
2485
  # o_auth_2_grant_type: "CLIENT_CREDENTIALS", # required, accepts CLIENT_CREDENTIALS, AUTHORIZATION_CODE
2486
+ # token_url_custom_properties: {
2487
+ # "CustomPropertyKey" => "CustomPropertyValue",
2488
+ # },
2469
2489
  # },
2470
2490
  # }
2471
2491
  #
@@ -3177,6 +3197,14 @@ module Aws::Appflow
3177
3197
  # },
3178
3198
  # write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE, DELETE
3179
3199
  # },
3200
+ # marketo: {
3201
+ # object: "Object", # required
3202
+ # error_handling_config: {
3203
+ # fail_on_first_destination_error: false,
3204
+ # bucket_prefix: "BucketPrefix",
3205
+ # bucket_name: "BucketName",
3206
+ # },
3207
+ # },
3180
3208
  # custom_connector: {
3181
3209
  # entity_name: "EntityName", # required
3182
3210
  # error_handling_config: {
@@ -3246,6 +3274,10 @@ module Aws::Appflow
3246
3274
  # The properties required to query Zendesk.
3247
3275
  # @return [Types::ZendeskDestinationProperties]
3248
3276
  #
3277
+ # @!attribute [rw] marketo
3278
+ # The properties required to query Marketo.
3279
+ # @return [Types::MarketoDestinationProperties]
3280
+ #
3249
3281
  # @!attribute [rw] custom_connector
3250
3282
  # The properties that are required to query the custom Connector.
3251
3283
  # @return [Types::CustomConnectorDestinationProperties]
@@ -3267,6 +3299,7 @@ module Aws::Appflow
3267
3299
  :honeycode,
3268
3300
  :customer_profiles,
3269
3301
  :zendesk,
3302
+ :marketo,
3270
3303
  :custom_connector,
3271
3304
  :sapo_data)
3272
3305
  SENSITIVE = []
@@ -3421,6 +3454,14 @@ module Aws::Appflow
3421
3454
  # },
3422
3455
  # write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE, DELETE
3423
3456
  # },
3457
+ # marketo: {
3458
+ # object: "Object", # required
3459
+ # error_handling_config: {
3460
+ # fail_on_first_destination_error: false,
3461
+ # bucket_prefix: "BucketPrefix",
3462
+ # bucket_name: "BucketName",
3463
+ # },
3464
+ # },
3424
3465
  # custom_connector: {
3425
3466
  # entity_name: "EntityName", # required
3426
3467
  # error_handling_config: {
@@ -4486,6 +4527,43 @@ module Aws::Appflow
4486
4527
  include Aws::Structure
4487
4528
  end
4488
4529
 
4530
+ # The properties that Amazon AppFlow applies when you use Marketo as a
4531
+ # flow destination.
4532
+ #
4533
+ # @note When making an API call, you may pass MarketoDestinationProperties
4534
+ # data as a hash:
4535
+ #
4536
+ # {
4537
+ # object: "Object", # required
4538
+ # error_handling_config: {
4539
+ # fail_on_first_destination_error: false,
4540
+ # bucket_prefix: "BucketPrefix",
4541
+ # bucket_name: "BucketName",
4542
+ # },
4543
+ # }
4544
+ #
4545
+ # @!attribute [rw] object
4546
+ # The object specified in the Marketo flow destination.
4547
+ # @return [String]
4548
+ #
4549
+ # @!attribute [rw] error_handling_config
4550
+ # The settings that determine how Amazon AppFlow handles an error when
4551
+ # placing data in the destination. For example, this setting would
4552
+ # determine if the flow should fail after one insertion error, or
4553
+ # continue and attempt to insert every record regardless of the
4554
+ # initial failure. `ErrorHandlingConfig` is a part of the destination
4555
+ # connector details.
4556
+ # @return [Types::ErrorHandlingConfig]
4557
+ #
4558
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/MarketoDestinationProperties AWS API Documentation
4559
+ #
4560
+ class MarketoDestinationProperties < Struct.new(
4561
+ :object,
4562
+ :error_handling_config)
4563
+ SENSITIVE = []
4564
+ include Aws::Structure
4565
+ end
4566
+
4489
4567
  # The connector metadata specific to Marketo.
4490
4568
  #
4491
4569
  # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/MarketoMetadata AWS API Documentation
@@ -4564,6 +4642,55 @@ module Aws::Appflow
4564
4642
  include Aws::Structure
4565
4643
  end
4566
4644
 
4645
+ # Custom parameter required for OAuth 2.0 authentication.
4646
+ #
4647
+ # @!attribute [rw] key
4648
+ # The key of the custom parameter required for OAuth 2.0
4649
+ # authentication.
4650
+ # @return [String]
4651
+ #
4652
+ # @!attribute [rw] is_required
4653
+ # Indicates whether the custom parameter for OAuth 2.0 authentication
4654
+ # is required.
4655
+ # @return [Boolean]
4656
+ #
4657
+ # @!attribute [rw] label
4658
+ # The label of the custom parameter used for OAuth 2.0 authentication.
4659
+ # @return [String]
4660
+ #
4661
+ # @!attribute [rw] description
4662
+ # A description about the custom parameter used for OAuth 2.0
4663
+ # authentication.
4664
+ # @return [String]
4665
+ #
4666
+ # @!attribute [rw] is_sensitive_field
4667
+ # Indicates whether this authentication custom parameter is a
4668
+ # sensitive field.
4669
+ # @return [Boolean]
4670
+ #
4671
+ # @!attribute [rw] connector_supplied_values
4672
+ # Contains default values for this authentication parameter that are
4673
+ # supplied by the connector.
4674
+ # @return [Array<String>]
4675
+ #
4676
+ # @!attribute [rw] type
4677
+ # Indicates whether custom parameter is used with TokenUrl or AuthUrl.
4678
+ # @return [String]
4679
+ #
4680
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/OAuth2CustomParameter AWS API Documentation
4681
+ #
4682
+ class OAuth2CustomParameter < Struct.new(
4683
+ :key,
4684
+ :is_required,
4685
+ :label,
4686
+ :description,
4687
+ :is_sensitive_field,
4688
+ :connector_supplied_values,
4689
+ :type)
4690
+ SENSITIVE = []
4691
+ include Aws::Structure
4692
+ end
4693
+
4567
4694
  # Contains the default values required for OAuth 2.0 authentication.
4568
4695
  #
4569
4696
  # @!attribute [rw] oauth_scopes
@@ -4582,13 +4709,18 @@ module Aws::Appflow
4582
4709
  # OAuth 2.0 grant types supported by the connector.
4583
4710
  # @return [Array<String>]
4584
4711
  #
4712
+ # @!attribute [rw] oauth2_custom_properties
4713
+ # List of custom parameters required for OAuth 2.0 authentication.
4714
+ # @return [Array<Types::OAuth2CustomParameter>]
4715
+ #
4585
4716
  # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/OAuth2Defaults AWS API Documentation
4586
4717
  #
4587
4718
  class OAuth2Defaults < Struct.new(
4588
4719
  :oauth_scopes,
4589
4720
  :token_urls,
4590
4721
  :auth_code_urls,
4591
- :oauth2_grant_types_supported)
4722
+ :oauth2_grant_types_supported,
4723
+ :oauth2_custom_properties)
4592
4724
  SENSITIVE = []
4593
4725
  include Aws::Structure
4594
4726
  end
@@ -4601,6 +4733,9 @@ module Aws::Appflow
4601
4733
  # {
4602
4734
  # token_url: "TokenUrl", # required
4603
4735
  # o_auth_2_grant_type: "CLIENT_CREDENTIALS", # required, accepts CLIENT_CREDENTIALS, AUTHORIZATION_CODE
4736
+ # token_url_custom_properties: {
4737
+ # "CustomPropertyKey" => "CustomPropertyValue",
4738
+ # },
4604
4739
  # }
4605
4740
  #
4606
4741
  # @!attribute [rw] token_url
@@ -4612,11 +4747,18 @@ module Aws::Appflow
4612
4747
  # authentication.
4613
4748
  # @return [String]
4614
4749
  #
4750
+ # @!attribute [rw] token_url_custom_properties
4751
+ # Associates your token URL with a map of properties that you define.
4752
+ # Use this parameter to provide any additional details that the
4753
+ # connector requires to authenticate your request.
4754
+ # @return [Hash<String,String>]
4755
+ #
4615
4756
  # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/OAuth2Properties AWS API Documentation
4616
4757
  #
4617
4758
  class OAuth2Properties < Struct.new(
4618
4759
  :token_url,
4619
- :o_auth_2_grant_type)
4760
+ :o_auth_2_grant_type,
4761
+ :token_url_custom_properties)
4620
4762
  SENSITIVE = []
4621
4763
  include Aws::Structure
4622
4764
  end
@@ -6805,6 +6947,9 @@ module Aws::Appflow
6805
6947
  # o_auth_2_properties: {
6806
6948
  # token_url: "TokenUrl", # required
6807
6949
  # o_auth_2_grant_type: "CLIENT_CREDENTIALS", # required, accepts CLIENT_CREDENTIALS, AUTHORIZATION_CODE
6950
+ # token_url_custom_properties: {
6951
+ # "CustomPropertyKey" => "CustomPropertyValue",
6952
+ # },
6808
6953
  # },
6809
6954
  # },
6810
6955
  # },
@@ -7172,6 +7317,14 @@ module Aws::Appflow
7172
7317
  # },
7173
7318
  # write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE, DELETE
7174
7319
  # },
7320
+ # marketo: {
7321
+ # object: "Object", # required
7322
+ # error_handling_config: {
7323
+ # fail_on_first_destination_error: false,
7324
+ # bucket_prefix: "BucketPrefix",
7325
+ # bucket_name: "BucketName",
7326
+ # },
7327
+ # },
7175
7328
  # custom_connector: {
7176
7329
  # entity_name: "EntityName", # required
7177
7330
  # error_handling_config: {
@@ -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.23.0'
51
+ GEM_VERSION = '1.26.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.23.0
4
+ version: 1.26.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: 2022-02-14 00:00:00.000000000 Z
11
+ date: 2022-04-14 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.126.0
22
+ version: 3.127.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.126.0
32
+ version: 3.127.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement