aws-sdk-appflow 1.11.0 → 1.15.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 +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
@@ -98,6 +98,33 @@ module Aws::Appflow
|
|
98
98
|
include Aws::Structure
|
99
99
|
end
|
100
100
|
|
101
|
+
# The basic auth credentials required for basic authentication.
|
102
|
+
#
|
103
|
+
# @note When making an API call, you may pass BasicAuthCredentials
|
104
|
+
# data as a hash:
|
105
|
+
#
|
106
|
+
# {
|
107
|
+
# username: "Username", # required
|
108
|
+
# password: "Password", # required
|
109
|
+
# }
|
110
|
+
#
|
111
|
+
# @!attribute [rw] username
|
112
|
+
# The username to use to connect to a resource.
|
113
|
+
# @return [String]
|
114
|
+
#
|
115
|
+
# @!attribute [rw] password
|
116
|
+
# The password to use to connect to a resource.
|
117
|
+
# @return [String]
|
118
|
+
#
|
119
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/BasicAuthCredentials AWS API Documentation
|
120
|
+
#
|
121
|
+
class BasicAuthCredentials < Struct.new(
|
122
|
+
:username,
|
123
|
+
:password)
|
124
|
+
SENSITIVE = [:password]
|
125
|
+
include Aws::Structure
|
126
|
+
end
|
127
|
+
|
101
128
|
# There was a conflict when processing the request (for example, a flow
|
102
129
|
# with the given name already exists within the account. Check for
|
103
130
|
# conflicting resource names and try again.
|
@@ -334,6 +361,10 @@ module Aws::Appflow
|
|
334
361
|
# The connector metadata specific to Amazon Honeycode.
|
335
362
|
# @return [Types::HoneycodeMetadata]
|
336
363
|
#
|
364
|
+
# @!attribute [rw] sapo_data
|
365
|
+
# The connector metadata specific to SAPOData.
|
366
|
+
# @return [Types::SAPODataMetadata]
|
367
|
+
#
|
337
368
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/ConnectorMetadata AWS API Documentation
|
338
369
|
#
|
339
370
|
class ConnectorMetadata < Struct.new(
|
@@ -356,7 +387,8 @@ module Aws::Appflow
|
|
356
387
|
:event_bridge,
|
357
388
|
:upsolver,
|
358
389
|
:customer_profiles,
|
359
|
-
:honeycode
|
390
|
+
:honeycode,
|
391
|
+
:sapo_data)
|
360
392
|
SENSITIVE = []
|
361
393
|
include Aws::Structure
|
362
394
|
end
|
@@ -411,6 +443,7 @@ module Aws::Appflow
|
|
411
443
|
# 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
|
412
444
|
# 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
|
413
445
|
# 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
|
446
|
+
# 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
|
414
447
|
# }
|
415
448
|
#
|
416
449
|
# @!attribute [rw] amplitude
|
@@ -478,6 +511,11 @@ module Aws::Appflow
|
|
478
511
|
# The operation to be performed on the provided Zendesk source fields.
|
479
512
|
# @return [String]
|
480
513
|
#
|
514
|
+
# @!attribute [rw] sapo_data
|
515
|
+
# The operation to be performed on the provided SAPOData source
|
516
|
+
# fields.
|
517
|
+
# @return [String]
|
518
|
+
#
|
481
519
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/ConnectorOperator AWS API Documentation
|
482
520
|
#
|
483
521
|
class ConnectorOperator < Struct.new(
|
@@ -494,7 +532,8 @@ module Aws::Appflow
|
|
494
532
|
:slack,
|
495
533
|
:trendmicro,
|
496
534
|
:veeva,
|
497
|
-
:zendesk
|
535
|
+
:zendesk,
|
536
|
+
:sapo_data)
|
498
537
|
SENSITIVE = []
|
499
538
|
include Aws::Structure
|
500
539
|
end
|
@@ -512,7 +551,7 @@ module Aws::Appflow
|
|
512
551
|
#
|
513
552
|
# @!attribute [rw] connector_profile_name
|
514
553
|
# The name of the connector profile. The name is unique for each
|
515
|
-
# `ConnectorProfile` in the
|
554
|
+
# `ConnectorProfile` in the Amazon Web Services account.
|
516
555
|
# @return [String]
|
517
556
|
#
|
518
557
|
# @!attribute [rw] connector_type
|
@@ -539,6 +578,10 @@ module Aws::Appflow
|
|
539
578
|
# Specifies when the connector profile was last updated.
|
540
579
|
# @return [Time]
|
541
580
|
#
|
581
|
+
# @!attribute [rw] private_connection_provisioning_state
|
582
|
+
# Specifies the private connection provisioning state.
|
583
|
+
# @return [Types::PrivateConnectionProvisioningState]
|
584
|
+
#
|
542
585
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/ConnectorProfile AWS API Documentation
|
543
586
|
#
|
544
587
|
class ConnectorProfile < Struct.new(
|
@@ -549,7 +592,8 @@ module Aws::Appflow
|
|
549
592
|
:credentials_arn,
|
550
593
|
:connector_profile_properties,
|
551
594
|
:created_at,
|
552
|
-
:last_updated_at
|
595
|
+
:last_updated_at,
|
596
|
+
:private_connection_provisioning_state)
|
553
597
|
SENSITIVE = []
|
554
598
|
include Aws::Structure
|
555
599
|
end
|
@@ -615,6 +659,19 @@ module Aws::Appflow
|
|
615
659
|
# zendesk: {
|
616
660
|
# instance_url: "InstanceUrl", # required
|
617
661
|
# },
|
662
|
+
# sapo_data: {
|
663
|
+
# application_host_url: "ApplicationHostUrl", # required
|
664
|
+
# application_service_path: "ApplicationServicePath", # required
|
665
|
+
# port_number: 1, # required
|
666
|
+
# client_number: "ClientNumber", # required
|
667
|
+
# logon_language: "LogonLanguage",
|
668
|
+
# private_link_service_name: "PrivateLinkServiceName",
|
669
|
+
# o_auth_properties: {
|
670
|
+
# token_url: "TokenUrl", # required
|
671
|
+
# auth_code_url: "AuthCodeUrl", # required
|
672
|
+
# o_auth_scopes: ["OAuthScope"], # required
|
673
|
+
# },
|
674
|
+
# },
|
618
675
|
# },
|
619
676
|
# connector_profile_credentials: { # required
|
620
677
|
# amplitude: {
|
@@ -710,6 +767,22 @@ module Aws::Appflow
|
|
710
767
|
# redirect_uri: "RedirectUri",
|
711
768
|
# },
|
712
769
|
# },
|
770
|
+
# sapo_data: {
|
771
|
+
# basic_auth_credentials: {
|
772
|
+
# username: "Username", # required
|
773
|
+
# password: "Password", # required
|
774
|
+
# },
|
775
|
+
# o_auth_credentials: {
|
776
|
+
# client_id: "ClientId", # required
|
777
|
+
# client_secret: "ClientSecret", # required
|
778
|
+
# access_token: "AccessToken",
|
779
|
+
# refresh_token: "RefreshToken",
|
780
|
+
# o_auth_request: {
|
781
|
+
# auth_code: "AuthCode",
|
782
|
+
# redirect_uri: "RedirectUri",
|
783
|
+
# },
|
784
|
+
# },
|
785
|
+
# },
|
713
786
|
# },
|
714
787
|
# }
|
715
788
|
#
|
@@ -829,6 +902,22 @@ module Aws::Appflow
|
|
829
902
|
# redirect_uri: "RedirectUri",
|
830
903
|
# },
|
831
904
|
# },
|
905
|
+
# sapo_data: {
|
906
|
+
# basic_auth_credentials: {
|
907
|
+
# username: "Username", # required
|
908
|
+
# password: "Password", # required
|
909
|
+
# },
|
910
|
+
# o_auth_credentials: {
|
911
|
+
# client_id: "ClientId", # required
|
912
|
+
# client_secret: "ClientSecret", # required
|
913
|
+
# access_token: "AccessToken",
|
914
|
+
# refresh_token: "RefreshToken",
|
915
|
+
# o_auth_request: {
|
916
|
+
# auth_code: "AuthCode",
|
917
|
+
# redirect_uri: "RedirectUri",
|
918
|
+
# },
|
919
|
+
# },
|
920
|
+
# },
|
832
921
|
# }
|
833
922
|
#
|
834
923
|
# @!attribute [rw] amplitude
|
@@ -898,6 +987,11 @@ module Aws::Appflow
|
|
898
987
|
# The connector-specific credentials required when using Zendesk.
|
899
988
|
# @return [Types::ZendeskConnectorProfileCredentials]
|
900
989
|
#
|
990
|
+
# @!attribute [rw] sapo_data
|
991
|
+
# The connector-specific profile credentials required when using
|
992
|
+
# SAPOData.
|
993
|
+
# @return [Types::SAPODataConnectorProfileCredentials]
|
994
|
+
#
|
901
995
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/ConnectorProfileCredentials AWS API Documentation
|
902
996
|
#
|
903
997
|
class ConnectorProfileCredentials < Struct.new(
|
@@ -916,7 +1010,8 @@ module Aws::Appflow
|
|
916
1010
|
:snowflake,
|
917
1011
|
:trendmicro,
|
918
1012
|
:veeva,
|
919
|
-
:zendesk
|
1013
|
+
:zendesk,
|
1014
|
+
:sapo_data)
|
920
1015
|
SENSITIVE = []
|
921
1016
|
include Aws::Structure
|
922
1017
|
end
|
@@ -980,6 +1075,19 @@ module Aws::Appflow
|
|
980
1075
|
# zendesk: {
|
981
1076
|
# instance_url: "InstanceUrl", # required
|
982
1077
|
# },
|
1078
|
+
# sapo_data: {
|
1079
|
+
# application_host_url: "ApplicationHostUrl", # required
|
1080
|
+
# application_service_path: "ApplicationServicePath", # required
|
1081
|
+
# port_number: 1, # required
|
1082
|
+
# client_number: "ClientNumber", # required
|
1083
|
+
# logon_language: "LogonLanguage",
|
1084
|
+
# private_link_service_name: "PrivateLinkServiceName",
|
1085
|
+
# o_auth_properties: {
|
1086
|
+
# token_url: "TokenUrl", # required
|
1087
|
+
# auth_code_url: "AuthCodeUrl", # required
|
1088
|
+
# o_auth_scopes: ["OAuthScope"], # required
|
1089
|
+
# },
|
1090
|
+
# },
|
983
1091
|
# }
|
984
1092
|
#
|
985
1093
|
# @!attribute [rw] amplitude
|
@@ -1046,6 +1154,11 @@ module Aws::Appflow
|
|
1046
1154
|
# The connector-specific properties required by Zendesk.
|
1047
1155
|
# @return [Types::ZendeskConnectorProfileProperties]
|
1048
1156
|
#
|
1157
|
+
# @!attribute [rw] sapo_data
|
1158
|
+
# The connector-specific profile properties required when using
|
1159
|
+
# SAPOData.
|
1160
|
+
# @return [Types::SAPODataConnectorProfileProperties]
|
1161
|
+
#
|
1049
1162
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/ConnectorProfileProperties AWS API Documentation
|
1050
1163
|
#
|
1051
1164
|
class ConnectorProfileProperties < Struct.new(
|
@@ -1064,7 +1177,8 @@ module Aws::Appflow
|
|
1064
1177
|
:snowflake,
|
1065
1178
|
:trendmicro,
|
1066
1179
|
:veeva,
|
1067
|
-
:zendesk
|
1180
|
+
:zendesk,
|
1181
|
+
:sapo_data)
|
1068
1182
|
SENSITIVE = []
|
1069
1183
|
include Aws::Structure
|
1070
1184
|
end
|
@@ -1088,7 +1202,7 @@ module Aws::Appflow
|
|
1088
1202
|
# {
|
1089
1203
|
# connector_profile_name: "ConnectorProfileName", # required
|
1090
1204
|
# kms_arn: "KMSArn",
|
1091
|
-
# 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
|
1205
|
+
# 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
|
1092
1206
|
# connection_mode: "Public", # required, accepts Public, Private
|
1093
1207
|
# connector_profile_config: { # required
|
1094
1208
|
# connector_profile_properties: { # required
|
@@ -1145,6 +1259,19 @@ module Aws::Appflow
|
|
1145
1259
|
# zendesk: {
|
1146
1260
|
# instance_url: "InstanceUrl", # required
|
1147
1261
|
# },
|
1262
|
+
# sapo_data: {
|
1263
|
+
# application_host_url: "ApplicationHostUrl", # required
|
1264
|
+
# application_service_path: "ApplicationServicePath", # required
|
1265
|
+
# port_number: 1, # required
|
1266
|
+
# client_number: "ClientNumber", # required
|
1267
|
+
# logon_language: "LogonLanguage",
|
1268
|
+
# private_link_service_name: "PrivateLinkServiceName",
|
1269
|
+
# o_auth_properties: {
|
1270
|
+
# token_url: "TokenUrl", # required
|
1271
|
+
# auth_code_url: "AuthCodeUrl", # required
|
1272
|
+
# o_auth_scopes: ["OAuthScope"], # required
|
1273
|
+
# },
|
1274
|
+
# },
|
1148
1275
|
# },
|
1149
1276
|
# connector_profile_credentials: { # required
|
1150
1277
|
# amplitude: {
|
@@ -1240,13 +1367,29 @@ module Aws::Appflow
|
|
1240
1367
|
# redirect_uri: "RedirectUri",
|
1241
1368
|
# },
|
1242
1369
|
# },
|
1370
|
+
# sapo_data: {
|
1371
|
+
# basic_auth_credentials: {
|
1372
|
+
# username: "Username", # required
|
1373
|
+
# password: "Password", # required
|
1374
|
+
# },
|
1375
|
+
# o_auth_credentials: {
|
1376
|
+
# client_id: "ClientId", # required
|
1377
|
+
# client_secret: "ClientSecret", # required
|
1378
|
+
# access_token: "AccessToken",
|
1379
|
+
# refresh_token: "RefreshToken",
|
1380
|
+
# o_auth_request: {
|
1381
|
+
# auth_code: "AuthCode",
|
1382
|
+
# redirect_uri: "RedirectUri",
|
1383
|
+
# },
|
1384
|
+
# },
|
1385
|
+
# },
|
1243
1386
|
# },
|
1244
1387
|
# },
|
1245
1388
|
# }
|
1246
1389
|
#
|
1247
1390
|
# @!attribute [rw] connector_profile_name
|
1248
1391
|
# The name of the connector profile. The name is unique for each
|
1249
|
-
# `ConnectorProfile` in your
|
1392
|
+
# `ConnectorProfile` in your Amazon Web Services account.
|
1250
1393
|
# @return [String]
|
1251
1394
|
#
|
1252
1395
|
# @!attribute [rw] kms_arn
|
@@ -1263,8 +1406,9 @@ module Aws::Appflow
|
|
1263
1406
|
#
|
1264
1407
|
# @!attribute [rw] connection_mode
|
1265
1408
|
# Indicates the connection mode and specifies whether it is public or
|
1266
|
-
# private. Private flows use
|
1267
|
-
# infrastructure without exposing it to
|
1409
|
+
# private. Private flows use Amazon Web Services PrivateLink to route
|
1410
|
+
# data over Amazon Web Services infrastructure without exposing it to
|
1411
|
+
# the public internet.
|
1268
1412
|
# @return [String]
|
1269
1413
|
#
|
1270
1414
|
# @!attribute [rw] connector_profile_config
|
@@ -1317,7 +1461,7 @@ module Aws::Appflow
|
|
1317
1461
|
# },
|
1318
1462
|
# },
|
1319
1463
|
# source_flow_config: { # required
|
1320
|
-
# 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
|
1464
|
+
# 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
|
1321
1465
|
# connector_profile_name: "ConnectorProfileName",
|
1322
1466
|
# source_connector_properties: { # required
|
1323
1467
|
# amplitude: {
|
@@ -1361,10 +1505,17 @@ module Aws::Appflow
|
|
1361
1505
|
# },
|
1362
1506
|
# veeva: {
|
1363
1507
|
# object: "Object", # required
|
1508
|
+
# document_type: "DocumentType",
|
1509
|
+
# include_source_files: false,
|
1510
|
+
# include_renditions: false,
|
1511
|
+
# include_all_versions: false,
|
1364
1512
|
# },
|
1365
1513
|
# zendesk: {
|
1366
1514
|
# object: "Object", # required
|
1367
1515
|
# },
|
1516
|
+
# sapo_data: {
|
1517
|
+
# object_path: "Object",
|
1518
|
+
# },
|
1368
1519
|
# },
|
1369
1520
|
# incremental_pull_config: {
|
1370
1521
|
# datetime_type_field_name: "DatetimeTypeFieldName",
|
@@ -1372,7 +1523,7 @@ module Aws::Appflow
|
|
1372
1523
|
# },
|
1373
1524
|
# destination_flow_config_list: [ # required
|
1374
1525
|
# {
|
1375
|
-
# 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
|
1526
|
+
# 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
|
1376
1527
|
# connector_profile_name: "ConnectorProfileName",
|
1377
1528
|
# destination_connector_properties: { # required
|
1378
1529
|
# redshift: {
|
@@ -1486,6 +1637,7 @@ module Aws::Appflow
|
|
1486
1637
|
# 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
|
1487
1638
|
# 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
|
1488
1639
|
# 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
|
1640
|
+
# 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
|
1489
1641
|
# },
|
1490
1642
|
# destination_field: "DestinationField",
|
1491
1643
|
# task_type: "Arithmetic", # required, accepts Arithmetic, Filter, Map, Map_all, Mask, Merge, Truncate, Validate
|
@@ -1753,7 +1905,7 @@ module Aws::Appflow
|
|
1753
1905
|
#
|
1754
1906
|
# {
|
1755
1907
|
# connector_entity_name: "Name", # required
|
1756
|
-
# 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
|
1908
|
+
# 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
|
1757
1909
|
# connector_profile_name: "ConnectorProfileName",
|
1758
1910
|
# }
|
1759
1911
|
#
|
@@ -1768,7 +1920,7 @@ module Aws::Appflow
|
|
1768
1920
|
#
|
1769
1921
|
# @!attribute [rw] connector_profile_name
|
1770
1922
|
# The name of the connector profile. The name is unique for each
|
1771
|
-
# `ConnectorProfile` in the
|
1923
|
+
# `ConnectorProfile` in the Amazon Web Services account.
|
1772
1924
|
# @return [String]
|
1773
1925
|
#
|
1774
1926
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/DescribeConnectorEntityRequest AWS API Documentation
|
@@ -1800,14 +1952,14 @@ module Aws::Appflow
|
|
1800
1952
|
#
|
1801
1953
|
# {
|
1802
1954
|
# connector_profile_names: ["ConnectorProfileName"],
|
1803
|
-
# 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
|
1955
|
+
# 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
|
1804
1956
|
# max_results: 1,
|
1805
1957
|
# next_token: "NextToken",
|
1806
1958
|
# }
|
1807
1959
|
#
|
1808
1960
|
# @!attribute [rw] connector_profile_names
|
1809
1961
|
# The name of the connector profile. The name is unique for each
|
1810
|
-
# `ConnectorProfile` in the
|
1962
|
+
# `ConnectorProfile` in the Amazon Web Services account.
|
1811
1963
|
# @return [Array<String>]
|
1812
1964
|
#
|
1813
1965
|
# @!attribute [rw] connector_type
|
@@ -1858,7 +2010,7 @@ module Aws::Appflow
|
|
1858
2010
|
# data as a hash:
|
1859
2011
|
#
|
1860
2012
|
# {
|
1861
|
-
# 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
|
2013
|
+
# 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
|
1862
2014
|
# next_token: "NextToken",
|
1863
2015
|
# }
|
1864
2016
|
#
|
@@ -2270,7 +2422,7 @@ module Aws::Appflow
|
|
2270
2422
|
# data as a hash:
|
2271
2423
|
#
|
2272
2424
|
# {
|
2273
|
-
# 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
|
2425
|
+
# 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
|
2274
2426
|
# connector_profile_name: "ConnectorProfileName",
|
2275
2427
|
# destination_connector_properties: { # required
|
2276
2428
|
# redshift: {
|
@@ -2372,7 +2524,7 @@ module Aws::Appflow
|
|
2372
2524
|
#
|
2373
2525
|
# @!attribute [rw] connector_profile_name
|
2374
2526
|
# The name of the connector profile. This name must be unique for each
|
2375
|
-
# connector profile in the
|
2527
|
+
# connector profile in the Amazon Web Services account.
|
2376
2528
|
# @return [String]
|
2377
2529
|
#
|
2378
2530
|
# @!attribute [rw] destination_connector_properties
|
@@ -3096,14 +3248,14 @@ module Aws::Appflow
|
|
3096
3248
|
#
|
3097
3249
|
# {
|
3098
3250
|
# connector_profile_name: "ConnectorProfileName",
|
3099
|
-
# 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
|
3251
|
+
# 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
|
3100
3252
|
# entities_path: "EntitiesPath",
|
3101
3253
|
# }
|
3102
3254
|
#
|
3103
3255
|
# @!attribute [rw] connector_profile_name
|
3104
3256
|
# The name of the connector profile. The name is unique for each
|
3105
|
-
# `ConnectorProfile` in the
|
3106
|
-
# downstream connector.
|
3257
|
+
# `ConnectorProfile` in the Amazon Web Services account, and is used
|
3258
|
+
# to query the downstream connector.
|
3107
3259
|
# @return [String]
|
3108
3260
|
#
|
3109
3261
|
# @!attribute [rw] connector_type
|
@@ -3320,6 +3472,92 @@ module Aws::Appflow
|
|
3320
3472
|
include Aws::Structure
|
3321
3473
|
end
|
3322
3474
|
|
3475
|
+
# The OAuth credentials required for OAuth type authentication.
|
3476
|
+
#
|
3477
|
+
# @note When making an API call, you may pass OAuthCredentials
|
3478
|
+
# data as a hash:
|
3479
|
+
#
|
3480
|
+
# {
|
3481
|
+
# client_id: "ClientId", # required
|
3482
|
+
# client_secret: "ClientSecret", # required
|
3483
|
+
# access_token: "AccessToken",
|
3484
|
+
# refresh_token: "RefreshToken",
|
3485
|
+
# o_auth_request: {
|
3486
|
+
# auth_code: "AuthCode",
|
3487
|
+
# redirect_uri: "RedirectUri",
|
3488
|
+
# },
|
3489
|
+
# }
|
3490
|
+
#
|
3491
|
+
# @!attribute [rw] client_id
|
3492
|
+
# The identifier for the desired client.
|
3493
|
+
# @return [String]
|
3494
|
+
#
|
3495
|
+
# @!attribute [rw] client_secret
|
3496
|
+
# The client secret used by the OAuth client to authenticate to the
|
3497
|
+
# authorization server.
|
3498
|
+
# @return [String]
|
3499
|
+
#
|
3500
|
+
# @!attribute [rw] access_token
|
3501
|
+
# The access token used to access protected SAPOData resources.
|
3502
|
+
# @return [String]
|
3503
|
+
#
|
3504
|
+
# @!attribute [rw] refresh_token
|
3505
|
+
# The refresh token used to refresh expired access token.
|
3506
|
+
# @return [String]
|
3507
|
+
#
|
3508
|
+
# @!attribute [rw] o_auth_request
|
3509
|
+
# The OAuth requirement needed to request security tokens from the
|
3510
|
+
# connector endpoint.
|
3511
|
+
# @return [Types::ConnectorOAuthRequest]
|
3512
|
+
#
|
3513
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/OAuthCredentials AWS API Documentation
|
3514
|
+
#
|
3515
|
+
class OAuthCredentials < Struct.new(
|
3516
|
+
:client_id,
|
3517
|
+
:client_secret,
|
3518
|
+
:access_token,
|
3519
|
+
:refresh_token,
|
3520
|
+
:o_auth_request)
|
3521
|
+
SENSITIVE = [:client_secret, :access_token]
|
3522
|
+
include Aws::Structure
|
3523
|
+
end
|
3524
|
+
|
3525
|
+
# The OAuth properties required for OAuth type authentication.
|
3526
|
+
#
|
3527
|
+
# @note When making an API call, you may pass OAuthProperties
|
3528
|
+
# data as a hash:
|
3529
|
+
#
|
3530
|
+
# {
|
3531
|
+
# token_url: "TokenUrl", # required
|
3532
|
+
# auth_code_url: "AuthCodeUrl", # required
|
3533
|
+
# o_auth_scopes: ["OAuthScope"], # required
|
3534
|
+
# }
|
3535
|
+
#
|
3536
|
+
# @!attribute [rw] token_url
|
3537
|
+
# The token url required to fetch access/refresh tokens using
|
3538
|
+
# authorization code and also to refresh expired access token using
|
3539
|
+
# refresh token.
|
3540
|
+
# @return [String]
|
3541
|
+
#
|
3542
|
+
# @!attribute [rw] auth_code_url
|
3543
|
+
# The authorization code url required to redirect to SAP Login Page to
|
3544
|
+
# fetch authorization code for OAuth type authentication.
|
3545
|
+
# @return [String]
|
3546
|
+
#
|
3547
|
+
# @!attribute [rw] o_auth_scopes
|
3548
|
+
# The OAuth scopes required for OAuth type authentication.
|
3549
|
+
# @return [Array<String>]
|
3550
|
+
#
|
3551
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/OAuthProperties AWS API Documentation
|
3552
|
+
#
|
3553
|
+
class OAuthProperties < Struct.new(
|
3554
|
+
:token_url,
|
3555
|
+
:auth_code_url,
|
3556
|
+
:o_auth_scopes)
|
3557
|
+
SENSITIVE = []
|
3558
|
+
include Aws::Structure
|
3559
|
+
end
|
3560
|
+
|
3323
3561
|
# Determines the prefix that Amazon AppFlow applies to the destination
|
3324
3562
|
# folder name. You can name your destination folders according to the
|
3325
3563
|
# flow frequency and date.
|
@@ -3350,6 +3588,30 @@ module Aws::Appflow
|
|
3350
3588
|
include Aws::Structure
|
3351
3589
|
end
|
3352
3590
|
|
3591
|
+
# Specifies the private connection provisioning state.
|
3592
|
+
#
|
3593
|
+
# @!attribute [rw] status
|
3594
|
+
# Specifies the private connection provisioning status.
|
3595
|
+
# @return [String]
|
3596
|
+
#
|
3597
|
+
# @!attribute [rw] failure_message
|
3598
|
+
# Specifies the private connection provisioning failure reason.
|
3599
|
+
# @return [String]
|
3600
|
+
#
|
3601
|
+
# @!attribute [rw] failure_cause
|
3602
|
+
# Specifies the private connection provisioning failure cause.
|
3603
|
+
# @return [String]
|
3604
|
+
#
|
3605
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/PrivateConnectionProvisioningState AWS API Documentation
|
3606
|
+
#
|
3607
|
+
class PrivateConnectionProvisioningState < Struct.new(
|
3608
|
+
:status,
|
3609
|
+
:failure_message,
|
3610
|
+
:failure_cause)
|
3611
|
+
SENSITIVE = []
|
3612
|
+
include Aws::Structure
|
3613
|
+
end
|
3614
|
+
|
3353
3615
|
# The connector-specific profile credentials required when using Amazon
|
3354
3616
|
# Redshift.
|
3355
3617
|
#
|
@@ -3613,6 +3875,137 @@ module Aws::Appflow
|
|
3613
3875
|
include Aws::Structure
|
3614
3876
|
end
|
3615
3877
|
|
3878
|
+
# The connector-specific profile credentials required when using
|
3879
|
+
# SAPOData.
|
3880
|
+
#
|
3881
|
+
# @note When making an API call, you may pass SAPODataConnectorProfileCredentials
|
3882
|
+
# data as a hash:
|
3883
|
+
#
|
3884
|
+
# {
|
3885
|
+
# basic_auth_credentials: {
|
3886
|
+
# username: "Username", # required
|
3887
|
+
# password: "Password", # required
|
3888
|
+
# },
|
3889
|
+
# o_auth_credentials: {
|
3890
|
+
# client_id: "ClientId", # required
|
3891
|
+
# client_secret: "ClientSecret", # required
|
3892
|
+
# access_token: "AccessToken",
|
3893
|
+
# refresh_token: "RefreshToken",
|
3894
|
+
# o_auth_request: {
|
3895
|
+
# auth_code: "AuthCode",
|
3896
|
+
# redirect_uri: "RedirectUri",
|
3897
|
+
# },
|
3898
|
+
# },
|
3899
|
+
# }
|
3900
|
+
#
|
3901
|
+
# @!attribute [rw] basic_auth_credentials
|
3902
|
+
# The SAPOData basic authentication credentials.
|
3903
|
+
# @return [Types::BasicAuthCredentials]
|
3904
|
+
#
|
3905
|
+
# @!attribute [rw] o_auth_credentials
|
3906
|
+
# The SAPOData OAuth type authentication credentials.
|
3907
|
+
# @return [Types::OAuthCredentials]
|
3908
|
+
#
|
3909
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/SAPODataConnectorProfileCredentials AWS API Documentation
|
3910
|
+
#
|
3911
|
+
class SAPODataConnectorProfileCredentials < Struct.new(
|
3912
|
+
:basic_auth_credentials,
|
3913
|
+
:o_auth_credentials)
|
3914
|
+
SENSITIVE = []
|
3915
|
+
include Aws::Structure
|
3916
|
+
end
|
3917
|
+
|
3918
|
+
# The connector-specific profile properties required when using
|
3919
|
+
# SAPOData.
|
3920
|
+
#
|
3921
|
+
# @note When making an API call, you may pass SAPODataConnectorProfileProperties
|
3922
|
+
# data as a hash:
|
3923
|
+
#
|
3924
|
+
# {
|
3925
|
+
# application_host_url: "ApplicationHostUrl", # required
|
3926
|
+
# application_service_path: "ApplicationServicePath", # required
|
3927
|
+
# port_number: 1, # required
|
3928
|
+
# client_number: "ClientNumber", # required
|
3929
|
+
# logon_language: "LogonLanguage",
|
3930
|
+
# private_link_service_name: "PrivateLinkServiceName",
|
3931
|
+
# o_auth_properties: {
|
3932
|
+
# token_url: "TokenUrl", # required
|
3933
|
+
# auth_code_url: "AuthCodeUrl", # required
|
3934
|
+
# o_auth_scopes: ["OAuthScope"], # required
|
3935
|
+
# },
|
3936
|
+
# }
|
3937
|
+
#
|
3938
|
+
# @!attribute [rw] application_host_url
|
3939
|
+
# The location of the SAPOData resource.
|
3940
|
+
# @return [String]
|
3941
|
+
#
|
3942
|
+
# @!attribute [rw] application_service_path
|
3943
|
+
# The application path to catalog service.
|
3944
|
+
# @return [String]
|
3945
|
+
#
|
3946
|
+
# @!attribute [rw] port_number
|
3947
|
+
# The port number of the SAPOData instance.
|
3948
|
+
# @return [Integer]
|
3949
|
+
#
|
3950
|
+
# @!attribute [rw] client_number
|
3951
|
+
# The client number for the client creating the connection.
|
3952
|
+
# @return [String]
|
3953
|
+
#
|
3954
|
+
# @!attribute [rw] logon_language
|
3955
|
+
# The logon language of SAPOData instance.
|
3956
|
+
# @return [String]
|
3957
|
+
#
|
3958
|
+
# @!attribute [rw] private_link_service_name
|
3959
|
+
# The SAPOData Private Link service name to be used for private data
|
3960
|
+
# transfers.
|
3961
|
+
# @return [String]
|
3962
|
+
#
|
3963
|
+
# @!attribute [rw] o_auth_properties
|
3964
|
+
# The SAPOData OAuth properties required for OAuth type
|
3965
|
+
# authentication.
|
3966
|
+
# @return [Types::OAuthProperties]
|
3967
|
+
#
|
3968
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/SAPODataConnectorProfileProperties AWS API Documentation
|
3969
|
+
#
|
3970
|
+
class SAPODataConnectorProfileProperties < Struct.new(
|
3971
|
+
:application_host_url,
|
3972
|
+
:application_service_path,
|
3973
|
+
:port_number,
|
3974
|
+
:client_number,
|
3975
|
+
:logon_language,
|
3976
|
+
:private_link_service_name,
|
3977
|
+
:o_auth_properties)
|
3978
|
+
SENSITIVE = []
|
3979
|
+
include Aws::Structure
|
3980
|
+
end
|
3981
|
+
|
3982
|
+
# The connector metadata specific to SAPOData.
|
3983
|
+
#
|
3984
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/SAPODataMetadata AWS API Documentation
|
3985
|
+
#
|
3986
|
+
class SAPODataMetadata < Aws::EmptyStructure; end
|
3987
|
+
|
3988
|
+
# The properties that are applied when using SAPOData as a flow source.
|
3989
|
+
#
|
3990
|
+
# @note When making an API call, you may pass SAPODataSourceProperties
|
3991
|
+
# data as a hash:
|
3992
|
+
#
|
3993
|
+
# {
|
3994
|
+
# object_path: "Object",
|
3995
|
+
# }
|
3996
|
+
#
|
3997
|
+
# @!attribute [rw] object_path
|
3998
|
+
# The object path specified in the SAPOData flow source.
|
3999
|
+
# @return [String]
|
4000
|
+
#
|
4001
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/SAPODataSourceProperties AWS API Documentation
|
4002
|
+
#
|
4003
|
+
class SAPODataSourceProperties < Struct.new(
|
4004
|
+
:object_path)
|
4005
|
+
SENSITIVE = []
|
4006
|
+
include Aws::Structure
|
4007
|
+
end
|
4008
|
+
|
3616
4009
|
# The connector-specific profile credentials required when using
|
3617
4010
|
# Salesforce.
|
3618
4011
|
#
|
@@ -4179,7 +4572,7 @@ module Aws::Appflow
|
|
4179
4572
|
# @return [String]
|
4180
4573
|
#
|
4181
4574
|
# @!attribute [rw] region
|
4182
|
-
# The
|
4575
|
+
# The Amazon Web Services Region of the Snowflake account.
|
4183
4576
|
# @return [String]
|
4184
4577
|
#
|
4185
4578
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/SnowflakeConnectorProfileProperties AWS API Documentation
|
@@ -4250,7 +4643,8 @@ module Aws::Appflow
|
|
4250
4643
|
# The connector metadata specific to Snowflake.
|
4251
4644
|
#
|
4252
4645
|
# @!attribute [rw] supported_regions
|
4253
|
-
# Specifies the supported
|
4646
|
+
# Specifies the supported Amazon Web Services Regions when using
|
4647
|
+
# Snowflake.
|
4254
4648
|
# @return [Array<String>]
|
4255
4649
|
#
|
4256
4650
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/SnowflakeMetadata AWS API Documentation
|
@@ -4309,10 +4703,17 @@ module Aws::Appflow
|
|
4309
4703
|
# },
|
4310
4704
|
# veeva: {
|
4311
4705
|
# object: "Object", # required
|
4706
|
+
# document_type: "DocumentType",
|
4707
|
+
# include_source_files: false,
|
4708
|
+
# include_renditions: false,
|
4709
|
+
# include_all_versions: false,
|
4312
4710
|
# },
|
4313
4711
|
# zendesk: {
|
4314
4712
|
# object: "Object", # required
|
4315
4713
|
# },
|
4714
|
+
# sapo_data: {
|
4715
|
+
# object_path: "Object",
|
4716
|
+
# },
|
4316
4717
|
# }
|
4317
4718
|
#
|
4318
4719
|
# @!attribute [rw] amplitude
|
@@ -4372,6 +4773,11 @@ module Aws::Appflow
|
|
4372
4773
|
# Specifies the information that is required for querying Zendesk.
|
4373
4774
|
# @return [Types::ZendeskSourceProperties]
|
4374
4775
|
#
|
4776
|
+
# @!attribute [rw] sapo_data
|
4777
|
+
# The properties that are applied when using SAPOData as a flow
|
4778
|
+
# source.
|
4779
|
+
# @return [Types::SAPODataSourceProperties]
|
4780
|
+
#
|
4375
4781
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/SourceConnectorProperties AWS API Documentation
|
4376
4782
|
#
|
4377
4783
|
class SourceConnectorProperties < Struct.new(
|
@@ -4388,7 +4794,8 @@ module Aws::Appflow
|
|
4388
4794
|
:slack,
|
4389
4795
|
:trendmicro,
|
4390
4796
|
:veeva,
|
4391
|
-
:zendesk
|
4797
|
+
:zendesk,
|
4798
|
+
:sapo_data)
|
4392
4799
|
SENSITIVE = []
|
4393
4800
|
include Aws::Structure
|
4394
4801
|
end
|
@@ -4420,7 +4827,7 @@ module Aws::Appflow
|
|
4420
4827
|
# data as a hash:
|
4421
4828
|
#
|
4422
4829
|
# {
|
4423
|
-
# 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
|
4830
|
+
# 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
|
4424
4831
|
# connector_profile_name: "ConnectorProfileName",
|
4425
4832
|
# source_connector_properties: { # required
|
4426
4833
|
# amplitude: {
|
@@ -4464,10 +4871,17 @@ module Aws::Appflow
|
|
4464
4871
|
# },
|
4465
4872
|
# veeva: {
|
4466
4873
|
# object: "Object", # required
|
4874
|
+
# document_type: "DocumentType",
|
4875
|
+
# include_source_files: false,
|
4876
|
+
# include_renditions: false,
|
4877
|
+
# include_all_versions: false,
|
4467
4878
|
# },
|
4468
4879
|
# zendesk: {
|
4469
4880
|
# object: "Object", # required
|
4470
4881
|
# },
|
4882
|
+
# sapo_data: {
|
4883
|
+
# object_path: "Object",
|
4884
|
+
# },
|
4471
4885
|
# },
|
4472
4886
|
# incremental_pull_config: {
|
4473
4887
|
# datetime_type_field_name: "DatetimeTypeFieldName",
|
@@ -4480,7 +4894,7 @@ module Aws::Appflow
|
|
4480
4894
|
#
|
4481
4895
|
# @!attribute [rw] connector_profile_name
|
4482
4896
|
# The name of the connector profile. This name must be unique for each
|
4483
|
-
# connector profile in the
|
4897
|
+
# connector profile in the Amazon Web Services account.
|
4484
4898
|
# @return [String]
|
4485
4899
|
#
|
4486
4900
|
# @!attribute [rw] source_connector_properties
|
@@ -4656,6 +5070,7 @@ module Aws::Appflow
|
|
4656
5070
|
# 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
|
4657
5071
|
# 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
|
4658
5072
|
# 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
|
5073
|
+
# 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
|
4659
5074
|
# },
|
4660
5075
|
# destination_field: "DestinationField",
|
4661
5076
|
# task_type: "Arithmetic", # required, accepts Arithmetic, Filter, Map, Map_all, Mask, Merge, Truncate, Validate
|
@@ -4935,6 +5350,19 @@ module Aws::Appflow
|
|
4935
5350
|
# zendesk: {
|
4936
5351
|
# instance_url: "InstanceUrl", # required
|
4937
5352
|
# },
|
5353
|
+
# sapo_data: {
|
5354
|
+
# application_host_url: "ApplicationHostUrl", # required
|
5355
|
+
# application_service_path: "ApplicationServicePath", # required
|
5356
|
+
# port_number: 1, # required
|
5357
|
+
# client_number: "ClientNumber", # required
|
5358
|
+
# logon_language: "LogonLanguage",
|
5359
|
+
# private_link_service_name: "PrivateLinkServiceName",
|
5360
|
+
# o_auth_properties: {
|
5361
|
+
# token_url: "TokenUrl", # required
|
5362
|
+
# auth_code_url: "AuthCodeUrl", # required
|
5363
|
+
# o_auth_scopes: ["OAuthScope"], # required
|
5364
|
+
# },
|
5365
|
+
# },
|
4938
5366
|
# },
|
4939
5367
|
# connector_profile_credentials: { # required
|
4940
5368
|
# amplitude: {
|
@@ -5030,13 +5458,29 @@ module Aws::Appflow
|
|
5030
5458
|
# redirect_uri: "RedirectUri",
|
5031
5459
|
# },
|
5032
5460
|
# },
|
5461
|
+
# sapo_data: {
|
5462
|
+
# basic_auth_credentials: {
|
5463
|
+
# username: "Username", # required
|
5464
|
+
# password: "Password", # required
|
5465
|
+
# },
|
5466
|
+
# o_auth_credentials: {
|
5467
|
+
# client_id: "ClientId", # required
|
5468
|
+
# client_secret: "ClientSecret", # required
|
5469
|
+
# access_token: "AccessToken",
|
5470
|
+
# refresh_token: "RefreshToken",
|
5471
|
+
# o_auth_request: {
|
5472
|
+
# auth_code: "AuthCode",
|
5473
|
+
# redirect_uri: "RedirectUri",
|
5474
|
+
# },
|
5475
|
+
# },
|
5476
|
+
# },
|
5033
5477
|
# },
|
5034
5478
|
# },
|
5035
5479
|
# }
|
5036
5480
|
#
|
5037
5481
|
# @!attribute [rw] connector_profile_name
|
5038
5482
|
# The name of the connector profile and is unique for each
|
5039
|
-
# `ConnectorProfile` in the
|
5483
|
+
# `ConnectorProfile` in the Amazon Web Services account.
|
5040
5484
|
# @return [String]
|
5041
5485
|
#
|
5042
5486
|
# @!attribute [rw] connection_mode
|
@@ -5090,8 +5534,8 @@ module Aws::Appflow
|
|
5090
5534
|
# },
|
5091
5535
|
# },
|
5092
5536
|
# },
|
5093
|
-
# source_flow_config: {
|
5094
|
-
# 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
|
5537
|
+
# source_flow_config: { # required
|
5538
|
+
# 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
|
5095
5539
|
# connector_profile_name: "ConnectorProfileName",
|
5096
5540
|
# source_connector_properties: { # required
|
5097
5541
|
# amplitude: {
|
@@ -5135,10 +5579,17 @@ module Aws::Appflow
|
|
5135
5579
|
# },
|
5136
5580
|
# veeva: {
|
5137
5581
|
# object: "Object", # required
|
5582
|
+
# document_type: "DocumentType",
|
5583
|
+
# include_source_files: false,
|
5584
|
+
# include_renditions: false,
|
5585
|
+
# include_all_versions: false,
|
5138
5586
|
# },
|
5139
5587
|
# zendesk: {
|
5140
5588
|
# object: "Object", # required
|
5141
5589
|
# },
|
5590
|
+
# sapo_data: {
|
5591
|
+
# object_path: "Object",
|
5592
|
+
# },
|
5142
5593
|
# },
|
5143
5594
|
# incremental_pull_config: {
|
5144
5595
|
# datetime_type_field_name: "DatetimeTypeFieldName",
|
@@ -5146,7 +5597,7 @@ module Aws::Appflow
|
|
5146
5597
|
# },
|
5147
5598
|
# destination_flow_config_list: [ # required
|
5148
5599
|
# {
|
5149
|
-
# 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
|
5600
|
+
# 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
|
5150
5601
|
# connector_profile_name: "ConnectorProfileName",
|
5151
5602
|
# destination_connector_properties: { # required
|
5152
5603
|
# redshift: {
|
@@ -5260,6 +5711,7 @@ module Aws::Appflow
|
|
5260
5711
|
# 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
|
5261
5712
|
# 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
|
5262
5713
|
# 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
|
5714
|
+
# 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
|
5263
5715
|
# },
|
5264
5716
|
# destination_field: "DestinationField",
|
5265
5717
|
# task_type: "Arithmetic", # required, accepts Arithmetic, Filter, Map, Map_all, Mask, Merge, Truncate, Validate
|
@@ -5492,16 +5944,43 @@ module Aws::Appflow
|
|
5492
5944
|
#
|
5493
5945
|
# {
|
5494
5946
|
# object: "Object", # required
|
5947
|
+
# document_type: "DocumentType",
|
5948
|
+
# include_source_files: false,
|
5949
|
+
# include_renditions: false,
|
5950
|
+
# include_all_versions: false,
|
5495
5951
|
# }
|
5496
5952
|
#
|
5497
5953
|
# @!attribute [rw] object
|
5498
5954
|
# The object specified in the Veeva flow source.
|
5499
5955
|
# @return [String]
|
5500
5956
|
#
|
5957
|
+
# @!attribute [rw] document_type
|
5958
|
+
# The document type specified in the Veeva document extract flow.
|
5959
|
+
# @return [String]
|
5960
|
+
#
|
5961
|
+
# @!attribute [rw] include_source_files
|
5962
|
+
# Boolean value to include source files in Veeva document extract
|
5963
|
+
# flow.
|
5964
|
+
# @return [Boolean]
|
5965
|
+
#
|
5966
|
+
# @!attribute [rw] include_renditions
|
5967
|
+
# Boolean value to include file renditions in Veeva document extract
|
5968
|
+
# flow.
|
5969
|
+
# @return [Boolean]
|
5970
|
+
#
|
5971
|
+
# @!attribute [rw] include_all_versions
|
5972
|
+
# Boolean value to include All Versions of files in Veeva document
|
5973
|
+
# extract flow.
|
5974
|
+
# @return [Boolean]
|
5975
|
+
#
|
5501
5976
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/VeevaSourceProperties AWS API Documentation
|
5502
5977
|
#
|
5503
5978
|
class VeevaSourceProperties < Struct.new(
|
5504
|
-
:object
|
5979
|
+
:object,
|
5980
|
+
:document_type,
|
5981
|
+
:include_source_files,
|
5982
|
+
:include_renditions,
|
5983
|
+
:include_all_versions)
|
5505
5984
|
SENSITIVE = []
|
5506
5985
|
include Aws::Structure
|
5507
5986
|
end
|