aws-sdk-appflow 1.34.0 → 1.36.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1907d014753e569300b39e745a97db39cd6fb2298f876f9ab2c12e442cead867
4
- data.tar.gz: 517eb01c10baf8543be0379dd956d1ff9c02869093408ef1e85685d52bb59ba4
3
+ metadata.gz: 7a1b04e494fb581ee1bbe70cb258ad5fd31e867701fdf628a96197feca6cb98d
4
+ data.tar.gz: f9507da1b712490291a285edf82798514e449ef90045e5ee7881461e54708e0e
5
5
  SHA512:
6
- metadata.gz: 0e8b9a45e573f74879eb07a6cb1b81204544d4c1264c0026d234c0bd77af5f6b5a8ad5d653c0da81706cb85269bd5125597b0fea3cb8c28aecd02f48513c2c7f
7
- data.tar.gz: c63671cdd38fd508cca3aa23f01382423175e643e3aa1bfe02e1aad9cf68bdcc986d198eaffa2defec081557630187fc9165e6cce6401cee1fa2c8633e3d8621
6
+ metadata.gz: 89cec728febb4a82c70a9cb9939570dfd025300dabc26f06d3b3a2cb90bc05fffdc04931505ee2a62a35247a84c13c1dd83849d9ec622c9baacd2b79756baba7
7
+ data.tar.gz: 92fec2f7d7a789e3b685c3fca6327c7a74da775645aea0560ab74c99a20c15def6ae6471f98d277c87e112776cf9a4df47554105359d5a73ce67fb9482ccdea7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.36.0 (2023-02-23)
5
+ ------------------
6
+
7
+ * Feature - This release enables the customers to choose whether to use Private Link for Metadata and Authorization call when using a private Salesforce connections
8
+
9
+ 1.35.0 (2023-01-19)
10
+ ------------------
11
+
12
+ * Feature - Adding support for Salesforce Pardot connector in Amazon AppFlow.
13
+
4
14
  1.34.0 (2023-01-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.34.0
1
+ 1.36.0
@@ -412,7 +412,7 @@ module Aws::Appflow
412
412
  # resp = client.create_connector_profile({
413
413
  # connector_profile_name: "ConnectorProfileName", # required
414
414
  # kms_arn: "KMSArn",
415
- # 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, CustomConnector
415
+ # 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, CustomConnector, Pardot
416
416
  # connector_label: "ConnectorLabel",
417
417
  # connection_mode: "Public", # required, accepts Public, Private
418
418
  # connector_profile_config: { # required
@@ -449,6 +449,7 @@ module Aws::Appflow
449
449
  # salesforce: {
450
450
  # instance_url: "InstanceUrl",
451
451
  # is_sandbox_environment: false,
452
+ # use_private_link_for_metadata_and_authorization: false,
452
453
  # },
453
454
  # service_now: {
454
455
  # instance_url: "InstanceUrl", # required
@@ -500,6 +501,11 @@ module Aws::Appflow
500
501
  # },
501
502
  # },
502
503
  # },
504
+ # pardot: {
505
+ # instance_url: "InstanceUrl",
506
+ # is_sandbox_environment: false,
507
+ # business_unit_id: "BusinessUnitId",
508
+ # },
503
509
  # },
504
510
  # connector_profile_credentials: {
505
511
  # amplitude: {
@@ -638,6 +644,15 @@ module Aws::Appflow
638
644
  # },
639
645
  # },
640
646
  # },
647
+ # pardot: {
648
+ # access_token: "AccessToken",
649
+ # refresh_token: "RefreshToken",
650
+ # o_auth_request: {
651
+ # auth_code: "AuthCode",
652
+ # redirect_uri: "RedirectUri",
653
+ # },
654
+ # client_credentials_arn: "ClientCredentialsArn",
655
+ # },
641
656
  # },
642
657
  # },
643
658
  # })
@@ -726,7 +741,7 @@ module Aws::Appflow
726
741
  # },
727
742
  # },
728
743
  # source_flow_config: { # required
729
- # 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, CustomConnector
744
+ # 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, CustomConnector, Pardot
730
745
  # api_version: "ApiVersion",
731
746
  # connector_profile_name: "ConnectorProfileName",
732
747
  # source_connector_properties: { # required
@@ -792,6 +807,9 @@ module Aws::Appflow
792
807
  # "CustomPropertyKey" => "CustomPropertyValue",
793
808
  # },
794
809
  # },
810
+ # pardot: {
811
+ # object: "Object", # required
812
+ # },
795
813
  # },
796
814
  # incremental_pull_config: {
797
815
  # datetime_type_field_name: "DatetimeTypeFieldName",
@@ -799,7 +817,7 @@ module Aws::Appflow
799
817
  # },
800
818
  # destination_flow_config_list: [ # required
801
819
  # {
802
- # 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, CustomConnector
820
+ # 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, CustomConnector, Pardot
803
821
  # api_version: "ApiVersion",
804
822
  # connector_profile_name: "ConnectorProfileName",
805
823
  # destination_connector_properties: { # required
@@ -957,6 +975,7 @@ module Aws::Appflow
957
975
  # 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
958
976
  # 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
959
977
  # custom_connector: "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
978
+ # pardot: "PROJECTION", # accepts PROJECTION, EQUAL_TO, NO_OP, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC
960
979
  # },
961
980
  # destination_field: "DestinationField",
962
981
  # task_type: "Arithmetic", # required, accepts Arithmetic, Filter, Map, Map_all, Mask, Merge, Passthrough, Truncate, Validate, Partition
@@ -1069,7 +1088,7 @@ module Aws::Appflow
1069
1088
  # @example Request syntax with placeholder values
1070
1089
  #
1071
1090
  # resp = client.describe_connector({
1072
- # 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, CustomConnector
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, SAPOData, CustomConnector, Pardot
1073
1092
  # connector_label: "ConnectorLabel",
1074
1093
  # })
1075
1094
  #
@@ -1078,7 +1097,7 @@ module Aws::Appflow
1078
1097
  # resp.connector_configuration.can_use_as_source #=> Boolean
1079
1098
  # resp.connector_configuration.can_use_as_destination #=> Boolean
1080
1099
  # resp.connector_configuration.supported_destination_connectors #=> Array
1081
- # resp.connector_configuration.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", "CustomConnector"
1100
+ # resp.connector_configuration.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", "CustomConnector", "Pardot"
1082
1101
  # resp.connector_configuration.supported_scheduling_frequencies #=> Array
1083
1102
  # resp.connector_configuration.supported_scheduling_frequencies[0] #=> String, one of "BYMINUTE", "HOURLY", "DAILY", "WEEKLY", "MONTHLY", "ONCE"
1084
1103
  # resp.connector_configuration.is_private_link_enabled #=> Boolean
@@ -1099,7 +1118,7 @@ module Aws::Appflow
1099
1118
  # resp.connector_configuration.connector_metadata.zendesk.o_auth_scopes[0] #=> String
1100
1119
  # resp.connector_configuration.connector_metadata.honeycode.o_auth_scopes #=> Array
1101
1120
  # resp.connector_configuration.connector_metadata.honeycode.o_auth_scopes[0] #=> String
1102
- # resp.connector_configuration.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", "CustomConnector"
1121
+ # resp.connector_configuration.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", "CustomConnector", "Pardot"
1103
1122
  # resp.connector_configuration.connector_label #=> String
1104
1123
  # resp.connector_configuration.connector_description #=> String
1105
1124
  # resp.connector_configuration.connector_owner #=> String
@@ -1194,7 +1213,7 @@ module Aws::Appflow
1194
1213
  #
1195
1214
  # resp = client.describe_connector_entity({
1196
1215
  # connector_entity_name: "EntityName", # required
1197
- # 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, CustomConnector
1216
+ # 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, CustomConnector, Pardot
1198
1217
  # connector_profile_name: "ConnectorProfileName",
1199
1218
  # api_version: "ApiVersion",
1200
1219
  # })
@@ -1281,7 +1300,7 @@ module Aws::Appflow
1281
1300
  #
1282
1301
  # resp = client.describe_connector_profiles({
1283
1302
  # connector_profile_names: ["ConnectorProfileName"],
1284
- # 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, CustomConnector
1303
+ # 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, CustomConnector, Pardot
1285
1304
  # connector_label: "ConnectorLabel",
1286
1305
  # max_results: 1,
1287
1306
  # next_token: "NextToken",
@@ -1292,7 +1311,7 @@ module Aws::Appflow
1292
1311
  # resp.connector_profile_details #=> Array
1293
1312
  # resp.connector_profile_details[0].connector_profile_arn #=> String
1294
1313
  # resp.connector_profile_details[0].connector_profile_name #=> String
1295
- # 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", "CustomConnector"
1314
+ # 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", "CustomConnector", "Pardot"
1296
1315
  # resp.connector_profile_details[0].connector_label #=> String
1297
1316
  # resp.connector_profile_details[0].connection_mode #=> String, one of "Public", "Private"
1298
1317
  # resp.connector_profile_details[0].credentials_arn #=> String
@@ -1311,6 +1330,7 @@ module Aws::Appflow
1311
1330
  # resp.connector_profile_details[0].connector_profile_properties.redshift.database_name #=> String
1312
1331
  # resp.connector_profile_details[0].connector_profile_properties.salesforce.instance_url #=> String
1313
1332
  # resp.connector_profile_details[0].connector_profile_properties.salesforce.is_sandbox_environment #=> Boolean
1333
+ # resp.connector_profile_details[0].connector_profile_properties.salesforce.use_private_link_for_metadata_and_authorization #=> Boolean
1314
1334
  # resp.connector_profile_details[0].connector_profile_properties.service_now.instance_url #=> String
1315
1335
  # resp.connector_profile_details[0].connector_profile_properties.slack.instance_url #=> String
1316
1336
  # resp.connector_profile_details[0].connector_profile_properties.snowflake.warehouse #=> String
@@ -1338,6 +1358,9 @@ module Aws::Appflow
1338
1358
  # resp.connector_profile_details[0].connector_profile_properties.custom_connector.o_auth_2_properties.o_auth_2_grant_type #=> String, one of "CLIENT_CREDENTIALS", "AUTHORIZATION_CODE"
1339
1359
  # resp.connector_profile_details[0].connector_profile_properties.custom_connector.o_auth_2_properties.token_url_custom_properties #=> Hash
1340
1360
  # resp.connector_profile_details[0].connector_profile_properties.custom_connector.o_auth_2_properties.token_url_custom_properties["CustomPropertyKey"] #=> String
1361
+ # resp.connector_profile_details[0].connector_profile_properties.pardot.instance_url #=> String
1362
+ # resp.connector_profile_details[0].connector_profile_properties.pardot.is_sandbox_environment #=> Boolean
1363
+ # resp.connector_profile_details[0].connector_profile_properties.pardot.business_unit_id #=> String
1341
1364
  # resp.connector_profile_details[0].created_at #=> Time
1342
1365
  # resp.connector_profile_details[0].last_updated_at #=> Time
1343
1366
  # resp.connector_profile_details[0].private_connection_provisioning_state.status #=> String, one of "FAILED", "PENDING", "CREATED"
@@ -1383,7 +1406,7 @@ module Aws::Appflow
1383
1406
  # @example Request syntax with placeholder values
1384
1407
  #
1385
1408
  # resp = client.describe_connectors({
1386
- # 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, CustomConnector
1409
+ # 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, CustomConnector, Pardot
1387
1410
  # max_results: 1,
1388
1411
  # next_token: "NextToken",
1389
1412
  # })
@@ -1394,7 +1417,7 @@ module Aws::Appflow
1394
1417
  # resp.connector_configurations["ConnectorType"].can_use_as_source #=> Boolean
1395
1418
  # resp.connector_configurations["ConnectorType"].can_use_as_destination #=> Boolean
1396
1419
  # resp.connector_configurations["ConnectorType"].supported_destination_connectors #=> Array
1397
- # 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", "CustomConnector"
1420
+ # 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", "CustomConnector", "Pardot"
1398
1421
  # resp.connector_configurations["ConnectorType"].supported_scheduling_frequencies #=> Array
1399
1422
  # resp.connector_configurations["ConnectorType"].supported_scheduling_frequencies[0] #=> String, one of "BYMINUTE", "HOURLY", "DAILY", "WEEKLY", "MONTHLY", "ONCE"
1400
1423
  # resp.connector_configurations["ConnectorType"].is_private_link_enabled #=> Boolean
@@ -1415,7 +1438,7 @@ module Aws::Appflow
1415
1438
  # resp.connector_configurations["ConnectorType"].connector_metadata.zendesk.o_auth_scopes[0] #=> String
1416
1439
  # resp.connector_configurations["ConnectorType"].connector_metadata.honeycode.o_auth_scopes #=> Array
1417
1440
  # resp.connector_configurations["ConnectorType"].connector_metadata.honeycode.o_auth_scopes[0] #=> String
1418
- # resp.connector_configurations["ConnectorType"].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", "CustomConnector"
1441
+ # resp.connector_configurations["ConnectorType"].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", "CustomConnector", "Pardot"
1419
1442
  # resp.connector_configurations["ConnectorType"].connector_label #=> String
1420
1443
  # resp.connector_configurations["ConnectorType"].connector_description #=> String
1421
1444
  # resp.connector_configurations["ConnectorType"].connector_owner #=> String
@@ -1481,7 +1504,7 @@ module Aws::Appflow
1481
1504
  # resp.connectors[0].connector_owner #=> String
1482
1505
  # resp.connectors[0].connector_version #=> String
1483
1506
  # resp.connectors[0].application_type #=> String
1484
- # resp.connectors[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", "CustomConnector"
1507
+ # resp.connectors[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", "CustomConnector", "Pardot"
1485
1508
  # resp.connectors[0].connector_label #=> String
1486
1509
  # resp.connectors[0].registered_at #=> Time
1487
1510
  # resp.connectors[0].registered_by #=> String
@@ -1541,7 +1564,7 @@ module Aws::Appflow
1541
1564
  # resp.kms_arn #=> String
1542
1565
  # resp.flow_status #=> String, one of "Active", "Deprecated", "Deleted", "Draft", "Errored", "Suspended"
1543
1566
  # resp.flow_status_message #=> String
1544
- # 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", "CustomConnector"
1567
+ # 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", "CustomConnector", "Pardot"
1545
1568
  # resp.source_flow_config.api_version #=> String
1546
1569
  # resp.source_flow_config.connector_profile_name #=> String
1547
1570
  # resp.source_flow_config.source_connector_properties.amplitude.object #=> String
@@ -1571,9 +1594,10 @@ module Aws::Appflow
1571
1594
  # resp.source_flow_config.source_connector_properties.custom_connector.entity_name #=> String
1572
1595
  # resp.source_flow_config.source_connector_properties.custom_connector.custom_properties #=> Hash
1573
1596
  # resp.source_flow_config.source_connector_properties.custom_connector.custom_properties["CustomPropertyKey"] #=> String
1597
+ # resp.source_flow_config.source_connector_properties.pardot.object #=> String
1574
1598
  # resp.source_flow_config.incremental_pull_config.datetime_type_field_name #=> String
1575
1599
  # resp.destination_flow_config_list #=> Array
1576
- # 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", "CustomConnector"
1600
+ # 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", "CustomConnector", "Pardot"
1577
1601
  # resp.destination_flow_config_list[0].api_version #=> String
1578
1602
  # resp.destination_flow_config_list[0].connector_profile_name #=> String
1579
1603
  # resp.destination_flow_config_list[0].destination_connector_properties.redshift.object #=> String
@@ -1685,6 +1709,7 @@ module Aws::Appflow
1685
1709
  # 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"
1686
1710
  # 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"
1687
1711
  # resp.tasks[0].connector_operator.custom_connector #=> 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"
1712
+ # resp.tasks[0].connector_operator.pardot #=> String, one of "PROJECTION", "EQUAL_TO", "NO_OP", "ADDITION", "MULTIPLICATION", "DIVISION", "SUBTRACTION", "MASK_ALL", "MASK_FIRST_N", "MASK_LAST_N", "VALIDATE_NON_NULL", "VALIDATE_NON_ZERO", "VALIDATE_NON_NEGATIVE", "VALIDATE_NUMERIC"
1688
1713
  # resp.tasks[0].destination_field #=> String
1689
1714
  # resp.tasks[0].task_type #=> String, one of "Arithmetic", "Filter", "Map", "Map_all", "Mask", "Merge", "Passthrough", "Truncate", "Validate", "Partition"
1690
1715
  # resp.tasks[0].task_properties #=> Hash
@@ -1823,7 +1848,7 @@ module Aws::Appflow
1823
1848
  #
1824
1849
  # resp = client.list_connector_entities({
1825
1850
  # connector_profile_name: "ConnectorProfileName",
1826
- # 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, CustomConnector
1851
+ # 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, CustomConnector, Pardot
1827
1852
  # entities_path: "EntitiesPath",
1828
1853
  # api_version: "ApiVersion",
1829
1854
  # max_results: 1,
@@ -1882,7 +1907,7 @@ module Aws::Appflow
1882
1907
  # resp.connectors[0].connector_owner #=> String
1883
1908
  # resp.connectors[0].connector_version #=> String
1884
1909
  # resp.connectors[0].application_type #=> String
1885
- # resp.connectors[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", "CustomConnector"
1910
+ # resp.connectors[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", "CustomConnector", "Pardot"
1886
1911
  # resp.connectors[0].connector_label #=> String
1887
1912
  # resp.connectors[0].registered_at #=> Time
1888
1913
  # resp.connectors[0].registered_by #=> String
@@ -1930,9 +1955,9 @@ module Aws::Appflow
1930
1955
  # resp.flows[0].description #=> String
1931
1956
  # resp.flows[0].flow_name #=> String
1932
1957
  # resp.flows[0].flow_status #=> String, one of "Active", "Deprecated", "Deleted", "Draft", "Errored", "Suspended"
1933
- # 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", "CustomConnector"
1958
+ # 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", "CustomConnector", "Pardot"
1934
1959
  # resp.flows[0].source_connector_label #=> String
1935
- # 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", "CustomConnector"
1960
+ # 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", "CustomConnector", "Pardot"
1936
1961
  # resp.flows[0].destination_connector_label #=> String
1937
1962
  # resp.flows[0].trigger_type #=> String, one of "Scheduled", "Event", "OnDemand"
1938
1963
  # resp.flows[0].created_at #=> Time
@@ -2241,6 +2266,7 @@ module Aws::Appflow
2241
2266
  # salesforce: {
2242
2267
  # instance_url: "InstanceUrl",
2243
2268
  # is_sandbox_environment: false,
2269
+ # use_private_link_for_metadata_and_authorization: false,
2244
2270
  # },
2245
2271
  # service_now: {
2246
2272
  # instance_url: "InstanceUrl", # required
@@ -2292,6 +2318,11 @@ module Aws::Appflow
2292
2318
  # },
2293
2319
  # },
2294
2320
  # },
2321
+ # pardot: {
2322
+ # instance_url: "InstanceUrl",
2323
+ # is_sandbox_environment: false,
2324
+ # business_unit_id: "BusinessUnitId",
2325
+ # },
2295
2326
  # },
2296
2327
  # connector_profile_credentials: {
2297
2328
  # amplitude: {
@@ -2430,6 +2461,15 @@ module Aws::Appflow
2430
2461
  # },
2431
2462
  # },
2432
2463
  # },
2464
+ # pardot: {
2465
+ # access_token: "AccessToken",
2466
+ # refresh_token: "RefreshToken",
2467
+ # o_auth_request: {
2468
+ # auth_code: "AuthCode",
2469
+ # redirect_uri: "RedirectUri",
2470
+ # },
2471
+ # client_credentials_arn: "ClientCredentialsArn",
2472
+ # },
2433
2473
  # },
2434
2474
  # },
2435
2475
  # })
@@ -2550,7 +2590,7 @@ module Aws::Appflow
2550
2590
  # },
2551
2591
  # },
2552
2592
  # source_flow_config: { # required
2553
- # 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, CustomConnector
2593
+ # 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, CustomConnector, Pardot
2554
2594
  # api_version: "ApiVersion",
2555
2595
  # connector_profile_name: "ConnectorProfileName",
2556
2596
  # source_connector_properties: { # required
@@ -2616,6 +2656,9 @@ module Aws::Appflow
2616
2656
  # "CustomPropertyKey" => "CustomPropertyValue",
2617
2657
  # },
2618
2658
  # },
2659
+ # pardot: {
2660
+ # object: "Object", # required
2661
+ # },
2619
2662
  # },
2620
2663
  # incremental_pull_config: {
2621
2664
  # datetime_type_field_name: "DatetimeTypeFieldName",
@@ -2623,7 +2666,7 @@ module Aws::Appflow
2623
2666
  # },
2624
2667
  # destination_flow_config_list: [ # required
2625
2668
  # {
2626
- # 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, CustomConnector
2669
+ # 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, CustomConnector, Pardot
2627
2670
  # api_version: "ApiVersion",
2628
2671
  # connector_profile_name: "ConnectorProfileName",
2629
2672
  # destination_connector_properties: { # required
@@ -2781,6 +2824,7 @@ module Aws::Appflow
2781
2824
  # 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
2782
2825
  # 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
2783
2826
  # custom_connector: "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
2827
+ # pardot: "PROJECTION", # accepts PROJECTION, EQUAL_TO, NO_OP, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC
2784
2828
  # },
2785
2829
  # destination_field: "DestinationField",
2786
2830
  # task_type: "Arithmetic", # required, accepts Arithmetic, Filter, Map, Map_all, Mask, Merge, Passthrough, Truncate, Validate, Partition
@@ -2824,7 +2868,7 @@ module Aws::Appflow
2824
2868
  params: params,
2825
2869
  config: config)
