aws-sdk-appflow 1.12.0 → 1.16.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appflow/client.rb +125 -31
- data/lib/aws-sdk-appflow/client_api.rb +70 -1
- data/lib/aws-sdk-appflow/types.rb +511 -32
- data/lib/aws-sdk-appflow.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 58fe880ae99c928905178f9feade2f43b22fdbb605fdaf854861023b55f1aeaa
|
4
|
+
data.tar.gz: d5b8ea12676457b09d8ce1d706d46d1d1c0ab64c9249bc5707febdb7821fbc63
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cdb9bd2c98052da3ac60fc02999a4a11f4b4befe35798682776238bb75658f04536f2cd935cdb8dc815c89961516784616b779a6deb2b145ed7158b99feb6896
|
7
|
+
data.tar.gz: 799e91ee6180527f98258cf2680f1af05806ac256ebbda329f59c1b9274f239257fc5a00d2156b69e17ae00f02dfdac89d9161fbcae43543a8a17a3a578d6b2f
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.16.0 (2021-10-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.15.0 (2021-09-01)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.14.0 (2021-08-19)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - This release adds support for SAPOData connector and extends Veeva connector for document extraction.
|
18
|
+
|
19
|
+
1.13.0 (2021-07-30)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.12.0 (2021-07-28)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.16.0
|
@@ -327,15 +327,15 @@ module Aws::Appflow
|
|
327
327
|
|
328
328
|
# @!group API Operations
|
329
329
|
|
330
|
-
# Creates a new connector profile associated with your
|
331
|
-
# There is a soft quota of 100 connector profiles per
|
332
|
-
# you need more connector profiles than
|
333
|
-
# submit a request to the Amazon AppFlow team
|
334
|
-
# support channel.
|
330
|
+
# Creates a new connector profile associated with your Amazon Web
|
331
|
+
# Services account. There is a soft quota of 100 connector profiles per
|
332
|
+
# Amazon Web Services account. If you need more connector profiles than
|
333
|
+
# this quota allows, you can submit a request to the Amazon AppFlow team
|
334
|
+
# through the Amazon AppFlow support channel.
|
335
335
|
#
|
336
336
|
# @option params [required, String] :connector_profile_name
|
337
337
|
# The name of the connector profile. The name is unique for each
|
338
|
-
# `ConnectorProfile` in your
|
338
|
+
# `ConnectorProfile` in your Amazon Web Services account.
|
339
339
|
#
|
340
340
|
# @option params [String] :kms_arn
|
341
341
|
# The ARN (Amazon Resource Name) of the Key Management Service (KMS) key
|
@@ -348,8 +348,9 @@ module Aws::Appflow
|
|
348
348
|
#
|
349
349
|
# @option params [required, String] :connection_mode
|
350
350
|
# Indicates the connection mode and specifies whether it is public or
|
351
|
-
# private. Private flows use
|
352
|
-
# infrastructure without exposing it to
|
351
|
+
# private. Private flows use Amazon Web Services PrivateLink to route
|
352
|
+
# data over Amazon Web Services infrastructure without exposing it to
|
353
|
+
# the public internet.
|
353
354
|
#
|
354
355
|
# @option params [required, Types::ConnectorProfileConfig] :connector_profile_config
|
355
356
|
# Defines the connector-specific configuration and credentials.
|
@@ -363,7 +364,7 @@ module Aws::Appflow
|
|
363
364
|
# resp = client.create_connector_profile({
|
364
365
|
# connector_profile_name: "ConnectorProfileName", # required
|
365
366
|
# kms_arn: "KMSArn",
|
366
|
-
# connector_type: "Salesforce", # required, accepts Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles
|
367
|
+
# connector_type: "Salesforce", # required, accepts Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles, SAPOData
|
367
368
|
# connection_mode: "Public", # required, accepts Public, Private
|
368
369
|
# connector_profile_config: { # required
|
369
370
|
# connector_profile_properties: { # required
|
@@ -420,6 +421,19 @@ module Aws::Appflow
|
|
420
421
|
# zendesk: {
|
421
422
|
# instance_url: "InstanceUrl", # required
|
422
423
|
# },
|
424
|
+
# sapo_data: {
|
425
|
+
# application_host_url: "ApplicationHostUrl", # required
|
426
|
+
# application_service_path: "ApplicationServicePath", # required
|
427
|
+
# port_number: 1, # required
|
428
|
+
# client_number: "ClientNumber", # required
|
429
|
+
# logon_language: "LogonLanguage",
|
430
|
+
# private_link_service_name: "PrivateLinkServiceName",
|
431
|
+
# o_auth_properties: {
|
432
|
+
# token_url: "TokenUrl", # required
|
433
|
+
# auth_code_url: "AuthCodeUrl", # required
|
434
|
+
# o_auth_scopes: ["OAuthScope"], # required
|
435
|
+
# },
|
436
|
+
# },
|
423
437
|
# },
|
424
438
|
# connector_profile_credentials: { # required
|
425
439
|
# amplitude: {
|
@@ -515,6 +529,22 @@ module Aws::Appflow
|
|
515
529
|
# redirect_uri: "RedirectUri",
|
516
530
|
# },
|
517
531
|
# },
|
532
|
+
# sapo_data: {
|
533
|
+
# basic_auth_credentials: {
|
534
|
+
# username: "Username", # required
|
535
|
+
# password: "Password", # required
|
536
|
+
# },
|
537
|
+
# o_auth_credentials: {
|
538
|
+
# client_id: "ClientId", # required
|
539
|
+
# client_secret: "ClientSecret", # required
|
540
|
+
# access_token: "AccessToken",
|
541
|
+
# refresh_token: "RefreshToken",
|
542
|
+
# o_auth_request: {
|
543
|
+
# auth_code: "AuthCode",
|
544
|
+
# redirect_uri: "RedirectUri",
|
545
|
+
# },
|
546
|
+
# },
|
547
|
+
# },
|
518
548
|
# },
|
519
549
|
# },
|
520
550
|
# })
|
@@ -596,7 +626,7 @@ module Aws::Appflow
|
|
596
626
|
# },
|
597
627
|
# },
|
598
628
|
# source_flow_config: { # required
|
599
|
-
# connector_type: "Salesforce", # required, accepts Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles
|
629
|
+
# connector_type: "Salesforce", # required, accepts Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles, SAPOData
|
600
630
|
# connector_profile_name: "ConnectorProfileName",
|
601
631
|
# source_connector_properties: { # required
|
602
632
|
# amplitude: {
|
@@ -640,10 +670,17 @@ module Aws::Appflow
|
|
640
670
|
# },
|
641
671
|
# veeva: {
|
642
672
|
# object: "Object", # required
|
673
|
+
# document_type: "DocumentType",
|
674
|
+
# include_source_files: false,
|
675
|
+
# include_renditions: false,
|
676
|
+
# include_all_versions: false,
|
643
677
|
# },
|
644
678
|
# zendesk: {
|
645
679
|
# object: "Object", # required
|
646
680
|
# },
|
681
|
+
# sapo_data: {
|
682
|
+
# object_path: "Object",
|
683
|
+
# },
|
647
684
|
# },
|
648
685
|
# incremental_pull_config: {
|
649
686
|
# datetime_type_field_name: "DatetimeTypeFieldName",
|
@@ -651,7 +688,7 @@ module Aws::Appflow
|
|
651
688
|
# },
|
652
689
|
# destination_flow_config_list: [ # required
|
653
690
|
# {
|
654
|
-
# connector_type: "Salesforce", # required, accepts Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles
|
691
|
+
# connector_type: "Salesforce", # required, accepts Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles, SAPOData
|
655
692
|
# connector_profile_name: "ConnectorProfileName",
|
656
693
|
# destination_connector_properties: { # required
|
657
694
|
# redshift: {
|
@@ -765,6 +802,7 @@ module Aws::Appflow
|
|
765
802
|
# trendmicro: "PROJECTION", # accepts PROJECTION, EQUAL_TO, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC, NO_OP
|
766
803
|
# veeva: "PROJECTION", # accepts PROJECTION, LESS_THAN, GREATER_THAN, CONTAINS, BETWEEN, LESS_THAN_OR_EQUAL_TO, GREATER_THAN_OR_EQUAL_TO, EQUAL_TO, NOT_EQUAL_TO, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC, NO_OP
|
767
804
|
# zendesk: "PROJECTION", # accepts PROJECTION, GREATER_THAN, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC, NO_OP
|
805
|
+
# sapo_data: "PROJECTION", # accepts PROJECTION, LESS_THAN, CONTAINS, GREATER_THAN, BETWEEN, LESS_THAN_OR_EQUAL_TO, GREATER_THAN_OR_EQUAL_TO, EQUAL_TO, NOT_EQUAL_TO, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC, NO_OP
|
768
806
|
# },
|
769
807
|
# destination_field: "DestinationField",
|
770
808
|
# task_type: "Arithmetic", # required, accepts Arithmetic, Filter, Map, Map_all, Mask, Merge, Truncate, Validate
|
@@ -862,7 +900,7 @@ module Aws::Appflow
|
|
862
900
|
#
|
863
901
|
# @option params [String] :connector_profile_name
|
864
902
|
# The name of the connector profile. The name is unique for each
|
865
|
-
# `ConnectorProfile` in the
|
903
|
+
# `ConnectorProfile` in the Amazon Web Services account.
|
866
904
|
#
|
867
905
|
# @return [Types::DescribeConnectorEntityResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
868
906
|
#
|
@@ -872,7 +910,7 @@ module Aws::Appflow
|
|
872
910
|
#
|
873
911
|
# resp = client.describe_connector_entity({
|
874
912
|
# connector_entity_name: "Name", # required
|
875
|
-
# connector_type: "Salesforce", # accepts Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles
|
913
|
+
# connector_type: "Salesforce", # accepts Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles, SAPOData
|
876
914
|
# connector_profile_name: "ConnectorProfileName",
|
877
915
|
# })
|
878
916
|
#
|
@@ -915,7 +953,7 @@ module Aws::Appflow
|
|
915
953
|
#
|
916
954
|
# @option params [Array<String>] :connector_profile_names
|
917
955
|
# The name of the connector profile. The name is unique for each
|
918
|
-
# `ConnectorProfile` in the
|
956
|
+
# `ConnectorProfile` in the Amazon Web Services account.
|
919
957
|
#
|
920
958
|
# @option params [String] :connector_type
|
921
959
|
# The type of connector, such as Salesforce, Amplitude, and so on.
|
@@ -939,7 +977,7 @@ module Aws::Appflow
|
|
939
977
|
#
|
940
978
|
# resp = client.describe_connector_profiles({
|
941
979
|
# connector_profile_names: ["ConnectorProfileName"],
|
942
|
-
# connector_type: "Salesforce", # accepts Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles
|
980
|
+
# connector_type: "Salesforce", # accepts Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles, SAPOData
|
943
981
|
# max_results: 1,
|
944
982
|
# next_token: "NextToken",
|
945
983
|
# })
|
@@ -949,7 +987,7 @@ module Aws::Appflow
|
|
949
987
|
# resp.connector_profile_details #=> Array
|
950
988
|
# resp.connector_profile_details[0].connector_profile_arn #=> String
|
951
989
|
# resp.connector_profile_details[0].connector_profile_name #=> String
|
952
|
-
# resp.connector_profile_details[0].connector_type #=> String, one of "Salesforce", "Singular", "Slack", "Redshift", "S3", "Marketo", "Googleanalytics", "Zendesk", "Servicenow", "Datadog", "Trendmicro", "Snowflake", "Dynatrace", "Infornexus", "Amplitude", "Veeva", "EventBridge", "LookoutMetrics", "Upsolver", "Honeycode", "CustomerProfiles"
|
990
|
+
# resp.connector_profile_details[0].connector_type #=> String, one of "Salesforce", "Singular", "Slack", "Redshift", "S3", "Marketo", "Googleanalytics", "Zendesk", "Servicenow", "Datadog", "Trendmicro", "Snowflake", "Dynatrace", "Infornexus", "Amplitude", "Veeva", "EventBridge", "LookoutMetrics", "Upsolver", "Honeycode", "CustomerProfiles", "SAPOData"
|
953
991
|
# resp.connector_profile_details[0].connection_mode #=> String, one of "Public", "Private"
|
954
992
|
# resp.connector_profile_details[0].credentials_arn #=> String
|
955
993
|
# resp.connector_profile_details[0].connector_profile_properties.datadog.instance_url #=> String
|
@@ -973,8 +1011,21 @@ module Aws::Appflow
|
|
973
1011
|
# resp.connector_profile_details[0].connector_profile_properties.snowflake.region #=> String
|
974
1012
|
# resp.connector_profile_details[0].connector_profile_properties.veeva.instance_url #=> String
|
975
1013
|
# resp.connector_profile_details[0].connector_profile_properties.zendesk.instance_url #=> String
|
1014
|
+
# resp.connector_profile_details[0].connector_profile_properties.sapo_data.application_host_url #=> String
|
1015
|
+
# resp.connector_profile_details[0].connector_profile_properties.sapo_data.application_service_path #=> String
|
1016
|
+
# resp.connector_profile_details[0].connector_profile_properties.sapo_data.port_number #=> Integer
|
1017
|
+
# resp.connector_profile_details[0].connector_profile_properties.sapo_data.client_number #=> String
|
1018
|
+
# resp.connector_profile_details[0].connector_profile_properties.sapo_data.logon_language #=> String
|
1019
|
+
# resp.connector_profile_details[0].connector_profile_properties.sapo_data.private_link_service_name #=> String
|
1020
|
+
# resp.connector_profile_details[0].connector_profile_properties.sapo_data.o_auth_properties.token_url #=> String
|
1021
|
+
# resp.connector_profile_details[0].connector_profile_properties.sapo_data.o_auth_properties.auth_code_url #=> String
|
1022
|
+
# resp.connector_profile_details[0].connector_profile_properties.sapo_data.o_auth_properties.o_auth_scopes #=> Array
|
1023
|
+
# resp.connector_profile_details[0].connector_profile_properties.sapo_data.o_auth_properties.o_auth_scopes[0] #=> String
|
976
1024
|
# resp.connector_profile_details[0].created_at #=> Time
|
977
1025
|
# resp.connector_profile_details[0].last_updated_at #=> Time
|
1026
|
+
# resp.connector_profile_details[0].private_connection_provisioning_state.status #=> String, one of "FAILED", "PENDING", "CREATED"
|
1027
|
+
# resp.connector_profile_details[0].private_connection_provisioning_state.failure_message #=> String
|
1028
|
+
# resp.connector_profile_details[0].private_connection_provisioning_state.failure_cause #=> String, one of "CONNECTOR_AUTHENTICATION", "CONNECTOR_SERVER", "INTERNAL_SERVER", "ACCESS_DENIED", "VALIDATION"
|
978
1029
|
# resp.next_token #=> String
|
979
1030
|
#
|
980
1031
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/DescribeConnectorProfiles AWS API Documentation
|
@@ -1010,7 +1061,7 @@ module Aws::Appflow
|
|
1010
1061
|
# @example Request syntax with placeholder values
|
1011
1062
|
#
|
1012
1063
|
# resp = client.describe_connectors({
|
1013
|
-
# connector_types: ["Salesforce"], # accepts Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles
|
1064
|
+
# connector_types: ["Salesforce"], # accepts Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles, SAPOData
|
1014
1065
|
# next_token: "NextToken",
|
1015
1066
|
# })
|
1016
1067
|
#
|
@@ -1020,7 +1071,7 @@ module Aws::Appflow
|
|
1020
1071
|
# resp.connector_configurations["ConnectorType"].can_use_as_source #=> Boolean
|
1021
1072
|
# resp.connector_configurations["ConnectorType"].can_use_as_destination #=> Boolean
|
1022
1073
|
# resp.connector_configurations["ConnectorType"].supported_destination_connectors #=> Array
|
1023
|
-
# resp.connector_configurations["ConnectorType"].supported_destination_connectors[0] #=> String, one of "Salesforce", "Singular", "Slack", "Redshift", "S3", "Marketo", "Googleanalytics", "Zendesk", "Servicenow", "Datadog", "Trendmicro", "Snowflake", "Dynatrace", "Infornexus", "Amplitude", "Veeva", "EventBridge", "LookoutMetrics", "Upsolver", "Honeycode", "CustomerProfiles"
|
1074
|
+
# resp.connector_configurations["ConnectorType"].supported_destination_connectors[0] #=> String, one of "Salesforce", "Singular", "Slack", "Redshift", "S3", "Marketo", "Googleanalytics", "Zendesk", "Servicenow", "Datadog", "Trendmicro", "Snowflake", "Dynatrace", "Infornexus", "Amplitude", "Veeva", "EventBridge", "LookoutMetrics", "Upsolver", "Honeycode", "CustomerProfiles", "SAPOData"
|
1024
1075
|
# resp.connector_configurations["ConnectorType"].supported_scheduling_frequencies #=> Array
|
1025
1076
|
# resp.connector_configurations["ConnectorType"].supported_scheduling_frequencies[0] #=> String, one of "BYMINUTE", "HOURLY", "DAILY", "WEEKLY", "MONTHLY", "ONCE"
|
1026
1077
|
# resp.connector_configurations["ConnectorType"].is_private_link_enabled #=> Boolean
|
@@ -1089,7 +1140,7 @@ module Aws::Appflow
|
|
1089
1140
|
# resp.kms_arn #=> String
|
1090
1141
|
# resp.flow_status #=> String, one of "Active", "Deprecated", "Deleted", "Draft", "Errored", "Suspended"
|
1091
1142
|
# resp.flow_status_message #=> String
|
1092
|
-
# resp.source_flow_config.connector_type #=> String, one of "Salesforce", "Singular", "Slack", "Redshift", "S3", "Marketo", "Googleanalytics", "Zendesk", "Servicenow", "Datadog", "Trendmicro", "Snowflake", "Dynatrace", "Infornexus", "Amplitude", "Veeva", "EventBridge", "LookoutMetrics", "Upsolver", "Honeycode", "CustomerProfiles"
|
1143
|
+
# resp.source_flow_config.connector_type #=> String, one of "Salesforce", "Singular", "Slack", "Redshift", "S3", "Marketo", "Googleanalytics", "Zendesk", "Servicenow", "Datadog", "Trendmicro", "Snowflake", "Dynatrace", "Infornexus", "Amplitude", "Veeva", "EventBridge", "LookoutMetrics", "Upsolver", "Honeycode", "CustomerProfiles", "SAPOData"
|
1093
1144
|
# resp.source_flow_config.connector_profile_name #=> String
|
1094
1145
|
# resp.source_flow_config.source_connector_properties.amplitude.object #=> String
|
1095
1146
|
# resp.source_flow_config.source_connector_properties.datadog.object #=> String
|
@@ -1107,10 +1158,15 @@ module Aws::Appflow
|
|
1107
1158
|
# resp.source_flow_config.source_connector_properties.slack.object #=> String
|
1108
1159
|
# resp.source_flow_config.source_connector_properties.trendmicro.object #=> String
|
1109
1160
|
# resp.source_flow_config.source_connector_properties.veeva.object #=> String
|
1161
|
+
# resp.source_flow_config.source_connector_properties.veeva.document_type #=> String
|
1162
|
+
# resp.source_flow_config.source_connector_properties.veeva.include_source_files #=> Boolean
|
1163
|
+
# resp.source_flow_config.source_connector_properties.veeva.include_renditions #=> Boolean
|
1164
|
+
# resp.source_flow_config.source_connector_properties.veeva.include_all_versions #=> Boolean
|
1110
1165
|
# resp.source_flow_config.source_connector_properties.zendesk.object #=> String
|
1166
|
+
# resp.source_flow_config.source_connector_properties.sapo_data.object_path #=> String
|
1111
1167
|
# resp.source_flow_config.incremental_pull_config.datetime_type_field_name #=> String
|
1112
1168
|
# resp.destination_flow_config_list #=> Array
|
1113
|
-
# resp.destination_flow_config_list[0].connector_type #=> String, one of "Salesforce", "Singular", "Slack", "Redshift", "S3", "Marketo", "Googleanalytics", "Zendesk", "Servicenow", "Datadog", "Trendmicro", "Snowflake", "Dynatrace", "Infornexus", "Amplitude", "Veeva", "EventBridge", "LookoutMetrics", "Upsolver", "Honeycode", "CustomerProfiles"
|
1169
|
+
# resp.destination_flow_config_list[0].connector_type #=> String, one of "Salesforce", "Singular", "Slack", "Redshift", "S3", "Marketo", "Googleanalytics", "Zendesk", "Servicenow", "Datadog", "Trendmicro", "Snowflake", "Dynatrace", "Infornexus", "Amplitude", "Veeva", "EventBridge", "LookoutMetrics", "Upsolver", "Honeycode", "CustomerProfiles", "SAPOData"
|
1114
1170
|
# resp.destination_flow_config_list[0].connector_profile_name #=> String
|
1115
1171
|
# resp.destination_flow_config_list[0].destination_connector_properties.redshift.object #=> String
|
1116
1172
|
# resp.destination_flow_config_list[0].destination_connector_properties.redshift.intermediate_bucket_name #=> String
|
@@ -1188,6 +1244,7 @@ module Aws::Appflow
|
|
1188
1244
|
# resp.tasks[0].connector_operator.trendmicro #=> String, one of "PROJECTION", "EQUAL_TO", "ADDITION", "MULTIPLICATION", "DIVISION", "SUBTRACTION", "MASK_ALL", "MASK_FIRST_N", "MASK_LAST_N", "VALIDATE_NON_NULL", "VALIDATE_NON_ZERO", "VALIDATE_NON_NEGATIVE", "VALIDATE_NUMERIC", "NO_OP"
|
1189
1245
|
# resp.tasks[0].connector_operator.veeva #=> String, one of "PROJECTION", "LESS_THAN", "GREATER_THAN", "CONTAINS", "BETWEEN", "LESS_THAN_OR_EQUAL_TO", "GREATER_THAN_OR_EQUAL_TO", "EQUAL_TO", "NOT_EQUAL_TO", "ADDITION", "MULTIPLICATION", "DIVISION", "SUBTRACTION", "MASK_ALL", "MASK_FIRST_N", "MASK_LAST_N", "VALIDATE_NON_NULL", "VALIDATE_NON_ZERO", "VALIDATE_NON_NEGATIVE", "VALIDATE_NUMERIC", "NO_OP"
|
1190
1246
|
# resp.tasks[0].connector_operator.zendesk #=> String, one of "PROJECTION", "GREATER_THAN", "ADDITION", "MULTIPLICATION", "DIVISION", "SUBTRACTION", "MASK_ALL", "MASK_FIRST_N", "MASK_LAST_N", "VALIDATE_NON_NULL", "VALIDATE_NON_ZERO", "VALIDATE_NON_NEGATIVE", "VALIDATE_NUMERIC", "NO_OP"
|
1247
|
+
# resp.tasks[0].connector_operator.sapo_data #=> String, one of "PROJECTION", "LESS_THAN", "CONTAINS", "GREATER_THAN", "BETWEEN", "LESS_THAN_OR_EQUAL_TO", "GREATER_THAN_OR_EQUAL_TO", "EQUAL_TO", "NOT_EQUAL_TO", "ADDITION", "MULTIPLICATION", "DIVISION", "SUBTRACTION", "MASK_ALL", "MASK_FIRST_N", "MASK_LAST_N", "VALIDATE_NON_NULL", "VALIDATE_NON_ZERO", "VALIDATE_NON_NEGATIVE", "VALIDATE_NUMERIC", "NO_OP"
|
1191
1248
|
# resp.tasks[0].destination_field #=> String
|
1192
1249
|
# resp.tasks[0].task_type #=> String, one of "Arithmetic", "Filter", "Map", "Map_all", "Mask", "Merge", "Truncate", "Validate"
|
1193
1250
|
# resp.tasks[0].task_properties #=> Hash
|
@@ -1268,8 +1325,8 @@ module Aws::Appflow
|
|
1268
1325
|
#
|
1269
1326
|
# @option params [String] :connector_profile_name
|
1270
1327
|
# The name of the connector profile. The name is unique for each
|
1271
|
-
# `ConnectorProfile` in the
|
1272
|
-
# downstream connector.
|
1328
|
+
# `ConnectorProfile` in the Amazon Web Services account, and is used to
|
1329
|
+
# query the downstream connector.
|
1273
1330
|
#
|
1274
1331
|
# @option params [String] :connector_type
|
1275
1332
|
# The type of connector, such as Salesforce, Amplitude, and so on.
|
@@ -1291,7 +1348,7 @@ module Aws::Appflow
|
|
1291
1348
|
#
|
1292
1349
|
# resp = client.list_connector_entities({
|
1293
1350
|
# connector_profile_name: "ConnectorProfileName",
|
1294
|
-
# connector_type: "Salesforce", # accepts Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles
|
1351
|
+
# connector_type: "Salesforce", # accepts Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles, SAPOData
|
1295
1352
|
# entities_path: "EntitiesPath",
|
1296
1353
|
# })
|
1297
1354
|
#
|
@@ -1342,8 +1399,8 @@ module Aws::Appflow
|
|
1342
1399
|
# resp.flows[0].description #=> String
|
1343
1400
|
# resp.flows[0].flow_name #=> String
|
1344
1401
|
# resp.flows[0].flow_status #=> String, one of "Active", "Deprecated", "Deleted", "Draft", "Errored", "Suspended"
|
1345
|
-
# resp.flows[0].source_connector_type #=> String, one of "Salesforce", "Singular", "Slack", "Redshift", "S3", "Marketo", "Googleanalytics", "Zendesk", "Servicenow", "Datadog", "Trendmicro", "Snowflake", "Dynatrace", "Infornexus", "Amplitude", "Veeva", "EventBridge", "LookoutMetrics", "Upsolver", "Honeycode", "CustomerProfiles"
|
1346
|
-
# resp.flows[0].destination_connector_type #=> String, one of "Salesforce", "Singular", "Slack", "Redshift", "S3", "Marketo", "Googleanalytics", "Zendesk", "Servicenow", "Datadog", "Trendmicro", "Snowflake", "Dynatrace", "Infornexus", "Amplitude", "Veeva", "EventBridge", "LookoutMetrics", "Upsolver", "Honeycode", "CustomerProfiles"
|
1402
|
+
# resp.flows[0].source_connector_type #=> String, one of "Salesforce", "Singular", "Slack", "Redshift", "S3", "Marketo", "Googleanalytics", "Zendesk", "Servicenow", "Datadog", "Trendmicro", "Snowflake", "Dynatrace", "Infornexus", "Amplitude", "Veeva", "EventBridge", "LookoutMetrics", "Upsolver", "Honeycode", "CustomerProfiles", "SAPOData"
|
1403
|
+
# resp.flows[0].destination_connector_type #=> String, one of "Salesforce", "Singular", "Slack", "Redshift", "S3", "Marketo", "Googleanalytics", "Zendesk", "Servicenow", "Datadog", "Trendmicro", "Snowflake", "Dynatrace", "Infornexus", "Amplitude", "Veeva", "EventBridge", "LookoutMetrics", "Upsolver", "Honeycode", "CustomerProfiles", "SAPOData"
|
1347
1404
|
# resp.flows[0].trigger_type #=> String, one of "Scheduled", "Event", "OnDemand"
|
1348
1405
|
# resp.flows[0].created_at #=> Time
|
1349
1406
|
# resp.flows[0].last_updated_at #=> Time
|
@@ -1521,7 +1578,7 @@ module Aws::Appflow
|
|
1521
1578
|
#
|
1522
1579
|
# @option params [required, String] :connector_profile_name
|
1523
1580
|
# The name of the connector profile and is unique for each
|
1524
|
-
# `ConnectorProfile` in the
|
1581
|
+
# `ConnectorProfile` in the Amazon Web Services account.
|
1525
1582
|
#
|
1526
1583
|
# @option params [required, String] :connection_mode
|
1527
1584
|
# Indicates the connection mode and if it is public or private.
|
@@ -1593,6 +1650,19 @@ module Aws::Appflow
|
|
1593
1650
|
# zendesk: {
|
1594
1651
|
# instance_url: "InstanceUrl", # required
|
1595
1652
|
# },
|
1653
|
+
# sapo_data: {
|
1654
|
+
# application_host_url: "ApplicationHostUrl", # required
|
1655
|
+
# application_service_path: "ApplicationServicePath", # required
|
1656
|
+
# port_number: 1, # required
|
1657
|
+
# client_number: "ClientNumber", # required
|
1658
|
+
# logon_language: "LogonLanguage",
|
1659
|
+
# private_link_service_name: "PrivateLinkServiceName",
|
1660
|
+
# o_auth_properties: {
|
1661
|
+
# token_url: "TokenUrl", # required
|
1662
|
+
# auth_code_url: "AuthCodeUrl", # required
|
1663
|
+
# o_auth_scopes: ["OAuthScope"], # required
|
1664
|
+
# },
|
1665
|
+
# },
|
1596
1666
|
# },
|
1597
1667
|
# connector_profile_credentials: { # required
|
1598
1668
|
# amplitude: {
|
@@ -1688,6 +1758,22 @@ module Aws::Appflow
|
|
1688
1758
|
# redirect_uri: "RedirectUri",
|
1689
1759
|
# },
|
1690
1760
|
# },
|
1761
|
+
# sapo_data: {
|
1762
|
+
# basic_auth_credentials: {
|
1763
|
+
# username: "Username", # required
|
1764
|
+
# password: "Password", # required
|
1765
|
+
# },
|
1766
|
+
# o_auth_credentials: {
|
1767
|
+
# client_id: "ClientId", # required
|
1768
|
+
# client_secret: "ClientSecret", # required
|
1769
|
+
# access_token: "AccessToken",
|
1770
|
+
# refresh_token: "RefreshToken",
|
1771
|
+
# o_auth_request: {
|
1772
|
+
# auth_code: "AuthCode",
|
1773
|
+
# redirect_uri: "RedirectUri",
|
1774
|
+
# },
|
1775
|
+
# },
|
1776
|
+
# },
|
1691
1777
|
# },
|
1692
1778
|
# },
|
1693
1779
|
# })
|
@@ -1717,7 +1803,7 @@ module Aws::Appflow
|
|
1717
1803
|
# @option params [required, Types::TriggerConfig] :trigger_config
|
1718
1804
|
# The trigger settings that determine how and when the flow runs.
|
1719
1805
|
#
|
1720
|
-
# @option params [Types::SourceFlowConfig] :source_flow_config
|
1806
|
+
# @option params [required, Types::SourceFlowConfig] :source_flow_config
|
1721
1807
|
# Contains information about the configuration of the source connector
|
1722
1808
|
# used in the flow.
|
1723
1809
|
#
|
@@ -1752,8 +1838,8 @@ module Aws::Appflow
|
|
1752
1838
|
# },
|
1753
1839
|
# },
|
1754
1840
|
# },
|
1755
|
-
# source_flow_config: {
|
1756
|
-
# connector_type: "Salesforce", # required, accepts Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles
|
1841
|
+
# source_flow_config: { # required
|
1842
|
+
# connector_type: "Salesforce", # required, accepts Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles, SAPOData
|
1757
1843
|
# connector_profile_name: "ConnectorProfileName",
|
1758
1844
|
# source_connector_properties: { # required
|
1759
1845
|
# amplitude: {
|
@@ -1797,10 +1883,17 @@ module Aws::Appflow
|
|
1797
1883
|
# },
|
1798
1884
|
# veeva: {
|
1799
1885
|
# object: "Object", # required
|
1886
|
+
# document_type: "DocumentType",
|
1887
|
+
# include_source_files: false,
|
1888
|
+
# include_renditions: false,
|
1889
|
+
# include_all_versions: false,
|
1800
1890
|
# },
|
1801
1891
|
# zendesk: {
|
1802
1892
|
# object: "Object", # required
|
1803
1893
|
# },
|
1894
|
+
# sapo_data: {
|
1895
|
+
# object_path: "Object",
|
1896
|
+
# },
|
1804
1897
|
# },
|
1805
1898
|
# incremental_pull_config: {
|
1806
1899
|
# datetime_type_field_name: "DatetimeTypeFieldName",
|
@@ -1808,7 +1901,7 @@ module Aws::Appflow
|
|
1808
1901
|
# },
|
1809
1902
|
# destination_flow_config_list: [ # required
|
1810
1903
|
# {
|
1811
|
-
# connector_type: "Salesforce", # required, accepts Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles
|
1904
|
+
# connector_type: "Salesforce", # required, accepts Salesforce, Singular, Slack, Redshift, S3, Marketo, Googleanalytics, Zendesk, Servicenow, Datadog, Trendmicro, Snowflake, Dynatrace, Infornexus, Amplitude, Veeva, EventBridge, LookoutMetrics, Upsolver, Honeycode, CustomerProfiles, SAPOData
|
1812
1905
|
# connector_profile_name: "ConnectorProfileName",
|
1813
1906
|
# destination_connector_properties: { # required
|
1814
1907
|
# redshift: {
|
@@ -1922,6 +2015,7 @@ module Aws::Appflow
|
|
1922
2015
|
# trendmicro: "PROJECTION", # accepts PROJECTION, EQUAL_TO, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC, NO_OP
|
1923
2016
|
# veeva: "PROJECTION", # accepts PROJECTION, LESS_THAN, GREATER_THAN, CONTAINS, BETWEEN, LESS_THAN_OR_EQUAL_TO, GREATER_THAN_OR_EQUAL_TO, EQUAL_TO, NOT_EQUAL_TO, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC, NO_OP
|
1924
2017
|
# zendesk: "PROJECTION", # accepts PROJECTION, GREATER_THAN, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC, NO_OP
|
2018
|
+
# sapo_data: "PROJECTION", # accepts PROJECTION, LESS_THAN, CONTAINS, GREATER_THAN, BETWEEN, LESS_THAN_OR_EQUAL_TO, GREATER_THAN_OR_EQUAL_TO, EQUAL_TO, NOT_EQUAL_TO, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC, NO_OP
|
1925
2019
|
# },
|
1926
2020
|
# destination_field: "DestinationField",
|
1927
2021
|
# task_type: "Arithmetic", # required, accepts Arithmetic, Filter, Map, Map_all, Mask, Merge, Truncate, Validate
|
@@ -1958,7 +2052,7 @@ module Aws::Appflow
|
|
1958
2052
|
params: params,
|
1959
2053
|
config: config)
|
1960
2054
|
context[:gem_name] = 'aws-sdk-appflow'
|
1961
|
-
context[:gem_version] = '1.
|
2055
|
+
context[:gem_version] = '1.16.0'
|
1962
2056
|
Seahorse::Client::Request.new(handlers, context)
|
1963
2057
|
end
|
1964
2058
|
|