aws-sdk-customerprofiles 1.14.0 → 1.18.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-customerprofiles/client.rb +51 -20
- data/lib/aws-sdk-customerprofiles/client_api.rb +12 -4
- data/lib/aws-sdk-customerprofiles/types.rb +74 -24
- 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: d6fd32f7fb6dab88333766895bfad1b7535a6e04e7a23ec1b85171b9c4845263
|
4
|
+
data.tar.gz: aefc15d2097965bde12c0ae979f3d024e9a38fbf05b07ffe6b5bbf5769f660f7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f1a21afb27312eee9a791576a9c599b1a49732c3e50555cbb096d7d9e56d7b8a0033f247d5dbd5f4393368cbb65a5784ae3252ea88c631e43a12515c7161914b
|
7
|
+
data.tar.gz: c81c92cbe7bcbd52006ceb9f4b3aef155ef783f7478afffa82b13a0cf4243c6f603601e982cb368071ebf49aed062204aff89017ab72c90f19ccb47eb5e9f47f
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.18.0 (2022-02-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.17.0 (2021-12-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.16.0 (2021-12-20)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - This release adds an optional parameter, ObjectTypeNames to the PutIntegration API to support multiple object types per integration option. Besides, this release introduces Standard Order Objects which contain data from third party systems and each order object belongs to a specific profile.
|
18
|
+
|
19
|
+
1.15.0 (2021-11-30)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.14.0 (2021-11-24)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.18.0
|
@@ -27,6 +27,8 @@ 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/defaults_mode.rb'
|
31
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
30
32
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
33
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
32
34
|
|
@@ -73,6 +75,8 @@ module Aws::CustomerProfiles
|
|
73
75
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
76
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
77
|
add_plugin(Aws::Plugins::HttpChecksum)
|
78
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
79
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
76
80
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
81
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
78
82
|
|
@@ -119,7 +123,9 @@ module Aws::CustomerProfiles
|
|
119
123
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
124
|
# are very aggressive. Construct and pass an instance of
|
121
125
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
126
|
+
# enable retries and extended timeouts. Instance profile credential
|
127
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
128
|
+
# to true.
|
123
129
|
#
|
124
130
|
# @option options [required, String] :region
|
125
131
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +179,10 @@ module Aws::CustomerProfiles
|
|
173
179
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
174
180
|
# a clock skew correction and retry requests with skewed client clocks.
|
175
181
|
#
|
182
|
+
# @option options [String] :defaults_mode ("legacy")
|
183
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
184
|
+
# accepted modes and the configuration defaults that are included.
|
185
|
+
#
|
176
186
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
177
187
|
# Set to true to disable SDK automatically adding host prefix
|
178
188
|
# to default service endpoint when available.
|
@@ -295,7 +305,7 @@ module Aws::CustomerProfiles
|
|
295
305
|
# seconds to wait when opening a HTTP session before raising a
|
296
306
|
# `Timeout::Error`.
|
297
307
|
#
|
298
|
-
# @option options [
|
308
|
+
# @option options [Float] :http_read_timeout (60) The default
|
299
309
|
# number of seconds to wait for response data. This value can
|
300
310
|
# safely be set per-request on the session.
|
301
311
|
#
|
@@ -311,6 +321,9 @@ module Aws::CustomerProfiles
|
|
311
321
|
# disables this behaviour. This value can safely be set per
|
312
322
|
# request on the session.
|
313
323
|
#
|
324
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
325
|
+
# in seconds.
|
326
|
+
#
|
314
327
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
315
328
|
# HTTP debug output will be sent to the `:logger`.
|
316
329
|
#
|
@@ -1104,6 +1117,7 @@ module Aws::CustomerProfiles
|
|
1104
1117
|
# * {Types::GetIntegrationResponse#created_at #created_at} => Time
|
1105
1118
|
# * {Types::GetIntegrationResponse#last_updated_at #last_updated_at} => Time
|
1106
1119
|
# * {Types::GetIntegrationResponse#tags #tags} => Hash<String,String>
|
1120
|
+
# * {Types::GetIntegrationResponse#object_type_names #object_type_names} => Hash<String,String>
|
1107
1121
|
#
|
1108
1122
|
# @example Request syntax with placeholder values
|
1109
1123
|
#
|
@@ -1121,6 +1135,8 @@ module Aws::CustomerProfiles
|
|
1121
1135
|
# resp.last_updated_at #=> Time
|
1122
1136
|
# resp.tags #=> Hash
|
1123
1137
|
# resp.tags["TagKey"] #=> String
|
1138
|
+
# resp.object_type_names #=> Hash
|
1139
|
+
# resp.object_type_names["string1To255"] #=> String
|
1124
1140
|
#
|
1125
1141
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/GetIntegration AWS API Documentation
|
1126
1142
|
#
|
@@ -1131,9 +1147,6 @@ module Aws::CustomerProfiles
|
|
1131
1147
|
req.send_request(options)
|
1132
1148
|
end
|
1133
1149
|
|
1134
|
-
# This API is in preview release for Amazon Connect and subject to
|
1135
|
-
# change.
|
1136
|
-
#
|
1137
1150
|
# Before calling this API, use [CreateDomain][1] or [UpdateDomain][2] to
|
1138
1151
|
# enable identity resolution: set `Matching` to true.
|
1139
1152
|
#
|
@@ -1277,7 +1290,7 @@ module Aws::CustomerProfiles
|
|
1277
1290
|
# resp.keys #=> Hash
|
1278
1291
|
# resp.keys["name"] #=> Array
|
1279
1292
|
# resp.keys["name"][0].standard_identifiers #=> Array
|
1280
|
-
# resp.keys["name"][0].standard_identifiers[0] #=> String, one of "PROFILE", "ASSET", "CASE", "UNIQUE", "SECONDARY", "LOOKUP_ONLY", "NEW_ONLY"
|
1293
|
+
# resp.keys["name"][0].standard_identifiers[0] #=> String, one of "PROFILE", "ASSET", "CASE", "UNIQUE", "SECONDARY", "LOOKUP_ONLY", "NEW_ONLY", "ORDER"
|
1281
1294
|
# resp.keys["name"][0].field_names #=> Array
|
1282
1295
|
# resp.keys["name"][0].field_names[0] #=> String
|
1283
1296
|
# resp.created_at #=> Time
|
@@ -1335,7 +1348,7 @@ module Aws::CustomerProfiles
|
|
1335
1348
|
# resp.keys #=> Hash
|
1336
1349
|
# resp.keys["name"] #=> Array
|
1337
1350
|
# resp.keys["name"][0].standard_identifiers #=> Array
|
1338
|
-
# resp.keys["name"][0].standard_identifiers[0] #=> String, one of "PROFILE", "ASSET", "CASE", "UNIQUE", "SECONDARY", "LOOKUP_ONLY", "NEW_ONLY"
|
1351
|
+
# resp.keys["name"][0].standard_identifiers[0] #=> String, one of "PROFILE", "ASSET", "CASE", "UNIQUE", "SECONDARY", "LOOKUP_ONLY", "NEW_ONLY", "ORDER"
|
1339
1352
|
# resp.keys["name"][0].field_names #=> Array
|
1340
1353
|
# resp.keys["name"][0].field_names[0] #=> String
|
1341
1354
|
#
|
@@ -1384,6 +1397,8 @@ module Aws::CustomerProfiles
|
|
1384
1397
|
# resp.items[0].last_updated_at #=> Time
|
1385
1398
|
# resp.items[0].tags #=> Hash
|
1386
1399
|
# resp.items[0].tags["TagKey"] #=> String
|
1400
|
+
# resp.items[0].object_type_names #=> Hash
|
1401
|
+
# resp.items[0].object_type_names["string1To255"] #=> String
|
1387
1402
|
# resp.next_token #=> String
|
1388
1403
|
#
|
1389
1404
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListAccountIntegrations AWS API Documentation
|
@@ -1521,6 +1536,8 @@ module Aws::CustomerProfiles
|
|
1521
1536
|
# resp.items[0].last_updated_at #=> Time
|
1522
1537
|
# resp.items[0].tags #=> Hash
|
1523
1538
|
# resp.items[0].tags["TagKey"] #=> String
|
1539
|
+
# resp.items[0].object_type_names #=> Hash
|
1540
|
+
# resp.items[0].object_type_names["string1To255"] #=> String
|
1524
1541
|
# resp.next_token #=> String
|
1525
1542
|
#
|
1526
1543
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListIntegrations AWS API Documentation
|
@@ -1635,7 +1652,7 @@ module Aws::CustomerProfiles
|
|
1635
1652
|
# @option params [Types::ObjectFilter] :object_filter
|
1636
1653
|
# Applies a filter to the response to include profile objects with the
|
1637
1654
|
# specified index values. This filter is only supported for
|
1638
|
-
# ObjectTypeName \_asset and \
|
1655
|
+
# ObjectTypeName \_asset, \_case and \_order.
|
1639
1656
|
#
|
1640
1657
|
# @return [Types::ListProfileObjectsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1641
1658
|
#
|
@@ -1704,9 +1721,6 @@ module Aws::CustomerProfiles
|
|
1704
1721
|
req.send_request(options)
|
1705
1722
|
end
|
1706
1723
|
|
1707
|
-
# This API is in preview release for Amazon Connect and subject to
|
1708
|
-
# change.
|
1709
|
-
#
|
1710
1724
|
# Runs an AWS Lambda job that does the following:
|
1711
1725
|
#
|
1712
1726
|
# 1. All the profileKeys in the `ProfileToBeMerged` will be moved to
|
@@ -1818,7 +1832,7 @@ module Aws::CustomerProfiles
|
|
1818
1832
|
# @option params [String] :uri
|
1819
1833
|
# The URI of the S3 bucket or any other type of data source.
|
1820
1834
|
#
|
1821
|
-
# @option params [
|
1835
|
+
# @option params [String] :object_type_name
|
1822
1836
|
# The name of the profile object type.
|
1823
1837
|
#
|
1824
1838
|
# @option params [Hash<String,String>] :tags
|
@@ -1828,6 +1842,15 @@ module Aws::CustomerProfiles
|
|
1828
1842
|
# The configuration that controls how Customer Profiles retrieves data
|
1829
1843
|
# from the source.
|
1830
1844
|
#
|
1845
|
+
# @option params [Hash<String,String>] :object_type_names
|
1846
|
+
# A map in which each key is an event type from an external application
|
1847
|
+
# such as Segment or Shopify, and each value is an `ObjectTypeName`
|
1848
|
+
# (template) used to ingest the event. It supports the following event
|
1849
|
+
# types: `SegmentIdentify`, `ShopifyCreateCustomers`,
|
1850
|
+
# `ShopifyUpdateCustomers`, `ShopifyCreateDraftOrders`,
|
1851
|
+
# `ShopifyUpdateDraftOrders`, `ShopifyCreateOrders`, and
|
1852
|
+
# `ShopifyUpdatedOrders`.
|
1853
|
+
#
|
1831
1854
|
# @return [Types::PutIntegrationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1832
1855
|
#
|
1833
1856
|
# * {Types::PutIntegrationResponse#domain_name #domain_name} => String
|
@@ -1836,13 +1859,14 @@ module Aws::CustomerProfiles
|
|
1836
1859
|
# * {Types::PutIntegrationResponse#created_at #created_at} => Time
|
1837
1860
|
# * {Types::PutIntegrationResponse#last_updated_at #last_updated_at} => Time
|
1838
1861
|
# * {Types::PutIntegrationResponse#tags #tags} => Hash<String,String>
|
1862
|
+
# * {Types::PutIntegrationResponse#object_type_names #object_type_names} => Hash<String,String>
|
1839
1863
|
#
|
1840
1864
|
# @example Request syntax with placeholder values
|
1841
1865
|
#
|
1842
1866
|
# resp = client.put_integration({
|
1843
1867
|
# domain_name: "name", # required
|
1844
1868
|
# uri: "string1To255",
|
1845
|
-
# object_type_name: "typeName",
|
1869
|
+
# object_type_name: "typeName",
|
1846
1870
|
# tags: {
|
1847
1871
|
# "TagKey" => "TagValue",
|
1848
1872
|
# },
|
@@ -1909,6 +1933,9 @@ module Aws::CustomerProfiles
|
|
1909
1933
|
# },
|
1910
1934
|
# },
|
1911
1935
|
# },
|
1936
|
+
# object_type_names: {
|
1937
|
+
# "string1To255" => "typeName",
|
1938
|
+
# },
|
1912
1939
|
# })
|
1913
1940
|
#
|
1914
1941
|
# @example Response structure
|
@@ -1920,6 +1947,8 @@ module Aws::CustomerProfiles
|
|
1920
1947
|
# resp.last_updated_at #=> Time
|
1921
1948
|
# resp.tags #=> Hash
|
1922
1949
|
# resp.tags["TagKey"] #=> String
|
1950
|
+
# resp.object_type_names #=> Hash
|
1951
|
+
# resp.object_type_names["string1To255"] #=> String
|
1923
1952
|
#
|
1924
1953
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/PutIntegration AWS API Documentation
|
1925
1954
|
#
|
@@ -2057,7 +2086,7 @@ module Aws::CustomerProfiles
|
|
2057
2086
|
# keys: {
|
2058
2087
|
# "name" => [
|
2059
2088
|
# {
|
2060
|
-
# standard_identifiers: ["PROFILE"], # accepts PROFILE, ASSET, CASE, UNIQUE, SECONDARY, LOOKUP_ONLY, NEW_ONLY
|
2089
|
+
# standard_identifiers: ["PROFILE"], # accepts PROFILE, ASSET, CASE, UNIQUE, SECONDARY, LOOKUP_ONLY, NEW_ONLY, ORDER
|
2061
2090
|
# field_names: ["name"],
|
2062
2091
|
# },
|
2063
2092
|
# ],
|
@@ -2083,7 +2112,7 @@ module Aws::CustomerProfiles
|
|
2083
2112
|
# resp.keys #=> Hash
|
2084
2113
|
# resp.keys["name"] #=> Array
|
2085
2114
|
# resp.keys["name"][0].standard_identifiers #=> Array
|
2086
|
-
# resp.keys["name"][0].standard_identifiers[0] #=> String, one of "PROFILE", "ASSET", "CASE", "UNIQUE", "SECONDARY", "LOOKUP_ONLY", "NEW_ONLY"
|
2115
|
+
# resp.keys["name"][0].standard_identifiers[0] #=> String, one of "PROFILE", "ASSET", "CASE", "UNIQUE", "SECONDARY", "LOOKUP_ONLY", "NEW_ONLY", "ORDER"
|
2087
2116
|
# resp.keys["name"][0].field_names #=> Array
|
2088
2117
|
# resp.keys["name"][0].field_names[0] #=> String
|
2089
2118
|
# resp.created_at #=> Time
|
@@ -2114,10 +2143,12 @@ module Aws::CustomerProfiles
|
|
2114
2143
|
#
|
2115
2144
|
# @option params [required, String] :key_name
|
2116
2145
|
# A searchable identifier of a customer profile. The predefined keys you
|
2117
|
-
# can use to search include: \_account, \_profileId, \
|
2118
|
-
# \_phone, \_email, \_ctrContactId,
|
2119
|
-
# \
|
2120
|
-
# \
|
2146
|
+
# can use to search include: \_account, \_profileId, \_assetId,
|
2147
|
+
# \_caseId, \_orderId, \_fullName, \_phone, \_email, \_ctrContactId,
|
2148
|
+
# \_marketoLeadId, \_salesforceAccountId, \_salesforceContactId,
|
2149
|
+
# \_salesforceAssetId, \_zendeskUserId, \_zendeskExternalId,
|
2150
|
+
# \_zendeskTicketId, \_serviceNowSystemId, \_serviceNowIncidentId,
|
2151
|
+
# \_segmentUserId, \_shopifyCustomerId, \_shopifyOrderId.
|
2121
2152
|
#
|
2122
2153
|
# @option params [required, Array<String>] :values
|
2123
2154
|
# A list of key values.
|
@@ -2601,7 +2632,7 @@ module Aws::CustomerProfiles
|
|
2601
2632
|
params: params,
|
2602
2633
|
config: config)
|
2603
2634
|
context[:gem_name] = 'aws-sdk-customerprofiles'
|
2604
|
-
context[:gem_version] = '1.
|
2635
|
+
context[:gem_version] = '1.18.0'
|
2605
2636
|
Seahorse::Client::Request.new(handlers, context)
|
2606
2637
|
end
|
2607
2638
|
|
@@ -123,6 +123,7 @@ module Aws::CustomerProfiles
|
|
123
123
|
ObjectTypeField = Shapes::StructureShape.new(name: 'ObjectTypeField')
|
124
124
|
ObjectTypeKey = Shapes::StructureShape.new(name: 'ObjectTypeKey')
|
125
125
|
ObjectTypeKeyList = Shapes::ListShape.new(name: 'ObjectTypeKeyList')
|
126
|
+
ObjectTypeNames = Shapes::MapShape.new(name: 'ObjectTypeNames')
|
126
127
|
OperatorPropertiesKeys = Shapes::StringShape.new(name: 'OperatorPropertiesKeys')
|
127
128
|
PartyType = Shapes::StringShape.new(name: 'PartyType')
|
128
129
|
Profile = Shapes::StructureShape.new(name: 'Profile')
|
@@ -452,10 +453,11 @@ module Aws::CustomerProfiles
|
|
452
453
|
|
453
454
|
GetIntegrationResponse.add_member(:domain_name, Shapes::ShapeRef.new(shape: name, required: true, location_name: "DomainName"))
|
454
455
|
GetIntegrationResponse.add_member(:uri, Shapes::ShapeRef.new(shape: string1To255, required: true, location_name: "Uri"))
|
455
|
-
GetIntegrationResponse.add_member(:object_type_name, Shapes::ShapeRef.new(shape: typeName,
|
456
|
+
GetIntegrationResponse.add_member(:object_type_name, Shapes::ShapeRef.new(shape: typeName, location_name: "ObjectTypeName"))
|
456
457
|
GetIntegrationResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: timestamp, required: true, location_name: "CreatedAt"))
|
457
458
|
GetIntegrationResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: timestamp, required: true, location_name: "LastUpdatedAt"))
|
458
459
|
GetIntegrationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
460
|
+
GetIntegrationResponse.add_member(:object_type_names, Shapes::ShapeRef.new(shape: ObjectTypeNames, location_name: "ObjectTypeNames"))
|
459
461
|
GetIntegrationResponse.struct_class = Types::GetIntegrationResponse
|
460
462
|
|
461
463
|
GetMatchesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: token, location: "querystring", location_name: "next-token"))
|
@@ -565,10 +567,11 @@ module Aws::CustomerProfiles
|
|
565
567
|
|
566
568
|
ListIntegrationItem.add_member(:domain_name, Shapes::ShapeRef.new(shape: name, required: true, location_name: "DomainName"))
|
567
569
|
ListIntegrationItem.add_member(:uri, Shapes::ShapeRef.new(shape: string1To255, required: true, location_name: "Uri"))
|
568
|
-
ListIntegrationItem.add_member(:object_type_name, Shapes::ShapeRef.new(shape: typeName,
|
570
|
+
ListIntegrationItem.add_member(:object_type_name, Shapes::ShapeRef.new(shape: typeName, location_name: "ObjectTypeName"))
|
569
571
|
ListIntegrationItem.add_member(:created_at, Shapes::ShapeRef.new(shape: timestamp, required: true, location_name: "CreatedAt"))
|
570
572
|
ListIntegrationItem.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: timestamp, required: true, location_name: "LastUpdatedAt"))
|
571
573
|
ListIntegrationItem.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
574
|
+
ListIntegrationItem.add_member(:object_type_names, Shapes::ShapeRef.new(shape: ObjectTypeNames, location_name: "ObjectTypeNames"))
|
572
575
|
ListIntegrationItem.struct_class = Types::ListIntegrationItem
|
573
576
|
|
574
577
|
ListIntegrationsRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: name, required: true, location: "uri", location_name: "DomainName"))
|
@@ -682,6 +685,9 @@ module Aws::CustomerProfiles
|
|
682
685
|
|
683
686
|
ObjectTypeKeyList.member = Shapes::ShapeRef.new(shape: ObjectTypeKey)
|
684
687
|
|
688
|
+
ObjectTypeNames.key = Shapes::ShapeRef.new(shape: string1To255)
|
689
|
+
ObjectTypeNames.value = Shapes::ShapeRef.new(shape: typeName)
|
690
|
+
|
685
691
|
Profile.add_member(:profile_id, Shapes::ShapeRef.new(shape: uuid, location_name: "ProfileId"))
|
686
692
|
Profile.add_member(:account_number, Shapes::ShapeRef.new(shape: string1To255, location_name: "AccountNumber"))
|
687
693
|
Profile.add_member(:additional_information, Shapes::ShapeRef.new(shape: string1To1000, location_name: "AdditionalInformation"))
|
@@ -720,17 +726,19 @@ module Aws::CustomerProfiles
|
|
720
726
|
|
721
727
|
PutIntegrationRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: name, required: true, location: "uri", location_name: "DomainName"))
|
722
728
|
PutIntegrationRequest.add_member(:uri, Shapes::ShapeRef.new(shape: string1To255, location_name: "Uri"))
|
723
|
-
PutIntegrationRequest.add_member(:object_type_name, Shapes::ShapeRef.new(shape: typeName,
|
729
|
+
PutIntegrationRequest.add_member(:object_type_name, Shapes::ShapeRef.new(shape: typeName, location_name: "ObjectTypeName"))
|
724
730
|
PutIntegrationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
725
731
|
PutIntegrationRequest.add_member(:flow_definition, Shapes::ShapeRef.new(shape: FlowDefinition, location_name: "FlowDefinition"))
|
732
|
+
PutIntegrationRequest.add_member(:object_type_names, Shapes::ShapeRef.new(shape: ObjectTypeNames, location_name: "ObjectTypeNames"))
|
726
733
|
PutIntegrationRequest.struct_class = Types::PutIntegrationRequest
|
727
734
|
|
728
735
|
PutIntegrationResponse.add_member(:domain_name, Shapes::ShapeRef.new(shape: name, required: true, location_name: "DomainName"))
|
729
736
|
PutIntegrationResponse.add_member(:uri, Shapes::ShapeRef.new(shape: string1To255, required: true, location_name: "Uri"))
|
730
|
-
PutIntegrationResponse.add_member(:object_type_name, Shapes::ShapeRef.new(shape: typeName,
|
737
|
+
PutIntegrationResponse.add_member(:object_type_name, Shapes::ShapeRef.new(shape: typeName, location_name: "ObjectTypeName"))
|
731
738
|
PutIntegrationResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: timestamp, required: true, location_name: "CreatedAt"))
|
732
739
|
PutIntegrationResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: timestamp, required: true, location_name: "LastUpdatedAt"))
|
733
740
|
PutIntegrationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
741
|
+
PutIntegrationResponse.add_member(:object_type_names, Shapes::ShapeRef.new(shape: ObjectTypeNames, location_name: "ObjectTypeNames"))
|
734
742
|
PutIntegrationResponse.struct_class = Types::PutIntegrationResponse
|
735
743
|
|
736
744
|
PutProfileObjectRequest.add_member(:object_type_name, Shapes::ShapeRef.new(shape: typeName, required: true, location_name: "ObjectTypeName"))
|
@@ -1591,6 +1591,16 @@ module Aws::CustomerProfiles
|
|
1591
1591
|
# resource.
|
1592
1592
|
# @return [Hash<String,String>]
|
1593
1593
|
#
|
1594
|
+
# @!attribute [rw] object_type_names
|
1595
|
+
# A map in which each key is an event type from an external
|
1596
|
+
# application such as Segment or Shopify, and each value is an
|
1597
|
+
# `ObjectTypeName` (template) used to ingest the event. It supports
|
1598
|
+
# the following event types: `SegmentIdentify`,
|
1599
|
+
# `ShopifyCreateCustomers`, `ShopifyUpdateCustomers`,
|
1600
|
+
# `ShopifyCreateDraftOrders`, `ShopifyUpdateDraftOrders`,
|
1601
|
+
# `ShopifyCreateOrders`, and `ShopifyUpdatedOrders`.
|
1602
|
+
# @return [Hash<String,String>]
|
1603
|
+
#
|
1594
1604
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/GetIntegrationResponse AWS API Documentation
|
1595
1605
|
#
|
1596
1606
|
class GetIntegrationResponse < Struct.new(
|
@@ -1599,7 +1609,8 @@ module Aws::CustomerProfiles
|
|
1599
1609
|
:object_type_name,
|
1600
1610
|
:created_at,
|
1601
1611
|
:last_updated_at,
|
1602
|
-
:tags
|
1612
|
+
:tags,
|
1613
|
+
:object_type_names)
|
1603
1614
|
SENSITIVE = []
|
1604
1615
|
include Aws::Structure
|
1605
1616
|
end
|
@@ -2194,6 +2205,16 @@ module Aws::CustomerProfiles
|
|
2194
2205
|
# resource.
|
2195
2206
|
# @return [Hash<String,String>]
|
2196
2207
|
#
|
2208
|
+
# @!attribute [rw] object_type_names
|
2209
|
+
# A map in which each key is an event type from an external
|
2210
|
+
# application such as Segment or Shopify, and each value is an
|
2211
|
+
# `ObjectTypeName` (template) used to ingest the event. It supports
|
2212
|
+
# the following event types: `SegmentIdentify`,
|
2213
|
+
# `ShopifyCreateCustomers`, `ShopifyUpdateCustomers`,
|
2214
|
+
# `ShopifyCreateDraftOrders`, `ShopifyUpdateDraftOrders`,
|
2215
|
+
# `ShopifyCreateOrders`, and `ShopifyUpdatedOrders`.
|
2216
|
+
# @return [Hash<String,String>]
|
2217
|
+
#
|
2197
2218
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListIntegrationItem AWS API Documentation
|
2198
2219
|
#
|
2199
2220
|
class ListIntegrationItem < Struct.new(
|
@@ -2202,7 +2223,8 @@ module Aws::CustomerProfiles
|
|
2202
2223
|
:object_type_name,
|
2203
2224
|
:created_at,
|
2204
2225
|
:last_updated_at,
|
2205
|
-
:tags
|
2226
|
+
:tags,
|
2227
|
+
:object_type_names)
|
2206
2228
|
SENSITIVE = []
|
2207
2229
|
include Aws::Structure
|
2208
2230
|
end
|
@@ -2469,7 +2491,7 @@ module Aws::CustomerProfiles
|
|
2469
2491
|
# @!attribute [rw] object_filter
|
2470
2492
|
# Applies a filter to the response to include profile objects with the
|
2471
2493
|
# specified index values. This filter is only supported for
|
2472
|
-
# ObjectTypeName \_asset and \
|
2494
|
+
# ObjectTypeName \_asset, \_case and \_order.
|
2473
2495
|
# @return [Types::ObjectFilter]
|
2474
2496
|
#
|
2475
2497
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListProfileObjectsRequest AWS API Documentation
|
@@ -2751,7 +2773,7 @@ module Aws::CustomerProfiles
|
|
2751
2773
|
|
2752
2774
|
# The filter applied to ListProfileObjects response to include profile
|
2753
2775
|
# objects with the specified index values. This filter is only supported
|
2754
|
-
# for ObjectTypeName \_asset and \
|
2776
|
+
# for ObjectTypeName \_asset, \_case and \_order.
|
2755
2777
|
#
|
2756
2778
|
# @note When making an API call, you may pass ObjectFilter
|
2757
2779
|
# data as a hash:
|
@@ -2765,7 +2787,8 @@ module Aws::CustomerProfiles
|
|
2765
2787
|
# A searchable identifier of a standard profile object. The predefined
|
2766
2788
|
# keys you can use to search for \_asset include: \_assetId,
|
2767
2789
|
# \_assetName, \_serialNumber. The predefined keys you can use to
|
2768
|
-
# search for \_case include: \_caseId.
|
2790
|
+
# search for \_case include: \_caseId. The predefined keys you can use
|
2791
|
+
# to search for \_order include: \_orderId.
|
2769
2792
|
# @return [String]
|
2770
2793
|
#
|
2771
2794
|
# @!attribute [rw] values
|
@@ -2825,22 +2848,22 @@ module Aws::CustomerProfiles
|
|
2825
2848
|
# data as a hash:
|
2826
2849
|
#
|
2827
2850
|
# {
|
2828
|
-
# standard_identifiers: ["PROFILE"], # accepts PROFILE, ASSET, CASE, UNIQUE, SECONDARY, LOOKUP_ONLY, NEW_ONLY
|
2851
|
+
# standard_identifiers: ["PROFILE"], # accepts PROFILE, ASSET, CASE, UNIQUE, SECONDARY, LOOKUP_ONLY, NEW_ONLY, ORDER
|
2829
2852
|
# field_names: ["name"],
|
2830
2853
|
# }
|
2831
2854
|
#
|
2832
2855
|
# @!attribute [rw] standard_identifiers
|
2833
2856
|
# The types of keys that a ProfileObject can have. Each ProfileObject
|
2834
|
-
# can have only 1 UNIQUE key but multiple PROFILE keys. PROFILE,
|
2835
|
-
#
|
2836
|
-
# PROFILE, ASSET or
|
2837
|
-
# used to uniquely identify an object. If a key a
|
2838
|
-
# SECONDARY, it will be used to search for profiles after
|
2839
|
-
# PROFILE keys have been searched. A LOOKUP\_ONLY key is
|
2840
|
-
# match a profile but is not persisted to be used for
|
2841
|
-
# profile. A NEW\_ONLY key is only used if the
|
2842
|
-
# already exist before the object is ingested,
|
2843
|
-
# used for matching objects to profiles.
|
2857
|
+
# can have only 1 UNIQUE key but multiple PROFILE keys. PROFILE,
|
2858
|
+
# ASSET, CASE, or ORDER means that this key can be used to tie an
|
2859
|
+
# object to a PROFILE, ASSET, CASE, or ORDER respectively. UNIQUE
|
2860
|
+
# means that it can be used to uniquely identify an object. If a key a
|
2861
|
+
# is marked as SECONDARY, it will be used to search for profiles after
|
2862
|
+
# all other PROFILE keys have been searched. A LOOKUP\_ONLY key is
|
2863
|
+
# only used to match a profile but is not persisted to be used for
|
2864
|
+
# searching of the profile. A NEW\_ONLY key is only used if the
|
2865
|
+
# profile does not already exist before the object is ingested,
|
2866
|
+
# otherwise it is only used for matching objects to profiles.
|
2844
2867
|
# @return [Array<String>]
|
2845
2868
|
#
|
2846
2869
|
# @!attribute [rw] field_names
|
@@ -2984,7 +3007,7 @@ module Aws::CustomerProfiles
|
|
2984
3007
|
# {
|
2985
3008
|
# domain_name: "name", # required
|
2986
3009
|
# uri: "string1To255",
|
2987
|
-
# object_type_name: "typeName",
|
3010
|
+
# object_type_name: "typeName",
|
2988
3011
|
# tags: {
|
2989
3012
|
# "TagKey" => "TagValue",
|
2990
3013
|
# },
|
@@ -3051,6 +3074,9 @@ module Aws::CustomerProfiles
|
|
3051
3074
|
# },
|
3052
3075
|
# },
|
3053
3076
|
# },
|
3077
|
+
# object_type_names: {
|
3078
|
+
# "string1To255" => "typeName",
|
3079
|
+
# },
|
3054
3080
|
# }
|
3055
3081
|
#
|
3056
3082
|
# @!attribute [rw] domain_name
|
@@ -3075,6 +3101,16 @@ module Aws::CustomerProfiles
|
|
3075
3101
|
# from the source.
|
3076
3102
|
# @return [Types::FlowDefinition]
|
3077
3103
|
#
|
3104
|
+
# @!attribute [rw] object_type_names
|
3105
|
+
# A map in which each key is an event type from an external
|
3106
|
+
# application such as Segment or Shopify, and each value is an
|
3107
|
+
# `ObjectTypeName` (template) used to ingest the event. It supports
|
3108
|
+
# the following event types: `SegmentIdentify`,
|
3109
|
+
# `ShopifyCreateCustomers`, `ShopifyUpdateCustomers`,
|
3110
|
+
# `ShopifyCreateDraftOrders`, `ShopifyUpdateDraftOrders`,
|
3111
|
+
# `ShopifyCreateOrders`, and `ShopifyUpdatedOrders`.
|
3112
|
+
# @return [Hash<String,String>]
|
3113
|
+
#
|
3078
3114
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/PutIntegrationRequest AWS API Documentation
|
3079
3115
|
#
|
3080
3116
|
class PutIntegrationRequest < Struct.new(
|
@@ -3082,7 +3118,8 @@ module Aws::CustomerProfiles
|
|
3082
3118
|
:uri,
|
3083
3119
|
:object_type_name,
|
3084
3120
|
:tags,
|
3085
|
-
:flow_definition
|
3121
|
+
:flow_definition,
|
3122
|
+
:object_type_names)
|
3086
3123
|
SENSITIVE = []
|
3087
3124
|
include Aws::Structure
|
3088
3125
|
end
|
@@ -3112,6 +3149,16 @@ module Aws::CustomerProfiles
|
|
3112
3149
|
# resource.
|
3113
3150
|
# @return [Hash<String,String>]
|
3114
3151
|
#
|
3152
|
+
# @!attribute [rw] object_type_names
|
3153
|
+
# A map in which each key is an event type from an external
|
3154
|
+
# application such as Segment or Shopify, and each value is an
|
3155
|
+
# `ObjectTypeName` (template) used to ingest the event. It supports
|
3156
|
+
# the following event types: `SegmentIdentify`,
|
3157
|
+
# `ShopifyCreateCustomers`, `ShopifyUpdateCustomers`,
|
3158
|
+
# `ShopifyCreateDraftOrders`, `ShopifyUpdateDraftOrders`,
|
3159
|
+
# `ShopifyCreateOrders`, and `ShopifyUpdatedOrders`.
|
3160
|
+
# @return [Hash<String,String>]
|
3161
|
+
#
|
3115
3162
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/PutIntegrationResponse AWS API Documentation
|
3116
3163
|
#
|
3117
3164
|
class PutIntegrationResponse < Struct.new(
|
@@ -3120,7 +3167,8 @@ module Aws::CustomerProfiles
|
|
3120
3167
|
:object_type_name,
|
3121
3168
|
:created_at,
|
3122
3169
|
:last_updated_at,
|
3123
|
-
:tags
|
3170
|
+
:tags,
|
3171
|
+
:object_type_names)
|
3124
3172
|
SENSITIVE = []
|
3125
3173
|
include Aws::Structure
|
3126
3174
|
end
|
@@ -3191,7 +3239,7 @@ module Aws::CustomerProfiles
|
|
3191
3239
|
# keys: {
|
3192
3240
|
# "name" => [
|
3193
3241
|
# {
|
3194
|
-
# standard_identifiers: ["PROFILE"], # accepts PROFILE, ASSET, CASE, UNIQUE, SECONDARY, LOOKUP_ONLY, NEW_ONLY
|
3242
|
+
# standard_identifiers: ["PROFILE"], # accepts PROFILE, ASSET, CASE, UNIQUE, SECONDARY, LOOKUP_ONLY, NEW_ONLY, ORDER
|
3195
3243
|
# field_names: ["name"],
|
3196
3244
|
# },
|
3197
3245
|
# ],
|
@@ -3570,10 +3618,12 @@ module Aws::CustomerProfiles
|
|
3570
3618
|
#
|
3571
3619
|
# @!attribute [rw] key_name
|
3572
3620
|
# A searchable identifier of a customer profile. The predefined keys
|
3573
|
-
# you can use to search include: \_account, \_profileId, \
|
3574
|
-
# \_phone, \_email, \_ctrContactId,
|
3575
|
-
# \
|
3576
|
-
# \
|
3621
|
+
# you can use to search include: \_account, \_profileId, \_assetId,
|
3622
|
+
# \_caseId, \_orderId, \_fullName, \_phone, \_email, \_ctrContactId,
|
3623
|
+
# \_marketoLeadId, \_salesforceAccountId, \_salesforceContactId,
|
3624
|
+
# \_salesforceAssetId, \_zendeskUserId, \_zendeskExternalId,
|
3625
|
+
# \_zendeskTicketId, \_serviceNowSystemId, \_serviceNowIncidentId,
|
3626
|
+
# \_segmentUserId, \_shopifyCustomerId, \_shopifyOrderId.
|
3577
3627
|
# @return [String]
|
3578
3628
|
#
|
3579
3629
|
# @!attribute [rw] values
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-customerprofiles
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.18.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:
|
11
|
+
date: 2022-02-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.126.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.126.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|