2826
2870
  context[:gem_name] = 'aws-sdk-appflow'
2827
- context[:gem_version] = '1.34.0'
2871
+ context[:gem_version] = '1.36.0'
2828
2872
  Seahorse::Client::Request.new(handlers, context)
2829
2873
  end
2830
2874
 
@@ -45,6 +45,7 @@ module Aws::Appflow
45
45
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
46
46
  BucketName = Shapes::StringShape.new(name: 'BucketName')
47
47
  BucketPrefix = Shapes::StringShape.new(name: 'BucketPrefix')
48
+ BusinessUnitId = Shapes::StringShape.new(name: 'BusinessUnitId')
48
49
  CatalogType = Shapes::StringShape.new(name: 'CatalogType')
49
50
  ClientCredentialsArn = Shapes::StringShape.new(name: 'ClientCredentialsArn')
50
51
  ClientId = Shapes::StringShape.new(name: 'ClientId')
@@ -253,6 +254,11 @@ module Aws::Appflow
253
254
  Operator = Shapes::StringShape.new(name: 'Operator')
254
255
  OperatorPropertiesKeys = Shapes::StringShape.new(name: 'OperatorPropertiesKeys')
255
256
  Operators = Shapes::StringShape.new(name: 'Operators')
257
+ PardotConnectorOperator = Shapes::StringShape.new(name: 'PardotConnectorOperator')
258
+ PardotConnectorProfileCredentials = Shapes::StructureShape.new(name: 'PardotConnectorProfileCredentials')
259
+ PardotConnectorProfileProperties = Shapes::StructureShape.new(name: 'PardotConnectorProfileProperties')
260
+ PardotMetadata = Shapes::StructureShape.new(name: 'PardotMetadata')
261
+ PardotSourceProperties = Shapes::StructureShape.new(name: 'PardotSourceProperties')
256
262
  Password = Shapes::StringShape.new(name: 'Password')
