aws-sdk-appflow 1.24.0 → 1.25.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 +21 -1
- data/lib/aws-sdk-appflow/client_api.rb +6 -0
- data/lib/aws-sdk-appflow/types.rb +74 -0
- 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: '08628744bdcecf40a4b8dee4bd92000a96aedf23cb3003b60a537a784f9b8fab'
|
4
|
+
data.tar.gz: 790e916eeb653dfd4a400d9e912842c89ae616a26d74933c37b36072d15e38e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4855ced24f6d2fd7abff5c8a882a0f2b90f6e92e81f1bab1efa1322b46b1a5b2c9f2e9ca8e25fbda810ccb7e87172082e54199a23150ae6aac383488a03d5807
|
7
|
+
data.tar.gz: 968f63751e83da01be05389355fbba7e9ca32e5155183e86e3d969d9592747e335f6f966cd8dcbb84452dec47c402b9db3ac0106d0ded59ae3d46fc0e7e927d0
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.25.0
|
@@ -858,6 +858,14 @@ module Aws::Appflow
|
|
858
858
|
# },
|
859
859
|
# write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE, DELETE
|
860
860
|
# },
|
861
|
+
# marketo: {
|
862
|
+
# object: "Object", # required
|
863
|
+
# error_handling_config: {
|
864
|
+
# fail_on_first_destination_error: false,
|
865
|
+
# bucket_prefix: "BucketPrefix",
|
866
|
+
# bucket_name: "BucketName",
|
867
|
+
# },
|
868
|
+
# },
|
861
869
|
# custom_connector: {
|
862
870
|
# entity_name: "EntityName", # required
|
863
871
|
# error_handling_config: {
|
@@ -1535,6 +1543,10 @@ module Aws::Appflow
|
|
1535
1543
|
# resp.destination_flow_config_list[0].destination_connector_properties.zendesk.error_handling_config.bucket_prefix #=> String
|
1536
1544
|
# resp.destination_flow_config_list[0].destination_connector_properties.zendesk.error_handling_config.bucket_name #=> String
|
1537
1545
|
# resp.destination_flow_config_list[0].destination_connector_properties.zendesk.write_operation_type #=> String, one of "INSERT", "UPSERT", "UPDATE", "DELETE"
|
1546
|
+
# resp.destination_flow_config_list[0].destination_connector_properties.marketo.object #=> String
|
1547
|
+
# resp.destination_flow_config_list[0].destination_connector_properties.marketo.error_handling_config.fail_on_first_destination_error #=> Boolean
|
1548
|
+
# resp.destination_flow_config_list[0].destination_connector_properties.marketo.error_handling_config.bucket_prefix #=> String
|
1549
|
+
# resp.destination_flow_config_list[0].destination_connector_properties.marketo.error_handling_config.bucket_name #=> String
|
1538
1550
|
# resp.destination_flow_config_list[0].destination_connector_properties.custom_connector.entity_name #=> String
|
1539
1551
|
# resp.destination_flow_config_list[0].destination_connector_properties.custom_connector.error_handling_config.fail_on_first_destination_error #=> Boolean
|
1540
1552
|
# resp.destination_flow_config_list[0].destination_connector_properties.custom_connector.error_handling_config.bucket_prefix #=> String
|
@@ -2516,6 +2528,14 @@ module Aws::Appflow
|
|
2516
2528
|
# },
|
2517
2529
|
# write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE, DELETE
|
2518
2530
|
# },
|
2531
|
+
# marketo: {
|
2532
|
+
# object: "Object", # required
|
2533
|
+
# error_handling_config: {
|
2534
|
+
# fail_on_first_destination_error: false,
|
2535
|
+
# bucket_prefix: "BucketPrefix",
|
2536
|
+
# bucket_name: "BucketName",
|
2537
|
+
# },
|
2538
|
+
# },
|
2519
2539
|
# custom_connector: {
|
2520
2540
|
# entity_name: "EntityName", # required
|
2521
2541
|
# error_handling_config: {
|
@@ -2602,7 +2622,7 @@ module Aws::Appflow
|
|
2602
2622
|
params: params,
|
2603
2623
|
config: config)
|
2604
2624
|
context[:gem_name] = 'aws-sdk-appflow'
|
2605
|
-
context[:gem_version] = '1.
|
2625
|
+
context[:gem_version] = '1.25.0'
|
2606
2626
|
Seahorse::Client::Request.new(handlers, context)
|
2607
2627
|
end
|
2608
2628
|
|
@@ -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')
|
@@ -801,6 +802,7 @@ module Aws::Appflow
|
|
801
802
|
DestinationConnectorProperties.add_member(:honeycode, Shapes::ShapeRef.new(shape: HoneycodeDestinationProperties, location_name: "Honeycode"))
|
802
803
|
DestinationConnectorProperties.add_member(:customer_profiles, Shapes::ShapeRef.new(shape: CustomerProfilesDestinationProperties, location_name: "CustomerProfiles"))
|
803
804
|
DestinationConnectorProperties.add_member(:zendesk, Shapes::ShapeRef.new(shape: ZendeskDestinationProperties, location_name: "Zendesk"))
|
805
|
+
DestinationConnectorProperties.add_member(:marketo, Shapes::ShapeRef.new(shape: MarketoDestinationProperties, location_name: "Marketo"))
|
804
806
|
DestinationConnectorProperties.add_member(:custom_connector, Shapes::ShapeRef.new(shape: CustomConnectorDestinationProperties, location_name: "CustomConnector"))
|
805
807
|
DestinationConnectorProperties.add_member(:sapo_data, Shapes::ShapeRef.new(shape: SAPODataDestinationProperties, location_name: "SAPOData"))
|
806
808
|
DestinationConnectorProperties.struct_class = Types::DestinationConnectorProperties
|
@@ -995,6 +997,10 @@ module Aws::Appflow
|
|
995
997
|
MarketoConnectorProfileProperties.add_member(:instance_url, Shapes::ShapeRef.new(shape: InstanceUrl, required: true, location_name: "instanceUrl"))
|
996
998
|
MarketoConnectorProfileProperties.struct_class = Types::MarketoConnectorProfileProperties
|
997
999
|
|
1000
|
+
MarketoDestinationProperties.add_member(:object, Shapes::ShapeRef.new(shape: Object, required: true, location_name: "object"))
|
1001
|
+
MarketoDestinationProperties.add_member(:error_handling_config, Shapes::ShapeRef.new(shape: ErrorHandlingConfig, location_name: "errorHandlingConfig"))
|
1002
|
+
MarketoDestinationProperties.struct_class = Types::MarketoDestinationProperties
|
1003
|
+
|
998
1004
|
MarketoMetadata.struct_class = Types::MarketoMetadata
|
999
1005
|
|
1000
1006
|
MarketoSourceProperties.add_member(:object, Shapes::ShapeRef.new(shape: Object, required: true, location_name: "object"))
|
@@ -2143,6 +2143,14 @@ module Aws::Appflow
|
|
2143
2143
|
# },
|
2144
2144
|
# write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE, DELETE
|
2145
2145
|
# },
|
2146
|
+
# marketo: {
|
2147
|
+
# object: "Object", # required
|
2148
|
+
# error_handling_config: {
|
2149
|
+
# fail_on_first_destination_error: false,
|
2150
|
+
# bucket_prefix: "BucketPrefix",
|
2151
|
+
# bucket_name: "BucketName",
|
2152
|
+
# },
|
2153
|
+
# },
|
2146
2154
|
# custom_connector: {
|
2147
2155
|
# entity_name: "EntityName", # required
|
2148
2156
|
# error_handling_config: {
|
@@ -3177,6 +3185,14 @@ module Aws::Appflow
|
|
3177
3185
|
# },
|
3178
3186
|
# write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE, DELETE
|
3179
3187
|
# },
|
3188
|
+
# marketo: {
|
3189
|
+
# object: "Object", # required
|
3190
|
+
# error_handling_config: {
|
3191
|
+
# fail_on_first_destination_error: false,
|
3192
|
+
# bucket_prefix: "BucketPrefix",
|
3193
|
+
# bucket_name: "BucketName",
|
3194
|
+
# },
|
3195
|
+
# },
|
3180
3196
|
# custom_connector: {
|
3181
3197
|
# entity_name: "EntityName", # required
|
3182
3198
|
# error_handling_config: {
|
@@ -3246,6 +3262,10 @@ module Aws::Appflow
|
|
3246
3262
|
# The properties required to query Zendesk.
|
3247
3263
|
# @return [Types::ZendeskDestinationProperties]
|
3248
3264
|
#
|
3265
|
+
# @!attribute [rw] marketo
|
3266
|
+
# The properties required to query Marketo.
|
3267
|
+
# @return [Types::MarketoDestinationProperties]
|
3268
|
+
#
|
3249
3269
|
# @!attribute [rw] custom_connector
|
3250
3270
|
# The properties that are required to query the custom Connector.
|
3251
3271
|
# @return [Types::CustomConnectorDestinationProperties]
|
@@ -3267,6 +3287,7 @@ module Aws::Appflow
|
|
3267
3287
|
:honeycode,
|
3268
3288
|
:customer_profiles,
|
3269
3289
|
:zendesk,
|
3290
|
+
:marketo,
|
3270
3291
|
:custom_connector,
|
3271
3292
|
:sapo_data)
|
3272
3293
|
SENSITIVE = []
|
@@ -3421,6 +3442,14 @@ module Aws::Appflow
|
|
3421
3442
|
# },
|
3422
3443
|
# write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE, DELETE
|
3423
3444
|
# },
|
3445
|
+
# marketo: {
|
3446
|
+
# object: "Object", # required
|
3447
|
+
# error_handling_config: {
|
3448
|
+
# fail_on_first_destination_error: false,
|
3449
|
+
# bucket_prefix: "BucketPrefix",
|
3450
|
+
# bucket_name: "BucketName",
|
3451
|
+
# },
|
3452
|
+
# },
|
3424
3453
|
# custom_connector: {
|
3425
3454
|
# entity_name: "EntityName", # required
|
3426
3455
|
# error_handling_config: {
|
@@ -4486,6 +4515,43 @@ module Aws::Appflow
|
|
4486
4515
|
include Aws::Structure
|
4487
4516
|
end
|
4488
4517
|
|
4518
|
+
# The properties that Amazon AppFlow applies when you use Marketo as a
|
4519
|
+
# flow destination.
|
4520
|
+
#
|
4521
|
+
# @note When making an API call, you may pass MarketoDestinationProperties
|
4522
|
+
# data as a hash:
|
4523
|
+
#
|
4524
|
+
# {
|
4525
|
+
# object: "Object", # required
|
4526
|
+
# error_handling_config: {
|
4527
|
+
# fail_on_first_destination_error: false,
|
4528
|
+
# bucket_prefix: "BucketPrefix",
|
4529
|
+
# bucket_name: "BucketName",
|
4530
|
+
# },
|
4531
|
+
# }
|
4532
|
+
#
|
4533
|
+
# @!attribute [rw] object
|
4534
|
+
# The object specified in the Marketo flow destination.
|
4535
|
+
# @return [String]
|
4536
|
+
#
|
4537
|
+
# @!attribute [rw] error_handling_config
|
4538
|
+
# The settings that determine how Amazon AppFlow handles an error when
|
4539
|
+
# placing data in the destination. For example, this setting would
|
4540
|
+
# determine if the flow should fail after one insertion error, or
|
4541
|
+
# continue and attempt to insert every record regardless of the
|
4542
|
+
# initial failure. `ErrorHandlingConfig` is a part of the destination
|
4543
|
+
# connector details.
|
4544
|
+
# @return [Types::ErrorHandlingConfig]
|
4545
|
+
#
|
4546
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/MarketoDestinationProperties AWS API Documentation
|
4547
|
+
#
|
4548
|
+
class MarketoDestinationProperties < Struct.new(
|
4549
|
+
:object,
|
4550
|
+
:error_handling_config)
|
4551
|
+
SENSITIVE = []
|
4552
|
+
include Aws::Structure
|
4553
|
+
end
|
4554
|
+
|
4489
4555
|
# The connector metadata specific to Marketo.
|
4490
4556
|
#
|
4491
4557
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/MarketoMetadata AWS API Documentation
|
@@ -7172,6 +7238,14 @@ module Aws::Appflow
|
|
7172
7238
|
# },
|
7173
7239
|
# write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE, DELETE
|
7174
7240
|
# },
|
7241
|
+
# marketo: {
|
7242
|
+
# object: "Object", # required
|
7243
|
+
# error_handling_config: {
|
7244
|
+
# fail_on_first_destination_error: false,
|
7245
|
+
# bucket_prefix: "BucketPrefix",
|
7246
|
+
# bucket_name: "BucketName",
|
7247
|
+
# },
|
7248
|
+
# },
|
7175
7249
|
# custom_connector: {
|
7176
7250
|
# entity_name: "EntityName", # required
|
7177
7251
|
# error_handling_config: {
|
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.25.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-
|
11
|
+
date: 2022-03-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|