aws-sdk-customerprofiles 1.17.0 → 1.20.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-customerprofiles/client.rb +347 -3
- data/lib/aws-sdk-customerprofiles/client_api.rb +207 -0
- data/lib/aws-sdk-customerprofiles/types.rb +833 -5
- data/lib/aws-sdk-customerprofiles.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9807cd1cb915479c1936925a7323284eb6ea79bcd367161b21a6f5077320955b
|
4
|
+
data.tar.gz: 31957275151a4ccddf2381596a4fc8c1c33c46a999d88f243230788c4ae1e2ab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6583830c8f9436e3f9932a23cc95bfc8116a614d1fe40026be982e25b1d034e6ddd495576b102a795645bd75a337f773c1ac7ee4208e0632f978872d72b0af5a
|
7
|
+
data.tar.gz: 8c28098fa6d8a3e5f4b446b2e4e8a18c844f7288943a744fd671a3c4a8a469b7ec797172132be1050767e4f7600c2f3e2ed934439198e44f6d380672362bc6c2
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.20.0 (2022-02-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.19.0 (2022-02-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release introduces apis CreateIntegrationWorkflow, DeleteWorkflow, ListWorkflows, GetWorkflow and GetWorkflowSteps. These apis are used to manage and view integration workflows.
|
13
|
+
|
14
|
+
1.18.0 (2022-02-03)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
4
19
|
1.17.0 (2021-12-21)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.20.0
|
@@ -27,7 +27,9 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
30
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
31
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
32
34
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
33
35
|
|
@@ -74,7 +76,9 @@ module Aws::CustomerProfiles
|
|
74
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
75
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
76
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
77
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
78
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
79
83
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
80
84
|
|
@@ -532,6 +536,136 @@ module Aws::CustomerProfiles
|
|
532
536
|
req.send_request(options)
|
533
537
|
end
|
534
538
|
|
539
|
+
# Creates an integration workflow. An integration workflow is an async
|
540
|
+
# process which ingests historic data and sets up an integration for
|
541
|
+
# ongoing updates. The supported Amazon AppFlow sources are Salesforce,
|
542
|
+
# ServiceNow, and Marketo.
|
543
|
+
#
|
544
|
+
# @option params [required, String] :domain_name
|
545
|
+
# The unique name of the domain.
|
546
|
+
#
|
547
|
+
# @option params [required, String] :workflow_type
|
548
|
+
# The type of workflow. The only supported value is
|
549
|
+
# APPFLOW\_INTEGRATION.
|
550
|
+
#
|
551
|
+
# @option params [required, Types::IntegrationConfig] :integration_config
|
552
|
+
# Configuration data for integration workflow.
|
553
|
+
#
|
554
|
+
# @option params [required, String] :object_type_name
|
555
|
+
# The name of the profile object type.
|
556
|
+
#
|
557
|
+
# @option params [required, String] :role_arn
|
558
|
+
# The Amazon Resource Name (ARN) of the IAM role. Customer Profiles
|
559
|
+
# assumes this role to create resources on your behalf as part of
|
560
|
+
# workflow execution.
|
561
|
+
#
|
562
|
+
# @option params [Hash<String,String>] :tags
|
563
|
+
# The tags used to organize, track, or control access for this resource.
|
564
|
+
#
|
565
|
+
# @return [Types::CreateIntegrationWorkflowResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
566
|
+
#
|
567
|
+
# * {Types::CreateIntegrationWorkflowResponse#workflow_id #workflow_id} => String
|
568
|
+
# * {Types::CreateIntegrationWorkflowResponse#message #message} => String
|
569
|
+
#
|
570
|
+
# @example Request syntax with placeholder values
|
571
|
+
#
|
572
|
+
# resp = client.create_integration_workflow({
|
573
|
+
# domain_name: "name", # required
|
574
|
+
# workflow_type: "APPFLOW_INTEGRATION", # required, accepts APPFLOW_INTEGRATION
|
575
|
+
# integration_config: { # required
|
576
|
+
# appflow_integration: {
|
577
|
+
# flow_definition: { # required
|
578
|
+
# description: "FlowDescription",
|
579
|
+
# flow_name: "FlowName", # required
|
580
|
+
# kms_arn: "KmsArn", # required
|
581
|
+
# source_flow_config: { # required
|
582
|
+
# connector_profile_name: "ConnectorProfileName",
|
583
|
+
# connector_type: "Salesforce", # required, accepts Salesforce, Marketo, Zendesk, Servicenow, S3
|
584
|
+
# incremental_pull_config: {
|
585
|
+
# datetime_type_field_name: "DatetimeTypeFieldName",
|
586
|
+
# },
|
587
|
+
# source_connector_properties: { # required
|
588
|
+
# marketo: {
|
589
|
+
# object: "Object", # required
|
590
|
+
# },
|
591
|
+
# s3: {
|
592
|
+
# bucket_name: "BucketName", # required
|
593
|
+
# bucket_prefix: "BucketPrefix",
|
594
|
+
# },
|
595
|
+
# salesforce: {
|
596
|
+
# object: "Object", # required
|
597
|
+
# enable_dynamic_field_update: false,
|
598
|
+
# include_deleted_records: false,
|
599
|
+
# },
|
600
|
+
# service_now: {
|
601
|
+
# object: "Object", # required
|
602
|
+
# },
|
603
|
+
# zendesk: {
|
604
|
+
# object: "Object", # required
|
605
|
+
# },
|
606
|
+
# },
|
607
|
+
# },
|
608
|
+
# tasks: [ # required
|
609
|
+
# {
|
610
|
+
# connector_operator: {
|
611
|
+
# marketo: "PROJECTION", # accepts PROJECTION, LESS_THAN, GREATER_THAN, BETWEEN, 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
|
612
|
+
# s3: "PROJECTION", # accepts PROJECTION, LESS_THAN, 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
|
613
|
+
# salesforce: "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
|
614
|
+
# service_now: "PROJECTION", # accepts PROJECTION, CONTAINS, LESS_THAN, 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
|
615
|
+
# 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
|
616
|
+
# },
|
617
|
+
# destination_field: "DestinationField",
|
618
|
+
# source_fields: ["stringTo2048"], # required
|
619
|
+
# task_properties: {
|
620
|
+
# "VALUE" => "Property",
|
621
|
+
# },
|
622
|
+
# task_type: "Arithmetic", # required, accepts Arithmetic, Filter, Map, Mask, Merge, Truncate, Validate
|
623
|
+
# },
|
624
|
+
# ],
|
625
|
+
# trigger_config: { # required
|
626
|
+
# trigger_type: "Scheduled", # required, accepts Scheduled, Event, OnDemand
|
627
|
+
# trigger_properties: {
|
628
|
+
# scheduled: {
|
629
|
+
# schedule_expression: "ScheduleExpression", # required
|
630
|
+
# data_pull_mode: "Incremental", # accepts Incremental, Complete
|
631
|
+
# schedule_start_time: Time.now,
|
632
|
+
# schedule_end_time: Time.now,
|
633
|
+
# timezone: "Timezone",
|
634
|
+
# schedule_offset: 1,
|
635
|
+
# first_execution_from: Time.now,
|
636
|
+
# },
|
637
|
+
# },
|
638
|
+
# },
|
639
|
+
# },
|
640
|
+
# batches: [
|
641
|
+
# {
|
642
|
+
# start_time: Time.now, # required
|
643
|
+
# end_time: Time.now, # required
|
644
|
+
# },
|
645
|
+
# ],
|
646
|
+
# },
|
647
|
+
# },
|
648
|
+
# object_type_name: "typeName", # required
|
649
|
+
# role_arn: "RoleArn", # required
|
650
|
+
# tags: {
|
651
|
+
# "TagKey" => "TagValue",
|
652
|
+
# },
|
653
|
+
# })
|
654
|
+
#
|
655
|
+
# @example Response structure
|
656
|
+
#
|
657
|
+
# resp.workflow_id #=> String
|
658
|
+
# resp.message #=> String
|
659
|
+
#
|
660
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/CreateIntegrationWorkflow AWS API Documentation
|
661
|
+
#
|
662
|
+
# @overload create_integration_workflow(params = {})
|
663
|
+
# @param [Hash] params ({})
|
664
|
+
def create_integration_workflow(params = {}, options = {})
|
665
|
+
req = build_request(:create_integration_workflow, params)
|
666
|
+
req.send_request(options)
|
667
|
+
end
|
668
|
+
|
535
669
|
# Creates a standard profile.
|
536
670
|
#
|
537
671
|
# A standard profile represents the following attributes for a customer
|
@@ -907,6 +1041,33 @@ module Aws::CustomerProfiles
|
|
907
1041
|
req.send_request(options)
|
908
1042
|
end
|
909
1043
|
|
1044
|
+
# Deletes the specified workflow and all its corresponding resources.
|
1045
|
+
# This is an async process.
|
1046
|
+
#
|
1047
|
+
# @option params [required, String] :domain_name
|
1048
|
+
# The unique name of the domain.
|
1049
|
+
#
|
1050
|
+
# @option params [required, String] :workflow_id
|
1051
|
+
# Unique identifier for the workflow.
|
1052
|
+
#
|
1053
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1054
|
+
#
|
1055
|
+
# @example Request syntax with placeholder values
|
1056
|
+
#
|
1057
|
+
# resp = client.delete_workflow({
|
1058
|
+
# domain_name: "name", # required
|
1059
|
+
# workflow_id: "string1To255", # required
|
1060
|
+
# })
|
1061
|
+
#
|
1062
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/DeleteWorkflow AWS API Documentation
|
1063
|
+
#
|
1064
|
+
# @overload delete_workflow(params = {})
|
1065
|
+
# @param [Hash] params ({})
|
1066
|
+
def delete_workflow(params = {}, options = {})
|
1067
|
+
req = build_request(:delete_workflow, params)
|
1068
|
+
req.send_request(options)
|
1069
|
+
end
|
1070
|
+
|
910
1071
|
# Tests the auto-merging settings of your Identity Resolution Job
|
911
1072
|
# without merging your data. It randomly selects a sample of matching
|
912
1073
|
# groups from the existing matching results, and applies the automerging
|
@@ -1116,6 +1277,7 @@ module Aws::CustomerProfiles
|
|
1116
1277
|
# * {Types::GetIntegrationResponse#last_updated_at #last_updated_at} => Time
|
1117
1278
|
# * {Types::GetIntegrationResponse#tags #tags} => Hash<String,String>
|
1118
1279
|
# * {Types::GetIntegrationResponse#object_type_names #object_type_names} => Hash<String,String>
|
1280
|
+
# * {Types::GetIntegrationResponse#workflow_id #workflow_id} => String
|
1119
1281
|
#
|
1120
1282
|
# @example Request syntax with placeholder values
|
1121
1283
|
#
|
@@ -1135,6 +1297,7 @@ module Aws::CustomerProfiles
|
|
1135
1297
|
# resp.tags["TagKey"] #=> String
|
1136
1298
|
# resp.object_type_names #=> Hash
|
1137
1299
|
# resp.object_type_names["string1To255"] #=> String
|
1300
|
+
# resp.workflow_id #=> String
|
1138
1301
|
#
|
1139
1302
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/GetIntegration AWS API Documentation
|
1140
1303
|
#
|
@@ -1181,8 +1344,6 @@ module Aws::CustomerProfiles
|
|
1181
1344
|
#
|
1182
1345
|
# * FullName
|
1183
1346
|
#
|
1184
|
-
# * BusinessName
|
1185
|
-
#
|
1186
1347
|
# For example, two or more profiles—with spelling mistakes such as
|
1187
1348
|
# **John Doe** and **Jhn Doe**, or different casing email addresses such
|
1188
1349
|
# as **JOHN\_DOE@ANYCOMPANY.COM** and **johndoe@anycompany.com**, or
|
@@ -1359,6 +1520,112 @@ module Aws::CustomerProfiles
|
|
1359
1520
|
req.send_request(options)
|
1360
1521
|
end
|
1361
1522
|
|
1523
|
+
# Get details of specified workflow.
|
1524
|
+
#
|
1525
|
+
# @option params [required, String] :domain_name
|
1526
|
+
# The unique name of the domain.
|
1527
|
+
#
|
1528
|
+
# @option params [required, String] :workflow_id
|
1529
|
+
# Unique identifier for the workflow.
|
1530
|
+
#
|
1531
|
+
# @return [Types::GetWorkflowResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1532
|
+
#
|
1533
|
+
# * {Types::GetWorkflowResponse#workflow_id #workflow_id} => String
|
1534
|
+
# * {Types::GetWorkflowResponse#workflow_type #workflow_type} => String
|
1535
|
+
# * {Types::GetWorkflowResponse#status #status} => String
|
1536
|
+
# * {Types::GetWorkflowResponse#error_description #error_description} => String
|
1537
|
+
# * {Types::GetWorkflowResponse#start_date #start_date} => Time
|
1538
|
+
# * {Types::GetWorkflowResponse#last_updated_at #last_updated_at} => Time
|
1539
|
+
# * {Types::GetWorkflowResponse#attributes #attributes} => Types::WorkflowAttributes
|
1540
|
+
# * {Types::GetWorkflowResponse#metrics #metrics} => Types::WorkflowMetrics
|
1541
|
+
#
|
1542
|
+
# @example Request syntax with placeholder values
|
1543
|
+
#
|
1544
|
+
# resp = client.get_workflow({
|
1545
|
+
# domain_name: "name", # required
|
1546
|
+
# workflow_id: "uuid", # required
|
1547
|
+
# })
|
1548
|
+
#
|
1549
|
+
# @example Response structure
|
1550
|
+
#
|
1551
|
+
# resp.workflow_id #=> String
|
1552
|
+
# resp.workflow_type #=> String, one of "APPFLOW_INTEGRATION"
|
1553
|
+
# resp.status #=> String, one of "NOT_STARTED", "IN_PROGRESS", "COMPLETE", "FAILED", "SPLIT", "RETRY", "CANCELLED"
|
1554
|
+
# resp.error_description #=> String
|
1555
|
+
# resp.start_date #=> Time
|
1556
|
+
# resp.last_updated_at #=> Time
|
1557
|
+
# resp.attributes.appflow_integration.source_connector_type #=> String, one of "Salesforce", "Marketo", "Zendesk", "Servicenow", "S3"
|
1558
|
+
# resp.attributes.appflow_integration.connector_profile_name #=> String
|
1559
|
+
# resp.attributes.appflow_integration.role_arn #=> String
|
1560
|
+
# resp.metrics.appflow_integration.records_processed #=> Integer
|
1561
|
+
# resp.metrics.appflow_integration.steps_completed #=> Integer
|
1562
|
+
# resp.metrics.appflow_integration.total_steps #=> Integer
|
1563
|
+
#
|
1564
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/GetWorkflow AWS API Documentation
|
1565
|
+
#
|
1566
|
+
# @overload get_workflow(params = {})
|
1567
|
+
# @param [Hash] params ({})
|
1568
|
+
def get_workflow(params = {}, options = {})
|
1569
|
+
req = build_request(:get_workflow, params)
|
1570
|
+
req.send_request(options)
|
1571
|
+
end
|
1572
|
+
|
1573
|
+
# Get granular list of steps in workflow.
|
1574
|
+
#
|
1575
|
+
# @option params [required, String] :domain_name
|
1576
|
+
# The unique name of the domain.
|
1577
|
+
#
|
1578
|
+
# @option params [required, String] :workflow_id
|
1579
|
+
# Unique identifier for the workflow.
|
1580
|
+
#
|
1581
|
+
# @option params [String] :next_token
|
1582
|
+
# The token for the next set of results. Use the value returned in the
|
1583
|
+
# previous response in the next request to retrieve the next set of
|
1584
|
+
# results.
|
1585
|
+
#
|
1586
|
+
# @option params [Integer] :max_results
|
1587
|
+
# The maximum number of results to return per page.
|
1588
|
+
#
|
1589
|
+
# @return [Types::GetWorkflowStepsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1590
|
+
#
|
1591
|
+
# * {Types::GetWorkflowStepsResponse#workflow_id #workflow_id} => String
|
1592
|
+
# * {Types::GetWorkflowStepsResponse#workflow_type #workflow_type} => String
|
1593
|
+
# * {Types::GetWorkflowStepsResponse#items #items} => Array<Types::WorkflowStepItem>
|
1594
|
+
# * {Types::GetWorkflowStepsResponse#next_token #next_token} => String
|
1595
|
+
#
|
1596
|
+
# @example Request syntax with placeholder values
|
1597
|
+
#
|
1598
|
+
# resp = client.get_workflow_steps({
|
1599
|
+
# domain_name: "name", # required
|
1600
|
+
# workflow_id: "uuid", # required
|
1601
|
+
# next_token: "token",
|
1602
|
+
# max_results: 1,
|
1603
|
+
# })
|
1604
|
+
#
|
1605
|
+
# @example Response structure
|
1606
|
+
#
|
1607
|
+
# resp.workflow_id #=> String
|
1608
|
+
# resp.workflow_type #=> String, one of "APPFLOW_INTEGRATION"
|
1609
|
+
# resp.items #=> Array
|
1610
|
+
# resp.items[0].appflow_integration.flow_name #=> String
|
1611
|
+
# resp.items[0].appflow_integration.status #=> String, one of "NOT_STARTED", "IN_PROGRESS", "COMPLETE", "FAILED", "SPLIT", "RETRY", "CANCELLED"
|
1612
|
+
# resp.items[0].appflow_integration.execution_message #=> String
|
1613
|
+
# resp.items[0].appflow_integration.records_processed #=> Integer
|
1614
|
+
# resp.items[0].appflow_integration.batch_records_start_time #=> String
|
1615
|
+
# resp.items[0].appflow_integration.batch_records_end_time #=> String
|
1616
|
+
# resp.items[0].appflow_integration.created_at #=> Time
|
1617
|
+
# resp.items[0].appflow_integration.last_updated_at #=> Time
|
1618
|
+
# resp.next_token #=> String
|
1619
|
+
#
|
1620
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/GetWorkflowSteps AWS API Documentation
|
1621
|
+
#
|
1622
|
+
# @overload get_workflow_steps(params = {})
|
1623
|
+
# @param [Hash] params ({})
|
1624
|
+
def get_workflow_steps(params = {}, options = {})
|
1625
|
+
req = build_request(:get_workflow_steps, params)
|
1626
|
+
req.send_request(options)
|
1627
|
+
end
|
1628
|
+
|
1362
1629
|
# Lists all of the integrations associated to a specific URI in the AWS
|
1363
1630
|
# account.
|
1364
1631
|
#
|
@@ -1372,6 +1639,10 @@ module Aws::CustomerProfiles
|
|
1372
1639
|
# @option params [Integer] :max_results
|
1373
1640
|
# The maximum number of objects returned per page.
|
1374
1641
|
#
|
1642
|
+
# @option params [Boolean] :include_hidden
|
1643
|
+
# Boolean to indicate if hidden integration should be returned. Defaults
|
1644
|
+
# to `False`.
|
1645
|
+
#
|
1375
1646
|
# @return [Types::ListAccountIntegrationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1376
1647
|
#
|
1377
1648
|
# * {Types::ListAccountIntegrationsResponse#items #items} => Array<Types::ListIntegrationItem>
|
@@ -1383,6 +1654,7 @@ module Aws::CustomerProfiles
|
|
1383
1654
|
# uri: "string1To255", # required
|
1384
1655
|
# next_token: "token",
|
1385
1656
|
# max_results: 1,
|
1657
|
+
# include_hidden: false,
|
1386
1658
|
# })
|
1387
1659
|
#
|
1388
1660
|
# @example Response structure
|
@@ -1397,6 +1669,7 @@ module Aws::CustomerProfiles
|
|
1397
1669
|
# resp.items[0].tags["TagKey"] #=> String
|
1398
1670
|
# resp.items[0].object_type_names #=> Hash
|
1399
1671
|
# resp.items[0].object_type_names["string1To255"] #=> String
|
1672
|
+
# resp.items[0].workflow_id #=> String
|
1400
1673
|
# resp.next_token #=> String
|
1401
1674
|
#
|
1402
1675
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListAccountIntegrations AWS API Documentation
|
@@ -1511,6 +1784,10 @@ module Aws::CustomerProfiles
|
|
1511
1784
|
# @option params [Integer] :max_results
|
1512
1785
|
# The maximum number of objects returned per page.
|
1513
1786
|
#
|
1787
|
+
# @option params [Boolean] :include_hidden
|
1788
|
+
# Boolean to indicate if hidden integration should be returned. Defaults
|
1789
|
+
# to `False`.
|
1790
|
+
#
|
1514
1791
|
# @return [Types::ListIntegrationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1515
1792
|
#
|
1516
1793
|
# * {Types::ListIntegrationsResponse#items #items} => Array<Types::ListIntegrationItem>
|
@@ -1522,6 +1799,7 @@ module Aws::CustomerProfiles
|
|
1522
1799
|
# domain_name: "name", # required
|
1523
1800
|
# next_token: "token",
|
1524
1801
|
# max_results: 1,
|
1802
|
+
# include_hidden: false,
|
1525
1803
|
# })
|
1526
1804
|
#
|
1527
1805
|
# @example Response structure
|
@@ -1536,6 +1814,7 @@ module Aws::CustomerProfiles
|
|
1536
1814
|
# resp.items[0].tags["TagKey"] #=> String
|
1537
1815
|
# resp.items[0].object_type_names #=> Hash
|
1538
1816
|
# resp.items[0].object_type_names["string1To255"] #=> String
|
1817
|
+
# resp.items[0].workflow_id #=> String
|
1539
1818
|
# resp.next_token #=> String
|
1540
1819
|
#
|
1541
1820
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListIntegrations AWS API Documentation
|
@@ -1719,6 +1998,69 @@ module Aws::CustomerProfiles
|
|
1719
1998
|
req.send_request(options)
|
1720
1999
|
end
|
1721
2000
|
|
2001
|
+
# Query to list all workflows.
|
2002
|
+
#
|
2003
|
+
# @option params [required, String] :domain_name
|
2004
|
+
# The unique name of the domain.
|
2005
|
+
#
|
2006
|
+
# @option params [String] :workflow_type
|
2007
|
+
# The type of workflow. The only supported value is
|
2008
|
+
# APPFLOW\_INTEGRATION.
|
2009
|
+
#
|
2010
|
+
# @option params [String] :status
|
2011
|
+
# Status of workflow execution.
|
2012
|
+
#
|
2013
|
+
# @option params [Time,DateTime,Date,Integer,String] :query_start_date
|
2014
|
+
# Retrieve workflows started after timestamp.
|
2015
|
+
#
|
2016
|
+
# @option params [Time,DateTime,Date,Integer,String] :query_end_date
|
2017
|
+
# Retrieve workflows ended after timestamp.
|
2018
|
+
#
|
2019
|
+
# @option params [String] :next_token
|
2020
|
+
# The token for the next set of results. Use the value returned in the
|
2021
|
+
# previous response in the next request to retrieve the next set of
|
2022
|
+
# results.
|
2023
|
+
#
|
2024
|
+
# @option params [Integer] :max_results
|
2025
|
+
# The maximum number of results to return per page.
|
2026
|
+
#
|
2027
|
+
# @return [Types::ListWorkflowsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2028
|
+
#
|
2029
|
+
# * {Types::ListWorkflowsResponse#items #items} => Array<Types::ListWorkflowsItem>
|
2030
|
+
# * {Types::ListWorkflowsResponse#next_token #next_token} => String
|
2031
|
+
#
|
2032
|
+
# @example Request syntax with placeholder values
|
2033
|
+
#
|
2034
|
+
# resp = client.list_workflows({
|
2035
|
+
# domain_name: "name", # required
|
2036
|
+
# workflow_type: "APPFLOW_INTEGRATION", # accepts APPFLOW_INTEGRATION
|
2037
|
+
# status: "NOT_STARTED", # accepts NOT_STARTED, IN_PROGRESS, COMPLETE, FAILED, SPLIT, RETRY, CANCELLED
|
2038
|
+
# query_start_date: Time.now,
|
2039
|
+
# query_end_date: Time.now,
|
2040
|
+
# next_token: "token",
|
2041
|
+
# max_results: 1,
|
2042
|
+
# })
|
2043
|
+
#
|
2044
|
+
# @example Response structure
|
2045
|
+
#
|
2046
|
+
# resp.items #=> Array
|
2047
|
+
# resp.items[0].workflow_type #=> String, one of "APPFLOW_INTEGRATION"
|
2048
|
+
# resp.items[0].workflow_id #=> String
|
2049
|
+
# resp.items[0].status #=> String, one of "NOT_STARTED", "IN_PROGRESS", "COMPLETE", "FAILED", "SPLIT", "RETRY", "CANCELLED"
|
2050
|
+
# resp.items[0].status_description #=> String
|
2051
|
+
# resp.items[0].created_at #=> Time
|
2052
|
+
# resp.items[0].last_updated_at #=> Time
|
2053
|
+
# resp.next_token #=> String
|
2054
|
+
#
|
2055
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListWorkflows AWS API Documentation
|
2056
|
+
#
|
2057
|
+
# @overload list_workflows(params = {})
|
2058
|
+
# @param [Hash] params ({})
|
2059
|
+
def list_workflows(params = {}, options = {})
|
2060
|
+
req = build_request(:list_workflows, params)
|
2061
|
+
req.send_request(options)
|
2062
|
+
end
|
2063
|
+
|
1722
2064
|
# Runs an AWS Lambda job that does the following:
|
1723
2065
|
#
|
1724
2066
|
# 1. All the profileKeys in the `ProfileToBeMerged` will be moved to
|
@@ -1858,6 +2200,7 @@ module Aws::CustomerProfiles
|
|
1858
2200
|
# * {Types::PutIntegrationResponse#last_updated_at #last_updated_at} => Time
|
1859
2201
|
# * {Types::PutIntegrationResponse#tags #tags} => Hash<String,String>
|
1860
2202
|
# * {Types::PutIntegrationResponse#object_type_names #object_type_names} => Hash<String,String>
|
2203
|
+
# * {Types::PutIntegrationResponse#workflow_id #workflow_id} => String
|
1861
2204
|
#
|
1862
2205
|
# @example Request syntax with placeholder values
|
1863
2206
|
#
|
@@ -1947,6 +2290,7 @@ module Aws::CustomerProfiles
|
|
1947
2290
|
# resp.tags["TagKey"] #=> String
|
1948
2291
|
# resp.object_type_names #=> Hash
|
1949
2292
|
# resp.object_type_names["string1To255"] #=> String
|
2293
|
+
# resp.workflow_id #=> String
|
1950
2294
|
#
|
1951
2295
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/PutIntegration AWS API Documentation
|
1952
2296
|
#
|
@@ -2630,7 +2974,7 @@ module Aws::CustomerProfiles
|
|
2630
2974
|
params: params,
|
2631
2975
|
config: config)
|
2632
2976
|
context[:gem_name] = 'aws-sdk-customerprofiles'
|
2633
|
-
context[:gem_version] = '1.
|
2977
|
+
context[:gem_version] = '1.20.0'
|
2634
2978
|
Seahorse::Client::Request.new(handlers, context)
|
2635
2979
|
end
|
2636
2980
|
|