257
263
  PathPrefix = Shapes::StringShape.new(name: 'PathPrefix')
258
264
  PathPrefixHierarchy = Shapes::ListShape.new(name: 'PathPrefixHierarchy')
@@ -550,6 +556,7 @@ module Aws::Appflow
550
556
  ConnectorMetadata.add_member(:customer_profiles, Shapes::ShapeRef.new(shape: CustomerProfilesMetadata, location_name: "CustomerProfiles"))
551
557
  ConnectorMetadata.add_member(:honeycode, Shapes::ShapeRef.new(shape: HoneycodeMetadata, location_name: "Honeycode"))
552
558
  ConnectorMetadata.add_member(:sapo_data, Shapes::ShapeRef.new(shape: SAPODataMetadata, location_name: "SAPOData"))
559
+ ConnectorMetadata.add_member(:pardot, Shapes::ShapeRef.new(shape: PardotMetadata, location_name: "Pardot"))
553
560
  ConnectorMetadata.struct_class = Types::ConnectorMetadata
554
561
 
555
562
  ConnectorModeList.member = Shapes::ShapeRef.new(shape: ConnectorMode)
@@ -574,6 +581,7 @@ module Aws::Appflow
574
581
  ConnectorOperator.add_member(:zendesk, Shapes::ShapeRef.new(shape: ZendeskConnectorOperator, location_name: "Zendesk"))
575
582
  ConnectorOperator.add_member(:sapo_data, Shapes::ShapeRef.new(shape: SAPODataConnectorOperator, location_name: "SAPOData"))
576
583
  ConnectorOperator.add_member(:custom_connector, Shapes::ShapeRef.new(shape: Operator, location_name: "CustomConnector"))
584
+ ConnectorOperator.add_member(:pardot, Shapes::ShapeRef.new(shape: PardotConnectorOperator, location_name: "Pardot"))
577
585
  ConnectorOperator.struct_class = Types::ConnectorOperator
578
586
 
579
587
  ConnectorProfile.add_member(:connector_profile_arn, Shapes::ShapeRef.new(shape: ConnectorProfileArn, location_name: "connectorProfileArn"))
@@ -610,6 +618,7 @@ module Aws::Appflow
610
618
  ConnectorProfileCredentials.add_member(:zendesk, Shapes::ShapeRef.new(shape: ZendeskConnectorProfileCredentials, location_name: "Zendesk"))
611
619
  ConnectorProfileCredentials.add_member(:sapo_data, Shapes::ShapeRef.new(shape: SAPODataConnectorProfileCredentials, location_name: "SAPOData"))
612
620
  ConnectorProfileCredentials.add_member(:custom_connector, Shapes::ShapeRef.new(shape: CustomConnectorProfileCredentials, location_name: "CustomConnector"))
621
+ ConnectorProfileCredentials.add_member(:pardot, Shapes::ShapeRef.new(shape: PardotConnectorProfileCredentials, location_name: "Pardot"))
613
622
  ConnectorProfileCredentials.struct_class = Types::ConnectorProfileCredentials
614
623
 
615
624
  ConnectorProfileDetailList.member = Shapes::ShapeRef.new(shape: ConnectorProfile)
@@ -634,6 +643,7 @@ module Aws::Appflow
634
643
  ConnectorProfileProperties.add_member(:zendesk, Shapes::ShapeRef.new(shape: ZendeskConnectorProfileProperties, location_name: "Zendesk"))
635
644
  ConnectorProfileProperties.add_member(:sapo_data, Shapes::ShapeRef.new(shape: SAPODataConnectorProfileProperties, location_name: "SAPOData"))
636
645
  ConnectorProfileProperties.add_member(:custom_connector, Shapes::ShapeRef.new(shape: CustomConnectorProfileProperties, location_name: "CustomConnector"))
646
+ ConnectorProfileProperties.add_member(:pardot, Shapes::ShapeRef.new(shape: PardotConnectorProfileProperties, location_name: "Pardot"))
637
647
  ConnectorProfileProperties.struct_class = Types::ConnectorProfileProperties
638
648
 
639
649
  ConnectorProvisioningConfig.add_member(:lambda, Shapes::ShapeRef.new(shape: LambdaConnectorProvisioningConfig, location_name: "lambda"))
@@ -1103,6 +1113,22 @@ module Aws::Appflow
1103
1113
 
1104
1114
  OAuthScopeList.member = Shapes::ShapeRef.new(shape: OAuthScope)
1105
1115
 
1116
+ PardotConnectorProfileCredentials.add_member(:access_token, Shapes::ShapeRef.new(shape: AccessToken, location_name: "accessToken"))
1117
+ PardotConnectorProfileCredentials.add_member(:refresh_token, Shapes::ShapeRef.new(shape: RefreshToken, location_name: "refreshToken"))
1118
+ PardotConnectorProfileCredentials.add_member(:o_auth_request, Shapes::ShapeRef.new(shape: ConnectorOAuthRequest, location_name: "oAuthRequest"))
1119
+ PardotConnectorProfileCredentials.add_member(:client_credentials_arn, Shapes::ShapeRef.new(shape: ClientCredentialsArn, location_name: "clientCredentialsArn"))
1120
+ PardotConnectorProfileCredentials.struct_class = Types::PardotConnectorProfileCredentials
1121
+
1122
+ PardotConnectorProfileProperties.add_member(:instance_url, Shapes::ShapeRef.new(shape: InstanceUrl, location_name: "instanceUrl"))
1123
+ PardotConnectorProfileProperties.add_member(:is_sandbox_environment, Shapes::ShapeRef.new(shape: Boolean, location_name: "isSandboxEnvironment"))
1124
+ PardotConnectorProfileProperties.add_member(:business_unit_id, Shapes::ShapeRef.new(shape: BusinessUnitId, location_name: "businessUnitId"))
1125
+ PardotConnectorProfileProperties.struct_class = Types::PardotConnectorProfileProperties
1126
+
1127
+ PardotMetadata.struct_class = Types::PardotMetadata
1128
+
1129
+ PardotSourceProperties.add_member(:object, Shapes::ShapeRef.new(shape: Object, required: true, location_name: "object"))
1130
+ PardotSourceProperties.struct_class = Types::PardotSourceProperties
1131
+
1106
1132
  PathPrefixHierarchy.member = Shapes::ShapeRef.new(shape: PathPrefix)
1107
1133
 
1108
1134
  PrefixConfig.add_member(:prefix_type, Shapes::ShapeRef.new(shape: PrefixType, location_name: "prefixType"))
@@ -1218,6 +1244,7 @@ module Aws::Appflow
1218
1244
 
1219
1245
  SalesforceConnectorProfileProperties.add_member(:instance_url, Shapes::ShapeRef.new(shape: InstanceUrl, location_name: "instanceUrl"))
1220
1246
  SalesforceConnectorProfileProperties.add_member(:is_sandbox_environment, Shapes::ShapeRef.new(shape: Boolean, location_name: "isSandboxEnvironment"))
1247
+ SalesforceConnectorProfileProperties.add_member(:use_private_link_for_metadata_and_authorization, Shapes::ShapeRef.new(shape: Boolean, location_name: "usePrivateLinkForMetadataAndAuthorization"))
1221
1248
  SalesforceConnectorProfileProperties.struct_class = Types::SalesforceConnectorProfileProperties
1222
1249
 
1223
1250
  SalesforceDataTransferApiList.member = Shapes::ShapeRef.new(shape: SalesforceDataTransferApi)
@@ -1329,6 +1356,7 @@ module Aws::Appflow
1329
1356
  SourceConnectorProperties.add_member(:zendesk, Shapes::ShapeRef.new(shape: ZendeskSourceProperties, location_name: "Zendesk"))
1330
1357
  SourceConnectorProperties.add_member(:sapo_data, Shapes::ShapeRef.new(shape: SAPODataSourceProperties, location_name: "SAPOData"))
1331
1358
  SourceConnectorProperties.add_member(:custom_connector, Shapes::ShapeRef.new(shape: CustomConnectorSourceProperties, location_name: "CustomConnector"))
1359
+ SourceConnectorProperties.add_member(:pardot, Shapes::ShapeRef.new(shape: PardotSourceProperties, location_name: "Pardot"))
1332
1360
  SourceConnectorProperties.struct_class = Types::SourceConnectorProperties
1333
1361
 
1334
1362
  SourceFieldProperties.add_member(:is_retrievable, Shapes::ShapeRef.new(shape: Boolean, location_name: "isRetrievable"))
@@ -50,9 +50,6 @@ module Aws::Appflow
50
50
 
51
51
  def initialize(options = {})
52
52
  self[:region] = options[:region]
53
- if self[:region].nil?
54
- raise ArgumentError, "Missing required EndpointParameter: :region"
55
- end
56
53
  self[:use_dual_stack] = options[:use_dual_stack]
57
54
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
58
55
  if self[:use_dual_stack].nil?
@@ -14,36 +14,39 @@ module Aws::Appflow
14
14
  use_dual_stack = parameters.use_dual_stack
15
15
  use_fips = parameters.use_fips
16
16
  endpoint = parameters.endpoint
17
- if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
- if Aws::Endpoints::Matchers.set?(endpoint)
19
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
- raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
- end
22
- if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
- raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
- end
25
- return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
- end
27
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
- return Aws::Endpoints::Endpoint.new(url: "https://appflow-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
- end
31
- raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
- end
17
+ if Aws::Endpoints::Matchers.set?(endpoint)
33
18
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
- return Aws::Endpoints::Endpoint.new(url: "https://appflow-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
- end
37
- raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
19
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
38
20
  end
39
21
  if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
- return Aws::Endpoints::Endpoint.new(url: "https://appflow.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
22
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
23
+ end
24
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
25
+ end
26
+ if Aws::Endpoints::Matchers.set?(region)
27
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
28
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
29
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
30
+ return Aws::Endpoints::Endpoint.new(url: "https://appflow-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
31
+ end
32
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
+ end
34
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
36
+ return Aws::Endpoints::Endpoint.new(url: "https://appflow-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
+ end
38
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
39
+ end
40
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
41
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
42
+ return Aws::Endpoints::Endpoint.new(url: "https://appflow.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
43
+ end
44
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
42
45
  end
43
- raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
46
+ return Aws::Endpoints::Endpoint.new(url: "https://appflow.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
44
47
  end
45
- return Aws::Endpoints::Endpoint.new(url: "https://appflow.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
46
48
  end
49
+ raise ArgumentError, "Invalid Configuration: Missing Region"
47
50
  raise ArgumentError, 'No endpoint could be resolved'
48
51
 
49
52
  end
@@ -643,6 +643,10 @@ module Aws::Appflow
643
643
  # The connector metadata specific to SAPOData.
644
644
  # @return [Types::SAPODataMetadata]
645
645
  #
646
+ # @!attribute [rw] pardot
647
+ # The connector metadata specific to Salesforce Pardot.
648
+ # @return [Types::PardotMetadata]
649
+ #
646
650
  # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/ConnectorMetadata AWS API Documentation
647
651
  #
648
652
  class ConnectorMetadata < Struct.new(
@@ -666,7 +670,8 @@ module Aws::Appflow
666
670
  :upsolver,
667
671
  :customer_profiles,
668
672
  :honeycode,
669
- :sapo_data)
673
+ :sapo_data,
674
+ :pardot)
670
675
  SENSITIVE = []
671
676
  include Aws::Structure
672
677
  end
@@ -769,6 +774,11 @@ module Aws::Appflow
769
774
  # Operators supported by the custom connector.
770
775
  # @return [String]
771
776
  #
777
+ # @!attribute [rw] pardot
778
+ # The operation to be performed on the provided Salesforce Pardot
779
+ # source fields.
780
+ # @return [String]
781
+ #
772
782
  # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/ConnectorOperator AWS API Documentation
773
783
  #
774
784
  class ConnectorOperator < Struct.new(
@@ -787,7 +797,8 @@ module Aws::Appflow
787
797
  :veeva,
788
798
  :zendesk,
789
799
  :sapo_data,
790
- :custom_connector)
800
+ :custom_connector,
801
+ :pardot)
791
802
  SENSITIVE = []
792
803
  include Aws::Structure
793
804
  end
@@ -956,6 +967,11 @@ module Aws::Appflow
956
967
  # using the custom connector.
957
968
  # @return [Types::CustomConnectorProfileCredentials]
958
969
  #
970
+ # @!attribute [rw] pardot
971
+ # The connector-specific credentials required when using Salesforce
972
+ # Pardot.
973
+ # @return [Types::PardotConnectorProfileCredentials]
974
+ #
959
975
  # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/ConnectorProfileCredentials AWS API Documentation
960
976
  #
961
977
  class ConnectorProfileCredentials < Struct.new(
@@ -976,7 +992,8 @@ module Aws::Appflow
976
992
  :veeva,
977
993
  :zendesk,
978
994
  :sapo_data,
979
- :custom_connector)
995
+ :custom_connector,
996
+ :pardot)
980
997
  SENSITIVE = []
981
998
  include Aws::Structure
982
999
  end
@@ -1056,6 +1073,10 @@ module Aws::Appflow
1056
1073
  # The properties required by the custom connector.
1057
1074
  # @return [Types::CustomConnectorProfileProperties]
1058
1075
  #
1076
+ # @!attribute [rw] pardot
1077
+ # The connector-specific properties required by Salesforce Pardot.
1078
+ # @return [Types::PardotConnectorProfileProperties]
1079
+ #
1059
1080
  # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/ConnectorProfileProperties AWS API Documentation
1060
1081
  #
1061
1082
  class ConnectorProfileProperties < Struct.new(
@@ -1076,7 +1097,8 @@ module Aws::Appflow
1076
1097
  :veeva,
1077
1098
  :zendesk,
1078
1099
  :sapo_data,
1079
- :custom_connector)
1100
+ :custom_connector,
1101
+ :pardot)
1080
1102
  SENSITIVE = []
1081
1103
  include Aws::Structure
1082
1104
  end
@@ -3321,6 +3343,86 @@ module Aws::Appflow
3321
3343
  include Aws::Structure
3322
3344
  end
3323
3345
 
3346
+ # The connector-specific profile credentials required when using
3347
+ # Salesforce Pardot.
3348
+ #
3349
+ # @!attribute [rw] access_token
3350
+ # The credentials used to access protected Salesforce Pardot
3351
+ # resources.
3352
+ # @return [String]
3353
+ #
3354
+ # @!attribute [rw] refresh_token
3355
+ # The credentials used to acquire new access tokens.
3356
+ # @return [String]
3357
+ #
3358
+ # @!attribute [rw] o_auth_request
3359
+ # Used by select connectors for which the OAuth workflow is supported,
3360
+ # such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack.
3361
+ # @return [Types::ConnectorOAuthRequest]
3362
+ #
3363
+ # @!attribute [rw] client_credentials_arn
3364
+ # The secret manager ARN, which contains the client ID and client
3365
+ # secret of the connected app.
3366
+ # @return [String]
3367
+ #
3368
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/PardotConnectorProfileCredentials AWS API Documentation
3369
+ #
3370
+ class PardotConnectorProfileCredentials < Struct.new(
3371
+ :access_token,
3372
+ :refresh_token,
3373
+ :o_auth_request,
3374
+ :client_credentials_arn)
3375
+ SENSITIVE = [:access_token, :client_credentials_arn]
3376
+ include Aws::Structure
3377
+ end
3378
+
3379
+ # The connector-specific profile properties required when using
3380
+ # Salesforce Pardot.
3381
+ #
3382
+ # @!attribute [rw] instance_url
3383
+ # The location of the Salesforce Pardot resource.
3384
+ # @return [String]
3385
+ #
3386
+ # @!attribute [rw] is_sandbox_environment
3387
+ # Indicates whether the connector profile applies to a sandbox or
3388
+ # production environment.
3389
+ # @return [Boolean]
3390
+ #
3391
+ # @!attribute [rw] business_unit_id
3392
+ # The business unit id of Salesforce Pardot instance.
3393
+ # @return [String]
3394
+ #
3395
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/PardotConnectorProfileProperties AWS API Documentation
3396
+ #
3397
+ class PardotConnectorProfileProperties < Struct.new(
3398
+ :instance_url,
3399
+ :is_sandbox_environment,
3400
+ :business_unit_id)
3401
+ SENSITIVE = []
3402
+ include Aws::Structure
3403
+ end
3404
+
3405
+ # The connector metadata specific to Salesforce Pardot.
3406
+ #
3407
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/PardotMetadata AWS API Documentation
3408
+ #
3409
+ class PardotMetadata < Aws::EmptyStructure; end
3410
+
3411
+ # The properties that are applied when Salesforce Pardot is being used
3412
+ # as a source.
3413
+ #
3414
+ # @!attribute [rw] object
3415
+ # The object specified in the Salesforce Pardot flow source.
3416
+ # @return [String]
3417
+ #
3418
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/PardotSourceProperties AWS API Documentation
3419
+ #
3420
+ class PardotSourceProperties < Struct.new(
3421
+ :object)
3422
+ SENSITIVE = []
3423
+ include Aws::Structure
3424
+ end
3425
+
3324
3426
  # Specifies elements that Amazon AppFlow includes in the file and folder
3325
3427
  # names in the flow destination.
3326
3428
  #
@@ -3931,11 +4033,55 @@ module Aws::Appflow
3931
4033
  # production environment.
3932
4034
  # @return [Boolean]
3933
4035
  #
4036
+ # @!attribute [rw] use_private_link_for_metadata_and_authorization
4037
+ # If the connection mode for the connector profile is private, this
4038
+ # parameter sets whether Amazon AppFlow uses the private network to
4039
+ # send metadata and authorization calls to Salesforce. Amazon AppFlow
4040
+ # sends private calls through Amazon Web Services PrivateLink. These
4041
+ # calls travel through Amazon Web Services infrastructure without
4042
+ # being exposed to the public internet.
4043
+ #
4044
+ # Set either of the following values:
4045
+ #
4046
+ # true
4047
+ #
4048
+ # : Amazon AppFlow sends all calls to Salesforce over the private
4049
+ # network.
4050
+ #
4051
+ # These private calls are:
4052
+ #
4053
+ # * Calls to get metadata about your Salesforce records. This
4054
+ # metadata describes your Salesforce objects and their fields.
4055
+ #
4056
+ # * Calls to get or refresh access tokens that allow Amazon AppFlow
4057
+ # to access your Salesforce records.
4058
+ #
4059
+ # * Calls to transfer your Salesforce records as part of a flow run.
4060
+ #
4061
+ # false
4062
+ #
4063
+ # : The default value. Amazon AppFlow sends some calls to Salesforce
4064
+ # privately and other calls over the public internet.
4065
+ #
4066
+ # The public calls are:
4067
+ #
4068
+ # * Calls to get metadata about your Salesforce records.
4069
+ #
4070
+ # * Calls to get or refresh access tokens.
4071
+ #
4072
+ # The private calls are:
4073
+ #
4074
+ # * Calls to transfer your Salesforce records as part of a flow run.
4075
+ #
4076
+ # ^
4077
+ # @return [Boolean]
4078
+ #
3934
4079
  # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/SalesforceConnectorProfileProperties AWS API Documentation
3935
4080
  #
3936
4081
  class SalesforceConnectorProfileProperties < Struct.new(
3937
4082
  :instance_url,
3938
- :is_sandbox_environment)
4083
+ :is_sandbox_environment,
4084
+ :use_private_link_for_metadata_and_authorization)
3939
4085
  SENSITIVE = []
3940
4086
  include Aws::Structure
3941
4087
  end
@@ -4572,6 +4718,11 @@ module Aws::Appflow
4572
4718
  # used as a source.
4573
4719
  # @return [Types::CustomConnectorSourceProperties]
4574
4720
  #
4721
+ # @!attribute [rw] pardot
4722
+ # Specifies the information that is required for querying Salesforce
4723
+ # Pardot.
4724
+ # @return [Types::PardotSourceProperties]
4725
+ #
4575
4726
  # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/SourceConnectorProperties AWS API Documentation
4576
4727
  #
4577
4728
  class SourceConnectorProperties < Struct.new(
@@ -4590,7 +4741,8 @@ module Aws::Appflow
4590
4741
  :veeva,
4591
4742
  :zendesk,
4592
4743
  :sapo_data,
4593
- :custom_connector)
4744
+ :custom_connector,
4745
+ :pardot)
4594
4746
  SENSITIVE = []
4595
4747
  include Aws::Structure
4596
4748
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-appflow/customizations'
52
52
  # @!group service
53
53
  module Aws::Appflow
54
54
 
55
- GEM_VERSION = '1.34.0'
55
+ GEM_VERSION = '1.36.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appflow
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.34.0
4
+ version: 1.36.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-18 00:00:00.000000000 Z
11
+ date: 2023-02-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core